/* ============================================================
   Homepage v2 — Amany Suleiman
   Three colour directions, switched on <html data-palette>.
   Every text pairing was contrast-computed before it was used.
   Rules that fall out of the arithmetic:
     - a filled button carries --btn-ink on --btn-bg, and those two are
       chosen per palette (sage and blue take a light label on a dark fill,
       brown takes a charcoal label on her light-wood fill at 7.16:1)
     - --accent-soft is decorative only; it never carries a word on light
     - hairlines that separate controls use --hairline (>=3:1);
       --hairline-faint is decorative and never the only thing defining a shape
   Scoped to this page only. styles.css is untouched, so every other page
   on this site renders exactly as it does today.
   ============================================================ */

/* ---------- SAGE — her existing sage, unchanged, on the lighter cream ----------
   She asked on 15 Aug to lighten the sage. Moving the ground to chalk would have
   forced it darker to hold 4.5:1; keeping her cream lets #65774F stand at 4.63:1. */
:root,
:root[data-palette="sage"] {
  --ground:      #FAF9F6;
  --surface:     #FFFFFE;
  --ink:         #26231F;
  --ink-soft:    #6B6457;   /* 5.56:1 */
  --hairline:    #818D75;   /* 3.11:1 UI */
  --hairline-faint: #DCD8CC;
  --accent:      #65774F;   /* 4.63:1 as text on ground */
  --accent-deep: #4F5C3E;   /* 6.80:1 */
  --accent-soft: #99A88B;   /* decorative only */
  --btn-bg:      #65774F;
  --btn-ink:     #FAF9F6;   /* 4.63:1 */
  --band:        #26231F;
  --band-ink:    #FAF9F6;
  --band-accent: #99A88B;   /* 6.20:1 on band */
  --grade-light: rgba(153,168,139,.20);
}

/* ---------- DUSTY BLUE — her own swatches, her chalk ground ---------- */
:root[data-palette="blue"] {
  --ground:      #F4F1EC;   /* her chalk */
  --surface:     #FAFAF8;
  --ink:         #1D1D1F;   /* her near-black */
  --ink-soft:    #616162;   /* 5.49:1 */
  --hairline:    #758CA0;   /* 3.10:1 UI */
  --hairline-faint: #D9D6CE;
  --accent:      #586D81;   /* her #5C7286 darkened 4%; hers alone is 4.43 = fail */
  --accent-deep: #4A5B6B;   /* 6.21:1 */
  --accent-soft: #7B93A8;   /* her dusty blue, decorative only */
  --btn-bg:      #586D81;
  --btn-ink:     #F4F1EC;   /* 4.76:1 */
  --band:        #1D1D1F;
  --band-ink:    #F4F1EC;
  --band-accent: #7B93A8;   /* 5.27:1 on band, the one place it is legal as text */
  --grade-light: rgba(123,147,168,.22);
}

/* ---------- LIGHT BROWN — the colour she asked for MORE of on 15 Aug ----------
   Her light-wood button fill carries a charcoal label at 7.16:1, which is the
   button she already approved. Links and eyebrows take a deeper brown, because
   the light wood only reaches 2.08:1 as text and can never carry a word. */
:root[data-palette="brown"] {
  --ground:      #FAF9F6;
  --surface:     #FFFFFE;
  --ink:         #26231F;
  --ink-soft:    #6B6457;   /* 5.56:1 */
  --hairline:    #A5875F;   /* 3.20:1 UI */
  --hairline-faint: #E2DACB;
  --accent:      #836841;   /* 4.96:1 as text on ground */
  --accent-deep: #6F5636;   /* 6.52:1 */
  --accent-soft: #C9AB7E;   /* her light wood, decorative + button fill only */
  --btn-bg:      #C9AB7E;
  --btn-ink:     #26231F;   /* 7.16:1 */
  --band:        #26231F;
  --band-ink:    #FAF9F6;
  --band-accent: #D8C3A5;   /* 9.14:1 on band */
  --grade-light: rgba(201,171,126,.22);
}

