:root {
  --forest: #314c3a;
  --forest-deep: #173d31;
  --ivory: #faf7f0;
  --gold: #d5a32b;
  --gold-light: #e3bf69;
  --sage: #a8b79e;
  --sand: #e9ddc8;
  --rose: #d9a6a3;
  --ink: #183028;
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 48, 39, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
h1, h2, h3, strong, b { font-weight: 600; }
h2 { font-size: clamp(2.65rem, 5vw, 5.4rem); margin-bottom: 2rem; }
h3 { font-size: clamp(1.65rem, 2.8vw, 2.35rem); }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 99;
  background: var(--white); color: var(--forest); padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }
.site-header {
  height: 76px; padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 247, 240, .94); backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(49, 76, 58, .12);
}
.brand { text-decoration: none; font-weight: 600; letter-spacing: .22em; }
.site-header nav { display: flex; align-items: center; gap: 1.7rem; }
.site-header nav a { text-decoration: none; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-header .nav-cta { background: var(--forest); color: var(--white); padding: .7rem 1rem; }

.hero { min-height: calc(100vh - 76px); background: var(--forest-deep); color: var(--ivory); display: grid; grid-template-columns: 56% 44%; }
.hero-content { padding: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6.5rem); display: flex; flex-direction: column; justify-content: center; }
.hero-image { background: url("/assets/indira-hero.png") 62% center / cover no-repeat; min-height: 720px; position: relative; }
.hero-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest-deep), transparent 22%); }
.eyebrow { color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .24em; margin-bottom: 2rem; }
.eyebrow.dark { color: #9b7415; }
.hero h1 { font-size: clamp(4.2rem, 8vw, 8.4rem); margin-bottom: 0; }
.hero-subtitle { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; color: var(--ivory); margin-bottom: 2rem; }
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.25rem); max-width: 38rem; color: rgba(250, 247, 240, .82); }
.hero-facts { display: flex; gap: 2.5rem; border-top: 1px solid rgba(250, 247, 240, .28); border-bottom: 1px solid rgba(250, 247, 240, .28); padding: 1.3rem 0; margin: 1.2rem 0 1.6rem; }
.hero-facts div { display: grid; }
.hero-facts span, .hero-price span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); }
.hero-facts strong { font-size: .9rem; }
.hero-price { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.7rem; }
.hero-price strong { font: 600 clamp(3.6rem, 6vw, 6.2rem) / 1 "Cormorant Garamond", Georgia, serif; color: var(--gold); }
.hero-price del { color: rgba(250, 247, 240, .65); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .8rem 1.25rem; border: 1px solid transparent; text-decoration: none; font-size: .77rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--forest-deep); }
.button-ghost { border-color: rgba(250, 247, 240, .55); color: var(--ivory); }
.button-green { background: var(--forest); color: var(--white); }
.button.full { width: 100%; }

.section { padding: clamp(5rem, 10vw, 10rem) clamp(1.35rem, 8vw, 9rem); }
.section-narrow { max-width: 980px; margin: auto; padding: 2rem 1.5rem 4rem; }
.intro { text-align: center; max-width: 1320px; margin: auto; }
.intro h2 { max-width: 1120px; margin-left: auto; margin-right: auto; }
.intro-copy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.8rem; text-align: left; border-top: 1px solid rgba(49, 76, 58, .2); padding-top: 2.2rem; }
.intro-copy p { margin: 0; }
.section-green { background: var(--forest-deep); color: var(--ivory); }
.experience { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(250, 247, 240, .22); }
.feature-grid article { background: var(--forest-deep); padding: 2.2rem; }
.feature-grid article > span { color: var(--gold); font-weight: 600; letter-spacing: .1em; }
.feature-grid h3 { margin: 1rem 0 .7rem; }
.feature-grid p { color: rgba(250, 247, 240, .72); margin: 0; }

