/* ============================================================
   A COUPLE OF KEYS — site stylesheet
   Old-Hollywood glaze: deep walnut, aged plaster, peacock tile.
   Bold grotesque type, gallery spacing, subtle motion.
   ============================================================ */

:root {
  --bg: #1d1712;          /* deep walnut */
  --bg-2: #251d16;        /* raised panel */
  --card: #2b2219;        /* cards */
  --sand: #ece3d3;        /* primary text — aged plaster */
  --sand-dim: #a4988a;    /* secondary text */
  --accent: #2f7d6d;      /* peacock tile glaze */
  --accent-soft: #8fcabb; /* pale aqua glaze */
  --line: rgba(236, 227, 211, 0.16);
  --line-soft: rgba(236, 227, 211, 0.09);
  --font-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }
/* offset anchor targets so the sticky header doesn't cover them */
[id] { scroll-margin-top: clamp(84px, 11vh, 110px); }

body {
  background: var(--bg);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.8vw, 4.9rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.18; letter-spacing: 0; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--sand-dim);
  max-width: 42em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
}

.gold { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }
.gold:hover { color: var(--accent); }
em.accent { font-style: italic; color: var(--accent-soft); }

/* ---------- Layout ---------- */

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

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
/* sits directly under a page hero, so no extra top padding */
.section-flush-top { padding-top: clamp(2rem, 4vw, 3rem); }
.section-panel { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 780px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1em 2em;
  border-radius: 100px;
  border: 1.5px solid var(--sand);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sand);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--sand);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(236, 227, 211, 0.45);
  color: var(--sand);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.15em 2.4em; font-size: 0.95rem; }

/* Buttons on accent/CTA bands */
.on-dark .btn-primary,
.cta-band .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--sand); }
.on-dark .btn-primary:hover,
.cta-band .btn-primary:hover { background: var(--sand); border-color: var(--sand); color: var(--bg); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(29, 23, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.brand .amp { color: inherit; font-style: normal; }
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-dim);
}
@media (max-width: 640px) { .brand-sub { display: none; } }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sand-dim);
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--sand); }
.nav-links a[aria-current="page"] { color: var(--accent-soft); }
.nav-links .btn { padding: 0.7em 1.5em; font-size: 0.78rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--sand);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(29, 23, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 1.3rem; }
  .nav-links .btn { font-size: 0.95rem; padding: 1em 2.2em; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate; /* keeps the -z hero image above this element's background */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8.5rem 0 0;
  overflow: hidden;
  background:
    radial-gradient(55% 45% at 82% 12%, rgba(47, 125, 109, 0.14) 0%, transparent 70%),
    radial-gradient(40% 35% at 10% 85%, rgba(47, 125, 109, 0.07) 0%, transparent 70%),
    var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}
.hero-media::after {
  /* melts the bright photo into the espresso theme:
     solid at the base (text sits there), dark strip up top (nav legibility) */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(29, 23, 18, 0.35) 0%, rgba(29, 23, 18, 0.06) 50%, rgba(29, 23, 18, 0.02) 100%),
    linear-gradient(to top,
      #1d1712 7%,
      rgba(29, 23, 18, 0.9) 22%,
      rgba(29, 23, 18, 0.38) 42%,
      rgba(29, 23, 18, 0.05) 62%,
      rgba(29, 23, 18, 0.45) 100%);
}

/* Landscape screens: slightly tighter headline + stronger lower gradient so
   the text zone falls over the piano, not the faces */
@media (orientation: landscape) {
  .hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
  /* lift the faces above the text block — headline sits below them, not over */
  .hero-media img, .hero-media video { object-position: 50% 85%; }
  .hero-media::after {
    background:
      linear-gradient(105deg, rgba(29, 23, 18, 0.5) 0%, rgba(29, 23, 18, 0.12) 55%, rgba(29, 23, 18, 0.04) 100%),
      linear-gradient(to top,
        #1d1712 8%,
        rgba(29, 23, 18, 0.93) 26%,
        rgba(29, 23, 18, 0.62) 46%,
        rgba(29, 23, 18, 0.12) 68%,
        rgba(29, 23, 18, 0.5) 100%);
  }
}

