/* ---------- self-hosted fonts (no third-party requests) ---------- */
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:400;font-display:swap;src:url('/assets/fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('/assets/fonts/inter-latin-300-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2');}

/* ==========================================================================
   Aanandam by Saryu — stylesheet
   Palette taken from the brand logo: ivory, gold, forest green, warm wood.
   ========================================================================== */

:root {
  --ivory:        #FBF6EC;
  --ivory-deep:   #F4EADA;
  --cream-card:   #FFFDF9;
  --gold:         #B08A3E;
  --gold-light:   #D4B172;
  --gold-soft:    rgba(176, 138, 62, 0.14);
  --green:        #1E3A2B;
  --green-mid:    #2F5540;
  --green-soft:   rgba(30, 58, 43, 0.08);
  --wood:         #8A5A32;
  --ink:          #22201C;
  --ink-soft:     #55504A;
  --ink-faint:    #857E74;
  --line:         rgba(34, 32, 28, 0.12);
  --white:        #ffffff;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow-sm: 0 2px 12px rgba(34, 32, 28, 0.06);
  --shadow-md: 0 12px 40px rgba(34, 32, 28, 0.10);
  --shadow-lg: 0 24px 70px rgba(34, 32, 28, 0.16);

  --nav-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); }
.rule {
  width: 54px; height: 1px; background: var(--gold);
  margin: 26px 0; opacity: 0.75;
}
.rule.center { margin-inline: auto; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 128px); }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }
.section--cream { background: var(--ivory-deep); }
.section--green { background: var(--green); }
.section--green h2, .section--green h3 { color: var(--ivory); }
.section--green p { color: rgba(251, 246, 236, 0.78); }
.section--green .eyebrow { color: var(--gold-light); }
.section--green .rule { background: var(--gold-light); }
.center { text-align: center; }
.center p { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-size: 0.79rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 6px 20px rgba(176,138,62,.28); }
.btn--primary:hover { background: #9C7833; box-shadow: 0 10px 28px rgba(176,138,62,.38); }
.btn--ghost { border: 1px solid rgba(255,255,255,.6); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: #fff; }
.btn--sm { padding: 11px 22px; font-size: 0.7rem; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .35s ease, box-shadow .35s ease, height .35s ease;
}
.nav__inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: baseline; gap: 10px; line-height: 1; }
.nav__mark {
  font-family: var(--serif); font-size: 1.42rem; font-weight: 600;
  letter-spacing: 0.06em; color: #fff; transition: color .35s ease;
}
.nav__sub {
  font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,.7); transition: color .35s ease;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.86); position: relative; padding-block: 6px;
  transition: color .3s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-light); transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }
@media (min-width: 1000px) { .nav__cta { display: inline-flex; } }

.nav.is-solid {
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(34,32,28,.05);
  height: 66px;
}
.nav.is-solid .nav__mark { color: var(--green); }
.nav.is-solid .nav__sub { color: var(--gold); }
.nav.is-solid .nav__links a { color: var(--ink); }
.nav.is-solid .nav__burger span { background: var(--green); }

.nav__burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; align-items: center;
}
.nav__burger span {
  display: block; width: 22px; height: 1.6px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, background-color .35s ease;
}
@media (min-width: 900px) { .nav__burger { display: none; } }
@media (max-width: 899px) { .nav__links { display: none; } }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--green);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .32s ease, visibility .32s ease;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--serif); font-size: 1.9rem; color: var(--ivory);
  padding: 9px 20px; transition: color .25s ease;
}
.drawer a:hover { color: var(--gold-light); }
.drawer .btn { margin-top: 22px; }
.drawer__close {
  position: absolute; top: 22px; right: calc(var(--gutter) - 8px);
  width: 44px; height: 44px; color: var(--ivory); font-size: 1.8rem; line-height: 1;
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,24,18,.62) 0%, rgba(12,24,18,.28) 34%, rgba(12,24,18,.52) 72%, rgba(12,24,18,.82) 100%);
}
/* The hero is a column: content grows to fill, the facts strip sits under it in
   normal flow. Nothing is absolutely positioned over anything else, so the
   buttons and the strip can never collide at any viewport height. */