:root {
  --serif: "Fraunces", "Iowan Old Style", Charter, Georgia, "Times New Roman", serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --t-display: clamp(2.15rem, 5.6vw + 0.4rem, 5rem);
  --t-h2:      clamp(1.75rem, 2.6vw + 0.6rem, 3rem);
  --t-h3:      clamp(1.25rem, 1vw + 0.9rem, 1.75rem);
  --t-lead:    clamp(1.15rem, 0.7vw + 0.9rem, 1.45rem);
  --t-body:    clamp(1.0625rem, 0.25vw + 0.95rem, 1.1875rem);
  --t-label:   0.75rem;

  /* density 2 = airy, per the brief's own prescription */
  --space-section: clamp(5rem, 10vw, 11rem);
  --container: 1180px;
  --narrow: 720px;
  --measure: 68ch;

  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --chrome: 7.5rem;   /* sticky preview bar + header, for scroll offsets */
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--chrome); }
[id] { scroll-margin-top: var(--chrome); }
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.section--band :focus-visible { outline-color: var(--band-accent); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); position: relative; }
.container.narrow { max-width: var(--narrow); }
.section { padding-block: var(--space-section); position: relative; }
.section--surface { background: var(--surface); }
.section--band { background: var(--band); color: var(--band-ink); }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--band); color: var(--band-ink);
  padding: .7rem 1.1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 100;
}
.skip:focus { left: 0; }
main:focus { outline: none; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; color: inherit; text-wrap: balance; }
.display { font-size: var(--t-display); line-height: 1.04; letter-spacing: -0.03em; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.01em; }
p { max-width: var(--measure); text-wrap: pretty; }
.lead { font-size: var(--t-lead); line-height: 1.55; color: var(--ink-soft); }
.section--band .lead { color: rgba(250,249,246,.82); }
.muted { color: var(--ink-soft); font-size: .95rem; }
.eyebrow {
  font-family: var(--mono); font-size: var(--t-label); text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .65; }