/* Portrait screens: the landscape photo becomes a top vignette that fades
   into espresso, and the headline sits below it — no text over faces */
@media (orientation: portrait) {
  .hero-media { bottom: auto; height: 58svh; }
  .hero-media img, .hero-media video { object-position: 50% 30%; }
  .hero-media::after {
    background:
      linear-gradient(to top,
        #1d1712 2%,
        rgba(29, 23, 18, 0.72) 16%,
        rgba(29, 23, 18, 0.12) 42%,
        rgba(29, 23, 18, 0.05) 72%,
        rgba(29, 23, 18, 0.5) 100%);
  }
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.ratio-4x5 { aspect-ratio: 4 / 5; }
.photo-frame.ratio-3x4 { aspect-ratio: 3 / 4; }
.photo-frame.ratio-16x9 { aspect-ratio: 16 / 9; }
.photo-frame.ratio-square { aspect-ratio: 1; }

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.4rem;
}

.hero h1 { max-width: 13.5em; }
.hero h1 .accent-word { color: var(--accent-soft); font-style: italic; }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent-soft);
  margin-top: 0.9rem;
}
.hero-tagline em { font-style: normal; color: var(--sand); }
.hero-tagline em { font-style: italic; }

.hero .lede { margin-top: 1.4rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero-note {
  display: inline-block;
  margin-top: 2.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dim);
  border: 1.5px dashed var(--line);
  border-radius: 100px;
  padding: 0.55em 1.3em;
}

/* Marquee ribbon at hero base */
.marquee {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 1.2em;
}
.marquee .dot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  padding: 0;
  margin: 0;
  letter-spacing: 0;
  border-radius: 50%;
  background: rgba(29, 23, 18, 0.45);
  vertical-align: middle;
  position: relative;
  top: -0.07em;
  color: transparent;
  overflow: hidden;
  line-height: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Custom in-theme video player ---------- */
.vplayer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0a08;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}
.vplayer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0d0a08;
  cursor: pointer;
}
/* big center play / pause-state overlay */
.vp-big {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  background: radial-gradient(60% 60% at 50% 50%, rgba(29, 23, 18, 0.25), rgba(29, 23, 18, 0.5));
  transition: opacity 0.3s ease;
}
.vplayer.playing .vp-big { opacity: 0; pointer-events: none; }
.vp-big-btn {
  width: clamp(58px, 9vw, 78px);
  height: clamp(58px, 9vw, 78px);
  border-radius: 50%;
  background: rgba(47, 125, 109, 0.88);
  border: 1.5px solid var(--accent-soft);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}
.vp-big:hover .vp-big-btn { transform: scale(1.08); background: var(--accent); }
.vp-big-btn svg { width: 40%; height: 40%; margin-left: 8%; }
/* control bar */
.vp-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(13, 10, 8, 0.9), rgba(13, 10, 8, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.vplayer:hover .vp-controls,
.vplayer:not(.playing) .vp-controls,
.vplayer:focus-within .vp-controls {
  opacity: 1;
  transform: translateY(0);
}
.vp-btn {
  background: none;
  border: none;
  color: var(--sand);
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease;
}
.vp-btn:hover { color: var(--accent-soft); }
.vp-btn svg { width: 19px; height: 19px; display: block; }
.vp-btn .vp-icon-pause, .vplayer.playing .vp-btn .vp-icon-play { display: none; }
.vplayer.playing .vp-btn .vp-icon-pause { display: block; }
.vp-btn .vp-icon-muted, .vplayer.muted .vp-btn .vp-icon-vol { display: none; }
.vplayer.muted .vp-btn .vp-icon-muted { display: block; }
.vp-time {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.vp-time .vp-dur { color: var(--sand-dim); }
/* scrub bar */
.vp-seek {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent-soft) 0%, rgba(236, 227, 211, 0.22) 0%);
  cursor: pointer;
  outline: none;
}
.vp-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  border: 2px solid var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.vp-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.vp-seek::-moz-range-track { height: 5px; border-radius: 999px; background: transparent; }
/* caption under each player */
.vp-caption {
  margin-top: 0.85rem;
  font-family: var(--font-body);
}
.vp-caption .vp-song {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.01em;
}
.vp-caption .vp-meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-top: 0.3rem;
}

