/* =========================================================================
   Shalem Photography — Senior Portraits
   Editorial Lookbook system
   ========================================================================= */

:root {
  /* palette */
  --paper:   #f3ece0;
  --paper-2: #e9dccb;
  --ink:     #18140f;
  --ink-2:   #2a241c;
  --soft:    #6c6258;
  --line:    rgba(24, 20, 15, 0.16);
  --line-2:  rgba(24, 20, 15, 0.09);
  --cream:   #fbf6ec;
  --forest:  #26352b;
  --forest-2:#1d2a22;

  /* accent (tweakable) */
  --accent:  #b0644a;
  --accent-soft: #c98a6f;

  /* type (display tweakable) */
  --display: "Bodoni Moda", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --max: 1500px;
  --gutter: clamp(20px, 5vw, 88px);
  --header: 78px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ---------- type primitives ---------- */
.kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.kicker.no-rule::before { display: none; }

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.008em;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
}

.lead {
  margin: 0;
  color: var(--soft);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
  font-weight: 400;
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.btn .arw { transition: transform 0.5s var(--ease); }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-3px); color: var(--cream); }
.btn:hover::after { transform: translateY(0); }
.btn:hover .arw { transform: translateX(5px); }

.btn-ghost {
  --bg: transparent;
  --fg: var(--ink);
}
.btn-ghost.on-dark { --fg: var(--cream); border-color: rgba(251,246,236,0.5); }
.btn-ghost.on-dark:hover { color: var(--cream); }

/* link with animated underline */
.tlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); }
.tlink .arw { transition: transform 0.45s var(--ease); }
.tlink:hover .arw { transform: translateX(5px); }

/* =========================================================================
   Top bar
   ========================================================================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  color: var(--cream);
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.solid {
  background: rgba(243, 236, 224, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  height: 66px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.brand .mark {
  font-size: 30px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}
.brand .word {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.78;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 44px);
}
.nav a:not(.btn) {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 0;
  opacity: 0.92;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { min-height: 44px; padding: 0 22px; font-size: 10px; }
.topbar:not(.solid) .nav .btn {
  background: transparent;
  border-color: rgba(251,246,236,0.55);
  color: var(--cream);
}
/* ---- hamburger (mobile only) ---- */
.hamb {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.hamb-lines { display: grid; gap: 6px; width: 24px; }
.hamb-lines i {
  display: block; height: 1.6px; width: 100%;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
body.menu-open .hamb-lines i:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
body.menu-open .hamb-lines i:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }
body.menu-open .hamb { color: var(--ink); }

/* ---- full-screen menu overlay ---- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header) + 18px) var(--gutter) calc(28px + env(safe-area-inset-bottom));
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2%);
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease), visibility 0.45s;
  overscroll-behavior: contain;
}
body.menu-open .menu { opacity: 1; visibility: visible; transform: none; }
.menu-nav { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 11vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-2);
  opacity: 0;
  transform: translateY(14px);
}
body.menu-open .menu-nav a { animation: menuItem 0.5s var(--ease) forwards; }
body.menu-open .menu-nav a:nth-child(1) { animation-delay: 0.08s; }
body.menu-open .menu-nav a:nth-child(2) { animation-delay: 0.14s; }
body.menu-open .menu-nav a:nth-child(3) { animation-delay: 0.20s; }
body.menu-open .menu-nav a:nth-child(4) { animation-delay: 0.26s; }
body.menu-open .menu-nav a:nth-child(5) { animation-delay: 0.32s; }
@keyframes menuItem { to { opacity: 1; transform: none; } }
.menu-nav a em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.menu-foot { margin-top: 32px; display: grid; gap: 18px; }
.menu-foot .btn { width: 100%; justify-content: center; min-height: 60px; }
.menu-foot p {
  margin: 0; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--soft); text-align: center;
}

/* ---- app-like sticky bottom dock ---- */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(243, 236, 224, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid var(--line-2);
  transform: translateY(130%);
  transition: transform 0.5s var(--ease);
}
.dock.show { transform: none; }
.dock-gal {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}
.dock-book {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.dock-book .arw { transition: transform 0.4s var(--ease); }
.dock-book:active { transform: scale(0.98); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute;
  inset: -8% 0 0 0;
  height: 116%;
  object-position: 50% 32%;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,14,10,0.46) 0%, rgba(18,14,10,0) 26%, rgba(18,14,10,0) 50%, rgba(18,14,10,0.72) 100%),
    linear-gradient(90deg, rgba(18,14,10,0.5) 0%, rgba(18,14,10,0) 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  padding: calc(var(--header) + clamp(28px, 5vh, 72px)) var(--gutter) clamp(30px, 4vh, 56px);
}
.hero-inner > * { width: min(100%, var(--max)); margin-inline: auto; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(251,246,236,0.82);
}
.hero-title {
  margin: 0.32em 0 0;
  font-size: clamp(54px, 9.4vw, 168px);
  line-height: 0.9;
  max-width: 14ch;
  font-weight: 500;
}
.hero-title em { color: var(--accent-soft); }
.hero-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: clamp(28px, 5vh, 56px);
}
.hero-sub {
  max-width: 44ch;
  color: rgba(251,246,236,0.86);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* hero meta strip */
.hero-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(251,246,236,0.22);
}
.hero-strip div {
  padding: 18px var(--gutter);
  border-right: 1px solid rgba(251,246,236,0.16);
}
.hero-strip div:last-child { border-right: 0; }
.hero-strip span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.56);
}
.hero-strip strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  top: calc(50% );
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(rgba(251,246,236,0.7), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =========================================================================
   Layout helpers
   ========================================================================= */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(84px, 11vw, 168px) var(--gutter);
}
.section.tight { padding-block: clamp(64px, 8vw, 120px); }
.bleed { width: 100%; }
.eyebrow-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.idx {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--soft);
  font-variant-numeric: tabular-nums;
}

