/* ============================================
   Nrityaam — School of Bharatanatyam
   Palette: warm parchment base, rich burnt-sienna accent, deep espresso ink
   ============================================ */

:root {
  --ivory: #F7EEE0;
  --ivory-deep: #EEDDBE;
  --beige: #E4C89C;
  --terracotta: #C4622B;
  --terracotta-deep: #9C4A1E;
  --terracotta-soft: #E3A874;
  --maroon: #5A2A1C;
  --maroon-deep: #241009;
  --gold: #C9A227;
  --cream-white: #FFF9EF;
  --ink-muted: #6E5A46;
  --success: #74874C;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;

  --max-width: 1200px;
  --radius: 14px;
  --shadow-soft: 0 12px 34px rgba(36, 16, 9, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--maroon);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body.no-scroll { overflow: hidden; }

/* ===== Nataraja watermark — persistent classical page-marker =====
   Public-domain Chola bronze photo (Met Museum Open Access, no attribution
   required), duotoned to the site palette. Faded via CSS mask so it blends
   into the page instead of reading as a pasted cutout, and repeated at low
   opacity behind every major section as the "temple relief" backdrop. */
.nataraja-mark {
  position: absolute;
  top: 0;
  width: 480px;
  max-width: 55vw;
  aspect-ratio: 1377/1901;
  background-image: url("../assets/images/nataraja-duotone-web.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 40%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 65% at 50% 35%, #000 40%, transparent 78%);
  filter: saturate(1.15);
}

.nataraja-mark.right { right: -6%; }
.nataraja-mark.left { left: -6%; transform: scaleX(-1); }
.nataraja-mark.center { left: 50%; transform: translateX(-50%); opacity: 0.08; }

.on-dark .nataraja-mark { opacity: 0.16; }

@media (max-width: 760px) {
  .nataraja-mark { width: 320px; max-width: 75vw; opacity: 0.08; }
}

/* subtle natural film-grain texture over the whole page for warmth/tactility */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

#page-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta-soft), var(--terracotta), var(--gold));
  z-index: 1200;
  pointer-events: none;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.66rem, 1.15vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 14px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--ink-muted);
  max-width: 620px;
}

.section-heading.center,
.section-sub.center,
.eyebrow.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section { padding: 88px 0; position: relative; overflow: hidden; }
section > .container { position: relative; z-index: 2; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.83rem, 1.45vw, 0.95rem);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(160deg, var(--terracotta), var(--terracotta-deep));
  color: var(--cream-white);
  box-shadow: 0 10px 24px rgba(156, 74, 30, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 35%;
  height: 200%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(20deg);
  filter: blur(6px);
  pointer-events: none;
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(156, 74, 30, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
}

.btn-outline:hover { background: var(--maroon); color: var(--cream-white); }

.btn-light {
  background: var(--cream-white);
  color: var(--maroon-deep);
}

/* ===== Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 243, 233, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 42, 30, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-icon {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  min-width: 0;
}

.logo-line1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--maroon-deep);
  -webkit-text-stroke: 0.6px var(--maroon-deep);
}

.logo-line2 {
  font-family: var(--font-body);
  font-size: clamp(0.63rem, 1.1vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 500px) {
  .logo-icon { height: 30px; }
  .logo-line1 { font-size: 1.25rem; }
  .logo-line2 { font-size: 0.5rem; letter-spacing: 0.07em; }
  .nav { padding: 14px 12px; }
  .nav-right { gap: 10px; }
  .nav .book-call-trigger { padding: 10px 14px; font-size: 0.78rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  font-weight: 500;
  color: var(--maroon);
  position: relative;
}

.nav-links a:hover { color: var(--terracotta-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--maroon-deep);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory-deep);
    border-bottom: 1px solid rgba(74, 42, 30, 0.08);
    padding: 4px 24px 12px;
    box-shadow: 0 14px 24px rgba(36, 16, 9, 0.14);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(74, 42, 30, 0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.highlight {
  color: var(--terracotta);
  font-style: italic;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-tiles {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--cream-white);
  border: 1px solid rgba(36,16,9,0.1);
  border-radius: 12px;
  padding: 20px 26px;
  min-width: 110px;
  box-shadow: var(--shadow-soft);
}

.hero-tile-icon { font-size: clamp(1.1rem, 2.1vw, 1.4rem); }

.hero-tile b {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--terracotta);
}

.hero-tile span:last-child {
  font-size: clamp(0.69rem, 1.2vw, 0.78rem);
  color: var(--ink-muted);
  text-align: center;
}

/* ===== Credibility / VSL section (Meet Your Mentor) ===== */
.credibility,
.mentor {
  background: var(--ivory-deep);
}

.mentor .eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--maroon-deep);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.proof-panel {
  background: var(--cream-white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.proof-panel h4 {
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  margin-bottom: 10px;
  color: var(--terracotta-deep);
  font-family: var(--font-body);
  font-weight: 700;
}

.proof-panel p, .proof-panel li {
  color: var(--ink-muted);
  font-size: clamp(0.83rem, 1.45vw, 0.95rem);
  margin-bottom: 8px;
}

.proof-panel .qual-list { margin: 10px 0 24px 4px; }
.proof-panel .qual-list li::before { content: '✦ '; color: var(--terracotta); }

.proof-panel .block { margin-bottom: 24px; }
.proof-panel .block:last-child { margin-bottom: 0; }

/* ===== Is This Class Right For You — NOT/IS comparison ===== */
.fit-check { background: var(--maroon-deep); color: var(--ivory); }
.fit-check .section-heading,
.fit-check .eyebrow { color: var(--ivory); }

.fit-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 860px) {
  .fit-check-grid { grid-template-columns: 1fr; }
}

.fit-card {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.fit-card.not-for {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(196,98,43,0.4);
}

.fit-card.is-for {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--gold);
}

.fit-card h3 {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.75vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ivory);
}