.section--band .eyebrow { color: var(--band-accent); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .9rem; }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); }
.section--band .section-head p { color: rgba(250,249,246,.8); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 500; font-size: 1rem;
  padding: .95rem 1.6rem; border-radius: var(--r-pill);
  transition: transform .35s var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn--primary { background: var(--btn-bg); color: var(--btn-ink); }
.btn--primary:hover { background: var(--accent-deep); color: var(--ground); transform: translateY(-2px); }
:root[data-palette="brown"] .btn--primary:hover { color: var(--ground); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--on-band { background: var(--band-ink); color: var(--band); }
.btn--on-band:hover { transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.06rem; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.text-link {
  color: var(--accent); font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  padding-bottom: 1px;
}
.text-link:hover { border-bottom-color: currentColor; }
.section--band .text-link { color: var(--band-accent); border-bottom-color: color-mix(in srgb, var(--band-accent) 50%, transparent); }

/* ---------- studio preview bar (not part of the design) ---------- */
.preview-bar {
  position: sticky; top: 0; z-index: 60;
  background: var(--band); color: var(--band-ink);
  font-family: var(--mono); font-size: .7rem; letter-spacing: .04em;
}
.preview-bar .inner {
  max-width: var(--container); margin-inline: auto; padding: .5rem clamp(1rem, 4vw, 2rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.1rem;
}
.preview-bar .tag { text-transform: uppercase; color: var(--band-accent); }
.preview-bar .grp { display: flex; align-items: center; gap: .35rem; }
.preview-bar .grp > span { opacity: .68; text-transform: uppercase; }
.preview-bar button {
  font-family: inherit; font-size: inherit; padding: .35rem .65rem; border-radius: var(--r-pill);
  border: 1px solid rgba(250,249,246,.4); color: rgba(250,249,246,.88); min-height: 24px;
}
.preview-bar button[aria-pressed="true"] { background: var(--band-ink); color: var(--band); border-color: var(--band-ink); }
.preview-bar a { color: var(--band-accent); border-bottom: 1px solid currentColor; padding-block: .2rem; }
.preview-bar .spacer { flex: 1 1 auto; }
@media (max-width: 900px) {
  .preview-bar .spacer { display: none; }
  .preview-bar .inner {
    flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-x: contain;
    scrollbar-width: none; gap: .4rem .75rem;
  }
  .preview-bar .inner::-webkit-scrollbar { display: none; }
  .preview-bar .inner > * { flex: 0 0 auto; }
  .preview-bar { font-size: .66rem; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 97%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
  .site-header { background: var(--ground); }
}
.site-header.scrolled { border-bottom-color: var(--hairline-faint); }
.preview-bar + .site-header { top: var(--bar-h, 2.35rem); }
.nav { display: flex; align-items: center; gap: 1.5rem; padding-block: 1.05rem; }
.brand { padding-block: .25rem; }
.brand .name { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; letter-spacing: -0.01em; display: block; }
.brand .sub { font-family: var(--mono); font-size: .58rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: .12rem; }
.nav-links { display: flex; gap: 1.35rem; margin-left: auto; font-size: .95rem; }
.nav-links a { color: var(--ink-soft); transition: color .25s ease; padding-block: .35rem; }
.nav-links a:hover { color: var(--accent); }
.nav-cta .btn { padding: .7rem 1.25rem; font-size: .92rem; }
.nav-toggle {
  display: none; font-family: var(--mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .14em; margin-left: auto; padding: .6rem .7rem; margin-right: -.7rem; min-height: 44px;
}
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--ground);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.3rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.1rem; text-align: center; font-family: var(--serif); font-size: 1.7rem; }
.mobile-menu .close {
  position: absolute; top: 1.1rem; right: 1.1rem; font-family: var(--mono);
  font-size: .74rem; text-transform: uppercase; letter-spacing: .14em;
  padding: .7rem .8rem; min-height: 44px;
}

/* ---------- 1 · hero — the wide banner she approved ---------- */
.hero-banner {
  position: relative; width: 100%; aspect-ratio: 21 / 9; min-height: 320px; max-height: 74vh;
  overflow: hidden; background: var(--band);
}
.hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% 26%; }
.hero-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--grade-light), transparent 55%);
}
/* the empty state, so the alternative is a real thing she can look at */
.hero-placeholder {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: .8rem;
  background: var(--band); color: var(--band-ink); text-align: center; padding: 1.5rem;
}
.hero-placeholder .mark { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 5vw, 3.4rem); }
.hero-placeholder .note { font-family: var(--mono); font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--band-accent); }
:root[data-photo="frame"] .hero-placeholder { display: none; }
:root[data-photo="none"] .hero-banner img,
:root[data-photo="none"] .hero-banner::after { display: none; }
/* the provenance note sits BELOW the image, where it can wrap and cannot be clipped */
.hero-credit {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); text-align: center; padding: .8rem 1.25rem 0; max-width: 62ch;
  margin-inline: auto; line-height: 1.6;
}
:root[data-photo="none"] .hero-credit { display: none; }
.hero-copy { max-width: 860px; margin-inline: auto; text-align: center; padding-block: clamp(2.6rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.hero-copy .lead { margin: 1.4rem auto 0; }
.hero-copy .btn-row { justify-content: center; margin-top: 2.2rem; }
.badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.5rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: .45rem .9rem;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- 2 · statement band ---------- */
.statement { text-align: center; }
.statement .line { font-size: clamp(2rem, 4.6vw + .5rem, 3.9rem); line-height: 1.08; max-width: 20ch; margin-inline: auto; }
.statement .line em { font-style: italic; color: var(--band-accent); }
.statement .support { color: rgba(250,249,246,.86); max-width: 56ch; margin: 1.7rem auto 0; }
.statement .eyebrow { margin-bottom: 1.2rem; }
.statement .as-welcome { display: none; }
:root[data-band="welcome"] .statement .as-approved { display: none; }
:root[data-band="welcome"] .statement .as-welcome { display: block; }
.statement .stamp {
  display: inline-block; margin-top: 1.9rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--band-accent); border: 1px solid color-mix(in srgb, var(--band-accent) 55%, transparent);
  border-radius: var(--r-pill); padding: .45rem 1rem;
}

/* ---------- 3 · the stuck piece ---------- */
.stuck h2 { max-width: 26ch; margin-inline: auto; }

/* ---------- 4 · talks ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.video-card { display: flex; flex-direction: column; }
.video-thumb {
  position: relative; display: block; width: 100%; padding: 0; overflow: hidden;
  border-radius: var(--r-md); background: var(--band); aspect-ratio: 16 / 9;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .4s ease; opacity: .94; }
.video-thumb:hover img { transform: scale(1.04); opacity: 1; }
.video-play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%;
  background: rgba(250,249,246,.94); display: grid; place-items: center; transition: transform .35s var(--ease);
}
.video-play::after { content: ""; width: 0; height: 0; margin-left: 3px; border-left: 14px solid #26231F; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
.video-thumb:hover .video-play { transform: scale(1.08); }
.video-embed { aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; background: var(--band); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-meta { padding-top: 1.05rem; }
.video-meta h3 { font-size: 1.2rem; }
.video-meta p { font-size: .95rem; color: var(--ink-soft); margin-top: .45rem; }

/* ---------- 5 · where she has spoken ---------- */
.spoken { display: grid; gap: clamp(1.8rem, 4vw, 3rem); }
@media (min-width: 900px) { .spoken { grid-template-columns: 1fr 1fr; align-items: start; } }
.org-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.org-list li {
  font-family: var(--serif); font-size: 1.02rem;
  border: 1px solid color-mix(in srgb, var(--band-accent) 48%, transparent);
  border-radius: var(--r-pill); padding: .4rem .95rem; color: var(--band-ink);
}
.also { margin-top: 2rem; display: grid; gap: .7rem; }
.also p { color: rgba(250,249,246,.82); font-size: 1rem; }
.also strong { color: var(--band-ink); font-weight: 500; }

/* ---------- 6 · the path, folded into the pricing section ---------- */
.path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline-faint); border: 1px solid var(--hairline-faint); border-radius: var(--r-md); overflow: hidden; }
@media (max-width: 860px) { .path { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .path { grid-template-columns: 1fr; } }
.step { background: var(--ground); padding: clamp(1.2rem, 2.2vw, 1.7rem); }
.step b { font-family: var(--mono); font-size: .68rem; letter-spacing: .15em; color: var(--accent); display: block; margin-bottom: .7rem; }
.step h3 { font-size: 1.18rem; }
.step p { font-size: .95rem; color: var(--ink-soft); margin-top: .45rem; }
.path-note { margin-top: 1.5rem; font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--ink-soft); }
.path-lead { margin-bottom: clamp(2.4rem, 5vw, 4rem); }