/* =========================================================================
   Intro (manifesto)
   ========================================================================= */
.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: center;
}
.intro-copy h2 {
  font-size: clamp(34px, 4.4vw, 66px);
  margin-top: 26px;
}
.intro-copy .lead { margin-top: 28px; }
.intro-copy .meta-list {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.meta-list .row {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.meta-list .row dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.meta-list .row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.25;
}
.intro-media {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 16px;
  align-items: start;
}
.intro-media figure { margin: 0; overflow: hidden; background: var(--paper-2); }
.intro-media figure img { transition: transform 1.1s var(--ease); }
.intro-media figure:hover img { transform: scale(1.04); }
.intro-media .a { aspect-ratio: 0.7; margin-top: clamp(40px, 8vw, 96px); }
.intro-media .b { aspect-ratio: 0.74; }
.intro-media figcaption {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

/* =========================================================================
   Marquee
   ========================================================================= */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 26px 0;
  background: var(--paper-2);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollx 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 52px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0 0.5em;
  white-space: nowrap;
  color: var(--ink);
}
.marquee-track .dot { color: var(--accent); font-style: normal; padding: 0 0.32em; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* =========================================================================
   Style directions
   ========================================================================= */
.style {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 5vw, 84px);
  align-items: start;
}
.style-head .lead { margin-top: 26px; }
.style-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.scard {
  position: relative;
  aspect-ratio: 0.62;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #15110d;
}
.scard img {
  position: absolute; inset: 0;
  transition: transform 1.2s var(--ease);
}
.scard::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,9,6,0.82) 2%, rgba(12,9,6,0) 56%);
}
.scard:hover img { transform: scale(1.06); }
.scard .cap { position: relative; z-index: 2; padding: 22px; color: var(--cream); }
.scard .cap small {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(251,246,236,0.7);
}
.scard .cap h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 0.98;
}
.scard .num {
  position: absolute; top: 18px; left: 22px; z-index: 2;
  font-family: var(--serif);
  font-size: 14px; letter-spacing: 0.1em;
  color: rgba(251,246,236,0.82);
}

/* =========================================================================
   Cinematic full-bleed interlude
   ========================================================================= */
