/* ============================================================
   AyaWaken - aya-waken.co
   Design language: "Sacred Nocturne"
   A warm, candlelit canvas. Full-bleed ceremony/community/lineage
   photography carries the emotion; type is classical and reverent;
   every section is art-directed, not stamped from one template.
   Palette in OKLCH. Ember (candlelight) + clay + Shipibo jewel-tones
   on deep warm near-black. Warmth lives in imagery + accent, never
   in a beige body wash.
   ============================================================ */

:root {
  /* Core surfaces - warm near-black, candlelit */
  --void:        oklch(0.17 0.016 52);   /* base background */
  --void-2:      oklch(0.21 0.020 50);   /* lifted panel */
  --night:       oklch(0.25 0.022 48);   /* card / raised */
  --hairline:    oklch(0.32 0.020 50);   /* borders on dark */

  /* Warm light surface (used sparingly, deliberately - NOT a cream wash) */
  --stone:       oklch(0.94 0.010 70);   /* rare light section */
  --stone-ink:   oklch(0.26 0.020 50);

  /* Ink on dark */
  --bone:        oklch(0.95 0.012 75);   /* primary text on dark */
  --haze:        oklch(0.78 0.018 68);   /* secondary text on dark */
  --dim:         oklch(0.64 0.016 65);   /* tertiary / captions */

  /* Accents */
  --ember:       oklch(0.76 0.145 63);   /* candlelight amber - primary */
  --ember-lo:    oklch(0.70 0.150 55);   /* deeper ember */
  --ember-glow:  oklch(0.82 0.120 70);   /* highlight / stars */
  --clay:        oklch(0.60 0.135 38);   /* terracotta */
  --jade:        oklch(0.66 0.075 168);  /* muted Shipibo teal - rare accent */
  --magenta:     oklch(0.58 0.150 5);    /* Shipibo textile red - rare accent */

  /* Type */
  --display: 'EB Garamond', 'Iowan Old Style', Georgia, serif;
  --body: 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --max: 1200px;
  --measure: 66ch;
  --pad: clamp(20px, 5vw, 40px);

  /* z-scale */
  --z-sticky: 100;
  --z-header: 200;
  --z-mobilecta: 300;
  --z-nav: 400;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);         /* ease-out-quint */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
h1, h2, h3, .field, .check-row, fieldset, #thank-you, section { scroll-margin-top: 88px; }

body {
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.72;
  color: var(--bone);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ember); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ember-glow); }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 500; line-height: 1.06;
  letter-spacing: -0.018em; color: var(--bone); text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 1.9rem + 4.6vw, 5.4rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.7rem); }
p  { color: var(--haze); max-width: var(--measure); text-wrap: pretty; }
strong { color: var(--bone); font-weight: 600; }