.audience { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.audience-image { position: relative; }
.audience-image::before { content: ""; position: absolute; inset: -1rem 1rem 1rem -1rem; border: 1px solid var(--gold); z-index: -1; }
.audience-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.check-list, .included-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.check-list li, .included-list li { padding: .9rem 0 .9rem 2rem; border-bottom: 1px solid rgba(49, 76, 58, .17); position: relative; }
.check-list li::before, .included-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.soft-note { background: var(--sand); padding: 1.3rem; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.35rem; }
.section-sand { background: var(--sand); }
.dates { text-align: center; }
.date-list { list-style: none; padding: 0; max-width: 1100px; margin: 3rem auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(49, 76, 58, .22); }
.date-list li { background: var(--sand); padding: 2rem 1.2rem; display: flex; gap: 1rem; align-items: center; text-align: left; }
.date-list li > span { font: 600 3.2rem/1 "Cormorant Garamond", Georgia, serif; color: var(--forest); }
.date-list div { display: grid; }
.date-list small { line-height: 1.4; opacity: .75; }
.centered-note { text-align: center; font-weight: 600; }

.testimonials { text-align: center; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
blockquote { margin: 0; padding: 2.5rem; background: var(--white); box-shadow: var(--shadow); font: 500 1.65rem/1.35 "Cormorant Garamond", Georgia, serif; }

.booking { display: grid; grid-template-columns: 1fr minmax(340px, .8fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.price-lockup { display: flex; gap: 1.5rem; align-items: center; margin: 2rem 0; }
.price-lockup > strong { font: 600 clamp(4.5rem, 8vw, 7rem)/1 "Cormorant Garamond", Georgia, serif; color: var(--gold); }
.price-lockup div { display: grid; }
.price-lockup span { font-weight: 600; }
.included-list li { border-color: rgba(250, 247, 240, .18); }
.signup-card { background: var(--ivory); color: var(--ink); padding: clamp(1.5rem, 4vw, 2.7rem); box-shadow: var(--shadow); }
.signup-card.light { background: var(--white); }
.signup-card h3 { margin-bottom: .4rem; }
.signup-card > p { color: rgba(24, 48, 40, .7); }
.signup-card label { display: grid; gap: .4rem; font-size: .78rem; font-weight: 600; margin-bottom: 1rem; }
.signup-card input:not([type="checkbox"]) { width: 100%; border: 1px solid rgba(49, 76, 58, .28); background: var(--white); padding: .82rem .9rem; border-radius: 0; color: var(--ink); }
.signup-card input:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.signup-card .addon, .signup-card .consent { display: flex; gap: .75rem; align-items: flex-start; font-weight: 400; }
.signup-card input[type="checkbox"] { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; margin-top: .18rem; accent-color: var(--forest); }
.addon { background: var(--sand); padding: 1rem; }
.addon span { display: grid; }
.addon small { margin-top: .25rem; line-height: 1.45; }
.consent a { color: var(--forest); font-weight: 600; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; }
.form-status { min-height: 1.6rem; margin: .75rem 0 0; font-size: .85rem; font-weight: 600; }
.form-status.error { color: #a12929; }
.form-status.success { color: #23623e; }
.payment-note { font-size: .72rem; text-align: center; margin: .7rem 0 0; }

.workshop { display: grid; grid-template-columns: 1fr minmax(340px, .78fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.workshop-copy { max-width: 700px; }
.workshop-date { border-left: 4px solid var(--gold); padding: .6rem 0 .6rem 1.5rem; display: grid; margin-top: 2rem; }
.workshop-date span { text-transform: uppercase; letter-spacing: .13em; font-size: .75rem; font-weight: 600; }
.workshop-date strong { font: 600 2rem/1.2 "Cormorant Garamond", Georgia, serif; }
.path { text-align: center; }
.path-intro { max-width: 720px; margin: 0 auto 3rem; }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 1050px; margin: auto; text-align: left; }
.path-grid a { background: var(--ivory); padding: 2.2rem; text-decoration: none; border-top: 4px solid var(--gold); }
.path-grid a > span { color: #9b7415; font-weight: 600; }
.path-grid h3 { margin: 1rem 0; }
.path-grid a > strong { font-size: .76rem; letter-spacing: .1em; }
.final-cta { text-align: center; }
.final-cta p:not(.eyebrow):not(.signature) { max-width: 680px; margin: 0 auto 2rem; }
.signature { margin-top: 2rem; font: 500 1.7rem "Cormorant Garamond", Georgia, serif; }
.disclaimer { font-size: .78rem; color: rgba(24, 48, 40, .7); text-align: center; }
footer { background: var(--forest-deep); color: var(--ivory); display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(1.25rem, 5vw, 5rem); font-size: .75rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.legal-page { min-height: 70vh; max-width: 900px; margin: auto; padding: 5rem 1.5rem; }
.legal-page h1 { font-size: clamp(3.2rem, 7vw, 5.5rem); }
.legal-page h2 { font-size: 2rem; margin: 2.5rem 0 .8rem; }
.placeholder { background: #fff4cf; border-left: 4px solid var(--gold); padding: 1rem; }
.status-page { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 2rem; background: var(--sand); }
.status-card { max-width: 680px; background: var(--ivory); padding: clamp(2rem, 6vw, 4rem); text-align: center; box-shadow: var(--shadow); }
.status-card h1 { font-size: clamp(3rem, 7vw, 5rem); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 58vh; order: -1; background-position: 60% center; }
  .hero-image::before { background: linear-gradient(0deg, var(--forest-deep), transparent 35%); }
  .experience, .audience, .booking, .workshop { grid-template-columns: 1fr; }
  .experience { gap: 2rem; }
  .intro-copy { grid-template-columns: 1fr; gap: .7rem; }
  .date-list { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero-content { padding-top: 3rem; padding-bottom: 4rem; }
  .hero-image { min-height: 50vh; }
  .hero-facts { flex-direction: column; gap: .7rem; }
  .hero-price { flex-wrap: wrap; }
  .button-row .button { width: 100%; }
  .feature-grid, .date-list, .path-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
