/* ============================================================
   JEWELIX // THE GENERATIVE ATELIER
   ============================================================ */

@import url("https://api.fontshare.com/v2/css?f[]=sentient@400,500,400i,500i,700,700i&f[]=switzer@300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap");

:root {
  /* Color */
  --ink: #0a0908;
  --ink-2: #131110;
  --ink-3: #1c1916;
  --ink-line: #2a2521;
  --bone: #f4ede1;
  --bone-2: #e8dfcf;
  --bone-dim: #968d7e;
  --bone-faint: #5a544a;
  --gold: #d4af37;
  --gold-bright: #f1d271;
  --gold-deep: #8a6b1a;
  --signal: #ff5e2c;
  --iri-1: #c19a3e;
  --iri-2: #e8c87a;
  --iri-3: #b8e0d2;
  --iri-4: #d4b5e0;
  --iri-5: #f1d271;

  /* Type */
  --serif: "Sentient", "Iowan Old Style", Georgia, serif;
  --sans: "Switzer", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Spacing */
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --frame: clamp(1.5rem, 4vw, 3.5rem);
  --section: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-emph: cubic-bezier(0.7, 0, 0.2, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  cursor: none;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: none; }
::selection { background: var(--gold); color: var(--ink); }

/* Grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><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.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(120% 80% at 50% 0%, transparent 50%, rgba(0,0,0,0.45) 100%);
}

/* ============================================================
   FLOATING CONTROL — audio toggle (bottom-right)
   ============================================================ */
.ctrl-audio {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 237, 225, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  color: var(--bone-dim);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.4s var(--ease-out);
}
.ctrl-audio:hover {
  color: var(--bone);
  border-color: var(--bone-dim);
  transform: translateY(-2px);
}
.ctrl-audio.is-on {
  color: var(--gold);
  border-color: var(--gold);
}
.ctrl-audio svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ctrl-audio .ico-on, .ctrl-audio .ico-off { display: none; }
.ctrl-audio:not(.is-on) .ico-off { display: block; }
.ctrl-audio.is-on .ico-on { display: block; }
.ctrl-audio.is-on .ico-on .wave-1 { animation: audioPulse 1.6s ease-in-out infinite; }
.ctrl-audio.is-on .ico-on .wave-2 { animation: audioPulse 1.6s ease-in-out infinite 0.2s; }
@keyframes audioPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}
.ctrl-audio-tip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: rgba(10, 9, 8, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(244, 237, 225, 0.1);
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ctrl-audio:hover .ctrl-audio-tip { opacity: 1; }

/* ============================================================
   LOUPE MAGNIFIER — desktop-only circular zoom lens
   ============================================================ */
.loupe {
  position: fixed;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 10001;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.25s var(--ease-out), transform 0.35s var(--ease-emph);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 4px rgba(10, 9, 8, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3);
}
.loupe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 65%, rgba(10, 9, 8, 0.35) 100%);
  pointer-events: none;
}
.loupe.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.loupe-img {
  position: absolute;
  inset: 0;
  background-size: 280% 280%;
  background-repeat: no-repeat;
  background-color: var(--ink-2);
}
@media (hover: none), (pointer: coarse) {
  .loupe { display: none !important; }
}

/* ============================================================
   VIEW TRANSITIONS — cross-document fade (Chrome 126+)
   ============================================================ */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: 0.32s cubic-bezier(0.7, 0, 0.2, 1) both vtFadeOut;
}
::view-transition-new(root) {
  animation: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both vtFadeIn;
}
@keyframes vtFadeOut {
  to { opacity: 0; transform: translateY(-12px); filter: blur(4px); }
}
@keyframes vtFadeIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
}

/* ============================================================
   WEBGL DIAMOND HERO — replaces .hero-photo on home
   ============================================================ */
.diamond-frame {
  position: relative;
  width: 78%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(244,237,225,0.05),
    0 0 100px rgba(212,175,55,0.18);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(212,175,55,0.06), transparent 70%),
    radial-gradient(80% 60% at 30% 70%, rgba(184,224,210,0.04), transparent 60%),
    var(--ink);
  opacity: 0;
  animation: heroPhotoIn 1.4s var(--ease-emph) forwards 1.5s;
}
.diamond-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(244,237,225,0.018) 0 1px, transparent 1px 60px);
  pointer-events: none;
  z-index: 1;
}
.diamond-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 50%, transparent 60%, rgba(10,9,8,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}
#diamond-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 0;
}
.diamond-fallback {
  display: none;
  position: absolute;
  inset: 0;
  background-image: url("img/hero/hero-still.jpg");
  background-size: cover;
  background-position: center;
}

/* ============================================================
   BEFORE / AFTER SLIDER — the killer proof moment
   ============================================================ */
.ba-section {
  padding: var(--section) var(--frame);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,0.04), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.ba-head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
.ba-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.ba-head h2 { margin-bottom: 22px; }
.ba-head p { margin: 0 auto; }

.ba-frame {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--ink-line);
  cursor: ew-resize;
  --pos: 50%;
  user-select: none;
  -webkit-user-select: none;
  background: var(--ink-2);
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(244,237,225,0.04),
    0 0 80px rgba(212,175,55,0.10);
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ba-img.before {
  filter: saturate(0.85) brightness(0.92);
}
.ba-img.after {
  clip-path: polygon(var(--pos) 0%, 100% 0%, 100% 100%, var(--pos) 100%);
  filter: saturate(1.05) brightness(1.02);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(212,175,55,0.3) 8%,
    var(--gold) 30%,
    var(--gold) 70%,
    rgba(212,175,55,0.3) 92%,
    transparent 100%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 72px; height: 72px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    0 14px 40px rgba(0,0,0,0.6),
    0 0 0 6px rgba(10,9,8,0.5),
    inset 0 0 20px rgba(212,175,55,0.2);
  transition: transform 0.4s var(--ease-emph), border-color 0.3s;
}
.ba-knob::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ba-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 8px;
  border-color: transparent var(--gold) transparent var(--gold);
}
.ba-frame:hover .ba-knob,
.ba-frame.is-dragging .ba-knob {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--gold-bright);
}