/* ---------- Capabilities: icon-forward cards, bio on hover ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cap-grid { grid-template-columns: 1fr; } }

.cap-card {
  position: relative;
  aspect-ratio: 4 / 4.4;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  padding: 1.5rem 1.1rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.cap-card:hover,
.cap-card:focus-visible { border-color: var(--accent); transform: translateY(-3px); }

/* icon fills the top ~75% of the card */
.cap-badge {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.cap-badge svg {
  width: clamp(58px, 46%, 96px);
  height: auto;
  aspect-ratio: 1;
  padding: 18%;
  box-sizing: content-box;
  border-radius: 26%;
  background: rgba(47, 125, 109, 0.15);
  border: 1px solid rgba(143, 202, 187, 0.26);
  color: var(--accent-soft);
}
.cap-card:hover .cap-badge,
.cap-card:focus-visible .cap-badge { opacity: 0.12; transform: scale(0.94); }

.cap-card h3 {
  flex: 0 0 auto;
  margin: 0;
  text-align: center;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.2;
  color: var(--sand);
  transition: opacity 0.28s ease;
}
.cap-card:hover h3,
.cap-card:focus-visible h3 { opacity: 0; }

/* bio scrim, revealed on hover / focus */
.cap-bio {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1.3rem;
  background: rgba(13, 10, 8, 0.93);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.cap-card:hover .cap-bio,
.cap-card:focus-visible .cap-bio,
.cap-card:focus-within .cap-bio { opacity: 1; visibility: visible; }
.cap-bio p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--sand);
}

/* ---------- Budget: themed money input ---------- */
.money-input {
  position: relative;
  display: flex;
  align-items: stretch;
}
.money-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-soft);
  background: rgba(47, 125, 109, 0.16);
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.money-input input {
  flex: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.money-input:focus-within .money-sign {
  border-color: var(--accent-soft);
  background: rgba(47, 125, 109, 0.28);
}

/* ---------- Booking form: error state ---------- */
.form-error { display: none; }
.form-error.visible { display: block; }
.form-error {
  border-color: rgba(200, 90, 70, 0.5);
  background: rgba(120, 45, 35, 0.16);
}

/* ---------- Why A Couple of Keys: elegant alternating text ---------- */
.why-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3.2rem, 7vw, 6rem);
}
.why-item { max-width: 33em; }
.why-item.why-left { margin-right: auto; text-align: left; }
.why-item.why-right { margin-left: auto; text-align: right; }

/* hairline accent above each heading */
.why-item::before {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--accent-soft);
  opacity: 0.75;
  margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}
.why-item.why-right::before { margin-left: auto; }

.why-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--sand);
}
.why-item p {
  margin-top: clamp(0.8rem, 1.4vw, 1.1rem);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.75;
  color: var(--sand-dim);
}

/* stack left-aligned on small screens */
@media (max-width: 720px) {
  .why-item,
  .why-item.why-right { margin: 0; text-align: left; max-width: none; }
  .why-item.why-right::before { margin-left: 0; }
}

.hero-scroll { display: none; }

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.stat {
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  font-weight: 600;
  white-space: nowrap; /* keeps all four stats on one shared line */
  color: var(--accent-soft);
  line-height: 1.15;
}
.stat > span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-dim);
}
.stat b .num { font-variant-numeric: tabular-nums; }
.stat > span a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.stat > span a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(47, 125, 109, 0.5); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--sand-dim); font-size: 0.95rem; }

