/* ============================================================
   SLATE & ASH — DESIGN TOKENS + GLOBAL STYLES
   Editorial / cinematic. Warm ash-tinted grayscale.
   ============================================================ */

:root {
  /* Warm ash grayscale — slight brown undertone in mids */
  --ink-000: #f6f3ee;        /* paper white */
  --ink-050: #ece8e0;
  --ink-100: #d9d3c7;
  --ink-200: #bbb3a3;
  --ink-300: #948b7b;
  --ink-400: #6e6657;
  --ink-500: #4a4438;
  --ink-600: #2e2a22;
  --ink-700: #1c1a15;
  --ink-800: #100f0c;
  --ink-900: #07060500;
  --ink-black: #050402;
}

/* ============================================================
   COLOR SCHEMES — swap the entire ink ramp via [data-scheme]
   Each scheme keeps the same role structure (000 = paper, black = void)
   so all components inherit cleanly.
   ============================================================ */

/* Bone — soft warm cream, espresso void */
html[data-scheme="bone"] {
  --ink-000: #f4ece0;
  --ink-050: #e6dccb;
  --ink-100: #cfc1aa;
  --ink-200: #ad9c80;
  --ink-300: #877657;
  --ink-400: #635541;
  --ink-500: #463b2c;
  --ink-600: #2a221a;
  --ink-700: #1a1410;
  --ink-800: #0e0a07;
  --ink-black: #060402;
}

/* Oxblood — burgundy ink on near-black */
html[data-scheme="oxblood"] {
  --ink-000: #f3e8e6;
  --ink-050: #e2cdc8;
  --ink-100: #c79b95;
  --ink-200: #a66e68;
  --ink-300: #834842;
  --ink-400: #5e2c28;
  --ink-500: #421b18;
  --ink-600: #2a0f0d;
  --ink-700: #1a0908;
  --ink-800: #0e0504;
  --ink-black: #060201;
}

/* Verdigris — cool aged copper green */
html[data-scheme="verdigris"] {
  --ink-000: #e8efea;
  --ink-050: #c8d6cd;
  --ink-100: #9eb3a6;
  --ink-200: #76907f;
  --ink-300: #506d5b;
  --ink-400: #344c3d;
  --ink-500: #1f3328;
  --ink-600: #122019;
  --ink-700: #0b1410;
  --ink-800: #060c09;
  --ink-black: #030604;
}

/* Indigo — midnight blue, cooler grays */
html[data-scheme="indigo"] {
  --ink-000: #e8eaf2;
  --ink-050: #c8cde0;
  --ink-100: #9ba3c2;
  --ink-200: #6f7aa0;
  --ink-300: #4a557c;
  --ink-400: #2c3658;
  --ink-500: #18213e;
  --ink-600: #0c1326;
  --ink-700: #070c19;
  --ink-800: #04070f;
  --ink-black: #020308;
}

/* Sepia — warm amber photo-tone */
html[data-scheme="sepia"] {
  --ink-000: #f6ead4;
  --ink-050: #e9d5ad;
  --ink-100: #d2b074;
  --ink-200: #ad8a4f;
  --ink-300: #816533;
  --ink-400: #5b4622;
  --ink-500: #3e2f17;
  --ink-600: #261c0e;
  --ink-700: #161009;
  --ink-800: #0c0805;
  --ink-black: #050302;
}

/* Glacier — cool blue-gray, almost monochrome */
html[data-scheme="glacier"] {
  --ink-000: #eef1f3;
  --ink-050: #d4dade;
  --ink-100: #aab4bb;
  --ink-200: #828e96;
  --ink-300: #5a6770;
  --ink-400: #3c474f;
  --ink-500: #252e35;
  --ink-600: #161c21;
  --ink-700: #0d1115;
  --ink-800: #07090b;
  --ink-black: #030405;
}