.ba-tag {
  position: absolute;
  top: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 9px 16px;
  background: rgba(10,9,8,0.55);
  border: 1px solid rgba(244,237,225,0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ba-tag .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2.4s infinite;
}
.ba-tag.before { left: 24px; }
.ba-tag.after { right: 24px; }
.ba-tag.after .pulse { background: #4ade80; }

.ba-pin {
  position: absolute;
  bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  pointer-events: none;
  z-index: 3;
}
.ba-pin.left { left: 24px; }
.ba-pin.right { right: 24px; }

.ba-instruct {
  text-align: center;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.ba-instruct .arrow { margin: 0 8px; color: var(--gold); }

@media (max-width: 720px) {
  .ba-tag { font-size: 9.5px; padding: 7px 12px; }
  .ba-knob { width: 56px; height: 56px; }
  .ba-pin { font-size: 9px; }
}

/* ============================================================
   CINEMATIC INTRO CURTAIN
   ============================================================ */
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(212,175,55,0.06), transparent 70%),
    var(--ink);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: curtainSlide 1.0s var(--ease-emph) forwards 1.4s;
}
.intro-curtain::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='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.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.intro-curtain .intro-mark {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 7.5rem);
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--bone) 0%, var(--gold) 70%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 30px 50px rgba(212,175,55,0.25));
  opacity: 0;
  transform: translateY(40px);
  animation:
    introMarkIn 0.8s var(--ease-out) forwards 0.2s,
    introMarkOut 0.6s var(--ease-emph) forwards 1.3s;
  z-index: 2;
}
.intro-curtain .intro-pin {
  position: absolute;
  bottom: var(--frame);
  left: var(--frame);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0;
  animation:
    introMarkIn 0.6s var(--ease-out) forwards 0.5s,
    introMarkOut 0.4s var(--ease-emph) forwards 1.3s;
  z-index: 2;
}
.intro-curtain .intro-pin-r {
  position: absolute;
  bottom: var(--frame);
  right: var(--frame);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0;
  animation:
    introMarkIn 0.6s var(--ease-out) forwards 0.6s,
    introMarkOut 0.4s var(--ease-emph) forwards 1.3s;
  z-index: 2;
}
.intro-curtain .intro-rule {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 80px));
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: introRule 0.9s var(--ease-emph) forwards 0.8s,
             introMarkOut 0.4s var(--ease-emph) forwards 1.3s;
  z-index: 2;
}
@keyframes introMarkIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes introMarkOut {
  to { opacity: 0; transform: translateY(-30px); }
}
@keyframes introRule {
  to { width: clamp(180px, 22vw, 320px); }
}
@keyframes curtainSlide {
  0%   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%); }
}
@media (prefers-reduced-motion: reduce) {
  .intro-curtain { animation: curtainFade 0.3s linear forwards 0.3s; }
  @keyframes curtainFade { to { opacity: 0; visibility: hidden; } }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--bone);
  border-radius: 50%;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 237, 225, 0.4);
  border-radius: 50%;
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s, background 0.2s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}
@media (max-width: 768px) {
  body { cursor: default; }
  .cursor-dot, .cursor-ring { display: none; }
  button, a { cursor: pointer; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.frame {
  padding-inline: var(--frame);
}
.section {
  padding-block: var(--section);
}
.divider {
  height: 1px;
  background: var(--ink-line);
  width: 100%;
}
.col {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  align-items: center;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 400;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: blink 2.4s infinite;
}
.eyebrow.is-bone .dot { background: var(--bone); }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--bone-2);
}
.h-display .iri {
  background: linear-gradient(110deg, var(--iri-1) 0%, var(--iri-2) 25%, var(--iri-3) 50%, var(--iri-4) 75%, var(--iri-5) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.h-section {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h-section em { font-style: italic; }

.h-card {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.lead {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.5;
  color: var(--bone-2);
  max-width: 56ch;
  font-weight: 400;
}
.body-text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 60ch;
}
.body-text strong {
  color: var(--bone);
  font-weight: 500;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
}
.mono.label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
}

/* Stagger reveal — cinematic */
.reveal {
  opacity: 0;
  transform: translateY(56px) scale(0.97);
  transition: opacity 1.3s var(--ease-emph), transform 1.3s var(--ease-emph), filter 1.3s var(--ease-emph);
  filter: blur(4px);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.14s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.48s; }
.reveal[data-delay="6"] { transition-delay: 0.62s; }

/* Hero clip-path word reveal */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  animation: wordUp 1.1s var(--ease-emph) forwards;
}
.word-reveal[data-d="1"] > span { animation-delay: 1.30s; }
.word-reveal[data-d="2"] > span { animation-delay: 1.46s; }
.word-reveal[data-d="3"] > span { animation-delay: 1.62s; }
.word-reveal[data-d="4"] > span { animation-delay: 1.78s; }
.word-reveal[data-d="5"] > span { animation-delay: 1.94s; }
.word-reveal[data-d="6"] > span { animation-delay: 2.10s; }

/* FIX: the iridescent reveal word ("Without") was invisible because .iri's
   shimmer animation overrode the wordUp slide-in, leaving it stuck at
   translateY(110%) (clipped). Run BOTH animations; bake in the data-d=2 delay. */
.h-display .word-reveal > .iri {
  animation: wordUp 1.1s var(--ease-emph) 1.46s forwards, shimmer 8s linear 1.6s infinite;
}
@keyframes wordUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--frame);
  background: linear-gradient(180deg, rgba(10,9,8,0.85), rgba(10,9,8,0.3) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42,37,33,0.6);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.nav-brand .mark {
  width: 18px; height: 18px;
  background: conic-gradient(from 45deg, var(--iri-2), var(--iri-3), var(--iri-4), var(--iri-1), var(--iri-2));
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.4));
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-self: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--bone); }
.nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active::before {
  content: "·";
  position: absolute;
  left: -10px;
  color: var(--gold);
}
.nav-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 820px) {
  .nav { grid-template-columns: 1fr auto; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--bone);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--ink-line);
  color: var(--bone-dim);
}
.btn-ghost:hover {
  border-color: var(--bone);
  color: var(--bone);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: var(--section);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-meta {
  position: absolute;
  top: 96px;
  left: var(--frame);
  right: var(--frame);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-tag .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero-title {
  margin-bottom: 36px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
  color: var(--bone-2);
  max-width: 44ch;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
}
.hero-stat .num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  display: block;
  margin-bottom: 8px;
}
.hero-stat .num em {
  font-style: italic;
  color: var(--gold);
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}
.hero-stat .lab {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* Jewel canvas */
.hero-visual {
  position: relative;
  height: clamp(440px, 60vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jewel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.jewel-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jewel-ring {
  position: absolute;
  border: 1px dashed var(--ink-line);
  border-radius: 50%;
}
.jewel-ring.r1 { width: 100%; height: 100%; animation: spinSlow 60s linear infinite; }
.jewel-ring.r2 { width: 75%; height: 75%; animation: spinSlow 40s linear reverse infinite; border-color: rgba(212,175,55,0.18); }
.jewel-ring.r3 { width: 50%; height: 50%; animation: spinSlow 30s linear infinite; border-style: solid; border-color: rgba(244,237,225,0.06); }

.jewel {
  position: relative;
  width: 56%;
  aspect-ratio: 1;
  filter: drop-shadow(0 30px 70px rgba(212,175,55,0.25)) drop-shadow(0 0 30px rgba(184,224,210,0.2));
  animation: jewelFloat 6s ease-in-out infinite;
}
@keyframes jewelFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.jewel-facets {
  position: absolute;
  inset: 0;
  background: conic-gradient(from var(--ang, 0deg),
    #f1d271 0deg,
    #fff7d6 30deg,
    #c19a3e 60deg,
    #8a6b1a 90deg,
    #d4af37 120deg,
    #fff7d6 150deg,
    #b8e0d2 180deg,
    #d4b5e0 210deg,
    #f1d271 240deg,
    #8a6b1a 270deg,
    #d4af37 300deg,
    #f1d271 360deg);
  clip-path: polygon(
    50% 0%, 78% 12%, 95% 38%, 100% 62%,
    82% 88%, 50% 100%, 18% 88%, 0% 62%,
    5% 38%, 22% 12%);
  animation: jewelSpin 14s linear infinite;
}
@keyframes jewelSpin {
  to { --ang: 360deg; }
}
@property --ang {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.jewel-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.6) 0%, transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.4), transparent 50%);
  mix-blend-mode: screen;
  clip-path: polygon(
    50% 0%, 78% 12%, 95% 38%, 100% 62%,
    82% 88%, 50% 100%, 18% 88%, 0% 62%,
    5% 38%, 22% 12%);
}
.jewel-edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
  border: 1px solid rgba(244, 237, 225, 0.18);
  clip-path: polygon(
    50% 0%, 78% 12%, 95% 38%, 100% 62%,
    82% 88%, 50% 100%, 18% 88%, 0% 62%,
    5% 38%, 22% 12%);
}

.jewel-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-dot {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}
.orbit-dot.d1 { top: 12%; left: 50%; animation: orbit1 14s linear infinite; }
.orbit-dot.d2 { top: 50%; right: 8%; animation: orbit1 22s linear infinite reverse; background: var(--iri-3); box-shadow: 0 0 12px var(--iri-3); }
.orbit-dot.d3 { bottom: 18%; left: 18%; animation: orbit1 18s linear infinite; background: var(--iri-4); box-shadow: 0 0 12px var(--iri-4); }
@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.hud {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hud::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--gold);
}
.hud-tl { top: 18%; left: 0; }
.hud-tr { top: 30%; right: 0; flex-direction: row-reverse; }
.hud-tr::before { background: var(--bone-dim); }
.hud-bl { bottom: 18%; left: 6%; }
.hud-br { bottom: 28%; right: 4%; flex-direction: row-reverse; }
.hud-br::before { background: var(--iri-3); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 380px; }
  .hero-meta { position: static; margin-bottom: 32px; }
}