.hero__inner {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: calc(var(--nav-h) + 40px) 44px;
}
.hero__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 22px;
}
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255,255,255,.9); max-width: 46ch; margin-top: 24px;
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__facts {
  position: relative; z-index: 2; flex: none;
  border-top: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(12,24,18,0) 0%, rgba(12,24,18,.35) 100%);
}
.hero__facts ul {
  list-style: none; padding: 0; margin: 0;
  max-width: var(--max); margin-inline: auto; padding: 18px var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.hero__facts li {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,.85); text-align: center;
}
@media (max-width: 780px) {
  .hero__facts ul { grid-template-columns: repeat(2, 1fr); }
  .hero__facts li { font-size: 0.66rem; letter-spacing: 0.1em; }
}
/* In flow, below the buttons. Was absolutely positioned and landed on top of
   the facts strip on short viewports. */
.hero__scroll {
  position: relative; margin: 44px 0 0; flex: none;
  width: 1px; height: 46px; background: rgba(255,255,255,.4); overflow: hidden;
}
.hero__scroll::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-light);
  animation: scrollLine 2.4s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}
@media (max-width: 780px) { .hero__scroll { display: none; } }

/* ---------- split blocks ---------- */
.split {
  display: grid; gap: clamp(36px, 5vw, 76px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media { position: relative; }
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.split__media--tall img { aspect-ratio: 4 / 5; }
.split__media--wide img { aspect-ratio: 16 / 10; }
.split__media figcaption {
  margin-top: 14px; font-size: 0.86rem; font-style: italic; color: var(--ink-faint);
}
.split .split__media picture { position: relative; display: block; }
.split .split__media picture::after {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 62%; height: 62%; border: 1px solid var(--gold); opacity: .55;
  border-radius: var(--radius); z-index: -1;
}

/* ---------- amenities ---------- */
.amenities { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 2px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 560px) { .amenities { grid-template-columns: 1fr; } }
.amenities li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; font-size: 0.95rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.amenities li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--gold); }

/* ---------- cards ---------- */
.cards {
  display: grid; gap: 22px; margin-top: 52px;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
}
.card {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card__icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-soft); color: var(--gold); margin-bottom: 20px;
}
.card__icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; min-height: 2.3em; display: flex; align-items: flex-end; }
.card p { font-size: 0.94rem; margin: 0; }
.section--green .card {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14);
}
.section--green .card:hover { background: rgba(255,255,255,.09); }
.section--green .card h3 { color: var(--ivory); }
.section--green .card p { color: rgba(251,246,236,.72); }
.section--green .card__icon { background: rgba(212,177,114,.16); color: var(--gold-light); }

/* ---------- stats strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ivory); padding: 34px 20px; text-align: center; }
.section--cream .stat { background: var(--ivory-deep); }
.stat__num { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat__label {
  margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- gallery ---------- */
.gallery {
  display: grid; gap: 12px; margin-top: 54px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,24,18,.42) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.gallery figure:hover::after { opacity: 1; }
.g-a { grid-column: span 2; grid-row: span 2; }
.g-b { grid-column: span 2; grid-row: span 1; }
.g-c { grid-column: span 1; grid-row: span 1; }
.g-d { grid-column: span 1; grid-row: span 1; }
.g-e { grid-column: span 4; grid-row: span 1; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-b, .g-e { grid-column: span 2; grid-row: span 1; }
  .g-c, .g-d { grid-column: span 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12,20,16,.94); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  padding: 40px 16px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; border-radius: 3px; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff; width: 52px; height: 52px;
  display: grid; place-items: center; font-size: 1.6rem; opacity: .8;
  transition: opacity .2s ease, transform .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: 14px; right: 14px; }
.lightbox__nav--prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.72); font-size: 0.85rem; letter-spacing: .04em;
}