.cine {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.cine-media { position: absolute; inset: 0; }
.cine-media img { position: absolute; inset: -10% 0 0 0; height: 120%; object-position: 50% 50%; will-change: transform; }
.cine-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 50%, rgba(18,14,10,0.18), rgba(18,14,10,0.66));
}
.cine-inner {
  position: relative; z-index: 2;
  padding: 0 var(--gutter);
  max-width: 1100px;
}
.cine-inner .kicker { color: var(--accent-soft); justify-content: center; }
.cine-inner .kicker { display: inline-flex; }
.cine-inner h2 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 5.6vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.012em;
}
.cine-inner h2 em { font-style: italic; font-weight: 400; color: var(--accent-soft); }
.cine-foot {
  position: absolute;
  bottom: clamp(22px, 4vw, 44px);
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--gutter);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,246,236,0.68);
}

/* =========================================================================
   Locations
   ========================================================================= */
.loc-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: 30px;
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.loc-head h2 { font-size: clamp(34px, 4.6vw, 70px); margin-top: 22px; }
.loc-head .lead { align-self: end; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(150px, 13vw, 230px);
  gap: 14px;
}
.tile { position: relative; overflow: hidden; background: var(--paper-2); }
.tile img { transition: transform 1.2s var(--ease); }
.tile:hover img { transform: scale(1.05); }
.tile .label {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(251,246,236,0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.tile .label::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.tile.t1 { grid-column: span 3; grid-row: span 2; }
.tile.t2 { grid-column: span 3; grid-row: span 1; }
.tile.t3 { grid-column: span 2; grid-row: span 1; }
.tile.t4 { grid-column: span 2; grid-row: span 1; }
.tile.t5 { grid-column: span 2; grid-row: span 1; }

/* =========================================================================
   Process
   ========================================================================= */
.process { background: #211e1a; color: var(--cream); border-block: 1px solid rgba(251,246,236,0.1); }
.process .kicker { color: var(--accent-soft); }
.process .display { color: var(--cream); }
.process .lead { color: rgba(251,246,236,0.7); }
.proc-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.8fr);
  gap: 30px; align-items: end;
  margin-bottom: clamp(40px, 4vw, 60px);
}
.proc-head h2 { font-size: clamp(34px, 4.6vw, 70px); margin-top: 22px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 0;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 32px;
  min-height: 0;
  border: 1px solid rgba(251,246,236,0.14);
  border-radius: 6px;
  background: rgba(251,246,236,0.025);
  transition: background 0.45s var(--ease), transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.step:hover { background: rgba(251,246,236,0.06); transform: translateY(-5px); border-color: rgba(251,246,236,0.3); }
.step .n {
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1;
  color: var(--accent-soft);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(251,246,236,0.14);
}
.step h3 {
  margin: 0;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream);
}
.step p { margin: 9px 0 0; color: rgba(251,246,236,0.64); font-size: 15px; }
.step .tag {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--accent-soft);
}

/* =========================================================================
   Wardrobe
   ========================================================================= */