/* ============================================================
   RENDER TICKER
   ============================================================ */
.ticker-wrap {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink-2);
  overflow: hidden;
  position: relative;
}
.ticker {
  display: flex;
  gap: 60px;
  padding: 18px 0;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  text-transform: uppercase;
}
.ticker-item .stat {
  color: var(--gold);
  font-weight: 500;
}
.ticker-item .sep {
  color: var(--ink-line);
}
.ticker-item .glyph {
  color: var(--bone);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrap::before, .ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--ink-2), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(-90deg, var(--ink-2), transparent); }

/* ============================================================
   CUSTOMER MARQUEE
   ============================================================ */
.clients {
  padding-block: 60px;
  border-bottom: 1px solid var(--ink-line);
}
.clients-label {
  text-align: center;
  margin-bottom: 36px;
}
.clients-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.clients-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}
.client-name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--bone-2);
  letter-spacing: -0.01em;
  white-space: nowrap;
  position: relative;
  padding: 0 10px;
}
.client-name::after {
  content: "✦";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6em;
  font-style: normal;
}

/* ============================================================
   SPECIMENS GRID
   ============================================================ */
.specimens {
  padding-block: var(--section);
}
.specimens-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 64px;
}
.specimens-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.specimen {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--ink-line);
  cursor: none;
  transform-style: preserve-3d;
  --rx: 0;
  --ry: 0;
  --mx: 50%;
  --my: 50%;
  transition:
    transform 0.6s var(--ease-emph),
    border-color 0.4s,
    opacity 0.5s,
    filter 0.5s,
    box-shadow 0.6s;
  will-change: transform;
}
.specimen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(255,255,255,0.28) 0%, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  z-index: 5;
}
.specimens-grid:hover .specimen:not(:hover) {
  opacity: 0.42;
  filter: saturate(0.55) brightness(0.7);
}
.specimens-grid:hover .specimen:hover,
.specimen:hover {
  border-color: var(--gold);
  transform:
    perspective(1400px)
    rotateY(calc(var(--rx) * 1deg))
    rotateX(calc(var(--ry) * 1deg))
    translateZ(40px)
    scale(1.025);
  box-shadow:
    0 50px 90px rgba(0,0,0,0.6),
    0 0 90px rgba(212,175,55,0.22),
    inset 0 0 0 1px rgba(212,175,55,0.4);
  z-index: 10;
}
.specimen:hover::after {
  opacity: 1;
}
.specimen .spec-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.specimen .spec-img {
  position: absolute;
  inset: 0;
  transition: transform 1.0s var(--ease-emph), filter 0.5s var(--ease-out);
  filter: saturate(0.9) brightness(0.96);
}
.specimen:hover .spec-img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.04);
}
.specimen .spec-meta {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.specimen .spec-bottom {
  padding: 18px 18px 18px;
  background: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.specimen .spec-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--bone);
}
.specimen .spec-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.specimen.s-large { grid-column: span 6; }
.specimen.s-med { grid-column: span 4; }
.specimen.s-small { grid-column: span 3; }
.specimen.s-tall .spec-frame { aspect-ratio: 3 / 5; }