/* ---------- timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 52px auto 0; max-width: 760px; }
.timeline li {
  display: grid; grid-template-columns: 92px 1fr; gap: 26px;
  padding: 26px 0; border-top: 1px solid rgba(255,255,255,.14);
}
.timeline li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.timeline__when {
  font-family: var(--serif); font-size: 1.05rem; color: var(--gold-light);
  letter-spacing: .06em; padding-top: 2px;
}
.timeline__what { color: rgba(251,246,236,.8); font-size: 1rem; }
.timeline__what strong { color: var(--ivory); font-weight: 600; }
@media (max-width: 620px) {
  .timeline li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- location ---------- */
.map-embed {
  border: 0; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius);
  box-shadow: var(--shadow-md); filter: saturate(.9);
}
.distances { list-style: none; padding: 0; margin: 30px 0 0; }
.distances li {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .96rem;
}
.distances li span:last-child { color: var(--gold); font-weight: 600; white-space: nowrap; font-size: .9rem; }

/* ---------- enquiry form ---------- */
.form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600;
}
.field input, .field textarea, .field select {
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
  font-size: .96rem; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { resize: vertical; min-height: 118px; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 4px; }
.form-status {
  grid-column: 1 / -1; font-size: .9rem; padding: 12px 15px; border-radius: 2px; display: none;
}
.form-status.is-ok { display: block; background: rgba(47,85,64,.1); color: var(--green-mid); }
.form-status.is-err { display: block; background: rgba(160,60,40,.09); color: #A03C28; }

.contact-box {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 32px;
}
.contact-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: 0; }
.contact-row svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 5px; }
.contact-row strong {
  display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600; margin-bottom: 3px;
}
.contact-row a, .contact-row span { color: var(--ink); font-size: 1rem; }
.contact-row a:hover { color: var(--gold); }

/* ---------- quote band ---------- */
.quote-band {
  background: var(--green); color: var(--ivory); text-align: center;
  padding-block: clamp(64px, 8vw, 104px);
}
.quote-band p {
  font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.32; color: var(--ivory); max-width: 20ch; margin-inline: auto;
  font-weight: 500;
}
.quote-band .rule { background: var(--gold-light); }

/* ---------- footer ---------- */
.footer { background: #16281E; color: rgba(251,246,236,.62); padding-block: 64px 34px; font-size: .92rem; }
.footer__grid {
  display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.footer__mark { font-family: var(--serif); font-size: 1.6rem; color: var(--ivory); letter-spacing: .05em; }
.footer__tag { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); margin-top: 6px; }
.footer h4 {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ivory); margin-bottom: 16px; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a:hover { color: var(--gold-light); }
.footer__bottom {
  padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(251,246,236,.42);
}

/* ---------- floating whatsapp ---------- */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.4);
  transition: transform .3s ease, box-shadow .25s ease, opacity .3s ease, visibility .3s ease;
  opacity: 0; visibility: hidden; transform: scale(.72);
}
.fab.is-visible { opacity: 1; visibility: visible; transform: scale(1); }
.fab.is-visible:hover { transform: scale(1.07); box-shadow: 0 12px 34px rgba(37,211,102,.5); }
.fab svg { width: 28px; height: 28px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }

body.is-locked { overflow: hidden; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 0; position: relative;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 {
  font-family: var(--sans); font-size: 1.02rem; font-weight: 600;
  color: var(--green); margin: 0; line-height: 1.5; display: inline;
}
.faq__item summary:hover h3 { color: var(--gold); }
.faq__item summary:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px;
}
/* plus / minus */
.faq__item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 13px; height: 1.5px; background: var(--gold);
  transform: translateY(-50%);
}
.faq__item summary::before {
  content: ""; position: absolute; right: 11.75px; top: 50%;
  width: 1.5px; height: 13px; background: var(--gold);
  transform: translateY(-50%); transition: opacity .2s ease, transform .25s ease;
}
.faq__item[open] summary::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq__a { padding: 0 44px 24px 0; }
.faq__a p { font-size: .97rem; color: var(--ink-soft); margin: 0; max-width: 72ch; }
.faq__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq__a a:hover { color: var(--green); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--ivory);
  padding: 12px 20px; font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 8px; top: 8px; }
