*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  color: #2C1208;
  background: linear-gradient(to bottom,
    #FFFBF0  0%,
    #FFFBF0  8%,
    #FEE8A0 32%,
    #F5C040 54%,
    #E89010 68%,
    #CC4012 81%,
    #BB1515 90%,
    #940C0C 96%,
    #780808 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Mobile: fixed attachment broken on iOS; fixed background-size keeps gradient identical across all pages */
@media (max-width: 767px) {
  body {
    background-color: #780808;
    background-image: linear-gradient(to bottom,
      #FFFBF0  0%,
      #FFFBF0  3%,
      #FEE8A0 10%,
      #F5C040 24%,
      #E89010 38%,
      #CC4012 53%,
      #BB1515 66%,
      #940C0C 79%,
      #780808 90%);
    background-size: 100% 2000px;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(255,251,240,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180,100,10,0.35);
}

.nav-brand {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2C1208;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C1208;
  border-radius: 2px;
}

/* ── Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 150;
  transition: opacity 0.35s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── Drawer ── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  height: 100vh;
  background: #780808;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 200;
  padding: 2rem 1.75rem;
}
.nav-drawer.open {
  transform: translateX(0);
}
.drawer-links a {
  display: block;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #FFFBF0;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,251,240,0.1);
}
.drawer-links a:hover {
  color: #FAD848;
}
.drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #FFFBF0;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  padding: 110px 1.5rem 1.5rem;
  text-align: center;
}
.hero-logo svg {
  width: 340px;
  height: auto;
}
@media (min-width: 640px) {
  .hero-logo svg { width: 380px; }
}
@media (min-width: 900px) {
  .hero-logo svg { width: 440px; }
}

/* ── Page hero (interior pages) ── */
.page-hero {
  padding: 90px 1.5rem 0;
  text-align: center;
}
.page-hero .hero-logo svg {
  width: 340px;
}
@media (min-width: 640px) {
  .page-hero .hero-logo svg { width: 380px; }
}
@media (min-width: 900px) {
  .page-hero .hero-logo svg { width: 440px; }
}
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 700;
  color: #2C1208;
  text-transform: lowercase;
  line-height: 1.05;
  margin-top: 1.25rem;
}

/* ── Typography ── */
.big-line {
  font-family: 'Lora', serif;
  font-size: clamp(3.2rem, 11vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  color: #2C1208;
}
.big-line.accent {
  color: #E89010;
}
.class-time {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(2rem, 7vw, 3rem);
  color: #2C1208;
  margin: 0.25rem 0 1rem;
}
.label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #C97B2E;
  display: block;
  margin-bottom: 1rem;
  white-space: nowrap;
}
.schedule-days {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #7A4020;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.offering-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7A4020;
  margin-top: 0.5rem;
}
.taught-by {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: #7A4020;
  margin-bottom: 1.25rem;
}
.taught-by a {
  color: #C97B2E;
  font-weight: 700;
  text-decoration: none;
}
.taught-by a:hover {
  text-decoration: underline;
}
.free-tag {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #E89010;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.drop-tag {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #7A4020;
  margin-bottom: 1.25rem;
}
.pricing {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: #7A4020;
  margin-top: 0.75rem;
}

/* ── Card ── */
.card {
  background: rgba(255,251,240,0.78);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(44,18,8,0.10);
  padding: 2rem 1.75rem;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn-reserve {
  background: #E89010;
  color: #FFFBF0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-reserve:hover {
  background: #CC4012;
}
.btn-outline {
  background: transparent;
  border: 2px solid #FFFBF0;
  color: #FFFBF0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(255,251,240,0.15);
}

/* ── Quote Band ── */
.quote-band {
  padding: 1.5rem 2rem;
  text-align: center;
}
.quote-band blockquote,
.quote-band-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  color: #FFFBF0;
}
.quote-band .attribution,
.quote-band-attr {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,251,240,0.75);
  margin-top: 0.75rem;
}

/* ── Class Blocks ── */
.class-blocks {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
}
.class-block {
  flex: 1 1 340px;
  background: rgba(255,251,240,0.78);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(44,18,8,0.10);
  padding: 2rem 1.75rem;
}

/* ── Pillar Grid ── */
.pillar-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.pillar-card {
  flex: 1 1 260px;
  background: rgba(255,251,240,0.78);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(44,18,8,0.10);
  padding: 2rem 1.75rem;
  min-height: 140px;
}
.pillar-name {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2C1208;
  margin-bottom: 0.5rem;
}
.pillar-sub {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #7A4020;
}

/* ── Section wrappers ── */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section.wide {
  max-width: 960px;
}

/* ── Mission value cards ── */
/* ── Mission page ── */
.mission-statement {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-style: italic;
  color: #C97B2E;
  line-height: 1.7;
  text-align: center;
  margin: 1rem auto 2rem;
  max-width: 580px;
}
.mission-values {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
/* ── Page card (single large frosted card) ── */
.page-card {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 2rem 1.75rem 2.5rem;
  background: rgba(255,251,240,0.82);
  backdrop-filter: blur(8px);
  border-radius: 20px;
}

.core-values-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44,18,8,0.45);
  margin-bottom: 1.5rem;
}