.ward {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}
.ward-media { display: grid; grid-template-columns: 1fr 0.72fr; gap: 16px; align-items: start; }
.ward-media figure { margin: 0; overflow: hidden; background: var(--paper-2); }
.ward-media figure img { transition: transform 1.1s var(--ease); }
.ward-media figure:hover img { transform: scale(1.04); }
.ward-media .a { aspect-ratio: 0.72; }
.ward-media .b { aspect-ratio: 0.7; margin-top: clamp(48px, 9vw, 110px); }
.ward-copy h2 { font-size: clamp(32px, 4.2vw, 62px); margin-top: 22px; }
.ward-copy .lead { margin-top: 24px; }
.checklist { margin-top: 36px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.check .ic {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  flex: none;
}
.check h3 { margin: 2px 0 5px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.check p { margin: 0; color: var(--soft); font-size: 15px; }

/* =========================================================================
   Feature band (personality)
   ========================================================================= */
.feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
  background: var(--forest);
  color: var(--cream);
}
.feature figure { margin: 0; position: relative; overflow: hidden; min-height: 460px; }
.feature figure img { transition: transform 1.4s var(--ease); }
.feature:hover figure img { transform: scale(1.05); }
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 120px) var(--gutter);
}
.feature-copy .kicker { color: var(--accent-soft); }
.feature-copy h2 {
  margin-top: 26px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.feature-copy h2 em { font-style: italic; font-weight: 400; color: var(--accent-soft); }
.feature-copy p { margin: 28px 0 0; max-width: 52ch; color: rgba(251,246,236,0.8); font-size: clamp(16px,1.2vw,20px); }

/* =========================================================================
   Gallery
   ========================================================================= */
.gal-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.62fr);
  gap: 30px; align-items: end;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.gal-head h2 { font-size: clamp(34px, 4.8vw, 74px); margin-top: 22px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.shot { position: relative; overflow: hidden; background: var(--paper-2); aspect-ratio: 1 / 1; width: 100%; }
.gallery .reveal { transform: none; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.shot:hover img { transform: scale(1.045); }
.shot .tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: 9px 13px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.shot::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(12,9,6,0.5), transparent 42%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.shot:hover::before { opacity: 1; }
.shot:hover .tag { opacity: 1; transform: translateY(0); }
.gal-foot { margin-top: clamp(34px, 4vw, 54px); display: flex; justify-content: center; }

/* =========================================================================
   Testimonial / proof
   ========================================================================= */
.proof { background: var(--forest-2); color: var(--cream); }
.proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.proof figure { margin: 0; aspect-ratio: 0.8; overflow: hidden; background: #11160f; }
.proof figure img { transition: transform 1.2s var(--ease); }
.proof:hover figure img { transform: scale(1.04); }
.proof .kicker { color: var(--accent-soft); }
.proof blockquote {
  margin: 24px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.9vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.proof blockquote em { font-style: italic; font-weight: 400; color: var(--accent-soft); }
.proof .cite {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,246,236,0.7);
}
.proof .cite::before { content: ""; width: 30px; height: 1px; background: var(--accent-soft); }
.proof .stars { margin-top: 26px; color: var(--accent-soft); letter-spacing: 0.3em; font-size: 14px; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}
.faq-head h2 { font-size: clamp(32px, 4.2vw, 62px); margin-top: 22px; }
.faq-head .lead { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-family: var(--serif);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
summary:hover { color: var(--accent); }
summary::-webkit-details-marker { display: none; }
summary .pm {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: border-color 0.3s var(--ease);
}
summary .pm::before, summary .pm::after {
  content: ""; position: absolute;
  background: var(--accent);
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
summary .pm::before { width: 11px; height: 1.5px; }
summary .pm::after { width: 1.5px; height: 11px; }
details[open] summary .pm { border-color: var(--accent); }
details[open] summary .pm::after { transform: scaleY(0); }
.faq-ans { overflow: hidden; }
.faq-ans p { margin: 0; padding: 0 60px 28px 0; color: var(--soft); max-width: 70ch; }

/* =========================================================================
   Booking
   ========================================================================= */
.booking { background: var(--ink); color: var(--cream); }
.booking .section { padding-block: clamp(84px, 10vw, 150px); }
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.book-copy .kicker { color: var(--accent-soft); }
.book-copy h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.012em;
}
.book-copy h2 em { font-style: italic; font-weight: 400; color: var(--accent-soft); }
.book-copy p { margin: 30px 0 0; max-width: 50ch; color: rgba(251,246,236,0.74); font-size: clamp(16px,1.2vw,20px); }
.book-contacts {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 14px 40px;
}
.book-contacts a { display: grid; gap: 5px; }
.book-contacts span { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,246,236,0.5); }
.book-contacts strong { font-family: var(--serif); font-weight: 500; font-size: 22px; }

.book-form {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--cream);
  color: var(--ink);
}
.book-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 9px; }
label > span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--soft);
}
.field {
  width: 100%;
  border: 1px solid rgba(24,20,15,0.2);
  border-radius: 0;
  background: #fffdf8;
  padding: 14px 15px;
  outline: 0;
  transition: border-color 0.3s var(--ease);
  font-size: 15px;
}
.field:focus { border-color: var(--accent); }
textarea.field { min-height: 120px; resize: vertical; }
.book-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.book-fine { font-size: 12px; color: var(--soft); text-align: center; letter-spacing: 0.02em; }