:root {

  /* Surfaces */
  --bg: var(--ink-black);
  --bg-paper: var(--ink-000);
  --fg: var(--ink-000);
  --fg-dim: var(--ink-200);
  --hairline: rgba(246, 243, 238, 0.12);
  --hairline-dark: rgba(5, 4, 2, 0.14);

  /* Type */
  --serif: "Italiana", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --col: 96px;
  --gutter: 32px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: clip;
  width: 100%;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--ink-000);
  color: var(--ink-black);
}

/* ============================================================
   GRAIN OVERLAY — fixed, multiply, very subtle
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   TYPE
   ============================================================ */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.sans  { font-family: var(--sans); }
.mono  { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.015em;
}

.h-italic { font-style: italic; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: var(--fg-dim);
  max-width: 28ch;
}

.body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-dim);
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.section {
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--pad-x);
  border-top: 1px solid var(--hairline);
}

.section--paper {
  background: var(--bg-paper);
  color: var(--ink-black);
}

.section--paper .lede,
.section--paper .body { color: var(--ink-500); }
.section--paper .eyebrow { color: var(--ink-400); }

.rule { border: 0; border-top: 1px solid var(--hairline); margin: 0; }
.section--paper .rule { border-color: var(--hairline-dark); }

.kicker-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}

.kicker-row .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-300);
}

.section--paper .kicker-row .num { color: var(--ink-400); }

/* ============================================================
   PAPER TEXTURE on light surfaces
   ============================================================ */
.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.16  0 0 0 0 0.13  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>");
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(.2,.7,.1,1), transform 1.2s cubic-bezier(.2,.7,.1,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.7,.1,1), transform .9s cubic-bezier(.2,.7,.1,1);
}
.reveal-stagger.is-in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.55s; }

/* ============================================================
   PLACEHOLDER IMAGE BLOCKS
   Tonal striped placeholders with monospace label
   ============================================================ */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--ink-700);
  color: var(--ink-200);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 14px
    ),
    radial-gradient(120% 80% at 30% 30%, var(--ink-500), var(--ink-800) 70%);
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.ph__label {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 238, 0.55);
}

.ph--tone-1 { background: var(--ink-800); }
.ph--tone-1::before { background: radial-gradient(120% 80% at 30% 40%, var(--ink-600), var(--ink-800) 70%), repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px); }
.ph--tone-2 { background: var(--ink-600); }
.ph--tone-2::before { background: radial-gradient(120% 80% at 70% 30%, var(--ink-400), var(--ink-700) 70%), repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px); }
.ph--tone-3 { background: var(--ink-500); }
.ph--tone-3::before { background: radial-gradient(120% 80% at 50% 70%, var(--ink-300), var(--ink-600) 70%), repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px); }
.ph--tone-4 { background: var(--ink-700); }
.ph--tone-4::before { background: radial-gradient(120% 80% at 20% 80%, var(--ink-500), var(--ink-800) 70%), repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 14px); }

/* PHOTO MODE — when a real image is set as background-image */
.ph--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ph--photo::before { display: none; }
.ph--photo::after {
  /* keep grain on photos for cohesion */
  opacity: 0.35;
}

/* photo treatments — toggled on body */
body[data-photo="muted"] .ph--photo { filter: grayscale(0.6) contrast(1.05) brightness(0.96); }
body[data-photo="grayscale"] .ph--photo { filter: grayscale(1) contrast(1.05); }
body[data-photo="color"] .ph--photo { filter: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  appearance: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: color .35s ease;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-000);
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.65,0,.35,1);
  z-index: -1;
}

.btn:hover { color: var(--ink-black); }
.btn:hover::before { transform: translateY(0); }

.section--paper .btn:hover { color: var(--ink-000); }
.section--paper .btn::before { background: var(--ink-black); }

.btn-arrow {
  width: 14px; height: 8px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M0 4h12M9 1l3 3-3 3' fill='none' stroke='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><path d='M0 4h12M9 1l3 3-3 3' fill='none' stroke='black'/></svg>") no-repeat center / contain;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  mix-blend-mode: difference;
  color: var(--ink-000);
  pointer-events: none;
}

.nav > * { pointer-events: auto; }

