/* ============================================
   Toledo Technologies LLC — "FOLIO"
   A hand-set luxury periodical, read by candlelight.
   Near-black ground, bone/cream text, rationed dusty
   pink, champagne hairlines, true Bodoni italics,
   monumental ghost numerals, plates from an art book.
   ============================================ */

@font-face {
  font-family: 'JetBrains Mono';
  src: url('/fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --text-primary: #d4cfc7;
  --text-secondary: #b7afa5;
  --text-muted: #9b9289;
  --accent: #d899a7;
  --accent-light: #efb8c4;
  --accent-dark: #b96b7d;
  --silver: #c8c0b8;
  --silver-light: #e8e0d8;
  --border: #1f1f1f;
  --border-light: #2a2a2a;

  /* FOLIO additions — derived tokens only (names above are load-bearing) */
  --champagne: #e3d5bf;
  --hairline: rgba(232, 224, 216, 0.13);
  --hairline-strong: rgba(232, 224, 216, 0.24);
  --hairline-faint: rgba(232, 224, 216, 0.07);
  --lamp: rgba(226, 208, 178, 1);
  --ink-warm: #0d0c0a;

  --font-display: 'Lora', 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

button {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: clip;
}

/* anchor offset is handled once, by html { scroll-padding-top } —
   do not add scroll-margin on sections or the offsets stack */

/* Mobile-only DOM is rendered but hidden on desktop.
   mobile.css re-shows these at <=768px. */
.m-cta-bar,
.m-scroll-progress {
  display: none;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg);
  overflow-x: clip;
  min-height: 100vh;
}

/* Candlelight vignette — the page is lit like a room, not rendered flat */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  background:
    radial-gradient(130% 105% at 50% 42%, transparent 58%, rgba(2, 2, 1, 0.5) 100%);
}

/* Hide native cursor only once the enhanced cursor system is fully ready. */
body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"] { cursor: none; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

/* ============================================
   SPATIAL ARCHITECTURE
   ============================================ */
.spatial-world {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
  isolation: isolate;
}

.spatial-world::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(226, 208, 178, 0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.spatial-scenic {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
}

.spatial-scene {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  pointer-events: auto;
  overflow: clip;
  contain: layout paint style;
}

/* NOTE: no content-visibility on scenes — estimated heights break
   anchor targeting (#pricing etc.) when sections render at true size. */

.spatial-scene.active {
  pointer-events: auto;
}

/* Each scene is lit from somewhere — an anchored warm lamp, not just the cursor */
.spatial-scene::before {
  content: '';
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(ellipse 52% 44% at var(--scene-accent-x, 50%) var(--scene-accent-y, 50%),
      rgba(226, 208, 178, calc(0.035 + var(--scene-presence, 0) * 0.030)) 0%, transparent 62%),
    linear-gradient(180deg, transparent 0%, rgba(226, 208, 178, 0.012) 55%, transparent 100%);
  opacity: calc(0.65 + var(--scene-presence, 0) * 0.35);
  pointer-events: none;
  transform: translateZ(-1px);
  z-index: 0;
}

/* Soft secondary glow */
.spatial-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(216, 153, 167, 0.018) 0%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero-inner,
.section-inner,
.footer-inner {
  transform-style: preserve-3d;
  /* no transition — the engine lerps per frame for liquid settling */
  will-change: transform;
}

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   CUSTOM CURSOR (warm — part of the brand DNA)
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform, width, height, opacity;
  contain: layout paint style;
  transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo), background 0.4s, border-color 0.4s;
}

.cursor-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  box-shadow: 0 0 22px 4px rgba(216, 153, 167, 0.35);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232, 224, 216, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 184, 196, 0.08) 0%, rgba(226, 208, 178, 0.05) 45%, transparent 75%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 26px -10px rgba(226, 208, 178, 0.4);
}

body.hovering .cursor-dot {
  width: 13px;
  height: 13px;
  background: var(--accent-light);
  box-shadow: 0 0 32px 9px rgba(239, 184, 196, 0.5);
}

body.hovering .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: rgba(239, 184, 196, 0.5);
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 184, 196, 0.12) 0%, rgba(226, 208, 178, 0.07) 48%, transparent 78%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 36px -10px rgba(239, 184, 196, 0.45);
}

@media (pointer: coarse) {
  body { cursor: auto; overflow-y: auto; }
  .spatial-world { min-height: 100vh; perspective: none; overflow: hidden; }
  .spatial-scenic { position: relative; transform: none !important; }
  .spatial-scene { position: relative; min-height: auto; transform: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

/* ============================================
   NAVIGATION — the masthead
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.5s var(--ease-out-expo), backdrop-filter 0.5s, padding 0.5s;
}

/* full-width hairline beneath the masthead */
.nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hairline) 12%, var(--hairline) 88%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.5s;
}

.nav.scrolled {
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 13px 0;
}

.nav.scrolled::after { opacity: 1; }

.nav-inner {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo picture,
.footer-center picture {
  display: block;
  line-height: 0;
}

.tt-mark {
  height: 38px;
  width: auto;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
  object-fit: contain;
}

.nav-logo:hover .tt-mark {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 0 10px rgba(226, 208, 178, 0.3));
}

.nav-logo-text-img,
.nav-logo-text-svg {
  height: 34px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  object-fit: contain;
  display: block;
}

.nav-logo:hover .nav-logo-text-img,
.nav-logo:hover .nav-logo-text-svg {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.4s var(--ease-out-expo);
  position: relative;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--silver-light);
}

.nav-link:focus-visible,
.btn:focus-visible,
.nav-logo:focus-visible,
.nav-toggle:focus-visible,
.contact-link:focus-visible {
  outline: 2px solid rgba(216, 153, 167, 0.72);
  outline-offset: 5px;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 40px;
  margin-left: 14px;
  font-weight: 600;
  padding: 10px 22px;
  transition: background 0.4s var(--ease-out-expo);
}