.fit-card ul { display: flex; flex-direction: column; margin-top: 14px; }

.fit-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(250,243,233,0.75);
  font-size: clamp(0.83rem, 1.45vw, 0.95rem);
  line-height: 1.5;
}

.fit-card li:last-child { border-bottom: none; }

.check-item p { font-weight: 500; color: var(--maroon-deep); }

/* ===== Results / social proof ===== */
.testimonial-carousel-wrap {
  margin-top: 40px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--terracotta-soft); border-radius: 6px; }

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(36,16,9,0.2);
  background: var(--cream-white);
  color: var(--maroon-deep);
  cursor: pointer;
  font-size: clamp(0.85rem, 1.52vw, 1rem);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream-white);
}

.testimonial-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(36,16,9,0.8), rgba(196,98,43,0.45)),
    linear-gradient(160deg, #6b3a26, #2c160d);
  aspect-ratio: 4/5;
  position: relative;
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 560px) {
  .testimonial-card { flex-basis: 76vw; }
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.testimonial-card.has-video::after { display: none; }

.testimonial-card.has-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(36, 16, 9, 0.4);
  border: 1.5px solid rgba(255, 249, 239, 0.75);
  backdrop-filter: blur(2px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tc-play-btn:hover { background: rgba(36, 16, 9, 0.6); transform: translate(-50%, -50%) scale(1.06); }

.tc-play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--cream-white);
}

.testimonial-card.playing .tc-play-btn { display: none; }

.testimonial-card .tc-overlay {
  position: relative;
  z-index: 2;
  padding: 18px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.testimonial-card .tc-name { font-weight: 600; font-size: clamp(0.83rem, 1.45vw, 0.95rem); }
.testimonial-card .tc-loc { font-size: clamp(0.69rem, 1.2vw, 0.78rem); opacity: 0.8; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 18px;
  margin-top: 40px;
}

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: var(--cream-white);
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 4px 14px rgba(74,42,30,0.06);
  cursor: pointer;
}

.faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 0.98rem);
  color: var(--maroon-deep);
}

.faq-item .faq-toggle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--terracotta);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-muted);
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 12px;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--maroon-deep);
  color: var(--ivory);
  text-align: center;
  padding: 100px 0;
}

.final-cta .btn-primary {
  margin-top: 1cm;
}

.final-cta-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 56px;
}

.cta-line-small {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.52vw, 1rem);
  font-weight: 500;
  color: rgba(250, 243, 233, 0.72);
  letter-spacing: 0.02em;
}

.cta-line-big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--ivory);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(250,243,233,0.7);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250,243,233,0.25);
  border-radius: 50%;
  color: var(--ivory);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-instagram:hover {
  border-color: var(--terracotta-soft);
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  font-size: clamp(0.69rem, 1.2vw, 0.78rem);
}

/* ===== Persistent widgets ===== */

/* themed page scrollbar — native browser scroll mechanics, just re-skinned,
   replaces an earlier custom drag-slider that was unreliable across browsers */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--ivory-deep);
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ivory-deep); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F0D48C 0%, var(--gold) 55%, #93700F 100%);
  border-radius: 999px;
  border: 2px solid var(--ivory-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #F5DE9E 0%, #DDB53D 55%, #93700F 100%);
}

/* exit-intent instagram modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 24, 16, 0.55);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.visible { display: flex; }

.ig-modal {
  background: var(--cream-white);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  cursor: pointer;
  color: var(--ink-muted);
  background: none;
  border: none;
}

.ig-modal-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(36, 16, 9, 0.25);
}

.ig-modal h3 { margin-bottom: 8px; }
.ig-modal p { color: var(--ink-muted); margin-bottom: 22px; }

/* booking / application modal */
.booking-modal .modal-box {
  background: var(--cream-white);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  position: relative;
  overflow-y: auto;
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-progress-track {
  width: 100%;
  height: 5px;
  background: var(--ivory-deep);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.form-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--terracotta-soft), var(--terracotta));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.booking-sub {
  text-align: center;
  color: var(--ink-muted);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  margin: 0 0 24px;
}

#application-form { display: flex; flex-direction: column; gap: 16px; }

.form-step { display: flex; flex-direction: column; gap: 16px; }

.form-error {
  font-size: clamp(0.74rem, 1.3vw, 0.85rem);
  color: #a3401f;
  background: rgba(163, 64, 31, 0.08);
  border: 1px solid rgba(163, 64, 31, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 0;
}

.form-step-actions {
  display: flex;
  gap: 12px;
}

.form-step-actions .btn { flex: 1; text-align: center; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: clamp(0.72rem, 1.25vw, 0.82rem);
  font-weight: 600;
  color: var(--maroon-deep);
}

.optional-tag {
  font-weight: 400;
  color: var(--ink-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  padding: 11px 14px;
  border: 1.5px solid var(--ivory-deep);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--maroon-deep);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea { resize: vertical; }

.radio-group { display: flex; gap: 24px; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  font-weight: 500;
  color: var(--maroon-deep);
  cursor: pointer;
}

.radio-option input { accent-color: var(--terracotta); width: 17px; height: 17px; }

.conditional-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-left: 3px solid var(--terracotta-soft);
  background: var(--ivory);
  border-radius: 0 10px 10px 0;
}

.btn-block { width: 100%; text-align: center; }

.hidden { display: none !important; }

#booking-success-view {
  text-align: center;
  padding: 20px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  color: var(--cream-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 6px;
}

#booking-success-view h3 { margin: 0; }
#booking-success-view p { color: var(--ink-muted); margin-bottom: 12px; }

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
  .booking-modal .modal-box { padding: 28px 20px; }
}