.nav__mark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: opacity .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right .4s cubic-bezier(.2,.7,.1,1);
}
.nav__links a:hover::after { right: 0; }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* ============================================================
   LOADER (ANIMATED WORDMARK ON LOAD)
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 1s ease, visibility 0s linear 1.2s;
}
.loader.is-out {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: -0.01em;
  display: flex;
  gap: 0.04em;
  align-items: center;
}
.loader__mark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise .9s cubic-bezier(.2,.7,.1,1) forwards;
}
.loader__amp {
  font-style: italic;
  color: var(--ink-300);
  margin: 0 0.18em;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.loader__bar {
  width: clamp(180px, 24vw, 320px);
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-000);
  transform-origin: left center;
  transform: scaleX(0);
  animation: fill 2.4s cubic-bezier(.7,.05,.3,1) forwards;
}
@keyframes fill {
  to { transform: scaleX(1); }
}

.loader__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: flex;
  gap: 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 8vh, 96px);
  padding-top: 120px;
  overflow: hidden;
}

.hero__marquee {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero__marquee-col {
  position: relative;
  overflow: hidden;
}
.hero__marquee-col::before,
.hero__marquee-col::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 25%;
  z-index: 2;
  pointer-events: none;
}
.hero__marquee-col::before {
  top: 0;
  background: linear-gradient(to bottom, var(--ink-black), transparent);
}
.hero__marquee-col::after {
  bottom: 0;
  background: linear-gradient(to top, var(--ink-black), transparent);
}

.hero__marquee-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: scrollUp 60s linear infinite;
}
.hero__marquee-col:nth-child(2) .hero__marquee-track { animation-duration: 80s; animation-direction: reverse; }
.hero__marquee-col:nth-child(3) .hero__marquee-track { animation-duration: 70s; }
.hero__marquee-col:nth-child(4) .hero__marquee-track { animation-duration: 90s; animation-direction: reverse; }

.hero__marquee-track .ph {
  flex: 0 0 auto;
  height: 50vh;
  width: 100%;
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (max-width: 760px) {
  .hero__marquee { grid-template-columns: repeat(2, 1fr); }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(64px, 14vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 400;
}

.hero__title .amp {
  font-style: italic;
  color: var(--ink-300);
  font-size: 0.85em;
  vertical-align: 0.04em;
  margin: 0 0.04em;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero__meta-block {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  line-height: 1.8;
}
.hero__meta-block strong {
  color: var(--ink-000);
  font-weight: 400;
  display: block;
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(20px, 4vh, 32px);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-300), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-000);
  transform: translateY(-100%);
  animation: tick 2.5s ease-in-out infinite;
}
@keyframes tick {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.gallery__item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--ink-700);
}

.gallery__item .ph { width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(.2,.7,.1,1); }
.gallery__item:hover .ph { transform: scale(1.04); }

.gallery__item-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,4,2,.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 2;
}
.gallery__item:hover .gallery__item-info { opacity: 1; }

.gallery__item-info .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-200);
}
.gallery__item-info .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-000);
  margin-top: 6px;
}
.gallery__item-info .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-top: 8px;
  display: flex;
  gap: 18px;
}

/* span helpers */
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.row-1 { aspect-ratio: 4/5; }
.row-tall { aspect-ratio: 3/5; }
.row-wide { aspect-ratio: 5/3; }
.row-sq { aspect-ratio: 1/1; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item { grid-column: span 1 !important; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5,4,2,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  height: 80vh;
  display: flex;
  flex-direction: column;
}

.lightbox__media {
  flex: 1;
  position: relative;
  transform: scale(0.96);
  transition: transform .8s cubic-bezier(.2,.7,.1,1);
}
.lightbox.is-open .lightbox__media { transform: scale(1); }

.lightbox__media .ph { width: 100%; height: 100%; }

.lightbox__caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.lightbox__caption .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-000);
  text-transform: none;
  letter-spacing: 0;
}