.nav-cta:hover { background: var(--accent-light); }

/* Nav active state */
.nav-link.active {
  color: var(--silver-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 1px;
  background: var(--hairline-strong);
}

.nav-cta.active::after { content: none; }

/* ============================================
   HERO — a composed typographic spread
   ============================================ */
.hero {
  min-height: 100svh;
  padding: 104px 60px 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  align-content: center;
  min-height: calc(100svh - 168px);
  gap: 16px 40px;
}

/* Masthead rule — the periodical's nameplate line */
.hero-masthead {
  grid-column: 1 / 13;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 8px;
  position: relative;
  z-index: 3;
}

.masthead-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.38em;
  text-indent: 0.38em; /* optically recenter tracked text */
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  grid-column: 1 / 6;
  grid-row: 2;
  margin-bottom: 4px;
  position: relative;
  z-index: 3;
}

.hero-label--right {
  justify-content: flex-end;
  grid-column: 8 / 13;
  grid-row: 2;
}

.label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--hairline);
}

.label-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-typography {
  grid-column: 1 / 12;
  grid-row: 3;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.6vw, 8.75rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  font-feature-settings: 'liga' 1, 'dlig' 1;
}

.hero-headline .line {
  display: block;
}

/* the spread: alternating hard indents, connective italics, one pink word */
.hero-headline .hl-2 { margin-left: 0.85em; }
.hero-headline .hl-3 { margin-left: 0.07em; }
.hero-headline .hl-4 { margin-left: 1.95em; margin-top: 0.012em; }

.hw-conn {
  font-style: italic;
  font-weight: 400;
  font-size: 0.40em;
  color: var(--silver);
  letter-spacing: 0.005em;
  margin-right: 0.12em;
}

.hw-conn--like { margin-right: 0.18em; }

.hero-headline .highlight {
  color: var(--accent);
  font-style: italic;
  font-weight: 470;
  letter-spacing: 0;
  padding-right: 0.04em;
}

.hw-look { font-weight: 400; }

.hw-elses {
  font-style: italic;
  font-weight: 420;
  color: var(--silver-light);
  letter-spacing: -0.002em;
}

.hero-monogram {
  position: absolute;
  top: 7%;
  right: 0;
  width: clamp(110px, 12.5vw, 180px);
  opacity: 0.16;
  filter: grayscale(1) brightness(1.15);
  pointer-events: none;
  z-index: 2;
  transform: translateZ(-32px);
}

.hero-monogram picture,
.hero-monogram img {
  display: block;
  width: 100%;
  height: auto;
}

/* the standfirst tucks into the spread's right whitespace,
   bottom-aligned with the headline's final line */
.hero-subtext {
  grid-column: 8 / 13;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  max-width: 470px;
  position: relative;
  z-index: 10;
  min-width: 0;
  margin-bottom: 10px;
}

.hero-subtext p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-shadow: 0 2px 22px rgba(10, 10, 10, 0.82);
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tag-sep {
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  opacity: 0.4;
}

.hero-cta {
  grid-column: 7 / 13;
  grid-row: 4;
  justify-self: start;
  position: relative;
  z-index: 10;
  min-width: 0;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-meta {
  grid-column: 1 / 7;
  grid-row: 4;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}

/* The wax-seal moment — slow rotation near the CTA corner */
.hero-seal {
  position: absolute;
  right: 4px;
  bottom: -30px;
  width: clamp(104px, 10vw, 150px);
  opacity: 0.62;
  pointer-events: none;
  z-index: 2;
}

.hero-seal picture,
.hero-seal img {
  display: block;
  width: 100%;
  height: auto;
  animation: seal-rotate 90s linear infinite;
}

@keyframes seal-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--hairline-faint), transparent);
  opacity: 0;
  transform: scaleY(0.72);
  transform-origin: center;
}

.gl-1 { left: 20%; }
.gl-2 { left: 40%; }
.gl-3 { left: 60%; }
.gl-4 { left: 80%; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--hairline-strong), transparent);
  animation: scrollPulse 2.4s infinite ease-in-out;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.65; }
  50% { transform: scaleY(0.6); opacity: 0.3; }
}

.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 216, 188, 0.075) 0%, rgba(226, 208, 178, 0.04) 34%, rgba(216, 153, 167, 0.014) 56%, transparent 72%);
  pointer-events: none;
  z-index: 9995;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  will-change: transform, opacity;
  contain: paint;
  transition: opacity 0.5s;
}

/* ============================================
   FOLIO TICKER — stroke-only Bodoni, drifting
   ============================================ */
.folio-ticker {
  position: relative;
  overflow: hidden;
  padding: 44px 0 52px;
  border-top: 1px solid var(--hairline-faint);
  border-bottom: 1px solid var(--hairline-faint);
  background: linear-gradient(180deg, rgba(226, 208, 178, 0.012), transparent 70%);
}

.folio-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-drift 95s linear infinite;
  will-change: transform;
}

.folio-ticker-group {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  white-space: nowrap;
}

.ft-item {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8.2vw, 7.75rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.26);
  letter-spacing: 0.01em;
}

.ft-item--italic {
  font-style: italic;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.20);
}

.ft-sep {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8.2vw, 7.75rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.13);
  margin: 0 0.55em;
}

@keyframes ticker-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  position: relative;
  padding: 170px 56px;
  width: 100%;
}

.section-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Ghost chapter numerals — the page's wayfinding monuments */
.ghost-numeral {
  position: absolute;
  top: -3%;
  right: -2%;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(26rem, 38vw, 46rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 224, 216, 0.065);
  pointer-events: none;
  user-select: none;
  font-variant-numeric: lining-nums;
  will-change: transform;
}