@media (max-width: 980px) {
  .specimens-head { grid-template-columns: 1fr; }
  .specimen.s-large, .specimen.s-med, .specimen.s-small { grid-column: span 6; }
}
@media (max-width: 600px) {
  .specimen { grid-column: span 12 !important; }
}

/* ============================================================
   REAL IMAGE SUPPORT (replaces CSS placeholders when present)
   ============================================================ */
.spec-img.has-img,
.gc-img.has-img {
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--src);
}
.spec-img.has-img::before, .spec-img.has-img::after,
.gc-img.has-img::before, .gc-img.has-img::after {
  display: none !important;
  content: none !important;
}

.bubble.attach .att-img.has-img,
.bubble.delivery .deliv-img.has-img {
  background: var(--ink-2) center/cover no-repeat;
  background-image: var(--src);
}
.bubble.attach .att-img.has-img::after,
.bubble.delivery .deliv-img.has-img::before,
.bubble.delivery .deliv-img.has-img::after {
  display: none !important;
  content: none !important;
}

/* Hero photo (replaces CSS jewel) — scroll-parallax driven */
.hero-photo {
  position: relative;
  width: 76%;
  aspect-ratio: 4 / 5;
  background: var(--ink-2) center/cover no-repeat;
  border-radius: 4px;
  border: 1px solid rgba(244, 237, 225, 0.08);
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(244,237,225,0.04),
    0 0 80px rgba(212,175,55,0.15);
  transform:
    translateY(calc(var(--scroll, 0) * -0.18px))
    scale(calc(1 + var(--scroll, 0) * 0.00015));
  transition: transform 0.05s linear;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 30%), rgba(255,255,255,0.22) 0%, transparent 38%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}
/* Hero photo entrance (after curtain) */
.hero-photo {
  opacity: 0;
  animation: heroPhotoIn 1.4s var(--ease-emph) forwards 1.5s;
}
@keyframes heroPhotoIn {
  from {
    opacity: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.jewel-rings, .jewel-orbits, .hud {
  opacity: 0;
  animation: ringsIn 1.0s var(--ease-out) forwards 2.0s;
}
@keyframes ringsIn {
  to { opacity: 1; }
}

/* ============================================================
   MARQUEE THUMBNAIL STRIP (home)
   ============================================================ */
.thumbs-band {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding-block: 28px;
}
.thumbs-band::before, .thumbs-band::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 3;
  pointer-events: none;
}
.thumbs-band::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.thumbs-band::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.thumbs-label {
  position: absolute;
  top: 14px;
  left: var(--frame);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  z-index: 4;
}
.thumbs-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-top: 18px;
  animation: thumbScroll 70s linear infinite;
}
.thumbs-track:hover { animation-play-state: paused; }
.thumb {
  position: relative;
  width: clamp(160px, 16vw, 220px);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--ink-line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--ink-2) center/cover no-repeat;
  flex-shrink: 0;
  filter: saturate(0.9) brightness(0.92);
  transition: filter 0.4s, transform 0.6s var(--ease-emph), border-color 0.4s;
}
.thumb:hover {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.04) translateY(-4px);
  border-color: var(--gold);
  z-index: 4;
}
.thumb .thumb-id {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s;
}
.thumb:hover .thumb-id { opacity: 1; }
@keyframes thumbScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CSS-DRAWN "PHOTOGRAPHY" PLACEHOLDERS (FALLBACK)
   Each .spec-img variant simulates a different campaign style
   ============================================================ */