.lightbox__close {
  position: absolute;
  top: 28px; right: 28px;
  appearance: none;
  border: 1px solid var(--ink-300);
  background: transparent;
  color: var(--ink-000);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .3s, color .3s;
}
.lightbox__close:hover { background: var(--ink-000); color: var(--ink-black); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--ink-000);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
  z-index: 5;
}
.lightbox__nav:hover { background: var(--ink-000); color: var(--ink-black); }
.lightbox__nav.prev { left: 32px; }
.lightbox__nav.next { right: 32px; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.philo__statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink-700);
}
.philo__statement em {
  color: var(--ink-400);
}

.philo__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 44ch;
}

.philo__body p:first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.9;
  margin: 0.05em 0.12em 0 -0.04em;
  color: var(--ink-700);
}

.philo__signature {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.philo__sig-mark {
  font-family: "Italiana", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--ink-700);
  transform: rotate(-6deg);
}

.philo__sig-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .philo { grid-template-columns: 1fr; }
}

/* PARALLAX FIGURE */
.parallax-figure {
  position: relative;
  margin-top: 96px;
  height: clamp(380px, 60vh, 640px);
  overflow: hidden;
}
.parallax-figure .ph {
  position: absolute;
  inset: -10% 0;
  height: 120%;
  will-change: transform;
}
.parallax-figure__caption {
  position: absolute;
  left: 32px; bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-200);
  z-index: 2;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--hairline);
}

.pricing-card {
  position: relative;
  padding: 40px 32px 48px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  transition: background .5s ease;
}
.pricing-card:last-child { border-right: 0; }
.pricing-card:hover { background: rgba(246, 243, 238, 0.02); }

.pricing-card__tier {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.pricing-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  font-weight: 400;
  color: var(--fg);
}
.pricing-card__title em { color: var(--ink-300); }

.pricing-card__price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin-top: auto;
}
.pricing-card__price small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
  display: block;
  margin-bottom: 4px;
}

.pricing-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 36ch;
}

.pricing-card__num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-300);
  letter-spacing: 0.18em;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: 0; }
}

/* PROCESS LIST */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 96px;
}

.process__list {
  display: flex;
  flex-direction: column;
}

.process__step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  align-items: baseline;
}
.process__step:last-child { border-bottom: 1px solid var(--hairline); }

.process__step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-300);
  padding-top: 6px;
}

.process__step-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--fg);
  font-weight: 400;
  margin: 0 0 8px;
}
.process__step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 40ch;
}

@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-top: 64px;
  min-width: 0;
}

.booking__intro h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.96;
  font-weight: 400;
  margin: 16px 0 28px;
  letter-spacing: -0.015em;
}
.booking__intro h2 em { color: var(--ink-400); }

.booking__intro .lede { color: var(--ink-500); max-width: 32ch; }

.booking__meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.7;
}
.booking__meta strong {
  display: block;
  font-weight: 500;
  color: var(--ink-700);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.form {
  background: rgba(0,0,0,0.025);
  border: 1px solid var(--hairline-dark);
  padding: 40px;
  position: relative;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.form__progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.form__progress-dot {
  flex: 1;
  height: 2px;
  background: rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.form__progress-dot.is-done::after,
.form__progress-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink-700);
  transform-origin: left;
  animation: progFill .8s cubic-bezier(.2,.7,.1,1) forwards;
}
@keyframes progFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.form__step-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 16px;
}

.form__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 28px;
  font-weight: 400;
  color: var(--ink-black);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.field input,
.field textarea,
.field select {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--ink-200);
  background: transparent;
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-black);
  outline: none;
  transition: border-color .3s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink-700);
}
.field textarea {
  resize: none;
  min-height: 80px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  appearance: none;
  border: 1px solid var(--ink-200);
  background: transparent;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  cursor: pointer;
  transition: all .3s ease;
}
.chip:hover { border-color: var(--ink-700); color: var(--ink-700); }
.chip.is-on {
  background: var(--ink-black);
  border-color: var(--ink-black);
  color: var(--ink-000);
}

.form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  gap: 16px;
}

.btn-ghost {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
  cursor: pointer;
  padding: 8px 0;
  transition: color .3s;
}
.btn-ghost:hover { color: var(--ink-700); }
.btn-ghost:disabled { opacity: 0.3; cursor: not-allowed; }