.ghost-numeral--left {
  right: auto;
  left: -3%;
}

.ghost-numeral--center {
  right: 50%;
  transform: translateX(50%);
  top: auto;
  bottom: -6%;
}

/* Vertical mono caption in the margin — printer's furniture */
.margin-caption {
  position: absolute;
  top: 50%;
  right: 22px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.55;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Folio mark — "№ 01 — Services" with a hairline rule */
.section-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 84px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8125rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--silver);
  opacity: 0.85;
}

.section-num {
  color: var(--silver-light);
  font-variant-numeric: tabular-nums;
}

.section-slash { opacity: 0.45; letter-spacing: 0; }

.section-label-rule {
  flex: 1;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, var(--hairline) 0%, var(--hairline-faint) 70%, transparent 100%);
  min-width: 60px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.4vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin-bottom: 22px;
  font-feature-settings: 'liga' 1, 'dlig' 1;
}

.section-title .line {
  display: block;
}

/* second lines lean — true italic as a design material */
.section-title .ti {
  font-style: italic;
  font-weight: 420;
  color: var(--silver-light);
}

.section-title .line + .line {
  margin-left: 0.55em;
}

.section-title--massive {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 460px;
  line-height: 1.75;
}

.section-subtitle .highlight {
  color: var(--text-primary);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.06em;
}

.highlight {
  color: var(--accent);
  font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 19px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 80px;
  transition:
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.8s var(--ease-out-expo),
    background 0.5s var(--ease-out-expo),
    border-color 0.5s var(--ease-out-expo);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow:
    0 10px 40px -10px rgba(216, 153, 167, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 20px 60px -15px rgba(216, 153, 167, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  transition: transform 0.1s var(--ease-out-expo);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--hairline-strong);
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--silver-light);
  border-color: rgba(232, 224, 216, 0.5);
  background: rgba(232, 224, 216, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 14px 38px -18px rgba(226, 208, 178, 0.3);
}

.btn-ghost:active {
  transform: translateY(-1px) scale(0.99);
  transition: transform 0.1s var(--ease-out-expo);
}

.btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn--large {
  padding: 23px 48px;
  font-size: 1.0625rem;
}

/* ============================================
   SERVICES — the index / ledger
   ============================================ */
.section-services {
  background: linear-gradient(180deg, #0a0a09 0%, var(--ink-warm) 60%, #0b0a09 100%);
  border-top: 1px solid var(--hairline-faint);
}

.services-header {
  margin-bottom: 96px;
}

.services-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 96px;
  border-top: 1px solid var(--hairline);
}

.service-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 28px 64px 8px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background 0.7s var(--ease-out-expo);
}

/* the row's lamp brightens on hover */
.service-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 30% 50%, rgba(226, 208, 178, 0.035), transparent 70%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.service-item:hover::after { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 5.75rem);
  font-weight: 400;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.3);
  font-variant-numeric: lining-nums;
  letter-spacing: -0.02em;
  padding-top: 6px;
}

.service-content {
  max-width: 640px;
  margin-left: clamp(0px, 6vw, 88px); /* the text block sits off-centre */
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}

.service-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 26px;
}

.service-content p em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08em;
  color: var(--text-primary);
}

/* a drop cap on the opening paragraph — set like a first page */
.service-item:first-of-type .service-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5em;
  font-weight: 400;
  float: left;
  line-height: 0.78;
  padding: 0.06em 0.12em 0 0;
  color: var(--silver-light);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--hairline-faint);
  max-width: 540px;
}

.service-features li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.service-arrow {
  color: var(--silver);
  opacity: 0.55;
  margin: 0 8px;
}

.service-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: var(--hairline-strong);
  text-underline-offset: 3px;
  transition: color 0.3s, text-decoration-color 0.3s;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--silver-light);
  text-decoration-color: var(--silver-light);
}

.services-motto {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 420px;
  margin-left: auto;
  padding-left: 28px;
  border-left: 1px solid var(--hairline);
}

.motto-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.motto-dash {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--silver);
  opacity: 0.4;
}

/* ============================================
   SELECTED WORK — plates from an art book
   ============================================ */
.section-work {
  background: linear-gradient(180deg, transparent 0%, rgba(226, 208, 178, 0.013) 50%, transparent 100%);
}

.work-header {
  margin-bottom: 88px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 72px 64px;
  margin-bottom: 64px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.work-card--featured {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.work-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.work-card:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2;
}

/* — the plate itself — */
.plate {
  margin-bottom: 36px;
  position: relative;
}

.plate-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 4 / 3;
  background: var(--ink-warm);
}

/* corner ticks — crop marks around the frame */
.plate::before {
  content: '';
  position: absolute;
  inset: -9px;
  top: -9px;
  bottom: auto;
  height: calc(100% - 28px + 18px);
  pointer-events: none;
  background:
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 0 / 11px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 0 / 1px 11px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 0 / 11px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 0 / 1px 11px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 100% / 11px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 100% / 1px 11px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 100% / 11px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 100% / 1px 11px;
  background-repeat: no-repeat;
}

.plate-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.12; /* head-room for parallax drift inside the frame */
  filter: saturate(0.85) contrast(1.02) brightness(0.98);
  transition: scale 1.4s var(--ease-out-expo);
  will-change: transform;
}

/* plates breathe on hover */
.work-card:hover .plate-img {
  scale: 1.155;
}

/* unifying duotone wash + warm tint so the series reads as one commission */
.plate-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(226, 208, 178, 0.05) 0%, transparent 38%, rgba(216, 153, 167, 0.045) 100%),
    radial-gradient(120% 90% at 50% 110%, rgba(5, 4, 3, 0.36), transparent 55%);
  mix-blend-mode: hard-light;
}