.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.narrow { max-width: 860px; }
section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.lead { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); line-height: 1.6; color: var(--haze); font-weight: 400; }
.kicker { /* used ONCE deliberately, not per-section */
  font-family: var(--display); font-style: italic; font-size: 1.2rem;
  color: var(--ember); letter-spacing: 0; text-transform: none; margin-bottom: 8px; display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  padding: 16px 34px; border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s var(--ease);
  text-align: center;
}
.btn-primary { background: var(--ember); color: oklch(0.22 0.03 50); box-shadow: 0 0 0 rgba(0,0,0,0); }
.btn-primary:hover { background: var(--ember-glow); color: oklch(0.20 0.03 50); transform: translateY(-2px); box-shadow: 0 12px 40px -12px oklch(0.76 0.145 63 / 0.6); }
.btn-ghost { background: transparent; color: var(--bone); border-color: oklch(0.95 0.012 75 / 0.35); }
.btn-ghost:hover { border-color: var(--ember); color: var(--ember-glow); background: oklch(0.95 0.012 75 / 0.05); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header);
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: oklch(0.17 0.016 52 / 0.86); backdrop-filter: blur(14px) saturate(1.2); border-bottom-color: var(--hairline); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: var(--bone); letter-spacing: 0.01em; }
.logo span { color: var(--ember); }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { color: var(--bone); font-size: 0.94rem; font-weight: 500; letter-spacing: 0.01em; opacity: 0.82; transition: opacity 0.2s, color 0.2s; }
.nav a:hover, .nav a.active { opacity: 1; color: var(--ember-glow); }
.nav .btn { padding: 11px 24px; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--bone); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Lean funnel header: logo + phone + single CTA (no site nav) */
.header-actions { display: flex; align-items: center; gap: 22px; }
.header-phone { color: var(--bone); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em; opacity: 0.9; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.header-phone:hover { color: var(--ember-glow); opacity: 1; }
.header-phone svg { width: 17px; height: 17px; flex-shrink: 0; }
.header-actions .btn { padding: 11px 24px; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 640px) {
  .header-actions { gap: 14px; }
  .header-phone .phone-label { display: none; }   /* icon-only on small screens */
  .header-phone svg { width: 21px; height: 21px; }
  .header-actions .btn { padding: 10px 18px; font-size: 0.85rem; }
  .logo { font-size: 1.45rem; }
}

/* ---------- Hero (cinematic, full-bleed) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 120px 0 clamp(48px, 8vh, 96px); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 22s var(--ease) forwards; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, oklch(0.17 0.016 52 / 0.35) 0%, oklch(0.17 0.016 52 / 0.15) 35%, oklch(0.17 0.016 52 / 0.85) 100%),
    radial-gradient(120% 80% at 20% 100%, oklch(0.17 0.016 52 / 0.7), transparent 60%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 { max-width: 15ch; color: var(--bone); text-shadow: 0 2px 40px oklch(0.15 0.02 50 / 0.5); }
.hero .lead { color: var(--bone); max-width: 44ch; margin: 24px 0 34px; opacity: 0.92; }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--haze); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 42px; background: linear-gradient(var(--ember), transparent); animation: pulse 2.4s ease-in-out infinite; }

@keyframes kenburns { to { transform: scale(1); } }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Interior page header ---------- */
.page-header { position: relative; min-height: 60vh; display: flex; align-items: flex-end; padding: 140px 0 64px; overflow: hidden; }
.page-header__media { position: absolute; inset: 0; z-index: 0; }
.page-header__media img { width: 100%; height: 100%; object-fit: cover; }
.page-header::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, oklch(0.17 0.016 52 / 0.5), oklch(0.17 0.016 52 / 0.88)); }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--bone); }
.page-header .lead { color: var(--bone); opacity: 0.9; margin-top: 16px; max-width: 52ch; }

/* ---------- Trust strip ---------- */
.trust-bar { background: var(--void-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 20px 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--haze); font-size: 0.9rem; font-weight: 500; }
.trust-item .tick { color: var(--ember); font-size: 1.05rem; }
.trust-item .stars { color: var(--ember-glow); letter-spacing: 2px; }
a.trust-item:hover { color: var(--bone); }

/* ---------- Immersive full-bleed band (art-directed section) ---------- */
.immersive { min-height: 82vh; display: flex; align-items: center; padding: clamp(80px,12vh,160px) 0; overflow: hidden; }
.immersive__media { position: absolute; inset: 0; z-index: 0; }
.immersive__media img { width: 100%; height: 100%; object-fit: cover; }
.immersive::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.immersive--left::after { background: linear-gradient(90deg, oklch(0.16 0.016 52 / 0.96) 0%, oklch(0.16 0.016 52 / 0.86) 44%, oklch(0.16 0.016 52 / 0.46) 100%); }
.immersive--right::after { background: linear-gradient(270deg, oklch(0.16 0.016 52 / 0.96) 0%, oklch(0.16 0.016 52 / 0.86) 44%, oklch(0.16 0.016 52 / 0.46) 100%); }
.immersive--center::after { background: oklch(0.16 0.016 52 / 0.72); }
.immersive .container { position: relative; z-index: 2; }
.immersive__copy { max-width: 46ch; }
.immersive--right .immersive__copy { margin-left: auto; }
.immersive--center .immersive__copy { margin: 0 auto; text-align: center; max-width: 52ch; }
.immersive p { color: var(--bone); opacity: 0.9; }

