/* =============================================================
   NW Best Real Estate Video & Photography — design system v4
   - Banner-driven layout matching the live site
   - Outfit (free, replaces brandon-grotesque thin) + Inter for prose
   - True parallax (JS), generous margins, content-saturated
   ============================================================= */

:root {
  /* === REAL brand colors (matched to nwbestrealestatevideo.com) === */
  --magenta: #d3258b;
  --magenta-deep: #a91a6e;
  --magenta-tint: #fbe5f1;
  --lime: #b8d33c;
  --lime-deep: #8da72a;
  --lime-tint: #f0f7d6;
  --yellow: #ffd000;

  --paper: #ffffff;
  --soft: #fafaf6;
  --warm: #f4ede0;
  --ink: #1c1916;
  --ink-soft: #4a4742;
  --ink-mute: #807a72;
  --line: #e9e2d0;
  --line-strong: #cdc4ad;

  --shadow-sm: 0 1px 2px rgba(28,25,22,.06), 0 1px 3px rgba(28,25,22,.06);
  --shadow-md: 0 12px 28px rgba(28,25,22,.10), 0 4px 8px rgba(28,25,22,.06);
  --shadow-lg: 0 32px 80px rgba(28,25,22,.18), 0 8px 24px rgba(28,25,22,.10);

  /* type — Outfit replaces the live site's brandon-grotesque (also thin/grotesque) */
  --display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body:    "Inter",  -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* spacing */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px; --s11: 160px;

  --r-md: 12px; --r-lg: 18px; --r-xl: 28px; --r-pill: 999px;

  --maxw: 1320px;
  --maxw-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: var(--magenta); text-decoration: none; transition: color .15s; }
a:hover { color: var(--magenta-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0 0 var(--s4);
  letter-spacing: -.02em;
  line-height: 1.04;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 7.4vw, 5.6rem); font-weight: 200; letter-spacing: -.03em; }
h1 strong, h1 b { font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 200; letter-spacing: -.025em; }
h2 strong, h2 b { font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 600; letter-spacing: -.018em; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0 0 var(--s4); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: var(--s4);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.65;
  font-weight: 400;
}

.muted { color: var(--ink-soft); }

/* =============================================================
   PROMO BANNER
   ============================================================= */
.promo-bar {
  background: var(--yellow);
  color: var(--ink);
  text-align: center;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .82rem;
  padding: 10px var(--gutter);
}
.promo-bar strong { font-weight: 800; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__row {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5);
}
.brand { display: flex; align-items: center; height: 60px; }
.brand img { height: 60px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: var(--s7);
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
}
.nav__links a:hover, .nav__links a.is-on { color: var(--magenta); }
.nav__links a.is-on::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--magenta);
}
.nav__cta { display: flex; align-items: center; gap: var(--s4); }
.nav__phone {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
  letter-spacing: .02em;
}
.nav__phone:hover { color: var(--magenta); }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 10px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
@media (max-width: 1080px) {
  .nav__links, .nav__cta .btn--ghost, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
}

/* slide-over sheet */
.sheet {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,25,22,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.sheet[data-open="true"] { opacity: 1; pointer-events: auto; }
.sheet__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 88vw);
  background: var(--paper);
  padding: var(--s6) var(--gutter);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.85,.2,1);
  display: flex; flex-direction: column; gap: var(--s3);
  overflow-y: auto;
}
.sheet[data-open="true"] .sheet__panel { transform: translateX(0); }
.sheet__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s4);
}
.sheet__head .brand { height: 44px; }
.sheet__head .brand img { height: 44px; }
.sheet__close {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
}
.sheet a:not(.brand):not(.btn) {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -.015em;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 var(--s6);
  border-radius: 0;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  background: transparent;
  color: var(--ink);
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: translateY(1px); }

.btn--magenta { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.btn--magenta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--lime:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: var(--magenta); color: #fff; border-color: var(--magenta); }

.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--ink); }