.value-name {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  font-weight: 700;
  color: #C97B2E;
  margin-bottom: 0.35rem;
}
.value-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: #7A4020;
  margin-bottom: 1rem;
}
.value-body {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 400;
  color: #4A2010;
  line-height: 1.7;
}
.value-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: #2C1208;
  border-left: 3px solid #E89010;
  padding-left: 1rem;
  margin: 1.25rem 0 0.5rem;
}
.value-attribution {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #C97B2E;
  padding-left: 1rem;
}

/* ── About Ashtanga page ── */
.about-body {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4A2010;
  margin-bottom: 1.1rem;
}
.tristhana-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.tristhana-item {
  text-align: center;
  background: rgba(232,150,10,0.1);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  min-width: 80px;
}
.tristhana-sanskrit {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2C1208;
  margin-bottom: 0.2rem;
}
.tristhana-english {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97B2E;
}

/* ── Photo placeholder ── */
.photo-placeholder {
  background: linear-gradient(135deg, #FEE8A0, #F5C040);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A4020;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.photo-placeholder::after {
  content: attr(data-label) ' — photo coming soon';
  opacity: 0.5;
}

/* ── Philosophy quotes ── */
.philosophy-quotes {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.phil-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,251,240,0.9);
  padding: 1.5rem 0;
  text-align: center;
}
hr.phil-divider {
  border: none;
  border-top: 1px solid rgba(255,251,240,0.2);
  margin: 0;
}

/* ── Offerings / section heading ── */
.section-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 5.5vw, 2.8rem);
  font-weight: 700;
  color: #2C1208;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.section-heading::before,
.section-heading::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: currentColor;
  opacity: 0.25;
  border-radius: 1px;
}
.section-heading.light {
  color: #FFFBF0;
  text-shadow: 0 1px 10px rgba(44,18,8,0.35);
}

/* ── Reviews ── */
.reviews-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.review-card {
  flex: 1 1 240px;
  background: rgba(255,251,240,0.78);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 16px rgba(44,18,8,0.08);
}
.review-stars {
  color: #E89010;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 0.6rem;
}
.review-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #2C1208;
}

/* ── Footer ── */
.site-footer {
  background: #780808;
  color: #FFFBF0;
  text-align: center;
  padding: 3.5rem 2rem 2.5rem;
  border-top: 1px solid rgba(255,251,240,0.5);
}
.footer-brand {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: #FFFBF0;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}
.footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,251,240,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FFFBF0; }
.footer-email a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,251,240,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email a:hover { color: #FFFBF0; }
.footer-social {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 1rem 0 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,251,240,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: #FFFBF0; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,251,240,0.1);
  margin: 1rem auto;
  max-width: 280px;
}
.footer-mmc {
  margin-bottom: 0.5rem;
}
.footer-mmc-name {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,251,240,0.4);
}
.footer-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,251,240,0.35);
  margin-top: 0.5rem;
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Attribute grid (2x2) ── */
.attr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 500px) {
  .attr-grid { grid-template-columns: 1fr; }
}
.attr-card {
  padding: 1.25rem;
  background: rgba(255,251,240,0.5);
  border-radius: 10px;
}
.attr-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C1208;
  margin-bottom: 0.35rem;
}
.attr-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #7A4020;
}