.form__step {
  animation: stepIn .5s cubic-bezier(.2,.7,.1,1);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.form__success {
  text-align: center;
  padding: 40px 0;
  animation: stepIn .8s cubic-bezier(.2,.7,.1,1);
}
.form__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border: 1px solid var(--ink-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink-700);
}
.form__success h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink-black);
}
.form__success p {
  color: var(--ink-500);
  max-width: 32ch;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .booking { grid-template-columns: 1fr; }
  .form { padding: 28px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .form { padding: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .form__progress { gap: 4px; }
  .form__title { font-size: 32px; }
  .form__actions { flex-wrap: wrap; }
  .hero__title { font-size: clamp(56px, 18vw, 96px); }
  .hero__meta { gap: 20px; }
  .hero__meta-block { flex: 1 1 45%; min-width: 0; }
  .gallery { gap: 8px; }
  .booking__intro h2 { font-size: clamp(40px, 12vw, 64px); }
  .h-section { font-size: clamp(36px, 9vw, 56px); }
  .pricing-card { padding: 32px 24px; min-height: auto; }
  .process__step { grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 0; }
  .foot__big { font-size: clamp(64px, 18vw, 120px); }
  .lightbox__nav.prev { left: 12px; }
  .lightbox__nav.next { right: 12px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .nav { padding: 18px var(--pad-x); }
  .lightbox__inner { width: 92vw; height: 78vh; }
  .section { padding: 80px var(--pad-x); }
  .hero { min-height: 100svh; padding-top: 100px; }
  .hero__meta { margin-top: 32px; }
  .kicker-row { margin-bottom: 36px; }
  .gallery { grid-template-columns: 1fr; gap: 8px; margin-top: 48px; }
  .gallery__item { aspect-ratio: 4/5 !important; }
  .gallery__item-info { opacity: 1; background: linear-gradient(180deg, transparent 50%, rgba(5,4,2,.92)); }
  .gallery__item-info .meta { flex-wrap: wrap; gap: 10px; }
  .lede { font-size: 18px; max-width: 100%; }
  .pricing-card__title { font-size: 32px; }
  .pricing-card { gap: 16px; }
  .philo__statement { font-size: clamp(28px, 7vw, 40px); }
  .philo__body { font-size: 14px; }
  .philo__body p:first-letter { font-size: 2.6em; }
  .booking { gap: 40px; margin-top: 40px; }
  .booking__meta { margin-top: 24px; }
  .booking__intro h2 { margin: 12px 0 20px; }
  .form__step-label { margin-bottom: 12px; }
  .form__title { font-size: 28px; margin-bottom: 22px; }
  .field input, .field textarea, .field select { font-size: 16px; }
  .field { margin-bottom: 18px; }
  .chip { padding: 7px 12px; font-size: 10px; }
  .form__actions { gap: 12px; justify-content: space-between; }
  .btn { padding: 14px 22px; font-size: 10px; gap: 10px; }
  .foot { padding: 60px var(--pad-x) 28px; gap: 48px; }
  .foot__rows { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 32px; }
  .foot__bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__caption { font-size: 9px; gap: 12px; }
  .lightbox__caption .title { font-size: 16px; }
  .parallax-figure { margin-top: 56px; height: clamp(280px, 50vh, 420px); }
  .pricing-grid { margin-top: 48px; }
  .process { margin-top: 64px; gap: 32px; }
  .hero__scroll { display: none; }
  .nav__mark { font-size: 18px; }
}

@media (max-width: 420px) {
  .hero__meta-block { flex: 1 1 100%; }
  .form__success h3 { font-size: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  padding: clamp(60px, 10vh, 120px) var(--pad-x) 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.foot__big {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-weight: 400;
}
.foot__big em { color: var(--ink-300); }

.foot__rows {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--hairline);
  padding-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.foot__col h5 {
  margin: 0 0 18px;
  font-weight: 500;
  color: var(--ink-200);
  font-size: 10px;
}
.foot__col a { display: block; padding: 4px 0; transition: color .3s; }
.foot__col a:hover { color: var(--fg); }

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.foot__bottom a { color: inherit; text-decoration: none; transition: color .3s; }
.foot__bottom a:hover { color: var(--fg); }

@media (max-width: 880px) {
  .foot__rows { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CUSTOM CURSOR (subtle)
   ============================================================ */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink-000);
  pointer-events: none;
  z-index: 9997;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
.cursor.is-large { width: 60px; height: 60px; }

/* hide default cursor on interactive elements when custom is on */
.has-cursor a, .has-cursor button, .has-cursor .gallery__item { cursor: none; }

/* ============================================================
   COLOR SCHEME DROPDOWN
   Fixed top-right; isolated from nav's mix-blend-mode so swatches
   render with true color and pointer events work reliably.
   ============================================================ */
.ctrl-bar {
  position: fixed;
  top: 18px;
  right: var(--pad-x);
  z-index: 120;
  display: flex;
  align-items: stretch;
  gap: 6px;
  font-family: var(--mono);
  isolation: isolate;
}

.ctrl-bar__links {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 16px;
  background: rgba(5, 4, 2, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(246, 243, 238, 0.16);
  color: #f6f3ee;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 4px;
}
.ctrl-bar__links a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
  line-height: 1;
  transition: opacity .3s ease;
}
.ctrl-bar__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 1px;
  background: currentColor;
  transition: right .4s cubic-bezier(.2,.7,.1,1);
}
.ctrl-bar__links a:hover::after { right: 0; }

.scheme-dd {
  position: relative;
  font-family: var(--mono);
}

.scheme-dd__trigger {
  appearance: none;
  background: rgba(5, 4, 2, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(246, 243, 238, 0.16);
  color: #f6f3ee;
  padding: 7px 11px 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease;
}

.scheme-dd__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}
.scheme-dd__eyebrow {
  font-size: 8px;
  letter-spacing: 0.22em;
  opacity: 0.5;
  line-height: 1;
}
.scheme-dd__trigger .scheme-dd__name {
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.scheme-dd__trigger:hover,
.scheme-dd.is-open .scheme-dd__trigger {
  background: rgba(5, 4, 2, 0.78);
  border-color: rgba(246, 243, 238, 0.32);
}

.scheme-dd__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(246, 243, 238, 0.25);
  transition: background .4s ease;
}

.scheme-dd__chev {
  font-size: 9px;
  opacity: 0.6;
  transition: transform .25s ease, opacity .25s ease;
}
.scheme-dd.is-open .scheme-dd__chev {
  transform: rotate(180deg);
  opacity: 1;
}

.scheme-dd__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: rgba(5, 4, 2, 0.9);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(246, 243, 238, 0.16);
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: scheme-fade .25s cubic-bezier(.2,.7,.1,1);
}
@keyframes scheme-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scheme-dd__item {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  color: #f6f3ee;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  transition: background .2s ease;
  width: 100%;
}
.scheme-dd__item:hover { background: rgba(246, 243, 238, 0.06); }
.scheme-dd__item.is-on { background: rgba(246, 243, 238, 0.1); }
.scheme-dd__item.is-on::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: #f6f3ee;
}

.scheme-dd__strip {
  display: inline-flex;
  width: 44px;
  height: 12px;
  flex-shrink: 0;
  border: 1px solid rgba(246, 243, 238, 0.18);
}
.scheme-dd__strip > span {
  flex: 1;
  display: block;
  height: 100%;
}

.scheme-dd__name {
  flex: 1;
}

@media (max-width: 980px) {
  .ctrl-bar__links { display: none; }
}

@media (max-width: 760px) {
  .ctrl-bar { top: 14px; gap: 4px; }
  .scheme-dd__trigger { padding: 6px 9px 6px 8px; gap: 7px; }
  .scheme-dd__eyebrow { display: none; }
  .scheme-dd__name { font-size: 9px; }
  .scheme-dd__menu { min-width: 180px; }
}