.spec-img.bridal {
  background:
    radial-gradient(80% 60% at 50% 70%, rgba(212,175,55,0.5), transparent 70%),
    radial-gradient(40% 30% at 50% 35%, rgba(241,210,113,0.6), transparent 65%),
    radial-gradient(20% 12% at 50% 45%, rgba(255,247,214,0.9), transparent 70%),
    linear-gradient(180deg, #2a1810, #4a2818 60%, #1a0e08);
}
.spec-img.bridal::after {
  content: "";
  position: absolute;
  top: 38%; left: 50%;
  width: 30%; aspect-ratio: 1;
  transform: translate(-50%, 0) rotate(45deg);
  background: linear-gradient(135deg, #f1d271, #d4af37, #8a6b1a, #d4af37);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  filter: blur(0.4px) drop-shadow(0 8px 30px rgba(212,175,55,0.7));
}

.spec-img.festive {
  background:
    radial-gradient(60% 40% at 50% 50%, rgba(232,200,122,0.4), transparent 70%),
    conic-gradient(from 0deg at 50% 50%, #5a1a1a, #8b2a2a, #5a1a1a, #4a1414, #5a1a1a);
}
.spec-img.festive::before {
  content: "";
  position: absolute;
  inset: 30% 38% auto auto;
  width: 24%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 35%, #fff7d6, #d4af37 30%, #8a6b1a 60%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: drop-shadow(0 4px 20px rgba(212,175,55,0.6));
  inset: 32% 38% auto 38%;
}

.spec-img.editorial {
  background:
    radial-gradient(70% 50% at 50% 50%, rgba(216,212,204,0.18), transparent),
    linear-gradient(180deg, #1a1816 0%, #0a0908 100%);
}
.spec-img.editorial::before {
  content: "";
  position: absolute;
  inset: 25% 35% 25% 35%;
  background:
    linear-gradient(180deg, transparent, rgba(244,237,225,0.4) 50%, transparent),
    radial-gradient(60% 80% at 50% 50%, rgba(244,237,225,0.6), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.spec-img.editorial::after {
  content: "";
  position: absolute;
  inset: 35% 45% 35% 45%;
  background: linear-gradient(180deg, #f4ede1, #968d7e);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(244,237,225,0.4);
}

.spec-img.lifestyle {
  background:
    radial-gradient(60% 80% at 30% 50%, rgba(232,200,122,0.3), transparent 60%),
    linear-gradient(135deg, #3d2818 0%, #5a3a26 50%, #2a1810 100%);
}
.spec-img.lifestyle::before {
  content: "";
  position: absolute;
  inset: 15% 30% 15% 30%;
  background: radial-gradient(50% 70% at 50% 40%, #6b4a30, #2a1810 80%);
  border-radius: 50%;
}
.spec-img.lifestyle::after {
  content: "";
  position: absolute;
  inset: 50% 40% 30% 40%;
  background:
    repeating-linear-gradient(180deg, #d4af37 0 1px, transparent 1px 4px);
  filter: drop-shadow(0 4px 14px rgba(212,175,55,0.5));
  opacity: 0.9;
}

.spec-img.cad {
  background:
    repeating-linear-gradient(90deg, rgba(184,224,210,0.04) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(184,224,210,0.04) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #0a1814, #050a08);
}
.spec-img.cad::after {
  content: "";
  position: absolute;
  inset: 30% 30%;
  background: linear-gradient(135deg, #b8e0d2, #6da890, #2a4a3e);
  clip-path: polygon(50% 0, 100% 30%, 100% 70%, 50% 100%, 0 70%, 0 30%);
  filter: drop-shadow(0 0 20px rgba(184,224,210,0.4));
  opacity: 0.85;
}
.spec-img.cad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(0,0,0,0.5) 100%);
}

.spec-img.minimal {
  background:
    radial-gradient(40% 30% at 50% 50%, rgba(241,210,113,0.3), transparent),
    linear-gradient(180deg, #f4ede1 0%, #c8c0b3 100%);
}
.spec-img.minimal::after {
  content: "";
  position: absolute;
  inset: 35% 38%;
  background: radial-gradient(circle at 30% 30%, #f1d271, #d4af37 50%, #8a6b1a);
  border-radius: 50%;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.spec-img.diamond {
  background:
    radial-gradient(70% 50% at 50% 50%, rgba(184,224,210,0.15), transparent 70%),
    linear-gradient(180deg, #050810 0%, #0a0e18 100%);
}
.spec-img.diamond::after {
  content: "";
  position: absolute;
  inset: 28% 32%;
  background: conic-gradient(from 90deg, #ffffff, #b8e0d2, #ffffff, #d8d4cc, #ffffff, #b8e0d2, #ffffff);
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
  filter: drop-shadow(0 0 30px rgba(184,224,210,0.6));
}

.spec-img.emerald {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(46,90,78,0.5), transparent 70%),
    linear-gradient(180deg, #0a0e0c, #050807);
}
.spec-img.emerald::after {
  content: "";
  position: absolute;
  inset: 32% 35%;
  background: linear-gradient(135deg, #4a8870 0%, #2a4a3e 50%, #6da890 100%);
  clip-path: polygon(15% 0, 85% 0, 100% 25%, 100% 75%, 85% 100%, 15% 100%, 0 75%, 0 25%);
  filter: drop-shadow(0 0 20px rgba(74,136,112,0.6));
}

.spec-img.ruby {
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(140,30,40,0.6), transparent 70%),
    linear-gradient(180deg, #1a0808, #0a0404);
}
.spec-img.ruby::after {
  content: "";
  position: absolute;
  inset: 30% 32%;
  background: linear-gradient(135deg, #d44a4a 0%, #8a1a1a 50%, #c4302a 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  filter: drop-shadow(0 0 28px rgba(212,74,74,0.6));
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem);
  margin: var(--section) var(--frame);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(212,175,55,0.12), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(184,224,210,0.06), transparent 60%),
    var(--ink-2);
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(244,237,225,0.02) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.cta-grid h2 { margin-bottom: 28px; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--ink-line);
  background: var(--ink-2);
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a {
  color: var(--bone-2);
  font-size: 0.92rem;
  transition: color 0.3s;
}
.footer li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE TOPS (sub-pages)
   ============================================================ */
.page-top {
  padding-top: 140px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
  border-bottom: 1px solid var(--ink-line);
}
.page-top h1 { margin-top: 28px; margin-bottom: 28px; }
.page-top-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone-dim);
}
.page-top-meta b {
  color: var(--bone);
  font-weight: 500;
}
@media (max-width: 820px) { .page-top { grid-template-columns: 1fr; } }

/* ============================================================
   METHOD: 3-step process
   ============================================================ */
.steps {
  padding-block: var(--section);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
.step {
  position: relative;
  padding: 48px var(--frame) 56px;
  border-right: 1px solid var(--ink-line);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-style: italic;
  line-height: 1;
  background: linear-gradient(180deg, var(--bone), var(--bone-faint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
  display: block;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--bone);
}
.step p {
  color: var(--bone-dim);
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 36ch;
}
.step-meta {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .step:last-child { border-bottom: none; }
}

/* ============================================================
   WHATSAPP CHAT DEMO
   ============================================================ */
.chatdemo {
  padding-block: var(--section);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.chatdemo-text h2 { margin-bottom: 28px; }
.chatdemo-text p { margin-bottom: 24px; }
.chatdemo-list {
  list-style: none;
  margin-top: 28px;
}
.chatdemo-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.chatdemo-list li::before {
  content: "→";
  color: var(--gold);
}

.phone {
  position: relative;
  background: var(--ink-3);
  border-radius: 28px;
  padding: 14px;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--ink-line);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(244,237,225,0.04);
}
.phone-screen {
  background: #0a1410;
  border-radius: 18px;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
}
.phone-bar {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  background: #001f0c;
  border-bottom: 1px solid #0a3018;
  font-family: var(--mono);
  font-size: 10px;
  color: #a8d4b8;
  letter-spacing: 0.12em;
}
.phone-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #001f0c;
  border-bottom: 1px solid #0a3018;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: conic-gradient(from 0deg, var(--iri-2), var(--iri-3), var(--iri-4), var(--iri-1), var(--iri-2));
  border-radius: 50%;
  flex-shrink: 0;
}
.phone-name { font-size: 0.92rem; color: #f4ede1; font-weight: 500; }
.phone-status { font-family: var(--mono); font-size: 9.5px; color: #6da890; letter-spacing: 0.08em; }
.phone-msgs {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,224,210,0.04), transparent 50%),
    #0a1410;
}
.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #e8f0ea;
  position: relative;
}
.bubble.me {
  align-self: flex-end;
  background: #1a4730;
  border-bottom-right-radius: 4px;
}
.bubble.them {
  align-self: flex-start;
  background: #1a2620;
  border-bottom-left-radius: 4px;
}
.bubble .time {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  font-family: var(--mono);
  color: #6da890;
  letter-spacing: 0.08em;
}
.bubble.attach {
  padding: 4px;
  width: 220px;
}
.bubble.attach .att-img {
  height: 220px;
  border-radius: 10px;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(212,175,55,0.5), transparent 70%),
    linear-gradient(180deg, #2a1810, #0a0908);
  position: relative;
}
.bubble.attach .att-img::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle at 30% 30%, #f1d271, #d4af37 50%, #8a6b1a);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(212,175,55,0.6);
}
.bubble.attach .att-meta {
  padding: 6px 8px 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: #a8d4b8;
  letter-spacing: 0.08em;
}
.bubble.delivery {
  padding: 8px;
  width: 240px;
}
.bubble.delivery .deliv-img {
  height: 280px;
  border-radius: 10px;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(232,200,122,0.4), transparent 70%),
    linear-gradient(180deg, #1a1816 0%, #0a0908 100%);
  position: relative;
  overflow: hidden;
}
.bubble.delivery .deliv-img::before {
  content: "";
  position: absolute;
  inset: 18% 30%;
  background:
    radial-gradient(50% 70% at 50% 30%, #f4ede1, #968d7e 80%);
  border-radius: 50% 50% 45% 45%;
  filter: blur(0.5px);
}
.bubble.delivery .deliv-img::after {
  content: "";
  position: absolute;
  inset: 56% 40% 18% 40%;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold-bright) 60%, var(--gold-deep) 100%);
  border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5));
}
.bubble.delivery .deliv-meta {
  margin-top: 8px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: #a8d4b8;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
}

/* ============================================================
   CAPABILITIES GRID
   ============================================================ */
.caps {
  padding-block: var(--section);
  border-top: 1px solid var(--ink-line);
}
.caps-head {
  margin-bottom: 60px;
  max-width: 800px;
}
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-left: 1px solid var(--ink-line);
}
.cap {
  padding: 36px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  position: relative;
  background: var(--ink);
  transition: background 0.3s;
}
.cap:hover {
  background: var(--ink-2);
}
.cap-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 32px;
}
.cap h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--bone);
}
.cap p {
  color: var(--bone-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}
.cap-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}
@media (max-width: 980px) {
  .caps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .caps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SAMPLES PAGE
   ============================================================ */
.filters {
  padding: 36px var(--frame);
  border-bottom: 1px solid var(--ink-line);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  top: 64px;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
}
.filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: all 0.3s;
}
.filter:hover { color: var(--bone); border-color: var(--bone-dim); }
.filter.is-active {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.gallery {
  padding: 60px var(--frame);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
  gap: 24px;
  grid-auto-rows: minmax(0, auto);
  align-items: start;
}
.specimens-grid {
  align-items: start;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-line);
  border-radius: 4px;
  background: var(--ink-2);
  transform-style: preserve-3d;
  --rx: 0;
  --ry: 0;
  --mx: 50%;
  --my: 50%;
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.6s var(--ease-emph),
    border-color 0.4s,
    filter 0.5s,
    box-shadow 0.6s;
  will-change: transform;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(255,255,255,0.25) 0%, transparent 55%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  z-index: 5;
}
.gallery-card.is-hidden {
  display: none;
}
.gallery:hover .gallery-card:not(:hover) {
  opacity: 0.42;
  filter: saturate(0.55) brightness(0.7);
}
.gallery-card:hover {
  border-color: var(--gold);
  transform:
    perspective(1400px)
    rotateY(calc(var(--rx) * 1deg))
    rotateX(calc(var(--ry) * 1deg))
    translateZ(40px)
    scale(1.025);
  box-shadow:
    0 50px 90px rgba(0,0,0,0.6),
    0 0 90px rgba(212,175,55,0.22),
    inset 0 0 0 1px rgba(212,175,55,0.4);
  z-index: 10;
}
.gallery-card:hover::after {
  opacity: 1;
}
.gallery-card .gc-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.gallery-card .gc-frame.tall { aspect-ratio: 3 / 5; }
.gallery-card .gc-frame.wide { aspect-ratio: 5 / 4; }
.gallery-card .gc-img {
  position: absolute;
  inset: 0;
  transition: transform 1.0s var(--ease-emph), filter 0.5s var(--ease-out);
  filter: saturate(0.9) brightness(0.96);
}
.gallery-card:hover .gc-img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.04);
}
.gallery-card .gc-meta {
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid var(--ink-line);
}
.gallery-card .gc-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.gallery-card .gc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-card .gc-id {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244,237,225,0.7);
  z-index: 2;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.gallery-card.span3 { grid-column: span 3; }
.gallery-card.span4 { grid-column: span 4; }
.gallery-card.span6 { grid-column: span 6; }
.gallery-card.span12 { grid-column: span 12; }
.gallery-card .gc-frame.hero { aspect-ratio: 16 / 7; max-height: 58vh; }
@media (max-width: 980px) {
  .gallery-card.span4, .gallery-card.span3 { grid-column: span 6; }
}
@media (max-width: 600px) {
  .gallery-card { grid-column: span 12 !important; }
  .gallery-card .gc-frame.hero { aspect-ratio: 4 / 5; max-height: 70vh; }
}

/* ============================================================
   STUDIO PAGE: PRICING / FOUNDER / FAQ / CONTACT
   ============================================================ */
.studio-story {
  padding-block: var(--section);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  border-bottom: 1px solid var(--ink-line);
}
.studio-story h2 { margin-bottom: 32px; }
.studio-story p { margin-bottom: 20px; }

.founder {
  padding-block: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  border-bottom: 1px solid var(--ink-line);
  align-items: center;
}
.founder-card {
  position: relative;
  aspect-ratio: 1/1;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(212,175,55,0.10), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(184,224,210,0.04), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--ink-line);
  border-radius: 6px;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(244,237,225,0.04),
    0 30px 60px rgba(0,0,0,0.4);
}
.founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(244,237,225,0.015) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.founder-card-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  z-index: 1;
}
.founder-card-monogram {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.founder-card-monogram .glyph {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--bone) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 30px 40px rgba(212,175,55,0.18));
}
.founder-card-monogram .quote-mark {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.founder-card-monogram .quote-mark.bottom {
  top: auto; left: auto;
  bottom: 0; right: 0;
  transform: rotate(180deg);
}
.founder-card-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-line) 20%, var(--ink-line) 80%, transparent);
  margin: 18px 0;
  z-index: 1;
}
.founder-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  z-index: 1;
}
.founder-card-bottom .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--bone);
  margin-bottom: 6px;
}
.founder-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--bone);
}
.founder-quote::before {
  content: "“";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
}
.founder-byline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.founder-byline b { color: var(--bone); font-weight: 500; }