.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(47, 125, 109, 0.12);
  border: 1px solid rgba(47, 125, 109, 0.35);
  color: var(--accent-soft);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

/* ---------- Show formats ---------- */

.format {
  padding: 2.6rem 0;
  border-top: 1px solid var(--line);
}
/* the page hero already provides a divider, so don't double it up */
.format:first-of-type { border-top: none; padding-top: 0; }
.format h3 { margin-bottom: 0.7rem; color: var(--accent-soft); }
.format p { max-width: 48em; color: var(--sand-dim); }
.format:last-of-type { border-bottom: 1px solid var(--line); }
.format-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding-top: 0.5rem;
}
.format h3 { margin-bottom: 0.7rem; }
.format p { color: var(--sand-dim); max-width: 46em; }
.format .best-for {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--sand);
}
.format .best-for b { color: var(--accent-soft); font-weight: 800; letter-spacing: 0.08em; font-size: 0.7rem; text-transform: uppercase; margin-right: 0.6em; }
@media (max-width: 700px) {
  .format { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* ---------- Media placeholders ---------- */

.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(150deg, #312619 0%, #241c15 55%, #2f251c 100%);
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(47, 125, 109, 0.07) 46%, transparent 52%),
    linear-gradient(115deg, transparent 60%, rgba(236, 227, 211, 0.04) 64%, transparent 70%);
}
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x5 { aspect-ratio: 4 / 5; }
.ph-3x4 { aspect-ratio: 3 / 4; }
.ph-9x16 { aspect-ratio: 9 / 16; }
.ph-square { aspect-ratio: 1; }

/* Embedded video (YouTube/Vimeo iframe or <video>) */
.video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Post carousel (TikTok embeds) ---------- */

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.carousel-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 1rem;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.carousel-track:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Every slide renders as an identical dark tile; the platform embed sits
   inside it, top-aligned, with any ragged bottom chrome cropped away.
   (The embeds themselves are TikTok/Instagram iframes — their inner colors
   can't be restyled from outside, but the frames can match the theme.) */
.carousel .slide {
  position: relative;
  flex: 0 0 clamp(290px, 72vw, 342px);
  scroll-snap-align: center;
  height: clamp(600px, 150vw, 690px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
}

/* PICTURE-FRAME MATTE over each embed. The frame is an opaque walnut
   border with a window cut out where the video plays — the platforms'
   white chrome (headers, captions, buttons) sits hidden behind the matte.
   It's a child of the scrolling card, so it moves at exactly the video's
   rate — welded, not synced. pointer-events: none keeps the visible video
   fully tappable. */
.carousel .slide { padding: 0; }
.carousel .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-style: solid;
  border-color: var(--card);
  border-width: 10px 10px 128px 10px; /* deep bottom matte, gallery-mount style */
  border-radius: var(--radius);
  /* Thin aqua line hugging each thumbnail. */
  box-shadow: inset 0 0 0 1.5px rgba(143, 202, 187, 0.9);
}
/* Post stats on the matte, between video and platform placard */
.carousel .slide-stats {
  position: absolute;
  bottom: 60px;
  left: 8px;
  right: 8px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  row-gap: 0.15em;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}
.carousel .slide-stats span { position: relative; }
.carousel .slide-stats span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.55em;
  color: rgba(143, 202, 187, 0.55);
}
.carousel .slide-stats span:last-child::after { content: ""; margin: 0; }
/* Platform placard, centered on the bottom matte like an engraved plate */
.carousel .slide::before {
  content: attr(data-platform);
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(143, 202, 187, 0.4);
  border-radius: 100px;
  padding: 0.55em 1.3em;
}
/* Tile cover: the post's still image, filling the frame window */
.carousel .tile-cover {
  position: absolute;
  inset: 10px 10px 128px 10px;
  width: calc(100% - 20px);
  height: calc(100% - 138px);
  object-fit: cover; /* fill the frame so the border hugs the image, no matte gap */
  object-position: 50% 50%; /* full height kept — view count stays visible; trims sides only */
  background: var(--card);
  border-radius: 6px;
  z-index: 1;
  transition: transform 0.5s var(--ease);
}
.carousel .slide:hover .tile-cover { transform: scale(1.03); }

/* Typographic title card (used when no still image is available) */
.carousel .tile-title {
  position: absolute;
  inset: 10px 10px 128px 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.12;
  color: var(--sand);
  background:
    radial-gradient(85% 60% at 50% 28%, rgba(47, 125, 109, 0.32) 0%, transparent 70%),
    linear-gradient(160deg, #2b2219 0%, #1d1712 55%, #241c15 100%);
}
.carousel .tile-title em {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  font-weight: 600;
  font-size: 0.62em;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}

/* Play badge, centered on the window */
.carousel .tile-play {
  position: absolute;
  left: 50%;
  top: calc((100% - 118px) / 2);
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 23, 18, 0.55);
  border: 1.5px solid var(--sand);
  color: var(--sand);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.carousel .slide:hover .tile-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.carousel .tile-play svg { width: 20px; height: 20px; margin-left: 3px; }
@media (min-width: 641px) {
  .carousel .slide { height: 690px; }
}

.carousel-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: transparent;
  color: var(--sand);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--sand); transform: scale(1.06); }