/* ---------- Feature (text + bleeding image) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.feature--flip .feature__text { order: 2; }
.feature__media { position: relative; }
.feature__media img { width: 100%; height: 100%; max-height: 620px; object-fit: cover; border-radius: 6px; }
.feature__media figcaption { position: absolute; bottom: 14px; left: 14px; right: 14px; font-size: 0.82rem; color: var(--bone); background: oklch(0.16 0.016 52 / 0.7); backdrop-filter: blur(6px); padding: 8px 12px; border-radius: 4px; }
.feature__text p + p { margin-top: 16px; }
.feature__text .btn-row { margin-top: 28px; }

/* ---------- Journey (real ordered sequence - numbers earned) ---------- */
.journey { display: grid; gap: 0; }
.journey__step { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,4vw,48px); padding: clamp(28px,4vw,44px) 0; border-top: 1px solid var(--hairline); align-items: baseline; }
.journey__step:last-child { border-bottom: 1px solid var(--hairline); }
.journey__num { font-family: var(--display); font-size: clamp(2.4rem,2rem+2vw,3.6rem); color: var(--ember); line-height: 1; font-weight: 500; font-feature-settings: "lnum"; }
.journey__step h3 { margin-bottom: 8px; }
.journey__step p { max-width: 60ch; }

/* ---------- Gallery mosaic (let the photos sell it) ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(140px, 20vw, 220px); gap: 12px; }
.mosaic figure { position: relative; overflow: hidden; border-radius: 4px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 14px; font-size: 0.86rem; line-height: 1.4; color: var(--bone); background: linear-gradient(transparent, oklch(0.14 0.02 50 / 0.92)); opacity: 0; transition: opacity 0.4s var(--ease); }
.mosaic figure:hover figcaption { opacity: 1; }
/* Captioned variant: captions always visible so they teach "what to expect" (also correct for touch, which has no hover) */
.mosaic--captioned figcaption { opacity: 1; }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

/* ---------- Pull-quote / testimonial over dark ---------- */
.quote-band { position: relative; padding: clamp(80px,12vh,150px) 0; overflow: hidden; text-align: center; }
.quote-band__media { position: absolute; inset: 0; z-index: 0; }
.quote-band__media img { width: 100%; height: 100%; object-fit: cover; }
.quote-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: oklch(0.15 0.02 50 / 0.82); }
.quote-band .container { position: relative; z-index: 2; }
.quote-band blockquote { font-family: var(--display); font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem); line-height: 1.3; color: var(--bone); max-width: 22ch; margin: 0 auto; font-style: italic; }
.quote-band cite { display: block; margin-top: 22px; font-family: var(--body); font-style: normal; font-size: 0.95rem; color: var(--ember-glow); letter-spacing: 0.02em; }