/* =========================================================================
   Footer
   ========================================================================= */
.foot { background: var(--ink); color: var(--cream); border-top: 1px solid rgba(251,246,236,0.14); }
.foot-word {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) var(--gutter) 0;
}
.foot-word .big {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(64px, 17vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.foot-bar {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--gutter) 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(251,246,236,0.6);
  border-top: 1px solid rgba(251,246,236,0.14);
  margin-top: clamp(30px, 4vw, 56px);
}
.foot-bar nav { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-bar nav a:hover { color: var(--cream); }

/* =========================================================================
   Reveal animations
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
  .reveal.d4 { transition-delay: 0.32s; }
}
/* Hero entrance: transform-only so text is ALWAYS visible (opacity stays 1) */
.hero-eyebrow, .hero-title, .hero-bottom { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow { animation: heroRise 0.9s var(--ease) 0.05s both; }
  .hero-title   { animation: heroRise 1.05s var(--ease) 0.16s both; }
  .hero-bottom  { animation: heroRise 0.95s var(--ease) 0.34s both; }
  @keyframes heroRise { from { transform: translateY(28px); } to { transform: none; } }
}

/* =========================================================================
   Responsive — TABLET
   ========================================================================= */
@media (max-width: 1080px) {
  .intro, .style, .ward, .feature, .proof-grid, .faq, .book-grid, .loc-head, .proc-head, .gal-head { grid-template-columns: 1fr; }
  .style-cards { grid-template-columns: repeat(3, 1fr); }
  .feature figure { min-height: 520px; order: -1; }
  .scroll-cue { display: none; }
  .proof figure { max-width: 460px; }
}

/* =========================================================================
   Responsive — MOBILE (≤860): app-like, thumb-first
   ========================================================================= */
@media (max-width: 860px) {
  :root { --header: 60px; --gutter: 22px; }

  /* nav → hamburger + overlay; dock visible */
  .nav { display: none; }
  .hamb { display: inline-flex; }
  .dock { display: flex; }
  body { padding-bottom: 0; }

  /* topbar tighter, brand wordmark hidden on very small handled below */
  .topbar { height: var(--header); }
  .topbar.solid { height: var(--header); }
  .brand .word { display: none; }

  /* section rhythm */
  .section { padding: clamp(56px, 14vw, 84px) var(--gutter); }
  .process .section, .booking .section { padding-block: clamp(56px, 14vw, 84px); }
  .display { line-height: 0.98; }
  .lead { font-size: 16.5px; }
  .eyebrow-row { align-items: center; }

  /* HERO */
  .hero-inner { padding-top: calc(var(--header) + 16vh); }
  .hero-title { font-size: clamp(46px, 14vw, 80px); max-width: 12ch; }
  .hero-sub { font-size: 16px; max-width: 38ch; }
  .hero-bottom { gap: 20px; }
  .hero-cta { width: 100%; gap: 16px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-height: 54px; }
  /* hero strip → horizontal scroll chips */
  .hero-strip {
    display: flex; overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hero-strip::-webkit-scrollbar { display: none; }
  .hero-strip div {
    flex: 0 0 auto; min-width: 44vw; scroll-snap-align: start;
    padding: 14px var(--gutter) 16px;
  }
  .hero-strip strong { font-size: 21px; }

  /* INTRO */
  .intro { gap: 30px; }
  .intro-media { grid-template-columns: 1fr 1fr; gap: 12px; }
  .intro-media .a { margin-top: 28px; }
  .intro-copy h2 { font-size: clamp(30px, 8vw, 44px); margin-top: 18px; }
  .meta-list .row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }

  /* MARQUEE smaller */
  .marquee { padding: 18px 0; }

  /* STYLE → swipe rail */
  .style { gap: 26px; }
  .style-head h2 { font-size: clamp(30px,8vw,44px) !important; }
  .style-cards {
    display: flex; gap: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 0;
    scroll-padding-left: var(--gutter);
  }
  .style-cards::-webkit-scrollbar { display: none; }
  .scard { flex: 0 0 78%; aspect-ratio: 0.74; scroll-snap-align: start; }

  /* CINE */
  .cine { min-height: 78vh; }
  .cine-inner h2 { font-size: clamp(30px, 9vw, 52px); }
  .cine-foot { font-size: 9px; gap: 10px; }

  /* LOCATIONS → swipe rail */
  .loc-head { margin-bottom: 26px; }
  .loc-head h2 { font-size: clamp(30px,8vw,44px); }
  .loc-grid {
    display: flex; gap: 12px;
    grid-auto-rows: unset;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter);
    scroll-padding-left: var(--gutter);
  }
  .loc-grid::-webkit-scrollbar { display: none; }
  .tile { flex: 0 0 72%; aspect-ratio: 0.82; }
  .tile.t1, .tile.t2, .tile.t3, .tile.t4, .tile.t5 { grid-column: auto; grid-row: auto; }

  /* PROCESS → cards */
  .proc-head { margin-bottom: 30px; }
  .proc-head h2 { font-size: clamp(30px,8vw,44px); }
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .step {
    min-height: 0; padding: 26px 24px; gap: 16px;
    border: 1px solid rgba(251,246,236,0.14); border-radius: 6px;
  }
  .step .n { font-size: 38px; padding-bottom: 16px; }
  .step h3 { font-size: 11.5px; }
  .step p { font-size: 14.5px; line-height: 1.58; }
  .step .tag { margin-top: 12px; font-size: 16px; }

  /* WARDROBE */
  .ward { gap: 30px; }
  .ward-media { grid-template-columns: 1fr 1fr; }
  .ward-media .b { margin-top: 36px; }
  .ward-copy h2 { font-size: clamp(30px,8vw,44px); }

  /* FEATURE */
  .feature { min-height: 0; }
  .feature figure { min-height: 64vh; }
  .feature-copy { padding: clamp(44px,12vw,72px) var(--gutter); }
  .feature-copy h2 { font-size: clamp(34px, 9.5vw, 56px); }

  /* GALLERY → uniform 2-col editorial grid */
  .gal-head { margin-bottom: 26px; }
  .gal-head h2 { font-size: clamp(30px,8vw,46px); }
  .gallery { grid-template-columns: 1fr; gap: 8px; }
  .shot .tag { opacity: 1; transform: none; }
  .shot::before { opacity: 1; background: linear-gradient(0deg, rgba(12,9,6,0.42), transparent 38%); }

  /* PROOF */
  .proof-grid { gap: 28px; }
  .proof figure { max-width: 100%; aspect-ratio: 1.0; }
  .proof blockquote { font-size: clamp(26px, 7.6vw, 40px); }

  /* FAQ */
  .faq { gap: 26px; }
  .faq-head h2 { font-size: clamp(28px,7.6vw,42px); }
  summary { padding: 22px 0; font-size: 18px; }
  .faq-ans p { padding: 0 0 24px; }

  /* BOOKING */
  .book-copy h2 { font-size: clamp(40px, 13vw, 72px); }
  .book-form { padding: 22px; }
  .field { padding: 15px 15px; font-size: 16px; } /* 16px = no iOS zoom */
  .book-form .btn { min-height: 56px; }

  /* FOOTER clears dock */
  .foot-bar { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .foot-word .big { font-size: clamp(72px, 30vw, 150px); }
}

/* =========================================================================
   Responsive — SMALL PHONE (≤520)
   ========================================================================= */
@media (max-width: 520px) {
  .intro-media { grid-template-columns: 1fr; }
  .intro-media .a { margin-top: 0; }
  .ward-media { grid-template-columns: 1fr; }
  .ward-media .b { margin-top: 0; }
  .scard { flex-basis: 82%; }
  .tile { flex-basis: 80%; }
  .gallery { grid-template-columns: 1fr; }
  .shot { aspect-ratio: 1 / 1 !important; }
  .book-form .row2 { grid-template-columns: 1fr; }
  .dock-gal { padding: 0 16px; }
  .steps { grid-template-columns: 1fr; }
  .step { padding: 26px 26px; }
  .step .n { font-size: 42px; }
}
