/* Vidastu — design tokens */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
  /* palette */
  --bg-cream: #F7F4EE;
  --bg-paper: #FFFFFF;
  --ink: #0E0E0C;
  --ink-soft: #4A4A45;
  --rule: #E8E2D6;
  --sage: #6B7A5C;
  --terracotta: #B5562C;
  --terracotta-deep: #97431F;
  --gold: #C9A961;

  /* type */
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --f-hi: "Tiro Devanagari Hindi", "Fraunces", serif;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --d-micro: 400ms;
  --d-block: 800ms;
  --d-hero: 1200ms;
  --d-pinned: 1800ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg-cream); }
body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; padding: 0; cursor: pointer; }

/* Focus-visible: keyboard users get a clear indicator, mouse users don't */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 2px;
}

/* type utilities */
.display { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.02em; line-height: 0.95; }
.display-it { font-family: var(--f-display); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--f-mono); font-variant-numeric: tabular-nums; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.measure { max-width: 65ch; }

/* hairline rule */
.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* custom cursor */
/* CURSOR — ring + dot, four contextual states */
.v-cursor-ring,
.v-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.v-cursor-ring {
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 1px solid rgba(247, 244, 238, 0.85);
  border-radius: 50%;
  mix-blend-mode: difference;
  transition:
    width 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    height 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    margin 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 240ms ease,
    background 240ms ease;
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.v-cursor-ring .label {
  color: rgba(247, 244, 238, 0.95);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 220ms ease 60ms;
  transform: translateY(0.5px);
  white-space: nowrap;
}
.v-cursor-dot {
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  background: rgba(247, 244, 238, 0.95);
  border-radius: 50%;
  mix-blend-mode: difference;
  transition: opacity 220ms ease, transform 220ms ease;
}
/* State: view (generic link/button) */
.v-cursor.state-view .v-cursor-ring {
  width: 68px; height: 68px;
  margin: -34px 0 0 -34px;
}
.v-cursor.state-view .v-cursor-ring .label { opacity: 1; }
.v-cursor.state-view .v-cursor-dot { opacity: 0; transform: scale(0.5); }
/* State: call (phone/WhatsApp) */
.v-cursor.state-call .v-cursor-ring {
  width: 68px; height: 68px;
  margin: -34px 0 0 -34px;
  border-color: var(--terracotta);
  mix-blend-mode: normal;
  background: rgba(181, 86, 44, 0.08);
}
.v-cursor.state-call .v-cursor-ring .label { opacity: 1; color: var(--terracotta); mix-blend-mode: normal; }
.v-cursor.state-call .v-cursor-dot { opacity: 0; }
/* State: explore (image/card/project) */
.v-cursor.state-explore .v-cursor-ring {
  width: 88px; height: 88px;
  margin: -44px 0 0 -44px;
}
.v-cursor.state-explore .v-cursor-ring .label { opacity: 1; }
.v-cursor.state-explore .v-cursor-dot { opacity: 0; }
/* State: drag */
.v-cursor.state-drag .v-cursor-ring {
  width: 88px; height: 88px;
  margin: -44px 0 0 -44px;
}
.v-cursor.state-drag .v-cursor-ring .label { opacity: 1; }
.v-cursor.state-drag .v-cursor-dot { opacity: 0; }
/* State: text input */
.v-cursor.state-text .v-cursor-ring {
  width: 2px; height: 24px;
  margin: -12px 0 0 -1px;
  border: none;
  border-radius: 1px;
  background: rgba(247, 244, 238, 1);
  mix-blend-mode: difference;
}
.v-cursor.state-text .v-cursor-ring .label { display: none; }
.v-cursor.state-text .v-cursor-dot { opacity: 0; }
/* Touch / reduced-motion */
@media (pointer: coarse) { .v-cursor-ring, .v-cursor-dot { display: none; } }
@media (prefers-reduced-motion: reduce) { .v-cursor-ring { transition: none; } }
html.has-custom-cursor,
html.has-custom-cursor a,
html.has-custom-cursor button,
/* legacy custom cursor removed C8.5 — using native cursor everywhere */
html.has-custom-cursor input,
html.has-custom-cursor textarea { cursor: text; }
@media (pointer: coarse) {
  html.has-custom-cursor,
  html.has-custom-cursor a,
  html.has-custom-cursor button { cursor: auto; }
}

/* image placeholder — subtly-striped, cinematic */
.ph {
  position: relative;
  overflow: hidden;
  background: #d8cfbe;
  color: var(--ink);
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(115deg,
      rgba(14,14,12,0.045) 0 1px,
      transparent 1px 14px),
    linear-gradient(135deg, #c9bfa8 0%, #d8cfbe 40%, #b9a98a 100%);
  z-index: 0;
}
.ph[data-tone="sage"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(14,14,12,0.05) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #8a9476 0%, #6b7a5c 60%, #545f47 100%);
}
.ph[data-tone="terracotta"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(14,14,12,0.06) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #c46c41 0%, #b5562c 60%, #8e3f1d 100%);
}
.ph[data-tone="dusk"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #2d3548 0%, #4a4658 50%, #8a6a4d 100%);
}
.ph[data-tone="gold"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(14,14,12,0.06) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #d6b87a 0%, #c9a961 60%, #a78a48 100%);
}
.ph[data-tone="dawn"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(14,14,12,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #cab18c 0%, #d9b98e 35%, #b88f63 75%, #6e5a44 100%);
}
.ph[data-tone="paper"]::before {
  background:
    repeating-linear-gradient(115deg, rgba(14,14,12,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(135deg, #efe8d8 0%, #e3d8c0 100%);
}
.ph .ph-label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.78);
  z-index: 2;
  max-width: 70%;
}
.ph[data-tone="paper"] .ph-label,
.ph[data-tone="gold"] .ph-label,
.ph[data-tone="dawn"] .ph-label { color: rgba(14,14,12,0.6); }

.ph .ph-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(14,14,12,0.07) 1px, transparent 1px),
    radial-gradient(rgba(247,244,238,0.05) 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  background-position: 0 0, 1px 2px;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* mounting headline (char stagger) */
.mount-line { display: inline-block; overflow: hidden; }
.mount-line .ch {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 1200ms var(--ease-out),
    opacity 1200ms var(--ease-out);
}
.mount-line.in .ch {
  transform: translateY(0);
  opacity: 1;
}

/* clip reveal for images */
.clip-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1200ms var(--ease-out);
}
.clip-reveal.in { clip-path: inset(0 0 0 0); }

/* generic fade-up reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* container */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }

/* nav */
.v-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  color: var(--bg-cream);
  transition: background 500ms var(--ease-out), backdrop-filter 500ms, color 500ms, padding 400ms var(--ease-out), border-color 500ms;
  border-bottom: 1px solid transparent;
}
.v-nav.solid {
  background: rgba(247,244,238,0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  color: var(--ink);
  border-bottom-color: rgba(14,14,12,0.08);
  padding: 16px 48px;
}
.v-nav .wordmark {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.v-nav ul {
  display: flex; gap: 36px;
  list-style: none; padding: 0; margin: 0;
  font-size: 13px;
  letter-spacing: 0.025em;
}
.v-nav li a { position: relative; padding: 4px 0; opacity: 0.8; transition: opacity 300ms; }
.v-nav li a:hover { opacity: 1; }
.v-nav li a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.v-nav li a:hover::after { transform: scaleX(1); }
.v-nav .nav-cta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.9;
  transition: opacity 300ms, background 300ms, color 300ms;
}
.v-nav .nav-cta:hover { opacity: 1; background: currentColor; color: var(--ink); }
.v-nav.solid .nav-cta:hover { color: var(--bg-cream); }

/* footer */
.v-footer {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 80px 0 40px;
  margin-top: 0;
}
.v-footer .wrap { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 64px; }
.v-footer h6 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.4);
  margin: 0 0 20px;
}
.v-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(247,244,238,0.75); }
.v-footer a { transition: color 280ms; }
.v-footer a:hover { color: var(--gold); }
.v-footer .brand-line {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 28px;
  color: var(--bg-cream);
}
.v-footer .disclosure {
  font-size: 12px;
  color: rgba(247,244,238,0.5);
  line-height: 1.7;
  max-width: 70ch;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,244,238,0.12);
}
.v-footer .lang-toggle {
  display: inline-flex; gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 20px;
  color: rgba(247,244,238,0.6);
}
.v-footer .lang-toggle .on { color: var(--bg-cream); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* button */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--terracotta);
  color: var(--bg-cream);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.btn:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn .arr { display: inline-block; transition: transform 400ms var(--ease-out); }