/* Testimonial trio */
.aggregate { text-align: center; margin-bottom: 44px; }
.aggregate .stars { color: var(--ember-glow); letter-spacing: 4px; font-size: 1.3rem; }
.aggregate p { margin: 8px auto 0; color: var(--bone); font-weight: 500; }
.tgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; }
.testimonial { background: var(--void-2); border: 1px solid var(--hairline); border-radius: 6px; padding: 30px 28px; }
.testimonial--lead { grid-column: 1 / -1; border: 0; background: transparent; text-align: center; padding: 4px 0 12px; }
.testimonial--lead .stars { font-size: 1.15rem; }
.testimonial--lead blockquote { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.2rem); line-height: 1.36; max-width: 26ch; margin: 6px auto 16px; }
.testimonial .stars { color: var(--ember-glow); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { font-family: var(--display); font-size: 1.24rem; line-height: 1.45; color: var(--bone); font-style: italic; margin-bottom: 16px; }
.testimonial cite { font-style: normal; font-size: 0.88rem; color: var(--dim); }

/* ---------- Values ---------- */
.values { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.value-pill { border: 1px solid var(--hairline); border-radius: 999px; padding: 10px 24px; font-family: var(--display); font-size: 1.15rem; color: var(--bone); font-style: italic; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--haze); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 16px; height: 2px; background: var(--ember); }

/* ---------- Cards (used only where a card is the right affordance) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.card { background: var(--void-2); border: 1px solid var(--hairline); border-radius: 6px; padding: 30px 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--haze); }
.photo-card { border-radius: 6px; overflow: hidden; background: var(--void-2); border: 1px solid var(--hairline); }
.photo-card img { height: 240px; width: 100%; object-fit: cover; }
.photo-card .pc-body { padding: 22px 24px; }
/* Portraits of people: taller, top-biased so faces and headdresses are never clipped */
.photo-card--person img { height: 360px; object-position: center 18%; }
@media (max-width: 640px) { .photo-card--person img { height: 320px; } }

/* ---------- Schedule ---------- */
.schedule { width: 100%; border-collapse: collapse; }
.schedule th { text-align: left; padding: 14px 18px; font-family: var(--body); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); border-bottom: 1px solid var(--hairline); }
.schedule td { padding: 18px; border-bottom: 1px solid var(--hairline); color: var(--bone); font-size: 1.05rem; }
.schedule tr:hover td { background: oklch(0.95 0.012 75 / 0.03); }
.schedule .place { font-family: var(--display); font-size: 1.2rem; }
.status { display: inline-block; padding: 5px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em; }
.status-open { background: oklch(0.66 0.075 168 / 0.16); color: oklch(0.78 0.08 168); border: 1px solid oklch(0.66 0.075 168 / 0.3); }
.status-limited { background: oklch(0.76 0.145 63 / 0.16); color: var(--ember-glow); border: 1px solid oklch(0.76 0.145 63 / 0.3); }
.status-full { background: oklch(0.5 0.02 50 / 0.3); color: var(--dim); border: 1px solid var(--hairline); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-family: var(--display); font-weight: 500; color: var(--bone); font-size: 1.25rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--body); font-size: 1.6rem; color: var(--ember); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 4px 24px; }
.faq-item .faq-body p { color: var(--haze); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(90px,14vh,170px) 0; overflow: hidden; text-align: center; }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: oklch(0.15 0.02 50 / 0.78); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--bone); }
.cta-band p { color: var(--bone); opacity: 0.9; margin: 18px auto 32px; max-width: 52ch; }

/* ---------- Forms ---------- */
.form-card { background: var(--void-2); border: 1px solid var(--hairline); border-radius: 8px; padding: clamp(24px, 4vw, 44px); }
.field { margin-bottom: 24px; }
.field > label, fieldset > legend { display: block; font-weight: 600; font-size: 0.98rem; margin-bottom: 9px; color: var(--bone); }
.field .hint { font-size: 0.86rem; color: var(--dim); margin-top: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"],
.field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--hairline); border-radius: 5px;
  font-family: var(--body); font-size: 1rem; color: var(--bone); background: var(--void);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px oklch(0.76 0.145 63 / 0.18); }