.btn--lg { min-height: 64px; padding: 0 var(--s7); font-size: .88rem; }
.btn--block { width: 100%; }
.btn .arrow {
  display: inline-block;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.btn:hover .arrow { transform: translateX(6px); }

/* =============================================================
   BANNER — full-bleed photo with parallax + thin overlay text
   ============================================================= */
.banner {
  position: relative;
  width: 100%;
  height: clamp(560px, 90vh, 920px);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner--short { height: clamp(420px, 56vh, 580px); }
.banner--medium { height: clamp(480px, 70vh, 720px); }

.banner__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.banner__bg img,
.banner__bg video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 140%;            /* 40% taller than banner — gives 40% of banner-height range to translate */
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Modern: CSS scroll-driven animation (Chrome 115+, Edge 115+).
   Image starts with its top at banner top (showing the top 100/140 = 71% of the photo).
   As the banner scrolls UP through the viewport, the image translates UP, revealing
   the bottom portion. Total movement: 28% of image's own 140% height = ~40% banner height. */
@keyframes bannerParallax {
  from { transform: translate3d(0, 0%, 0); }
  to   { transform: translate3d(0, -28%, 0); }
}
@supports (animation-timeline: view()) {
  .banner__bg img,
  .banner__bg video {
    animation-name: bannerParallax;
    animation-duration: 1s;                 /* required by spec; overridden by timeline */
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: cover 0% cover 100%;
  }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.05) 65%, rgba(0,0,0,.55) 100%);
}

.banner__inner {
  width: 100%;
  padding: 0 var(--gutter);
  max-width: 1400px;
}

.banner__eyebrow {
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: var(--s5);
  display: block;
}

.banner h1, .banner h2 {
  color: #fff;
  font-weight: 200;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0 auto var(--s5);
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.banner h1 strong, .banner h2 strong { font-weight: 800; }
.banner h1 .pink, .banner h2 .pink { color: var(--magenta); }
.banner h1 .lime, .banner h2 .lime { color: var(--lime); }

.banner__sub {
  color: rgba(255,255,255,.92);
  font-family: var(--display);
  font-size: clamp(.78rem, 1vw, .92rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 0 auto var(--s7);
  font-weight: 500;
  max-width: 60ch;
}

.banner__cta { display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap; }

.banner__scroll {
  position: absolute;
  left: 50%; bottom: var(--s5);
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
}
.banner__scroll::after {
  content: "";
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .8; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.5); }
}

/* =============================================================
   SECTIONS
   ============================================================= */
section.content { padding: clamp(80px, 11vw, 160px) 0; }
.section--soft { background: var(--soft); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .lede, .section--ink .muted { color: rgba(255,255,255,.72); }
.section--magenta { background: var(--magenta); color: #fff; }
.section--magenta h1, .section--magenta h2 { color: #fff; }
.section--lime { background: var(--lime); color: var(--ink); }

/* generic intro block centered, big airy */
.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.intro h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 200;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: var(--s5);
}

/* =============================================================
   FREE UPGRADES — content-rich, clear hierarchy
   ============================================================= */
.frees {
  background: var(--lime);
  color: var(--ink);
  padding: clamp(80px, 11vw, 160px) 0;
}
.frees h2 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  font-weight: 200;
  letter-spacing: -.03em;
  line-height: 1;
  text-align: center;
  margin-bottom: var(--s8);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.frees h2 strong { font-weight: 800; }
.frees__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4) var(--s7);
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 720px) { .frees__grid { grid-template-columns: 1fr; } }
.frees__row {
  display: flex; align-items: center; gap: var(--s4);
  padding: 18px 0;
  border-bottom: 2px solid rgba(28,25,22,.12);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}