/* Voice note */
.voice-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 32px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.voice-note:hover { border-color: var(--gold-deep); }
.voice-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 20% 50%, rgba(212,175,55,0.05), transparent 70%);
  pointer-events: none;
}
.vn-play {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  color: var(--ink);
  cursor: none;
}
.vn-play:hover { background: var(--gold-bright); transform: scale(1.07); }
.vn-play svg { width: 13px; height: 13px; }
.vn-play .ico-pause { display: none; }
.voice-note.is-playing .vn-play .ico-play { display: none; }
.voice-note.is-playing .vn-play .ico-pause { display: block; }
.vn-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 30px;
  overflow: hidden;
}
.vn-bar {
  flex: 1;
  background: var(--bone-faint);
  border-radius: 2px;
  min-width: 2px;
  transform-origin: center;
  transition: background 0.2s;
}
.vn-bar.is-played { background: var(--gold-deep); }
.vn-bar.is-head { background: var(--gold) !important; }
.voice-note.is-playing .vn-bar { background: var(--ink-line); }
.voice-note.is-playing .vn-bar.is-played { background: var(--gold-deep); }
.voice-note.is-playing .vn-bar.is-head { background: var(--gold) !important; }
.vn-info {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0;
}
.vn-name {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  white-space: nowrap;
}
.vn-times {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-size: 11px; color: var(--bone-dim);
}
.vn-sep { color: var(--bone-faint); }