.plate-caption {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.plate-no {
  color: var(--silver-light);
}

.plate-caption-rule {
  flex: 1;
  align-self: center;
  height: 1px;
  min-width: 32px;
  background: var(--hairline-faint);
}

.plate-desc {
  color: var(--text-muted);
  letter-spacing: 0.18em;
}

.work-card:hover h3 {
  color: var(--silver-light);
}

.work-card--featured h3 {
  font-size: 2rem;
}

.work-card-flag {
  color: var(--accent);
  font-style: normal;
  letter-spacing: inherit;
  text-transform: inherit;
  font-family: inherit;
}

.work-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--hairline-faint);
}

.work-card-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-card-year {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease-out-quart);
}

.work-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 26px;
  flex-grow: 1;
  max-width: 60ch;
}

.work-card-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline-faint);
}

.work-card-stats li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.work-card-stats li span {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-footnote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
  font-size: 0.8438rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-faint);
}

.work-footnote .footnote-star {
  color: var(--silver);
  opacity: 0.7;
  font-size: 0.9375rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ============================================
   DIFFERENCE — comparison ledger, Toledo illuminated
   ============================================ */
.section-difference {
  border-top: 1px solid var(--hairline-faint);
  background: linear-gradient(180deg, #0a0a09 0%, #0c0b0a 55%, #0a0a09 100%);
}

.difference-header {
  margin-bottom: 96px;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 0;
  align-items: stretch;
}

.diff-col {
  padding: 56px 44px 40px;
}

/* the quiet gray margins */
.diff-col--left,
.diff-col--right {
  opacity: 0.92;
}

.diff-col--right { text-align: right; }
.diff-col--right .diff-list li { justify-content: flex-end; flex-direction: row-reverse; }

.diff-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-faint);
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-muted);
}

.diff-x {
  color: var(--silver);
  opacity: 0.45;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  line-height: 1.45;
}

/* the illuminated centre panel */
.diff-col--center {
  border-left: none;
  border-right: none;
  position: relative;
  padding: 0 16px;
}

.diff-center-card {
  position: relative;
  height: 100%;
  padding: 52px 48px 44px;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(226, 208, 178, 0.05), transparent 70%),
    linear-gradient(180deg, rgba(232, 224, 216, 0.028), rgba(232, 224, 216, 0.012));
  border: 1px solid var(--hairline);
}

/* crop-mark ticks at the corners of the illuminated panel */
.diff-center-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  pointer-events: none;
  background:
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 0 / 12px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 0 / 1px 12px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 0 / 12px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 0 / 1px 12px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 100% / 12px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 0 100% / 1px 12px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 100% / 12px 1px,
    linear-gradient(var(--hairline-strong), var(--hairline-strong)) 100% 100% / 1px 12px;
  background-repeat: no-repeat;
}

.diff-center-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1;
}

.diff-center-tag {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline-faint);
}

.diff-center-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.diff-center-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9688rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
}

.diff-center-list li em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.07em;
  color: var(--text-primary);
}

.diff-arrow {
  color: var(--silver-light);
  opacity: 0.65;
  font-family: var(--font-mono);
}

.diff-center-seal {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--silver-light);
  letter-spacing: 0.02em;
  line-height: 1.55;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-faint);
}

.diff-center-seal::before {
  content: '— ';
  color: var(--silver);
  opacity: 0.7;
  font-style: normal;
}

/* ============================================
   PROCESS — editorial timeline, table of contents
   ============================================ */
.section-process {
  border-top: 1px solid var(--hairline-faint);
}

.process-header {
  margin-bottom: 110px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 130px;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 8px;
}

/* the spine — draws itself on scroll */
.process-spine {
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--hairline-strong), var(--hairline) 60%, transparent);
  transform-origin: top;
  transform: scaleY(var(--spine-scale, 1));
  will-change: transform;
}

.process-step {
  position: relative;
  padding-bottom: 84px;
}

.process-steps > .process-step:nth-child(4n+2) {
  grid-column: 1;
  text-align: right;
  padding-right: 8px;
}

.process-steps > .process-step:nth-child(4n) {
  grid-column: 2;
  text-align: left;
  margin-top: 130px;
  padding-left: 8px;
}

.process-step:last-of-type { padding-bottom: 24px; }

/* milestone node on the spine */
.process-step::before {
  content: '';
  position: absolute;
  top: 0.95em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(232, 224, 216, 0.55);
  box-shadow: 0 0 0 5px var(--bg), 0 0 16px 1px rgba(226, 208, 178, 0.22);
  z-index: 1;
}

.process-steps > .process-step:nth-child(4n+2)::before { right: calc(-65px - 12px); }
.process-steps > .process-step:nth-child(4n)::before { left: calc(-65px - 12px); }

.step-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232, 224, 216, 0.32);
  font-variant-numeric: oldstyle-nums;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-content p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 46ch;
}

.process-steps > .process-step:nth-child(4n+2) .step-content p { margin-left: auto; }

.process-arrow {
  display: none;
}

/* ============================================
   PRICING — the rate card, set like a fine menu
   ============================================ */
.section-pricing {
  background: linear-gradient(180deg, #0b0a09 0%, var(--ink-warm) 45%, #0b0a09 100%);
  border-top: 1px solid var(--hairline-faint);
}

.pricing-header {
  margin-bottom: 96px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0 36px;
  align-items: start;
  padding: 44px 12px;
  border-bottom: 1px solid var(--hairline-faint);
  transition: background 0.5s;
  position: relative;
}

.pricing-row:hover {
  background: rgba(232, 224, 216, 0.014);
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  font-style: italic;
  color: var(--silver);
  opacity: 0.55;
  line-height: 1.4;
  font-variant-numeric: oldstyle-nums;
  padding-top: 0.2em;
}

.pricing-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* menu line: name … dotted leader … price */
.pricing-name h3 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pricing-name h3::after {
  content: '';
  flex: 1;
  min-width: 48px;
  border-bottom: 1px dotted rgba(232, 224, 216, 0.28);
  transform: translateY(-0.32em);
}

.pricing-desc {
  font-size: 0.9063rem;
  font-weight: 300;
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0.015em;
}

.pricing-price {
  position: absolute;
  right: 12px;
  top: 44px;
  text-align: right;
}

.price-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  white-space: nowrap;
}