/* ---------- 7 · packages ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; }
/* the card is defined by its fill, not by a hairline: inside a --surface section
   the card takes --ground, so the shape reads without relying on a 1.3:1 border */
.card {
  background: var(--ground); border: 1px solid var(--hairline-faint); border-left: 3px solid var(--accent);
  border-radius: var(--r-md); padding: clamp(1.4rem, 2.6vw, 2rem);
  display: flex; flex-direction: column; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-3px); }
.card.is-soon { border-left-color: var(--accent-soft); }
.card .tag { font-family: var(--mono); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); }
.card h3 { margin-top: .55rem; }
.card .blurb { font-size: .97rem; color: var(--ink-soft); margin-top: .7rem; }
.card .price { font-family: var(--serif); font-size: 1.9rem; margin-top: 1.2rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.card .price .per { font-family: var(--sans); font-size: .92rem; color: var(--ink-soft); letter-spacing: 0; }
.card .price-note { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; }
.card .availability { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); }
.card .availability .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-soft); }
.card .foot { margin-top: auto; padding-top: 1.4rem; }
.who {
  margin-top: 1.6rem; max-width: 60ch; color: var(--ink-soft); font-size: 1rem;
  border-left: 2px solid var(--hairline); padding-left: 1rem;
}
.pricing-cta { margin-top: clamp(2.4rem, 4vw, 3.4rem); text-align: center; }
.pricing-cta .muted { margin: 1.1rem auto 0; }
.trust-line { margin: 1.9rem auto 0; text-align: center; font-size: .97rem; color: var(--ink-soft); }

/* ---------- 8 · the reserved client-story slot ---------- */
.story { max-width: 52ch; margin-inline: auto; text-align: center; }
.ph-flag {
  display: inline-block; font-family: var(--mono); font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-soft);
  border: 1px dashed var(--hairline); border-radius: var(--r-pill); padding: .45rem 1rem;
}
.story p { margin: 1.3rem auto 0; color: var(--ink-soft); }

/* ---------- 9 · closer ---------- */
.cta-band { text-align: center; }
.cta-band .reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem 1.6rem; margin-top: 2rem; font-family: var(--mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(250,249,246,.82); }
.cta-band .reassure span { display: inline-flex; align-items: center; gap: .5rem; }
.cta-band .reassure .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--band-accent); }
.disclaimer { margin: 2.6rem auto 0; max-width: 62ch; font-size: .9rem; color: rgba(250,249,246,.76); }

/* ---------- footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--hairline-faint); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 2.2rem; }
.footer-brand .name { font-family: var(--serif); font-size: 1.15rem; display: block; }
.footer-brand p { margin-top: .7rem; font-size: .95rem; color: var(--ink-soft); max-width: 34ch; }
.footer-social { display: flex; gap: .4rem; margin-top: 1.1rem; }
.footer-social a { color: var(--ink-soft); transition: color .25s ease; padding: .5rem; display: inline-flex; }
.footer-social a:hover { color: var(--accent); }
.site-footer h4 { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.site-footer ul { margin-top: .9rem; display: grid; gap: .5rem; font-size: .95rem; }
.site-footer ul a { padding-block: .2rem; display: inline-block; }
.site-footer ul a:hover { color: var(--accent); }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--hairline-faint); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .88rem; color: var(--ink-soft); }

/* sticky mobile booking bar */
.book-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none; padding: .7rem clamp(1rem, 4vw, 2rem); background: var(--ground); border-top: 1px solid var(--hairline); }
.book-bar .btn { width: 100%; justify-content: center; }
@media (max-width: 940px) { .book-bar { display: block; } body { padding-bottom: 5.5rem; } }

/* ---------- motion — hidden only when JS can restore it ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .09s; }
.js .reveal[data-delay="2"] { transition-delay: .18s; }
.js .reveal[data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