@media (max-width: 980px) { .studio-story, .founder { grid-template-columns: 1fr; gap: 3rem; } }

.pricing {
  padding-block: var(--section);
  border-bottom: 1px solid var(--ink-line);
}
.pricing-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 64px; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink-line);
}
.tier {
  padding: 40px 32px;
  border-right: 1px solid var(--ink-line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: none; }
.tier.featured {
  background: var(--ink-2);
}
.tier.featured::before {
  content: "Most chosen";
  position: absolute;
  top: -1px; right: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}
.tier-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 24px;
}
.tier h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--bone);
}
.tier-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-line);
}
.tier-price .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.tier-price .lab {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.tier-list {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}
.tier-list li {
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--bone-2);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tier-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7em;
  margin-top: 4px;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--ink-line); }
  .pricing-head { grid-template-columns: 1fr; }
}

.faq {
  padding-block: var(--section);
  border-bottom: 1px solid var(--ink-line);
}
.faq-head { margin-bottom: 64px; }
.faq-list { border-top: 1px solid var(--ink-line); }
.faq-item {
  border-bottom: 1px solid var(--ink-line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: none;
  width: 100%;
  text-align: left;
}
.faq-q .q-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
  width: 60px;
  flex-shrink: 0;
}
.faq-q .q-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
}
.faq-q .q-icon {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bone-dim);
  transition: transform 0.4s var(--ease-out);
}
.faq-item.is-open .q-icon { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 32px 60px;
  color: var(--bone-dim);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 70ch;
}
@media (max-width: 600px) {
  .faq-q .q-num { width: 40px; }
  .faq-a-inner { padding-left: 40px; }
}