/* keep the menu line clear of the absolute price block */
.pricing-name h3 { padding-right: 300px; }

.flagship-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5313rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(216, 153, 167, 0.4);
  padding: 4px 9px 3px;
  border-radius: 2px;
  margin-left: 16px;
  vertical-align: 0.45em;
  white-space: nowrap;
}

.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--hairline-faint);
  max-width: 760px;
}

.pricing-includes li {
  position: relative;
  padding-left: 15px;
  font-size: 0.7813rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--silver);
  opacity: 0.45;
}

/* — flagship row: a faint pink-tinted panel with crop marks — */
.pricing-row--flagship {
  padding: 44px 36px;
  margin: 14px -24px;
  border: 1px solid rgba(216, 153, 167, 0.16);
  border-bottom: 1px solid rgba(216, 153, 167, 0.16);
  background:
    radial-gradient(85% 70% at 22% 0%, rgba(216, 153, 167, 0.05), transparent 70%),
    linear-gradient(180deg, rgba(216, 153, 167, 0.022), rgba(216, 153, 167, 0.008));
}

.pricing-row--flagship::before {
  content: '';
  position: absolute;
  inset: -8px;
  pointer-events: none;
  background:
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 0 0 / 11px 1px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 0 0 / 1px 11px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 100% 0 / 11px 1px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 100% 0 / 1px 11px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 0 100% / 11px 1px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 0 100% / 1px 11px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 100% 100% / 11px 1px,
    linear-gradient(rgba(216, 153, 167, 0.4), rgba(216, 153, 167, 0.4)) 100% 100% / 1px 11px;
  background-repeat: no-repeat;
}

.pricing-row--flagship .pricing-price { right: 36px; }

/* the custom / dream-tier row leans champagne instead */
.pricing-row--custom {
  background: linear-gradient(180deg, rgba(226, 208, 178, 0.015), transparent 80%);
}

.pricing-footnote {
  display: flex;
  gap: 16px;
  max-width: 1080px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-faint);
}

.footnote-star {
  color: var(--silver);
  opacity: 0.7;
  font-size: 1.125rem;
  line-height: 1;
}

.pricing-footnote p {
  font-size: 0.7813rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

.pricing-availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 32px auto 0;
  padding: 14px 24px;
  border: 1px solid var(--hairline);
  border-radius: 80px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section-pricing .section-inner { display: flex; flex-direction: column; }
.section-pricing .pricing-availability { align-self: center; }

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px 2px rgba(216, 153, 167, 0.5);
  animation: availability-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes availability-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ============================================
   FAQ — quiet ledger
   ============================================ */
.section-faq {
  border-top: 1px solid var(--hairline-faint);
}

.faq-header {
  margin-bottom: 88px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--hairline);
  counter-reset: faq;
  max-width: 880px;
}

.faq-item {
  border-bottom: 1px solid var(--hairline-faint);
}

.faq-question {
  display: flex;
  align-items: baseline;
  gap: 26px;
  width: 100%;
  padding: 30px 4px;
  font-family: var(--font-body);
  font-size: 1.0313rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s;
  background: none;
  border: none;
}

.faq-question::before {
  counter-increment: faq;
  content: "Q." counter(faq, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  min-width: 44px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.faq-question > span:first-of-type { flex: 1; }

.faq-question:hover {
  color: var(--silver-light);
}

.faq-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--silver);
  opacity: 0.8;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s;
}

.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

/* plus → minus */
.faq-item.active .faq-icon { transform: rotate(90deg); }
.faq-item.active .faq-icon::after { transform: scaleY(0); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 32px;
}

.faq-answer p {
  font-size: 0.9063rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 660px;
  margin-left: 70px;
}

body.has-custom-cursor .nav-toggle,
body.has-custom-cursor .faq-question {
  cursor: none;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(216, 153, 167, 0.72);
  outline-offset: 4px;
}

/* ============================================
   CONTACT — the full-viewport closing spread
   ============================================ */
.section-contact {
  background: linear-gradient(180deg, #0b0a09 0%, var(--ink-warm) 40%, #0a0a09 100%);
  border-top: 1px solid var(--hairline-faint);
  padding: 170px 56px 110px;
  min-height: 100svh;
}

.section-contact .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-main {
  position: relative;
  text-align: center;
  margin: 40px 0 130px;
}

/* the giant seal, faint, rotating behind the closing line */
.contact-seal {
  position: absolute;
  top: 46%;
  left: 50%;
  width: clamp(300px, 34vw, 480px);
  height: auto;
  margin-left: calc(clamp(300px, 34vw, 480px) / -2);
  margin-top: calc(clamp(300px, 34vw, 480px) / -2);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  animation: seal-rotate 140s linear infinite;
}

.contact-headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.2vw, 6.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 52px;
  font-feature-settings: 'liga' 1, 'dlig' 1;
}

.contact-headline .line {
  display: block;
}

.cl-small {
  display: inline-block;
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9em;
  font-family: var(--font-mono);
}

.contact-headline .ti {
  font-style: italic;
  font-weight: 430;
  color: var(--silver-light);
}

.contact-headline .highlight {
  color: var(--accent);
  font-style: italic;
  font-weight: 470;
  padding-right: 0.03em;
}

.contact-sub {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.contact-cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding-top: 44px;
  border-top: 1px solid var(--hairline);
}

.contact-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-link, .contact-text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--silver-light);
}