.frees__row:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 720px) {
  .frees__row { border-bottom: 2px solid rgba(28,25,22,.12); }
  .frees__row:last-child { border-bottom: none; }
}
.frees__row .badge {
  background: var(--ink);
  color: var(--lime);
  padding: 6px 14px;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* =============================================================
   PRICING TIERS
   ============================================================= */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
/* 4 tiers: 1×4 desktop → 2×2 tablet → 1-col stacked mobile */
@media (max-width: 1100px) { .tiers { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; } }
@media (max-width: 620px)  { .tiers { grid-template-columns: 1fr; max-width: 460px; } }
.tier__price small {
  display: block;
  font-size: .9rem;
  letter-spacing: normal;
  font-weight: 500;
  opacity: .82;
  margin-top: 6px;
}

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tier__price {
  background: var(--lime);
  color: var(--paper);
  text-align: center;
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(3.4rem, 6vw, 5rem);
  letter-spacing: -.05em;
  padding: var(--s7) var(--s5) var(--s6);
  margin: 0;
  line-height: .9;
}
.tier--featured .tier__price { background: var(--magenta); }

.tier__body { padding: var(--s7) var(--s6) var(--s7); display: flex; flex-direction: column; flex: 1; gap: var(--s4); }
.tier__sub {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0;
}
.tier__name {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 200;
  letter-spacing: -.02em;
  text-align: center;
  margin: 0;
  line-height: 1;
}
.tier__name strong { font-weight: 800; }
.tier__name small {
  display: block;
  font-size: .42em;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: .16em;
  margin-top: var(--s3);
  text-transform: uppercase;
}
.tier__perks {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  flex: 1;
}
.tier__perks li {
  padding: 14px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.tier__perks li:last-child { border-bottom: none; }
.tier__perks li::before { content: "✓ "; color: var(--lime-deep); font-weight: 800; margin-right: 4px; }
.tier__badge {
  position: absolute;
  top: var(--s4); right: var(--s4);
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
}

/* add-on rows */
.addons {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: var(--s4) var(--s6);
}
.addons__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: var(--s4);
  font-family: var(--display);
}
.addons__row:last-child { border-bottom: none; }
.addons__row .name { font-weight: 500; font-size: clamp(.95rem, 1.2vw, 1.05rem); letter-spacing: .04em; text-transform: uppercase; }
.addons__row .amt { font-weight: 700; color: var(--magenta); white-space: nowrap; font-size: 1.1rem; letter-spacing: .02em; }

/* =============================================================
   PHOTO GRID — original site has a 12-image grid
   ============================================================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
@media (max-width: 880px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-grid__cell {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  background: var(--warm);
  position: relative;
}
.photo-grid__cell img,
.photo-grid__cell video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .35s;
}
.photo-grid__cell:hover img,
.photo-grid__cell:hover video { transform: scale(1.04); filter: saturate(1.15); }

/* =============================================================
   CASE STUDY CARDS — clean, no fake stats
   ============================================================= */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s7);
}
@media (max-width: 880px) { .cs-grid { grid-template-columns: 1fr; gap: var(--s6); } }

.cs-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.cs-card__media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--ink);
}
.cs-card__media img,
.cs-card__media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1), opacity .35s;
}
.cs-card__media video { opacity: 0; }
.cs-card:hover .cs-card__media video { opacity: 1; }
.cs-card:hover .cs-card__media img { transform: scale(1.04); }

.cs-card__body {
  padding: var(--s5) 0 0;
}
.cs-card__city {
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: var(--s3);
}
.cs-card__title {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.15;
  margin: 0 0 var(--s3);
}
.cs-card__title strong { font-weight: 700; }
.cs-card__excerpt {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* =============================================================
   CASE STUDY PAGE
   ============================================================= */
.cs-prose {
  max-width: var(--maxw-prose);
  margin: 0 auto;
  font-family: var(--body);
  font-size: 1.18rem;
  line-height: 1.8;
}
.cs-prose p { margin-bottom: var(--s5); color: var(--ink-soft); }
.cs-prose p strong { color: var(--ink); font-weight: 600; }
.cs-prose h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 200;
  letter-spacing: -.025em;
  margin: var(--s9) 0 var(--s4);
}
.cs-prose h2 strong { font-weight: 800; }
.cs-prose blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.35;
  color: var(--ink);
  margin: var(--s9) 0;
  padding-left: var(--s6);
  border-left: 4px solid var(--magenta);
}
.cs-prose blockquote cite {
  display: block;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink-mute);
  letter-spacing: .18em;
  margin-top: var(--s4);
  text-transform: uppercase;
}

.cs-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 8px;
}
@media (max-width: 880px) {
  .cs-gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
}
.cs-gallery > * {
  overflow: hidden;
  background: var(--warm);
  cursor: zoom-in;
}
.cs-gallery > * img,
.cs-gallery > * video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.cs-gallery > *:hover img { transform: scale(1.05); }
.cs-gallery .a { grid-column: span 7; grid-row: span 4; }
.cs-gallery .b { grid-column: span 5; grid-row: span 2; }
.cs-gallery .c { grid-column: span 5; grid-row: span 2; }
.cs-gallery .d { grid-column: span 4; grid-row: span 3; }
.cs-gallery .e { grid-column: span 4; grid-row: span 3; }
.cs-gallery .f { grid-column: span 4; grid-row: span 3; }
.cs-gallery .g { grid-column: span 6; grid-row: span 3; }
.cs-gallery .h { grid-column: span 6; grid-row: span 3; }
@media (max-width: 880px) {
  .cs-gallery .a { grid-column: span 6; grid-row: span 3; }
  .cs-gallery .b, .cs-gallery .c { grid-column: span 6; grid-row: span 2; }
  .cs-gallery .d, .cs-gallery .e, .cs-gallery .f { grid-column: span 3; grid-row: span 2; }
  .cs-gallery .g, .cs-gallery .h { grid-column: span 6; grid-row: span 3; }
}