@media (max-width: 640px) {
  .carousel-btn { display: none; } /* swipe on touch screens */
}

.ph-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem 1.4rem;
  max-width: 90%;
}
.ph-label .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1.5px dashed rgba(47, 125, 109, 0.55);
  border-radius: 100px;
  padding: 0.45em 1.1em;
  margin-bottom: 0.7rem;
  background: rgba(29, 23, 18, 0.6);
}
.ph-label p { font-size: 0.8rem; color: var(--sand-dim); line-height: 1.45; }

.play-badge {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(236, 227, 211, 0.06);
  border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--sand);
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.ph:hover .play-badge { transform: scale(1.08); background: var(--accent); border-color: var(--accent); color: var(--sand); }
.play-badge svg { width: 22px; height: 22px; margin-left: 3px; }

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent-soft);
  font-style: italic;
}
.testimonial blockquote {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--sand);
  flex: 1;
}
.testimonial .attribution { font-size: 0.85rem; color: var(--sand-dim); }
.testimonial .attribution b { color: var(--accent-soft); display: block; font-size: 0.9rem; }

/* ---------- Logo strip ---------- */

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.logo-slot {
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dim);
  text-align: center;
  padding: 0.8rem;
  background: var(--bg-2);
}
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .logo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Duo cards ---------- */

.duo-card { display: flex; flex-direction: column; }
.duo-card .ph, .duo-card .photo-frame { margin-bottom: 1.6rem; }
.duo-card .role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}
.duo-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; }
.duo-card p { color: var(--sand-dim); }
.duo-card .textlink { margin-top: 1.1rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.textlink:hover { gap: 0.85em; color: var(--accent); }

/* ---------- Bio blocks (About page) ---------- */

.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}
.bio.flip { grid-template-columns: 1.15fr 0.85fr; }
.bio.flip .bio-media { order: 2; }
.bio h3 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 0.4rem; }
.bio .role { font-family: var(--font-body); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-soft); }
.bio p { color: var(--sand-dim); margin-top: 1.1rem; }
.bio .credits { margin-top: 1.6rem; padding-left: 0; list-style: none; }
.bio .credits li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sand);
  border-bottom: 1px solid var(--line-soft);
}
.bio .credits li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 860px) {
  .bio, .bio.flip { grid-template-columns: 1fr; }
  .bio.flip .bio-media { order: 0; }
  .bio-media { max-width: 440px; }
}