/* ============================================
   FOOTER — the colophon
   ============================================ */
.footer {
  padding: 80px 56px 36px;
  border-top: 1px solid var(--hairline-faint);
  background:
    linear-gradient(to bottom, transparent, rgba(226, 208, 178, 0.014)),
    var(--bg);
  min-height: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-col--brand picture {
  display: block;
  line-height: 0;
  margin-bottom: 18px;
}

.footer-mark {
  width: 38px;
  height: 38px;
  opacity: 0.7;
  margin-bottom: 18px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0313rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 30ch;
  margin-bottom: 20px;
}

.footer-est,
.footer-email {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-h {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-faint);
  max-width: 200px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  font-family: var(--font-body);
  font-size: 0.9063rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  width: fit-content;
}

.footer-list a:hover {
  color: var(--silver-light);
  border-bottom-color: var(--hairline-strong);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer-bottom {
  max-width: 1240px;
  margin: 64px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-faint);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-colophon {
  text-align: center;
  letter-spacing: 0.2em;
  opacity: 0.85;
}

/* ============================================
   ANIMATIONS — ENTRANCE STATES
   Masked line reveals for display type; quiet
   fade-rise (no blur) for everything else.
   ============================================ */

/* line masks */
.hero-headline .line,
.section-title .line,
.contact-headline .line {
  overflow: hidden;
}

.line-inner {
  display: block;
  will-change: transform;
}

/* give descenders/italic swashes room inside the mask */
.hero-headline .line-inner,
.section-title .line-inner,
.contact-headline .line-inner {
  padding-bottom: 0.085em;
  margin-bottom: -0.085em;
  padding-right: 0.1em;
}

.js-loaded .spatial-scene:not(.is-revealed) .line .line-inner {
  transform: translateY(112%);
}

.js-loaded .spatial-scene.is-revealed .line .line-inner {
  transform: translateY(0);
  transition: transform 1s var(--ease-out-expo) var(--reveal-delay, 0ms);
}

/* quiet fade-rise for supporting matter */
.js-loaded .spatial-scene:not(.is-revealed) .step-num,
.js-loaded .spatial-scene:not(.is-revealed) .service-num,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-num,
.js-loaded .spatial-scene:not(.is-revealed) .diff-label,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-name,
.js-loaded .spatial-scene:not(.is-revealed) .section-subtitle,
.js-loaded .spatial-scene:not(.is-revealed) .hero-subtext,
.js-loaded .spatial-scene:not(.is-revealed) .hero-cta,
.js-loaded .spatial-scene:not(.is-revealed) .hero-meta,
.js-loaded .spatial-scene:not(.is-revealed) .hero-monogram,
.js-loaded .spatial-scene:not(.is-revealed) .hero-label,
.js-loaded .spatial-scene:not(.is-revealed) .service-content,
.js-loaded .spatial-scene:not(.is-revealed) .diff-list li,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-list li,
.js-loaded .spatial-scene:not(.is-revealed) .process-step,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-row,
.js-loaded .spatial-scene:not(.is-revealed) .faq-item,
.js-loaded .spatial-scene:not(.is-revealed) .services-motto,
.js-loaded .spatial-scene:not(.is-revealed) .contact-info,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-footnote,
.js-loaded .spatial-scene:not(.is-revealed) .pricing-availability,
.js-loaded .spatial-scene:not(.is-revealed) .plate,
.js-loaded .spatial-scene:not(.is-revealed) .work-card-meta,
.js-loaded .spatial-scene:not(.is-revealed) .work-card h3,
.js-loaded .spatial-scene:not(.is-revealed) .work-card p,
.js-loaded .spatial-scene:not(.is-revealed) .work-card-stats,
.js-loaded .spatial-scene:not(.is-revealed) .work-footnote,
.js-loaded .spatial-scene:not(.is-revealed) .contact-sub,
.js-loaded .spatial-scene:not(.is-revealed) .contact-cta-row,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-tag,
.js-loaded .spatial-scene:not(.is-revealed) .diff-center-seal,
.js-loaded .spatial-scene:not(.is-revealed) .section-label {
  opacity: 0;
  /* entrance follows the scene's spatial vector — the down-and-across flow */
  transform: translate3d(var(--enter-x, 0px), var(--enter-y, 16px), 0);
}

/* atmosphere fades in place */
.js-loaded .spatial-scene:not(.is-revealed) .hero-seal,
.js-loaded .spatial-scene:not(.is-revealed) .ghost-numeral,
.js-loaded .spatial-scene:not(.is-revealed) .margin-caption,
.js-loaded .spatial-scene:not(.is-revealed) .contact-seal,
.js-loaded .spatial-scene:not(.is-revealed) .hero-masthead {
  opacity: 0;
}

.js-loaded .spatial-scene.is-revealed .step-num,
.js-loaded .spatial-scene.is-revealed .service-num,
.js-loaded .spatial-scene.is-revealed .pricing-num,
.js-loaded .spatial-scene.is-revealed .diff-label,
.js-loaded .spatial-scene.is-revealed .diff-center-name,
.js-loaded .spatial-scene.is-revealed .section-subtitle,
.js-loaded .spatial-scene.is-revealed .hero-subtext,
.js-loaded .spatial-scene.is-revealed .hero-cta,
.js-loaded .spatial-scene.is-revealed .hero-meta,
.js-loaded .spatial-scene.is-revealed .hero-monogram,
.js-loaded .spatial-scene.is-revealed .hero-label,
.js-loaded .spatial-scene.is-revealed .service-content,
.js-loaded .spatial-scene.is-revealed .diff-list li,
.js-loaded .spatial-scene.is-revealed .diff-center-list li,
.js-loaded .spatial-scene.is-revealed .process-step,
.js-loaded .spatial-scene.is-revealed .pricing-row,
.js-loaded .spatial-scene.is-revealed .faq-item,
.js-loaded .spatial-scene.is-revealed .services-motto,
.js-loaded .spatial-scene.is-revealed .contact-info,
.js-loaded .spatial-scene.is-revealed .pricing-footnote,
.js-loaded .spatial-scene.is-revealed .pricing-availability,
.js-loaded .spatial-scene.is-revealed .plate,
.js-loaded .spatial-scene.is-revealed .work-card-meta,
.js-loaded .spatial-scene.is-revealed .work-card h3,
.js-loaded .spatial-scene.is-revealed .work-card p,
.js-loaded .spatial-scene.is-revealed .work-card-stats,
.js-loaded .spatial-scene.is-revealed .work-footnote,
.js-loaded .spatial-scene.is-revealed .contact-sub,
.js-loaded .spatial-scene.is-revealed .contact-cta-row,
.js-loaded .spatial-scene.is-revealed .diff-center-tag,
.js-loaded .spatial-scene.is-revealed .diff-center-seal,
.js-loaded .spatial-scene.is-revealed .section-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.85s var(--ease-out-expo) var(--reveal-delay, 0ms),
    transform 1.05s var(--ease-out-expo) var(--reveal-delay, 0ms);
}

.js-loaded .spatial-scene.is-revealed .hero-seal,
.js-loaded .spatial-scene.is-revealed .ghost-numeral,
.js-loaded .spatial-scene.is-revealed .margin-caption,
.js-loaded .spatial-scene.is-revealed .contact-seal,
.js-loaded .spatial-scene.is-revealed .hero-masthead {
  opacity: 1;
  transition: opacity 1.6s var(--ease-out-expo) var(--reveal-delay, 0ms);
}

.js-loaded .spatial-scene.is-revealed .ghost-numeral { opacity: 1; }
.js-loaded .spatial-scene.is-revealed .hero-seal { opacity: 0.62; }
.js-loaded .spatial-scene.is-revealed .contact-seal { opacity: 0.055; }
.js-loaded .spatial-scene.is-revealed .margin-caption { opacity: 0.55; }
.js-loaded .spatial-scene.is-revealed .hero-monogram { opacity: 0.16; transform: translateZ(-32px); }

/* masthead rule draws itself in */
.js-loaded #hero:not(.is-revealed) .hero-masthead {
  border-image: linear-gradient(90deg, transparent, transparent) 1;
}