.contact {
  padding-block: var(--section);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
}
.contact-meta { display: flex; flex-direction: column; gap: 28px; }
.contact-line {
  padding: 20px 0;
  border-top: 1px solid var(--ink-line);
}
.contact-line:last-of-type { border-bottom: 1px solid var(--ink-line); }
.contact-line .lab {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 8px;
}
.contact-line .val {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--bone);
}
.contact-line .val a:hover { color: var(--gold); }

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px;
  border: 1px solid var(--ink-line);
  background: var(--ink-2);
  border-radius: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.form input, .form textarea, .form select {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  padding: 14px 16px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
}
.form textarea { min-height: 110px; resize: vertical; }
.form button { align-self: flex-start; margin-top: 8px; }
@media (max-width: 980px) { .contact-grid, .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold { color: var(--gold); }
.text-bone { color: var(--bone); }
.text-dim { color: var(--bone-dim); }
.italic { font-style: italic; }
.flex-end { display: flex; justify-content: flex-end; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-md { gap: 24px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-md { margin-bottom: 24px; }

/* Scroll bar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bone-faint); }

/* ============================================================
   MOBILE / TOUCH PASS — tighten everything below 820px
   ============================================================ */
@media (max-width: 820px) {
  /* Reduce nav padding & sizes */
  .nav { padding: 14px var(--frame); }
  .nav-cta .btn { padding: 12px 16px; font-size: 10.5px; }

  /* Hero stats become 1 column on tight screens */
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
  .hero-stat .num { font-size: clamp(1.4rem, 4vw, 2rem); }

  /* Marquee thumbs — smaller, less cropping */
  .thumbs-band { padding-block: 22px; }
  .thumb { width: clamp(120px, 32vw, 160px); }
  .thumbs-track { animation-duration: 90s; gap: 10px; }

  /* Specimens grid: 2 then 1 column already handled */

  /* Before/after slider — tighter */
  .ba-section { padding: clamp(3rem, 8vw, 5rem) var(--frame); }
  .ba-frame { aspect-ratio: 4 / 5; touch-action: pan-y; }
  .ba-knob { width: 52px; height: 52px; }
  .ba-tag { font-size: 9.5px; padding: 7px 11px; top: 14px; gap: 6px; }
  .ba-tag.before { left: 14px; }
  .ba-tag.after { right: 14px; }
  .ba-pin { font-size: 9px; bottom: 14px; }
  .ba-pin.left { left: 14px; }
  .ba-pin.right { right: 14px; }
  .ba-instruct { font-size: 10px; margin-top: 22px; }

  /* Diamond canvas — same percentage, smaller HUD labels */
  .hud { font-size: 9px; }
  .hud::before { width: 12px; }

  /* Floating control — slightly smaller */
  .ctrl-audio { width: 42px; height: 42px; bottom: 16px; right: 16px; }
  .ctrl-audio svg { width: 17px; height: 17px; }
  .ctrl-audio-tip { display: none; }

  /* CTA grid stacks */
  .cta-block { padding: clamp(2rem, 6vw, 4rem); margin: clamp(3rem, 8vw, 5rem) var(--frame); }

  /* Tier price typography on mobile */
  .tier-price .num { font-size: 1.4rem; }

  /* FAQ tighter */
  .faq-q { padding: 22px 0; }
  .faq-q .q-text { font-size: 1rem; }
  .faq-a-inner { padding-left: 0; padding-bottom: 24px; }
  .faq-q .q-num { width: 36px; font-size: 10px; }

  /* Form inputs full width */
  .form { padding: 24px; }

  /* Studio sections stack */
  .studio-story, .founder, .pricing-head, .contact-grid { gap: 2.5rem; }
}

@media (max-width: 600px) {
  :root { --frame: 1.25rem; --section: 4rem; }

  /* Reduce hero typography aggressively */
  .h-display { font-size: clamp(2.1rem, 9vw, 3.3rem); line-height: 0.96; }
  .h-section { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Hero stats stack into 3 short rows */
  .hero-stats { padding-top: 18px; gap: 10px; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .lab { font-size: 9px; letter-spacing: 0.1em; }

  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Thumbs band: even smaller */
  .thumb { width: clamp(110px, 38vw, 140px); }

  /* Diamond frame — bigger ratio for mobile presence */
  .diamond-frame { width: 88%; }

  /* HUD labels — keep only 2 visible to declutter */
  .hud-tr, .hud-bl { display: none; }
  .hud-tl { top: 8%; }
  .hud-br { bottom: 8%; right: 0; }

  /* Specimen + gallery cards full width already, ensure spacing tight */
  .specimens-grid, .gallery { gap: 18px; }

  /* Before/after — knob smaller, tags simpler */
  .ba-knob { width: 46px; height: 46px; }
  .ba-tag .pulse { width: 5px; height: 5px; }
  .ba-knob::after { border-width: 5px 7px 5px 7px; }
  .ba-knob::before { width: 22px; }

  /* Filters: scrollable horizontally */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 24px var(--frame);
  }
  .filter {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Founder card stacks above text */
  .founder { grid-template-columns: 1fr; }
  .founder-card { aspect-ratio: 4 / 4; }
  .founder-card-monogram .glyph { font-size: 6rem; }

  /* Footer becomes single column */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Smaller intro curtain mark */
  .intro-curtain .intro-mark { font-size: clamp(3rem, 16vw, 4.5rem); }
  .intro-curtain .intro-pin, .intro-curtain .intro-pin-r { font-size: 9px; }

  /* Disable hero-photo float opacity animation in case it's stuck */
  .reveal { transform: translateY(40px) scale(0.98); }

  /* Page-top single column */
  .page-top { grid-template-columns: 1fr; gap: 2rem; padding-top: 100px; }
  .page-top-meta { font-size: 10px; }
}

/* Reduced motion — kill the heavy animations */
@media (prefers-reduced-motion: reduce) {
  .intro-curtain { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .word-reveal > span { animation: none; transform: none; }
  .ticker, .clients-track, .thumbs-track { animation-play-state: paused; }
  .jewel-rings .jewel-ring, .orbit-dot { animation: none; }
  .hero-photo, .diamond-frame { animation: none; opacity: 1; }
  .specimen, .gallery-card { transform: none !important; }
  .specimen:hover, .gallery-card:hover { transform: none !important; }
  .specimens-grid:hover .specimen:not(:hover),
  .gallery:hover .gallery-card:not(:hover) { opacity: 1 !important; filter: none !important; }
}

/* Touch-friendly: kill 3D tilt + spotlight on touch screens */
@media (hover: none), (pointer: coarse) {
  .specimen:hover, .gallery-card:hover { transform: none; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
  .specimens-grid:hover .specimen:not(:hover),
  .gallery:hover .gallery-card:not(:hover) { opacity: 1; filter: none; }
  .specimen::after, .gallery-card::after { display: none; }
  .ba-frame { cursor: default; }
}


/* ============================================================
   MOBILE NAV (hamburger) — added 2026-06-08
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 9px;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--bone); border-radius: 2px;
  transition: transform .3s var(--ease-emph), opacity .2s;
}
.nav-menu-cta { display: none; }
html.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
html.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
html.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: 110; }
  .nav-brand { position: relative; z-index: 110; }
  .nav-cta { display: none; }

  .nav > nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10,9,8,0.98);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2.4rem;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform .45s var(--ease-emph), opacity .3s;
    z-index: 90;
  }
  html.nav-open .nav > nav { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav-links {
    display: flex; flex-direction: column;
    align-items: center; gap: 1.8rem; margin: 0; padding: 0;
  }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 1.5rem; }
  .nav-menu-cta { display: inline-flex; margin-top: 1rem; }
}

/* Founder card photo (added 2026-06-08) */
.founder-card.has-photo {
  background:
    linear-gradient(to top, rgba(8,7,6,0.92) 0%, rgba(8,7,6,0.30) 42%, rgba(8,7,6,0.12) 70%, rgba(8,7,6,0.42) 100%),
    url('img/brand/founder.jpg');
  background-size: cover;
  background-position: center 22%;
}
.founder-card.has-photo::before { display: none; }