.cs-video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  margin: var(--s8) 0;
  overflow: hidden;
}
.cs-video video { width: 100%; height: 100%; object-fit: cover; }

.cs-share {
  background: var(--warm);
  padding: var(--s8);
  margin: var(--s8) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s5);
}
@media (max-width: 700px) { .cs-share { grid-template-columns: 1fr; } }
.cs-share h3 { margin: 0 0 6px; font-size: 1.4rem; font-weight: 300; }
.cs-share h3 strong { font-weight: 700; }
.cs-share p { margin: 0; color: var(--ink-soft); }
.cs-share__icons { display: flex; gap: var(--s3); flex-wrap: wrap; }
.cs-share__icon {
  width: 56px; height: 56px;
  background: var(--paper);
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  color: var(--ink);
  text-decoration: none;
  transition: all .2s;
}
.cs-share__icon:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
  transform: translateY(-2px);
}

/* =============================================================
   SOCIAL CAROUSEL
   ============================================================= */
.social {
  background: var(--paper);
  padding: clamp(80px, 11vw, 160px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.social__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s7);
  flex-wrap: wrap;
  gap: var(--s4);
}
.social__head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 200;
  letter-spacing: -.025em;
  margin: 0;
}
.social__head h2 strong { font-weight: 700; }
.social__head .live {
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: var(--s2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social__head .live::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211,37,139,.5); }
  50% { box-shadow: 0 0 0 8px rgba(211,37,139,0); }
}

.social__nav {
  display: flex;
  gap: var(--s2);
}
.social__nav button {
  width: 52px; height: 52px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s;
}
.social__nav button:hover { background: var(--ink); color: var(--paper); }
.social__nav button:disabled { opacity: .3; cursor: not-allowed; }

.social__track {
  display: flex;
  gap: var(--s4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 var(--s5);
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.social__track::-webkit-scrollbar { display: none; }

.social__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 340px);
  aspect-ratio: 9/14;
  overflow: hidden;
  background: var(--ink);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}
.social__card img,
.social__card video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.social__card:hover img,
.social__card:hover video { transform: scale(1.04); }
.social__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.78) 100%);
  pointer-events: none;
}
.social__card .platform {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
}
.social__card .cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  font-family: var(--display);
}
.social__card .cap p {
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: var(--s6) 0;
}
.faq details[open] summary { color: var(--magenta); }
.faq summary {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 300;
  letter-spacing: -.018em;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 200;
  font-size: 1.6rem;
  color: var(--ink-mute);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; color: var(--magenta); }
.faq .answer {
  margin-top: var(--s4);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 64ch;
}

/* =============================================================
   BOOKING FLOW
   ============================================================= */
.book-shell {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s8);
  align-items: start;
  padding-bottom: var(--s9);
}
@media (max-width: 920px) { .book-shell { grid-template-columns: 1fr; } }

.bp {
  display: flex; align-items: center; gap: var(--s3);
  flex-wrap: wrap; margin-bottom: var(--s7);
}
.bp__step {
  display: flex; align-items: center; gap: var(--s2);
  color: var(--ink-mute);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bp__step .num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .82rem;
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
}
.bp__step.is-current { color: var(--ink); }
.bp__step.is-current .num { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bp__step.is-done { color: var(--ink-soft); }
.bp__step.is-done .num { background: var(--magenta); color: #fff; border-color: var(--magenta); }
.bp__bar { flex: 1; min-width: 8px; height: 1.5px; background: var(--line); }
@media (max-width: 600px) { .bp__step span:not(.num) { display: none; } }

.bstep { display: none; }
.bstep.is-active { display: block; }
.bstep h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 200;
  margin-bottom: var(--s3);
}
.bstep h2 strong { font-weight: 800; }
.bstep .help { color: var(--ink-soft); margin-bottom: var(--s7); max-width: 56ch; line-height: 1.6; }

.field { margin-bottom: var(--s4); }
.field label {
  display: block;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: 1rem;
  padding: 14px 16px;
  min-height: 52px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px var(--magenta-tint);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); margin-bottom: var(--s6); }
@media (max-width: 720px) { .options { grid-template-columns: 1fr; } }
.opt {
  border: 1px solid var(--line-strong);
  padding: var(--s5);
  background: var(--paper);
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 130px;
  transition: border-color .15s, background .15s;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt:hover { border-color: var(--ink); }
.opt.is-on, .opt:has(input:checked) {
  border-color: var(--magenta);
  background: var(--magenta-tint);
}
.opt .lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
}
.opt .sub { font-size: .9rem; color: var(--ink-soft); }
.opt .amt {
  font-family: var(--display);
  font-weight: 200;
  margin-top: auto;
  font-size: 1.7rem;
  color: var(--magenta);
  letter-spacing: -.02em;
}