.js-loaded #hero.is-revealed .grid-line {
  opacity: 0.3;
  transform: scaleY(1);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.js-loaded #hero.is-revealed .scroll-indicator {
  opacity: 1;
  transition: opacity 0.8s var(--ease-out-expo) 1s;
}

/* hero entrance sequencing — under 1.6s total */
.js-loaded #hero.is-revealed .hero-masthead { --reveal-delay: 0ms; }
.js-loaded #hero.is-revealed .hero-label:not(.hero-label--right) { --reveal-delay: 120ms; }
.js-loaded #hero.is-revealed .hero-label--right { --reveal-delay: 200ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(1) .line-inner { transition-delay: 180ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(2) .line-inner { transition-delay: 260ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(3) .line-inner { transition-delay: 340ms; }
.js-loaded #hero.is-revealed .hero-headline .line:nth-child(4) .line-inner { transition-delay: 420ms; }
.js-loaded #hero.is-revealed .hero-subtext { --reveal-delay: 520ms; }
.js-loaded #hero.is-revealed .hero-cta { --reveal-delay: 620ms; }
.js-loaded #hero.is-revealed .hero-meta { --reveal-delay: 700ms; }
.js-loaded #hero.is-revealed .hero-seal { --reveal-delay: 760ms; }

/* deep-link targets render revealed */
.js-loaded .spatial-scene:target .line .line-inner,
.js-loaded .spatial-scene:target .step-num,
.js-loaded .spatial-scene:target .service-num,
.js-loaded .spatial-scene:target .pricing-num,
.js-loaded .spatial-scene:target .diff-label,
.js-loaded .spatial-scene:target .diff-center-name,
.js-loaded .spatial-scene:target .section-subtitle,
.js-loaded .spatial-scene:target .service-content,
.js-loaded .spatial-scene:target .diff-list li,
.js-loaded .spatial-scene:target .diff-center-list li,
.js-loaded .spatial-scene:target .process-step,
.js-loaded .spatial-scene:target .pricing-row,
.js-loaded .spatial-scene:target .faq-item,
.js-loaded .spatial-scene:target .services-motto,
.js-loaded .spatial-scene:target .contact-info,
.js-loaded .spatial-scene:target .pricing-footnote,
.js-loaded .spatial-scene:target .pricing-availability,
.js-loaded .spatial-scene:target .plate,
.js-loaded .spatial-scene:target .work-card-meta,
.js-loaded .spatial-scene:target .work-card h3,
.js-loaded .spatial-scene:target .work-card p,
.js-loaded .spatial-scene:target .work-card-stats,
.js-loaded .spatial-scene:target .work-footnote,
.js-loaded .spatial-scene:target .contact-sub,
.js-loaded .spatial-scene:target .contact-cta-row,
.js-loaded .spatial-scene:target .diff-center-tag,
.js-loaded .spatial-scene:target .diff-center-seal,
.js-loaded .spatial-scene:target .ghost-numeral,
.js-loaded .spatial-scene:target .margin-caption,
.js-loaded .spatial-scene:target .contact-seal,
.js-loaded .spatial-scene:target .section-label {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ============================================
   NAV TOGGLE (mobile affordance, desktop hidden)
   ============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* anchor jumps must be instant, not an 8000px glide */
  html {
    scroll-behavior: auto;
  }

  .spatial-scenic {
    transform: none !important;
  }

  .spatial-scene {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }

  body {
    overflow-y: auto !important;
    height: auto !important;
  }

  .spatial-world {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    perspective: none !important;
  }

  .folio-ticker-track {
    animation: none !important;
    transform: none !important;
  }

  .hero-seal img,
  .contact-seal {
    animation: none !important;
  }

  .process-spine {
    transform: scaleY(1) !important;
  }

  .line .line-inner,
  .line, .step-num, .service-num, .pricing-num, .diff-label,
  .diff-center-name, .section-subtitle,
  .hero-subtext, .hero-cta, .hero-meta,
  .hero-monogram, .hero-label, .hero-masthead, .service-content,
  .diff-list li, .diff-center-list li, .process-step, .pricing-row, .faq-item,
  .services-motto, .contact-info, .contact-sub, .contact-cta-row,
  .pricing-footnote, .pricing-availability, .section-label,
  .plate, .work-card-meta, .work-card h3, .work-card p,
  .work-card-stats, .work-footnote, .ghost-numeral, .margin-caption,
  .contact-seal, .diff-center-tag, .diff-center-seal,
  .grid-line, .scroll-indicator, .hero-tags, .hero-seal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .availability-dot { animation: none; }
}