.btn:hover .arr { transform: translateX(6px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg-cream); }

/* tag chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
}
.chip.active { background: var(--ink); color: var(--bg-cream); border-color: var(--ink); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mount-line .ch, .clip-reveal, .reveal { transform: none !important; opacity: 1 !important; clip-path: none !important; transition: none !important; }
  .v-cursor-ring, .v-cursor-dot { display: none !important; }
  html { cursor: auto; }
  body { cursor: auto; }
}

/* scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }

/* ─── HERO CANVAS + STATIC FALLBACK ─────────────────────── */
.hero-canvas,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.hero-fallback { z-index: 0; }
.hero-canvas {
  z-index: 1;
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.hero-canvas.ready { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(14,14,12,0.55) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14,14,12,0.45) 0%, rgba(14,14,12,0.15) 35%, rgba(14,14,12,0.15) 55%, rgba(14,14,12,0.70) 100%);
  pointer-events: none;
}
html.reduce-motion .hero-canvas { display: none; }
html.reduce-motion .hero-fallback { opacity: 1; }

/* Project page static-hero Ken-Burns */
.hero--project { position: relative; height: 100vh; min-height: 600px; overflow: hidden; isolation: isolate; color: var(--bg-cream); }
.hero--project .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform-origin: center center; }
.hero--project .hero-overlay { z-index: 2; }
.hero--project .hero-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 56px 80px; }
@media (max-width: 768px) { .hero--project .hero-content { padding: 0 24px 56px; } }