.field textarea { min-height: 120px; resize: vertical; }
.check-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.check-row input[type="checkbox"], .check-row input[type="radio"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--ember); flex-shrink: 0; }
.check-row label { color: var(--haze); }
.form-section-title { font-family: var(--display); font-size: 1.6rem; color: var(--bone); margin: 42px 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.required-star { color: var(--ember); }

/* ---------- Footer ---------- */
.site-footer { background: oklch(0.14 0.015 50); border-top: 1px solid var(--hairline); padding: 72px 0 36px; }
.site-footer p, .site-footer a { color: var(--haze); font-size: 0.92rem; }
.site-footer .logo { color: var(--bone); margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.site-footer h4 { color: var(--bone); font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 600; }
.site-footer nav a { display: block; margin-bottom: 10px; }
.site-footer nav a:hover { color: var(--ember-glow); }
.footer-values { margin: 16px 0; color: var(--ember-glow); font-family: var(--display); font-style: italic; font-size: 1.05rem; }
.footer-lean { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; margin-bottom: 44px; align-items: start; }
.footer-eligibility h4 { color: var(--bone); font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; font-weight: 600; }
@media (max-width: 900px) { .footer-lean { grid-template-columns: 1fr; gap: 28px; } }
.footer-disclaimer { border-top: 1px solid var(--hairline); padding-top: 26px; font-size: 0.84rem; color: var(--dim); }
.footer-disclaimer p { color: var(--dim); max-width: none; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobilecta); background: oklch(0.17 0.016 52 / 0.94); backdrop-filter: blur(12px); border-top: 1px solid var(--hairline); padding: 12px 16px; }
.mobile-cta .btn { width: 100%; }

/* ---------- Shipibo kene - the visionary thread flowing across the site ---------- */
.kene-divider {
  height: 46px; border: 0;
  background: url('../images/kene-band.svg') repeat-x left center;
  background-size: 173px 46px; opacity: 0.5;
}
.js .kene-divider { animation: keneflow 22s linear infinite; }
@keyframes keneflow { to { background-position: 173px 0; } }

.kene-veil {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url('../images/kene-tile.svg') repeat center; background-size: 220px 220px;
  opacity: 0.06;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 100% at 50% 50%, #000 30%, transparent 78%);
}
.has-veil > .container { position: relative; z-index: 1; }

/* Visionary aurora - slow multi-hue glow (Shipibo textile jewel tones) */
.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora::before, .aurora::after {
  content: ""; position: absolute; width: 65vw; height: 65vw; max-width: 720px; max-height: 720px;
  border-radius: 50%; filter: blur(90px); opacity: 0.28;
}
.aurora::before { background: radial-gradient(circle, var(--magenta), transparent 68%); top: -25%; left: -12%; }
.aurora::after  { background: radial-gradient(circle, var(--jade), transparent 68%); bottom: -30%; right: -12%; }
.js .aurora::before { animation: drift1 26s var(--ease) infinite alternate; }
.js .aurora::after  { animation: drift2 32s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(22%, 16%) scale(1.22); } }
@keyframes drift2 { to { transform: translate(-16%, -12%) scale(1.18); } }
.has-aurora > .container { position: relative; z-index: 1; }

/* Hero kene glaze - a faint pattern breathing over the ceremony image */
.hero__glaze {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: url('../images/kene-tile.svg') repeat center; background-size: 260px 260px;
  opacity: 0.05; mix-blend-mode: screen;
}

/* ---------- Scroll reveal (enhances an already-visible default) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__text { order: 0; }
  .feature__media img { max-height: 420px; }
  .tgrid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic .wide { grid-column: span 2; }
  .mosaic .tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav {
    position: fixed; inset: 80px 0 auto 0; z-index: var(--z-nav);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: oklch(0.17 0.016 52 / 0.98); backdrop-filter: blur(16px);
    padding: 20px var(--pad) 28px; border-bottom: 1px solid var(--hairline);
    transform: translateY(-115%); transition: transform 0.35s var(--ease); max-height: calc(100svh - 80px); overflow-y: auto;
  }
  .nav a { padding: 12px 4px; opacity: 1; font-size: 1.05rem; }
  .nav.open { transform: translateY(0); }
  .nav .btn { margin-top: 10px; }
  .nav-toggle { display: block; }
  .mobile-cta { display: block; }
  body { padding-bottom: 74px; }
  .journey__step { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 480px) {
  .schedule th { padding: 10px 12px; font-size: 0.68rem; }
  .schedule td { padding: 13px 12px; font-size: 0.95rem; }
  .schedule .place { font-size: 1.05rem; }
  .status { padding: 4px 11px; font-size: 0.74rem; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .wide, .mosaic .tall { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__media img { transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