.checks { display: flex; flex-direction: column; gap: var(--s2); }
.check {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s5);
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  min-height: 60px;
  font-family: var(--display);
}
.check input { width: 18px; height: 18px; accent-color: var(--magenta); }
.check:has(input:checked) { border-color: var(--magenta); background: var(--magenta-tint); }
.check .name { flex: 1; font-weight: 500; font-size: .98rem; }
.check .amt { font-weight: 700; color: var(--magenta); }

.bstep__nav {
  display: flex; justify-content: space-between; gap: var(--s3);
  margin-top: var(--s8);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
}

.summary {
  position: sticky;
  top: calc(var(--nav-h) + var(--s4));
  background: var(--paper);
  border: 2px solid var(--magenta);
  padding: var(--s6);
}
.summary h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--magenta);
  margin-bottom: var(--s5);
}
.summary .line {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: .95rem;
  border-bottom: 1px dashed var(--line);
  gap: var(--s3);
}
.summary .line:last-of-type { border-bottom: none; }
.summary .line .lbl { color: var(--ink-soft); }
.summary .line .val { font-weight: 600; text-align: right; }
.summary .total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: var(--s5); margin-top: var(--s4);
  border-top: 2px solid var(--ink);
}
.summary .total .num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: -.04em;
  color: var(--magenta);
}

.dt-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--s2);
}
@media (max-width: 700px) { .dt-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .dt-grid { grid-template-columns: repeat(3, 1fr); } }
.dt-cell {
  text-align: center;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: var(--s3) var(--s2);
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 64px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: all .15s;
}
.dt-cell .day {
  font-size: .68rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 2px;
}
.dt-cell:hover { border-color: var(--ink); }
.dt-cell.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.dt-cell.is-on .day { color: rgba(255,255,255,.7); }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); margin-top: var(--s4); }
@media (max-width: 540px) { .time-grid { grid-template-columns: repeat(2, 1fr); } }

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: var(--s9) 0 var(--s5);
}
.foot a { color: rgba(255,255,255,.85); }
.foot a:hover { color: var(--lime); }
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s7);
  padding-bottom: var(--s7);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__brand img { height: 70px; width: auto; filter: brightness(1.15); }
.foot h5 {
  font-family: var(--display);
  color: #fff;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  margin-bottom: var(--s5);
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { padding: 6px 0; font-size: .95rem; }
.foot__bottom {
  padding-top: var(--s5);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: var(--s3);
}

/* =============================================================
   STICKY MOBILE BOOK BAR
   ============================================================= */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 88px; }
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--s5);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; }
.lightbox button {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px);
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600;
  letter-spacing: .14em;
  font-family: var(--display);
}

/* =============================================================
   CONFIRMATION
   ============================================================= */
.confirm {
  background: var(--paper);
  border: 2px solid var(--magenta);
  padding: var(--s9) var(--s7);
  text-align: center;
  max-width: 620px;
  margin: var(--s9) auto;
}
.confirm h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 200;
  margin-bottom: var(--s4);
}
.confirm h1 strong { font-weight: 800; }
.confirm__mark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime-tint);
  display: grid; place-items: center;
  margin: 0 auto var(--s6);
}
.confirm__mark::after {
  content: "";
  width: 40px; height: 20px;
  border-left: 4px solid var(--lime-deep);
  border-bottom: 4px solid var(--lime-deep);
  transform: rotate(-45deg) translate(2px, -4px);
}

/* =============================================================
   MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .banner__bg img { transform: none !important; }
}

/* =============================================================
   Erin intro on book.html (B-design-03)
   ============================================================= */
.erin-intro {
  display: flex;
  gap: var(--s6);
  align-items: center;
  max-width: 820px;
  margin: 0 auto var(--s8);
  padding: var(--s6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--shadow-sm);
}
.erin-intro__photo {
  flex: 0 0 auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--paper);
  background: var(--magenta);
  letter-spacing: .02em;
}
.erin-intro__hi { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 0 0 4px; }
.erin-intro__role {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin: 0 0 var(--s3);
}
.erin-intro__note { margin: 0 0 var(--s4); color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 640px) {
  .erin-intro { flex-direction: column; text-align: center; }
}