/* ============================================
   RESPONSIVE — intermediate widths
   ============================================ */
@media (max-width: 1280px) {
  /* narrower canvases: the standfirst returns below the headline */
  .hero { padding: 92px 60px 48px; }
  .hero-inner { grid-template-rows: auto auto auto auto auto; gap: 12px 40px; }
  .hero-headline { font-size: clamp(3.4rem, 7.4vw, 6.5rem); }
  .hero-subtext {
    grid-column: 6 / 13;
    grid-row: 4;
    align-self: start;
    margin: 10px 0 0;
    max-width: 560px;
  }
  .hero-cta { grid-row: 5; grid-column: 6 / 13; margin-top: 0; }
  .hero-meta { grid-row: 5; grid-column: 1 / 6; }
}

@media (max-width: 1180px) {
  .pricing-name h3 { padding-right: 150px; }
  .work-grid { gap: 56px 44px; }
  .ghost-numeral { font-size: clamp(20rem, 34vw, 34rem); }
}

@media (max-width: 1024px) {
  .section { padding: 130px 44px; }
  .hero { padding: 112px 44px 88px; }
  .nav-inner { padding: 0 36px; }

  .difference-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
  .diff-col--center {
    grid-column: 1 / -1;
    order: -1;
    padding: 0;
  }
  .diff-col { padding: 8px 4px; }
  .diff-col--right { text-align: left; }
  .diff-col--right .diff-list li { justify-content: flex-start; flex-direction: row; }

  .process-steps { column-gap: 90px; }
  .process-steps > .process-step:nth-child(4n+2)::before { right: calc(-45px - 12px); }
  .process-steps > .process-step:nth-child(4n)::before { left: calc(-45px - 12px); }

  .work-grid { grid-template-columns: 1fr; gap: 72px; }
  .work-card--featured,
  .work-card:nth-child(2),
  .work-card:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .service-content { margin-left: 0; }
}

/* ============================================
   RESPONSIVE — ≤768 structural fallback.
   mobile.css (media-split) owns this range; these
   rules are a safety net that it deliberately overrides.
   ============================================ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }

  .section { padding: 100px 24px; }
  .hero { padding: 112px 24px 84px; }
  .nav-inner { padding: 0 24px; }
  .tt-mark { height: 32px; width: auto; }
  .nav-logo { gap: 10px; }
  .nav-logo-text-img,
  .nav-logo-text-svg { height: 28px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 0.875rem;
    padding: 12px 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }
  .hero-label--right { display: none; }
  .hero-masthead,
  .hero-label,
  .hero-typography,
  .hero-subtext,
  .hero-cta,
  .hero-meta,
  .hero-monogram {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    max-width: 100%;
    min-width: 0;
  }
  .hero-monogram { display: none; }
  .hero-seal { display: none; }
  .hero-headline {
    font-size: 3rem;
    line-height: 0.95;
  }
  .hero-headline .hl-2 { margin-left: 0.3em; }
  .hero-headline .hl-4 { margin-left: 0.9em; }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }
  .service-num { font-size: 3rem; }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .diff-col--center { order: 0; }

  .process-steps {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .process-spine { left: 0; }
  .process-steps > .process-step:nth-child(4n+2),
  .process-steps > .process-step:nth-child(4n) {
    grid-column: 1;
    text-align: left;
    margin-top: 0;
    padding-left: 36px;
    padding-right: 0;
  }
  .process-steps > .process-step:nth-child(4n+2)::before,
  .process-steps > .process-step:nth-child(4n)::before {
    left: -3px;
    right: auto;
  }
  .process-steps > .process-step:nth-child(4n+2) .step-content p { margin-left: 0; }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pricing-num { display: none; }
  .pricing-price { position: static; text-align: left; margin-top: 10px; }
  .pricing-name h3 { padding-right: 0; }
  .pricing-row--flagship { margin: 14px 0; padding: 32px 20px; }
  .pricing-row--flagship .pricing-price { right: auto; }

  .faq-answer p { margin-left: 0; }

  .contact-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-colophon { text-align: left; }

  .ghost-numeral { font-size: clamp(14rem, 56vw, 22rem); -webkit-text-stroke-width: 1px; }
  .margin-caption { display: none; }

  .ft-item, .ft-sep { font-size: clamp(3rem, 11vw, 4.5rem); }
  .folio-ticker { padding: 30px 0 36px; }
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: 2.55rem;
    line-height: 1.0;
  }
  .hero-headline .line,
  .hero-subtext p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .nav-logo-text-img { height: 24px; }
  .hero-tags {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .tag-sep { display: none; }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ============================================
   CONTACT SUB ELEMENTS shared with mobile
   ============================================ */
.contact-sub a { color: inherit; }