/* /projects index hero + brand-symbol */
.projects-hero { padding: 160px 0 80px; position: relative; }
.projects-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(72px, 9vw, 144px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 24px 0 32px;
  max-width: 14ch;
}
.projects-hero h1 em { font-style: italic; font-weight: 400; }
.projects-hero .lead { font-family: var(--f-display); font-size: clamp(19px, 1.6vw, 24px); max-width: 56ch; color: var(--ink-soft); line-height: 1.5; }
.brand-symbol-wrap {
  position: absolute;
  right: 56px;
  top: 120px;
  width: 380px;
  height: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.brand-symbol-wrap img {
  width: 100%; height: auto; display: block;
  transition: transform 600ms var(--ease-out);
  will-change: transform;
}
.brand-symbol-wrap .ph { width: 100%; aspect-ratio: 4/5; }
@media (max-width: 1024px) {
  .brand-symbol-wrap { position: relative; right: auto; top: auto; margin: 32px auto 0; max-width: 320px; }
}

.project-cards { padding: 40px 0 120px; display: flex; flex-direction: column; gap: 64px; }
.project-card-large {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 56px;
  overflow: hidden;
}
.project-card-large .img { width: 100%; height: 56vh; max-height: 640px; overflow: hidden; position: relative; }
.project-card-large .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease-out); }
.project-card-large:hover .img img { transform: scale(1.04); }
.project-card-large .card-meta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.project-card-large .card-meta h2 em { font-style: italic; }
.project-card-large .card-meta p { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
@media (max-width: 768px) {
  .project-card-large { grid-template-columns: 1fr; padding: 0 24px; gap: 24px; }
  .project-card-large .img { height: 320px; }
}

/* Founder portrait images on home + about */
.founder .portrait { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 800ms var(--ease-out); }
.founder:hover .portrait img { transform: scale(1.04); }

/* ── Mobile global breakpoints ────────────────────────────────── */
@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 40px 0 24px;
    margin-bottom: 32px;
  }
  .section-head h2 { font-size: clamp(32px, 8vw, 48px); }
  .section-head .meta {
    align-items: flex-start;
    text-align: left;
  }
  .v-nav ul { display: none; }
  .v-nav .logo { font-size: 20px; }
  .v-footer .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .v-footer .brand-line { font-size: clamp(22px, 6vw, 36px); }
  table { font-size: 12px; }
  table td, table th { padding: 12px 8px; }
  section { padding-left: 0; padding-right: 0; }
}
@media (max-width: 480px) {
  .v-footer .wrap { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .v-nav { padding: 16px 24px; }
  .v-nav.solid { padding: 14px 24px; }
}

/* ── Mobile nav hamburger ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  color: currentColor;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 350ms var(--ease-out), opacity 350ms;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--ink);
  color: var(--bg-cream);
  padding: 100px 48px 60px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out);
}
.mob-nav-drawer.open { opacity: 1; pointer-events: auto; }
.mob-nav-phone {
  display: block;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  text-decoration: none;
  padding-top: 8px;
  border-top: 1px solid rgba(247,244,238,0.12);
}
.mob-nav-drawer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mob-nav-drawer li a {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 10vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bg-cream);
  opacity: 0.85;
  transition: opacity 250ms;
  display: block;
  padding: 6px 0;
}
.mob-nav-drawer li a:hover { opacity: 1; }
.mob-nav-drawer .drawer-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.4);
}
.mob-nav-drawer .drawer-foot a { color: rgba(247,244,238,0.6); }
.mob-nav-drawer .drawer-cta {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .v-nav .nav-cta { display: none; }
  .v-nav ul { display: none !important; }
  .mob-nav-drawer { display: flex; }
  /* lock scroll when drawer open */
  body.nav-open { overflow: hidden; }
}

/* ─ Portrait initials ─────────────────────────────────────────────
   Intentional typographic placeholder when photography isn't yet
   available. Remove .portrait-initial and add real <img> when
   client supplies the photo.
   ────────────────────────────────────────────────────────────── */
.portrait-initial {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #EAE5DB 0%, #D8D2C4 100%);
}
.portrait-initial .pi-letter {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(72px, 12vw, 160px);
  color: var(--ink);
  opacity: 0.22;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── DARK LUXURY HOMEPAGE TOKENS ──────────────────────── */
:root {
  --hp-bg:        #0A0908;
  --hp-surface:   #111010;
  --hp-gold:      #C9A96E;
  --hp-gold-dim:  #8A7250;
  --hp-cream:     #F0EAD6;
  --hp-muted:     #6B6560;
  --hp-border:    rgba(201,169,110,0.14);
  --hp-glass:     rgba(10,9,8,0.62);
  --hp-warm:      var(--hp-gold);
}