/* ── Booking Modal ── */
#booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(44,18,8,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#booking-modal.open {
  display: flex;
}
.modal-panel {
  background: #FFFBF0;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(44,18,8,0.35);
  overflow: hidden;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(44,18,8,0.08);
  flex-shrink: 0;
}
.modal-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C1208;
}
.modal-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C97B2E;
  margin-top: 0.25rem;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #7A4020;
  cursor: pointer;
  padding: 0 0 0 1rem;
  flex-shrink: 0;
}
.modal-body {
  overflow-y: auto;
  padding: 1.5rem;
  flex: 1;
}
.modal-progress {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.modal-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44,18,8,0.12);
  transition: background 0.2s;
}
.modal-progress-dot.active { background: #E89010; }
.modal-progress-dot.done   { background: rgba(232,144,16,0.4); }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-step-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C97B2E;
  margin-bottom: 1.25rem;
}
.class-select-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.class-option-card {
  border: 2px solid rgba(44,18,8,0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.class-option-card:hover   { border-color: #E89010; background: rgba(232,144,16,0.05); }
.class-option-card.selected { border-color: #E89010; background: rgba(232,144,16,0.08); }
.class-option-name {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2C1208;
  margin-bottom: 0.25rem;
}
.class-option-time {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: #7A4020;
  margin-bottom: 0.2rem;
}
.class-option-price {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  color: #C97B2E;
  font-weight: 600;
}
.date-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.date-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(44,18,8,0.1);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.date-btn:hover   { border-color: #E89010; background: rgba(232,144,16,0.05); }
.date-btn.selected { border-color: #E89010; background: rgba(232,144,16,0.08); }
.date-btn-name {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2C1208;
}
.date-btn-time {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: #7A4020;
  margin-top: 0.15rem;
}
.modal-field {
  margin-bottom: 1rem;
}
.modal-field label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A4020;
  margin-bottom: 0.4rem;
}
.modal-field input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(44,18,8,0.15);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #2C1208;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.modal-field input:focus { border-color: #E89010; }
.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}
.btn-next {
  background: #E89010;
  color: #FFFBF0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-next:hover    { background: #CC4012; }
.btn-next:disabled { background: rgba(44,18,8,0.15); color: rgba(44,18,8,0.35); cursor: not-allowed; }
.btn-back {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  color: #7A4020;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.btn-back:hover { color: #2C1208; }
.btn-gold {
  background: #E89010;
  color: #FFFBF0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-gold:hover { background: #CC4012; }
.waiver-scroll {
  background: rgba(44,18,8,0.03);
  border: 1px solid rgba(44,18,8,0.08);
  border-radius: 8px;
  padding: 1rem;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 1rem;
}
.waiver-scroll h4 {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2C1208;
  margin-bottom: 0.75rem;
}
.waiver-scroll p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: #7A4020;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.waiver-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: #2C1208;
  cursor: pointer;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.waiver-check-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #E89010;
}
.waiver-info-row {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
}
.waiver-info-label {
  font-weight: 700;
  color: #7A4020;
  min-width: 3.5rem;
  flex-shrink: 0;
}
.waiver-text {
  background: rgba(44,18,8,0.03);
  border: 1px solid rgba(44,18,8,0.08);
  border-radius: 8px;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: #7A4020;
  line-height: 1.6;
}
.waiver-agree-field {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: #2C1208;
  cursor: pointer;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.waiver-agree-field input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #E89010;
}
.waiver-agree-field label { cursor: pointer; }
.modal-status {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  min-height: 1.2em;
  margin-bottom: 0.25rem;
}
.modal-status.error { color: #CC4012; }
.modal-status.success { color: #2C8040; }
.modal-spinner {
  border: 3px solid rgba(44,18,8,0.1);
  border-top-color: #E89010;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.confirm-icon {
  font-size: 2.5rem;
  color: #E89010;
  text-align: center;
  margin-bottom: 0.75rem;
}
.confirm-heading {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C1208;
  text-align: center;
  margin-bottom: 1rem;
}
.confirm-body {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: #7A4020;
  line-height: 1.7;
  text-align: center;
}

/* ── Hero card ── */
.hero-card {
  background: rgba(255,251,240,0.72);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(44,18,8,0.10);
  padding: 1.75rem 2rem 2rem;
  max-width: 360px;
  margin: 0 auto;
}

/* ── Tagline ── */
.hero-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A4020;
  margin: 1.25rem 0 0.6rem;
}
.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #7A4020;
  max-width: 300px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