/* ---------- Gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery .tall { grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* Curated photo grid — explicit sizes; two featured shots run large */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 0.9rem;
}
.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.photo-grid figure:hover img { transform: scale(1.04); }
.pg-a { grid-column: span 4;  grid-row: span 3; } /* Carmen — portrait */
.pg-b { grid-column: span 8;  grid-row: span 3; } /* USC grad — landscape */
.pg-c { grid-column: span 12; grid-row: span 5; } /* studio duo — FEATURED */
.pg-d { grid-column: span 12; grid-row: span 5; } /* Nico — FEATURED */
.pg-e { grid-column: span 4;  grid-row: span 3; } /* hands — small */
.pg-f { grid-column: span 8;  grid-row: span 3; } /* duo wide */
@media (max-width: 760px) {
  .photo-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 96px; }
  .pg-a, .pg-e { grid-column: span 3; grid-row: span 3; }
  .pg-b, .pg-f { grid-column: span 3; grid-row: span 3; }
  .pg-c, .pg-d { grid-column: span 6; grid-row: span 3; }
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(47, 125, 109, 0.2) 0%, transparent 70%),
    #171108;
  color: var(--sand);
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.cta-band .eyebrow { color: var(--accent-soft); }
.cta-band h2 { max-width: 15em; margin: 0 auto; }
.cta-band .lede { margin: 1.3rem auto 0; color: var(--sand-dim); }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .contact-line { margin-top: 2.2rem; font-size: 0.95rem; color: var(--sand-dim); }
.cta-band .contact-line a { color: var(--sand); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */

.site-footer {
  background: #171108;
  color: var(--sand-dim);
  border-top: 1px solid var(--line-soft);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a:hover { color: var(--accent-soft); }
.footer-brand .brand { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--sand); }
.footer-brand p { max-width: 26em; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Booking form ---------- */

.form-intro { margin-bottom: 2.5rem; }

.booking-layout { grid-template-columns: 1.5fr 1fr; align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }

.form-section { margin-bottom: 2.8rem; }
.form-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.4rem;
}
.form-section-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.field label .req { color: var(--accent-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9em 1.1em;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fcabb' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1em center;
  padding-right: 2.8em;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 125, 109, 0.2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.78rem; color: var(--sand-dim); margin-top: 0.4rem; }

.radio-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  position: relative;
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6em 1.3em;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  color: var(--sand-dim);
  background: var(--card);
  transition: all 0.25s;
}
.chip input:checked + span {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--bg);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(47, 125, 109, 0.35); }

.form-note {
  background: rgba(47, 125, 109, 0.08);
  border: 1.5px solid rgba(47, 125, 109, 0.3);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  font-size: 0.9rem;
  color: var(--sand-dim);
  margin-top: 2rem;
}
.form-note b { color: var(--accent-soft); }

.form-success {
  display: none;
  background: rgba(47, 125, 109, 0.1);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--accent-soft); margin-bottom: 0.6rem; }

/* ---------- FAQ ---------- */

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0;
  transition: color 0.25s;
}
.faq-item summary:hover { color: var(--accent-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--accent-soft);
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 1.7rem;
  color: var(--sand-dim);
  max-width: 46em;
}

/* ---------- Sticky mobile CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(29, 23, 18, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
}
.mobile-cta .btn { width: 100%; }
@media (max-width: 760px) {
  body:not(.no-mobile-cta) .mobile-cta { display: block; }
  body:not(.no-mobile-cta) .site-footer { padding-bottom: 7rem; }
}

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  padding: clamp(9rem, 18vh, 12rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(80% 120% at 70% 0%, rgba(47, 125, 109, 0.1) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { max-width: 14em; }
.page-hero .lede { margin-top: 1.3rem; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .textlink { transition: none; }
  .marquee-track { animation: none; }
}

/* ---------- Utilities ---------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }

.divider-note {
  font-size: 0.78rem;
  color: var(--sand-dim);
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  margin-top: 1.4rem;
  background: var(--bg-2);
}
.divider-note b { color: var(--accent-soft); }
