/* ════════════════════════════════════════════════════════════════
   SHUBHAM RAJ — PORTFOLIO
   Design: dark aurora glassmorphism · editorial typography
   ════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0a0908;
  --bg-soft: #12100c;
  --ink: #f1ece1;
  --ink-dim: #a89f90;
  --ink-faint: #6e675c;
  --line: rgba(255, 240, 214, 0.09);
  --glass: rgba(255, 240, 214, 0.035);
  --glass-strong: rgba(255, 240, 214, 0.065);
  --gold: #e8b54e;
  --saffron: #de8f3a;
  --teal: #5fb8a8;
  --vermillion: #d96f4e;
  --grad: linear-gradient(100deg, #f6d588 0%, #e8a83e 38%, #d96f4e 78%, #f6d588 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-dev: 'Tiro Devanagari Sanskrit', serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.46, 0.64, 1);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: #0b0b10; }

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

.mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2e2a22; border-radius: 6px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #46402f; }

/* ════════════ PRELOADER ════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  background: radial-gradient(120% 100% at 50% 42%, #16110a 0%, #0b0908 48%, #060609 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 5vh 5vw; overflow: hidden;
  transition: transform 0.9s var(--ease-out), visibility 0.9s;
}
.preloader.done { transform: translateY(-101%); visibility: hidden; }
.preloader-name {
  font-size: clamp(22px, 3.4vw, 40px); font-weight: 500; letter-spacing: -0.03em;
  overflow: hidden; position: relative; z-index: 4;
}
.preloader-name span { display: inline-block; animation: riseIn 0.9s var(--ease-out) both 0.15s; }
.preloader-count {
  font-family: var(--font-mono); font-size: clamp(60px, 12vw, 150px);
  font-weight: 500; line-height: 1; color: #38321f; letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums; position: relative; z-index: 4;
}
@keyframes riseIn { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* ── ceremonial welcome stage ── */
.pl-stage {
  position: absolute; inset: 0 0 11vh 0; display: grid; place-items: center;
  pointer-events: none; z-index: 2;
  transition: transform 1s var(--ease-out), opacity 0.75s ease;
}
.preloader.done .pl-stage { transform: scale(1.4); opacity: 0; }

/* divine light rays fanning out from the centre */
.pl-rays {
  position: absolute; width: min(86vmin, 680px); aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg,
    rgba(232, 181, 78, 0.16) 0deg 0.9deg, transparent 0.9deg 7.5deg);
  -webkit-mask: radial-gradient(circle, transparent 24%, #000 40%, #000 60%, transparent 78%);
  mask: radial-gradient(circle, transparent 24%, #000 40%, #000 60%, transparent 78%);
  opacity: 0;
  animation: spin 70s linear infinite, plRaysIn 2s ease 0.25s forwards;
}
@keyframes plRaysIn { to { opacity: 1; } }

/* shockwaves breathing out of the bindu */
.pl-pulse {
  position: absolute; width: min(30vmin, 230px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(232, 181, 78, 0.5);
  opacity: 0; animation: plPulse 3.6s ease-out infinite;
}
.pl-pulse.p2 { animation-delay: 1.2s; border-color: rgba(95, 184, 168, 0.4); }
.pl-pulse.p3 { animation-delay: 2.4s; }
@keyframes plPulse {
  0% { transform: scale(0.35); opacity: 0; }
  18% { opacity: 0.85; }
  100% { transform: scale(2.6); opacity: 0; }
}

.pl-halo {
  position: absolute; width: min(64vmin, 500px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 181, 78, 0.2), rgba(217, 111, 78, 0.07) 45%, transparent 68%);
  filter: blur(16px); animation: plHalo 3.4s ease-in-out infinite;
}

/* ── click-sound toggle (bottom-left, mirrors the WhatsApp button) ── */
.sfx-toggle {
  position: fixed; left: 22px; bottom: 22px; z-index: 1200;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(232, 181, 78, 0.09);
  border: 1px solid rgba(232, 181, 78, 0.24);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0.5;
  transition: color 0.3s, background 0.3s, border-color 0.3s, opacity 0.3s, transform 0.4s var(--spring);
}
.sfx-toggle:hover { opacity: 1; transform: scale(1.08); background: rgba(232, 181, 78, 0.16); }
.sfx-toggle svg { width: 16px; height: 16px; }
.sfx-toggle .slash { opacity: 0; transition: opacity 0.25s; }
.sfx-toggle.muted { color: var(--ink-faint); background: rgba(255, 240, 214, 0.04); border-color: var(--line); }
.sfx-toggle.muted .wave { opacity: 0; }
.sfx-toggle.muted .slash { opacity: 1; }
@media (max-width: 620px) { .sfx-toggle { left: 16px; bottom: 16px; width: 34px; height: 34px; } }
body.menu-open .sfx-toggle { opacity: 0; pointer-events: none; }

/* ── mantra circling the yantra ── */
.pl-mantra {
  position: absolute; width: min(76vmin, 600px); aspect-ratio: 1;
  opacity: 0; animation: plMantraIn 1.6s ease 0.6s forwards, spin 42s linear infinite;
  transform-origin: center;
}
.pl-mantra svg { width: 100%; height: 100%; display: block; overflow: visible; }
.pl-mantra text {
  font-family: var(--font-dev); font-size: 21px;
  fill: rgba(232, 181, 78, 0.62); letter-spacing: 5px;
}
@keyframes plMantraIn { to { opacity: 1; } }

/* ── lotus petals blooming open ── */
.pl-lotus {
  position: absolute; width: min(34vmin, 260px); aspect-ratio: 1;
  animation: spin 60s linear infinite reverse; transform-origin: center;
}
.pl-lotus i {
  position: absolute; left: 50%; top: 50%; width: 9%; height: 26%;
  /* pull the petal up by its own height so its base — the rotation pivot —
     sits exactly on the centre of the box, level with the ॐ */
  margin-left: -4.5%; margin-top: -26%;
  transform-origin: 50% 100%;
  border: 1px solid rgba(232, 181, 78, 0.3);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  opacity: 0; animation: plPetal 1.5s var(--spring) forwards;
}
@keyframes plPetal {
  from { opacity: 0; transform: rotate(var(--a)) translateY(-10%) scaleY(0.25); }
  to   { opacity: 1; transform: rotate(var(--a)) translateY(-72%) scaleY(1); }
}

/* ── diya flame feeding the embers ── */
.pl-diya {
  position: absolute; bottom: 13vh; left: 50%; margin-left: -13px;
  width: 26px; height: 34px; z-index: 3;
  opacity: 0; animation: plDiyaIn 1s ease 1.15s forwards;
}
.pl-diya .fl {
  position: absolute; inset: 0; border-radius: 50% 50% 50% 50% / 68% 68% 32% 32%;
  background: linear-gradient(180deg, #fff3c4, var(--gold) 42%, var(--vermillion));
  filter: blur(0.6px) drop-shadow(0 0 18px rgba(232, 181, 78, 0.85));
  transform-origin: 50% 100%; animation: plFlame 1.5s ease-in-out infinite;
}
.pl-diya .bowl {
  position: absolute; left: -9px; right: -9px; bottom: -9px; height: 11px;
  border-radius: 0 0 44px 44px;
  background: linear-gradient(180deg, rgba(232, 181, 78, 0.85), rgba(120, 78, 30, 0.6));
  box-shadow: 0 0 22px rgba(232, 181, 78, 0.5);
}
@keyframes plDiyaIn { to { opacity: 1; } }
@keyframes plFlame {
  0%, 100% { transform: scaleY(1) scaleX(1) skewX(0deg); }
  33% { transform: scaleY(1.14) scaleX(0.92) skewX(3deg); }
  66% { transform: scaleY(0.93) scaleX(1.07) skewX(-3deg); }
}
@media (max-height: 720px) { .pl-diya { display: none; } }
/* narrow/short screens: the mantra ring would collide with the welcome text */
@media (max-width: 760px), (max-height: 780px) {
  .pl-mantra { display: none; }
  .pl-rays { width: min(70vmin, 460px); }
  .pl-lotus { width: min(28vmin, 200px); }
}

/* quick ceremony (internal link hops) — same choreography, compressed */
.preloader.quick .pl-yantra,
.preloader.quick .pl-mantra,
.preloader.quick .pl-lotus i,
.preloader.quick .pl-rays,
.preloader.quick .pl-diya,
.preloader.quick .pl-dev,
.preloader.quick .pl-translit,
.preloader.quick .pl-shloka { animation-duration: 0.5s; animation-delay: 0s; }
.preloader.quick .pl-shloka { display: none; }

/* embers drifting up */
.pl-dust { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.pl-dust i {
  position: absolute; bottom: -12px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 9px 2px rgba(232, 181, 78, 0.55);
  animation-name: plRise; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes plRise {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  12% { opacity: 0.9; }
  85% { opacity: 0.7; }
  100% { transform: translateY(-96vh) scale(1.1); opacity: 0; }
}
@keyframes plHalo {
  0%, 100% { opacity: 0.45; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

.pl-ring {
  position: absolute; border-radius: 50%; transform-origin: center;
  animation: spin 22s linear infinite;
}
.pl-ring::after {
  content: ''; position: absolute; top: -4px; left: 50%; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 16px 4px rgba(232, 181, 78, 0.75);
}
.pl-ring.r1 { width: min(70vmin, 560px); aspect-ratio: 1; border: 1px dashed rgba(232, 181, 78, 0.24); animation-duration: 30s; }
.pl-ring.r2 { width: min(54vmin, 420px); aspect-ratio: 1; border: 1px solid rgba(95, 184, 168, 0.2); animation-duration: 19s; animation-direction: reverse; }
.pl-ring.r2::after { background: var(--teal); box-shadow: 0 0 16px 4px rgba(95, 184, 168, 0.7); }
.pl-ring.r3 { width: min(40vmin, 310px); aspect-ratio: 1; border: 1px solid rgba(232, 181, 78, 0.14); animation-duration: 13s; }
.pl-ring.r3::after { width: 5px; height: 5px; margin-left: -2.5px; box-shadow: 0 0 12px 3px rgba(232, 181, 78, 0.6); }

.pl-yantra {
  position: absolute; width: min(58vmin, 450px); aspect-ratio: 1;
  color: rgba(232, 181, 78, 0.5); opacity: 0;
  animation: plYantraIn 1.7s var(--ease-out) 0.1s forwards;
}
.pl-yantra svg { width: 100%; height: 100%; display: block; overflow: visible; }
.pl-yantra .m-slow { animation-duration: 28s; }
.pl-yantra .m-fast { animation-duration: 20s; }
@keyframes plYantraIn {
  from { opacity: 0; transform: scale(0.82) rotate(-16deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.pl-om {
  position: relative; z-index: 3; line-height: 1;
  font-family: var(--font-dev); font-size: clamp(52px, 11vmin, 104px);
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(232, 181, 78, 0.5));
  animation: plOm 2.6s ease-in-out infinite, shimmer 6s linear infinite;
}
@keyframes plOm {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.pl-words {
  position: absolute; left: 50%; top: calc(50% - 5.5vh); transform: translateX(-50%);
  margin-top: min(20vmin, 158px);
  text-align: center; z-index: 3; width: 92%;
  transition: opacity 0.45s ease;
}
.preloader.done .pl-words { opacity: 0; }
.pl-dev {
  display: block; font-family: var(--font-dev); line-height: 1.1;
  font-size: clamp(30px, 5.6vmin, 54px);
  background: var(--grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s linear infinite, riseFade 1.1s var(--ease-out) 0.5s both;
}
.pl-translit {
  display: block; margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-faint);
  animation: riseFade 1.1s var(--ease-out) 0.75s both;
}
.pl-shloka {
  display: block; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(232, 181, 78, 0.16);
  max-width: 30ch; margin-left: auto; margin-right: auto;
  font-family: var(--font-dev); font-size: clamp(13px, 2.1vmin, 18px);
  color: rgba(232, 181, 78, 0.68);
  animation: riseFade 1.1s var(--ease-out) 1s both;
}
.pl-shloka small {
  display: block; margin-top: 7px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--ink-faint); text-transform: uppercase;
}
@keyframes riseFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 620px) {
  .pl-words { margin-top: min(26vmin, 170px); }
  .preloader-name { font-size: 18px; }
}
/* short viewports: keep the welcome clear of the name / counter row */
@media (max-height: 720px) {
  .pl-shloka { display: none; }
  .pl-yantra { width: min(46vmin, 320px); }
  .pl-ring.r1 { width: min(56vmin, 400px); }
  .pl-ring.r2 { width: min(43vmin, 300px); }
  .pl-ring.r3 { width: min(32vmin, 220px); }
  .pl-halo { width: min(52vmin, 360px); }
}

/* ════════════ PAGE TRANSITION VEIL ════════════ */
.veil {
  position: fixed; inset: 0; z-index: 1900; background: #060609;
  transform: translateY(101%); pointer-events: none;
  transition: transform 0.55s var(--ease-out);
}
body.leaving .veil { transform: translateY(0); }

/* ════════════ BACKGROUND: AURORA + NOISE ════════════ */
.aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.55; will-change: transform;
}
.aurora .b1 {
  width: 54vw; height: 54vw; top: -22vw; right: -14vw;
  background: radial-gradient(circle, rgba(222, 152, 56, 0.30), transparent 65%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora .b2 {
  width: 44vw; height: 44vw; bottom: -18vw; left: -12vw;
  background: radial-gradient(circle, rgba(47, 124, 110, 0.28), transparent 65%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.aurora .b3 {
  width: 30vw; height: 30vw; top: 38%; left: 42%;
  background: radial-gradient(circle, rgba(217, 111, 78, 0.14), transparent 65%);
  animation: drift3 38s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-9vw, 13vh) scale(1.18); } }
@keyframes drift2 { to { transform: translate(11vw, -9vh) scale(1.12); } }
@keyframes drift3 { to { transform: translate(-13vw, -11vh) scale(0.85); } }

.noise {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ════════════ CURSOR ════════════ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 1800;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; mix-blend-mode: difference;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.cursor.grow { width: 64px; height: 64px; }
@media (hover: none), (max-width: 860px) { .cursor { display: none; } }

/* ════════════ NAV ════════════ */
.site-nav {
  /* centred with auto margins, NOT translateX — a transform here would make the
     nav the containing block for the fixed mobile menu, trapping it inside the bar */
  position: fixed; top: 18px; left: 16px; right: 16px; margin: 0 auto;
  z-index: 1000; width: auto; max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 10px 10px 22px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(18, 16, 12, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(34px) saturate(1.9);
  -webkit-backdrop-filter: blur(34px) saturate(1.9);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 44px rgba(0, 0, 0, 0.4);
}
.brand {
  font-weight: 600; font-size: 17px; letter-spacing: -0.02em;
  text-decoration: none; display: flex; align-items: baseline; gap: 2px;
}
.brand sup { font-size: 9px; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; color: var(--ink-dim);
  padding: 8px 16px; border-radius: 100px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav-links a.active { color: var(--ink); background: rgba(255, 255, 255, 0.08); }
.nav-cta {
  text-decoration: none; font-size: 14px; font-weight: 500; color: #0b0b10;
  background: var(--ink); padding: 10px 22px; border-radius: 100px;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.nav-cta:hover { background: #fff; transform: scale(1.04); }

.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 12px; }
.menu-btn span {
  display: block; width: 22px; height: 1.6px; background: var(--ink);
  margin: 5px 0; transition: 0.35s var(--ease-out);
}
@media (max-width: 860px) {
  .site-nav { top: 12px; left: 12px; right: 12px; padding: 8px 8px 8px 16px; }
  .menu-btn { display: block; }
  .nav-links {
    /* pinned to the CSS viewport (not inset:0) and dvh so the iOS address bar
       collapsing doesn't leave a gap at the bottom of the menu */
    position: fixed; top: 0; left: 0; z-index: -1;
    width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; gap: 4px;
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: clamp(20px, 5.4vw, 26px); padding: 11px 28px; }
  .nav-cta { display: none; }
  /* the menu is a full-screen surface — nothing should float over it */
  body.menu-open { overflow: hidden; }
  body.menu-open .wa-fab,
  body.menu-open .scroll-cue { opacity: 0; pointer-events: none; }
  body.menu-open .menu-btn span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
}

/* ════════════ LAYOUT PRIMITIVES ════════════ */
main { position: relative; z-index: 2; }
.wrap { width: min(1180px, calc(100vw - 48px)); margin: 0 auto; }
section { padding: clamp(70px, 10vw, 130px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
  padding: 8px 16px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 10px #4ade80;
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow.plain::before { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
@keyframes pulse { 50% { opacity: 0.35; } }

.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-index { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.2em; display: block; margin-bottom: 18px; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.035em; line-height: 1.05; }
.display-xl { font-size: clamp(44px, 7.6vw, 104px); }
.display-lg { font-size: clamp(34px, 5.2vw, 64px); }
.display-md { font-size: clamp(24px, 3vw, 36px); }
.lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-dim); max-width: 56ch; font-weight: 400; }

/* ── Split-line reveal ── */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask > span { display: block; transform: translateY(115%); transition: transform 1s var(--ease-out); }
.in .line-mask > span { transform: translateY(0); }
.in .line-mask:nth-child(2) > span { transition-delay: 0.09s; }
.in .line-mask:nth-child(3) > span { transition-delay: 0.18s; }
.in .line-mask:nth-child(4) > span { transition-delay: 0.27s; }

/* ── Scroll reveal ── */
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.fade-up.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(30px) scale(0.985); transition: opacity 0.8s var(--ease-out), transform 0.9s var(--spring); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].in > *:nth-child(2) { transition-delay: 0.13s; }
[data-stagger].in > *:nth-child(3) { transition-delay: 0.21s; }
[data-stagger].in > *:nth-child(4) { transition-delay: 0.29s; }
[data-stagger].in > *:nth-child(5) { transition-delay: 0.37s; }
[data-stagger].in > *:nth-child(6) { transition-delay: 0.45s; }

/* ════════════ GLASS CARD ════════════ */
.glass {
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.07), rgba(255, 240, 214, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.22) inset,
    0 18px 50px -14px rgba(0, 0, 0, 0.5);
}
/* specular highlight — light catching the top of the glass */
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 80% at 50% -12%, rgba(255, 255, 255, 0.16), transparent 58%);
}
.glass-hover {
  transition: transform 0.6s var(--spring), border-color 0.4s, box-shadow 0.5s, background 0.4s;
}
.glass-hover:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.1), rgba(255, 240, 214, 0.03));
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.22) inset,
    0 34px 70px -18px rgba(0, 0, 0, 0.62),
    0 0 50px -16px rgba(232, 181, 78, 0.3);
}

/* ════════════ BUTTONS ════════════ */
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  padding: 16px 30px; border-radius: 100px; text-decoration: none;
  transition: transform 0.35s var(--ease-out), background 0.3s, border-color 0.3s, color 0.3s;
  will-change: transform;
}
.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }
.btn-solid { background: var(--ink); color: #0b0b10; }
.btn-solid:hover { background: #fff; }
.btn-ghost {
  color: var(--ink); border: 1px solid var(--line);
  background: var(--glass); backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.25); background: var(--glass-strong); }
.vcard-btn { display: inline-flex; align-items: center; gap: 9px; }
.vcard-btn svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ════════════ WHATSAPP BOOKING ════════════ */
.wa-green { --wa: #25d366; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 40px; font-size: 15px; font-weight: 500;
  color: #06281a; background: linear-gradient(135deg, #4ae585, #25d366 60%, #14b352);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.35) inset, 0 14px 34px -14px rgba(37, 211, 102, 0.75);
  transition: transform 0.4s var(--spring), box-shadow 0.4s, filter 0.3s;
}
.btn-wa:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 1px 0 0 rgba(255,255,255,0.4) inset, 0 22px 46px -16px rgba(37, 211, 102, 0.9); }
.btn-wa svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; }

/* booking card */
.wa-book { padding: 34px 32px 32px; }
.wa-book .wab-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.wa-book .wab-ic {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(37, 211, 102, 0.06));
  border: 1px solid rgba(37, 211, 102, 0.35);
}
.wa-book .wab-ic svg { width: 22px; height: 22px; fill: #25d366; }
.wa-book h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.wa-book > p { color: var(--ink-dim); font-size: 15px; margin-top: 4px; }
.wab-group { margin-top: 26px; }
.wab-label {
  display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 11px;
}
.wab-opts { display: flex; flex-wrap: wrap; gap: 9px; }
.wab-opt {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  padding: 9px 15px; border-radius: 30px; cursor: pointer;
  color: var(--ink-dim); background: rgba(255, 240, 214, 0.04);
  border: 1px solid var(--line);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.35s var(--spring);
}
.wab-opt:hover { color: var(--ink); border-color: rgba(232, 181, 78, 0.4); transform: translateY(-2px); }
.wab-opt[aria-pressed="true"] {
  color: var(--gold); border-color: rgba(232, 181, 78, 0.6);
  background: rgba(232, 181, 78, 0.12);
  box-shadow: 0 0 20px -6px rgba(232, 181, 78, 0.5);
}
.wab-name {
  width: 100%; margin-top: 4px; padding: 12px 16px; border-radius: 14px;
  font-family: var(--font-display); font-size: 15px; color: var(--ink);
  background: rgba(255, 240, 214, 0.04); border: 1px solid var(--line);
  transition: border-color 0.25s, background 0.25s;
}
.wab-name::placeholder { color: var(--ink-faint); }
.wab-name:focus { outline: none; border-color: rgba(232, 181, 78, 0.5); background: rgba(255, 240, 214, 0.07); }
.wab-go { margin-top: 26px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wab-note { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-faint); }

/* ── mini calendar ── */
.wa-cal { margin-top: 4px; max-width: 320px; }
.wac-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.wac-month { font-size: 14px; font-weight: 500; letter-spacing: -0.01em; }
.wac-nav { display: flex; gap: 5px; }
.wac-nav button {
  width: 26px; height: 26px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
  color: var(--ink-dim); background: rgba(255, 240, 214, 0.05); border: 1px solid var(--line);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.wac-nav button:hover:not(:disabled) { color: var(--gold); border-color: rgba(232, 181, 78, 0.45); background: rgba(232, 181, 78, 0.1); }
.wac-nav button:disabled { opacity: 0.3; cursor: not-allowed; }
.wac-nav svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.wac-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.wac-dow {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint); text-align: center; padding-bottom: 3px;
}
.wac-day {
  height: 32px; border-radius: 9px; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim);
  background: rgba(255, 240, 214, 0.03); border: 1px solid transparent;
  display: grid; place-items: center;
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.3s var(--spring);
}
.wac-day:hover:not(:disabled) { color: var(--ink); background: rgba(255, 240, 214, 0.09); transform: translateY(-2px); }
.wac-day:disabled { opacity: 0.22; cursor: not-allowed; }
.wac-day.is-blank { background: none; cursor: default; pointer-events: none; }
.wac-day.is-today { border-color: rgba(95, 184, 168, 0.5); color: var(--teal); }
.wac-day.is-sel {
  color: var(--bg); background: var(--grad); background-size: 180% auto;
  border-color: transparent; font-weight: 600;
  box-shadow: 0 6px 20px -6px rgba(232, 181, 78, 0.7);
}
.wac-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 6px; }
.wac-slots .wab-opt { padding: 8px 6px; text-align: center; font-size: 11px; }
.wac-none { font-size: 13px; color: var(--ink-faint); font-style: italic; }

/* ── booking popup ── */
.wa-modal { position: fixed; inset: 0; z-index: 3000; visibility: hidden; }
.wa-modal.open { visibility: visible; }
.wa-backdrop {
  position: absolute; inset: 0; opacity: 0;
  background: rgba(6, 6, 9, 0.74); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.4s ease;
}
.wa-modal.open .wa-backdrop { opacity: 1; }
.wa-dialog {
  position: absolute; left: 50%; top: 50%;
  width: min(560px, calc(100vw - 28px)); max-height: min(88vh, 780px); overflow-y: auto;
  border-radius: 26px; padding: 34px 32px 30px;
  transform: translate(-50%, -46%) scale(0.96); opacity: 0;
  transition: transform 0.55s var(--spring), opacity 0.35s ease;
  scrollbar-width: thin; scrollbar-color: rgba(232, 181, 78, 0.4) transparent;
}
.wa-modal.open .wa-dialog { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.wa-dialog .wab-group { margin-top: 18px; }
.wa-dialog .wab-label { margin-bottom: 8px; }
.wa-dialog .wab-go { margin-top: 20px; }
.wa-dialog::-webkit-scrollbar { width: 8px; }
.wa-dialog::-webkit-scrollbar-thumb { background: rgba(232, 181, 78, 0.35); border-radius: 8px; }
.wa-close {
  position: absolute; top: 15px; right: 15px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; color: var(--ink-dim);
  background: rgba(255, 240, 214, 0.06); border: 1px solid var(--line);
  transition: color 0.25s, background 0.25s, transform 0.35s var(--spring);
}
.wa-close:hover { color: var(--ink); background: rgba(255, 240, 214, 0.12); transform: rotate(90deg); }
.wa-close svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; }
body.wa-locked { overflow: hidden; }

/* floating action button */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #06281a; background: linear-gradient(135deg, #4ae585, #25d366 60%, #14b352);
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: waPulse 2.8s ease-out infinite;
  transition: transform 0.4s var(--spring), width 0.4s var(--spring), opacity 0.3s ease;
}
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; }
.wa-fab span {
  max-width: 0; overflow: hidden; white-space: nowrap; font-size: 14px; font-weight: 500;
  transition: max-width 0.45s var(--spring), margin 0.45s var(--spring);
}
.wa-fab:hover { width: auto; padding: 0 22px 0 16px; gap: 10px; border-radius: 40px; transform: translateY(-3px); }
.wa-fab:hover span { max-width: 150px; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 620px) { .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; } }
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }

.btn-linked {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px 12px 16px; border-radius: 40px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid rgba(232, 181, 78, 0.28);
  background: linear-gradient(135deg, rgba(232, 181, 78, 0.12), rgba(255, 240, 214, 0.02));
  backdrop-filter: blur(14px) saturate(1.6);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.4s var(--spring), border-color 0.35s, box-shadow 0.35s;
}
.btn-linked svg { width: 17px; height: 17px; fill: var(--gold); flex-shrink: 0; }
.btn-linked:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 181, 78, 0.55);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.18) inset, 0 10px 26px -12px rgba(232, 181, 78, 0.5);
}

/* ════════════ HERO (HOME) ════════════ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 130px; padding-bottom: 40px; position: relative;
  perspective: 1500px;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 5vw, 80px); align-items: center; transform-style: preserve-3d; will-change: transform; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 26px 0 24px; }
.hero .serif { font-size: 1.06em; }
.hero-sub { max-width: 52ch; margin-bottom: 36px; }
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 56px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-meta div { min-width: 130px; }
.hero-meta .mono { display: block; margin-bottom: 5px; }
.hero-meta strong { font-weight: 500; font-size: 15px; color: var(--ink-dim); }

/* hero proof bar — headline numbers */
.hero-proof {
  margin-top: clamp(40px, 4.5vw, 64px); padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px;
  position: relative; z-index: 2;
}
.hp-item { position: relative; }
.hp-num {
  display: block; line-height: 1;
  font-size: clamp(24px, 2.5vw, 36px); font-weight: 500; letter-spacing: -0.035em;
  background: var(--grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
  font-variant-numeric: tabular-nums;
}
.hp-cap {
  display: block; margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint); line-height: 1.5;
}
@media (min-width: 901px) {
  .hp-item + .hp-item::before {
    content: ''; position: absolute; left: -10px; top: 2px; bottom: 2px; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 240, 214, 0.14), transparent);
  }
}
@media (max-width: 900px) { .hero-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 16px; } }
@media (max-width: 520px) { .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* portrait card */
.portrait {
  position: relative; border-radius: 28px; overflow: visible;
  width: min(380px, 100%); margin-left: auto;
  transform-style: preserve-3d;
}
@media (max-width: 960px) { .portrait { margin: 30px auto 0; } }
.portrait-img {
  border-radius: 28px; overflow: hidden; position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(2.5deg) translateZ(45px);
  transition: transform 0.7s var(--ease-out);
}
.portrait:hover .portrait-img { transform: rotate(0deg) scale(1.015); }
.portrait-img img {
  width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover; object-position: center 16%;
  filter: saturate(1) contrast(1.03);
  transition: filter 0.6s;
}
.portrait-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(195deg, rgba(232, 181, 78, 0.14), transparent 45%, rgba(10, 9, 8, 0.45));
  pointer-events: none;
}
.portrait-tag {
  position: absolute; z-index: 3;
  background: linear-gradient(135deg, rgba(28, 26, 34, 0.62), rgba(15, 15, 24, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(1.8); -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-radius: 16px; padding: 12px 18px;
  font-size: 13px; line-height: 1.45;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.16) inset, 0 18px 44px rgba(0, 0, 0, 0.48);
  animation: floaty 6s ease-in-out infinite;
}
.portrait-tag .mono { display: block; font-size: 10px; margin-bottom: 2px; }
.portrait-tag.t1 { top: 7%; left: -17%; animation-delay: 0.6s; --tz: 95px; }
.portrait-tag.t2 { bottom: 12%; right: -13%; animation-delay: 2s; --tz: 110px; }
@keyframes floaty {
  0%, 100% { transform: translateZ(var(--tz, 0)) translateY(0); }
  50% { transform: translateZ(var(--tz, 0)) translateY(-11px); }
}
@media (max-width: 1100px) { .portrait-tag.t1 { left: -4%; } .portrait-tag.t2 { right: -3%; } }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-faint); text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(var(--ink-faint), transparent);
  animation: cueDrop 2s var(--ease-out) infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ════════════ MARQUEE ════════════ */
.marquee {
  overflow: hidden; white-space: nowrap; padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: clamp(15px, 1.7vw, 19px); font-weight: 400; color: var(--ink-dim);
  padding: 0 28px; display: inline-flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "✦"; font-size: 12px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ════════════ PILLARS (what I do) ════════════ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 36px 32px 40px; }
.pillar .num {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint);
  display: block; margin-bottom: 46px; letter-spacing: 0.18em;
}
.pillar h3 { font-size: 25px; margin-bottom: 14px; }
.pillar h3 .serif { color: var(--gold); }
.pillar p { color: var(--ink-dim); font-size: 15.5px; }
.pillar .pillar-foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.pillar-more {
  margin-top: 30px; text-align: center; color: var(--ink-dim);
  font-size: 15.5px; line-height: 1.7;
}
.pillar-more strong { color: var(--ink); font-weight: 500; }
.pillar-more a { color: var(--gold); white-space: nowrap; }
.pillar-more a:hover { text-decoration: underline; }
.chip {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-dim);
  padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025);
}

/* ════════════ VENTURE CARDS ════════════ */
.venture-list { display: grid; gap: 20px; }
.venture {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start;
  padding: clamp(28px, 4vw, 52px);
  text-decoration: none;
}
.venture .v-body h3 { font-size: clamp(26px, 3.4vw, 42px); margin: 10px 0 14px; transition: color 0.3s; }
.venture:hover .v-body h3 { color: var(--gold); }
.venture p { color: var(--ink-dim); max-width: 58ch; font-size: 16px; }
.venture .v-go {
  width: 58px; height: 58px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-size: 20px; transition: background 0.35s, transform 0.45s var(--ease-out), border-color 0.35s;
}
.venture:hover .v-go { background: var(--ink); color: #0b0b10; transform: rotate(-45deg); border-color: var(--ink); }
.v-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

/* ════════════ STATS STRIP ════════════ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 40px 26px 44px; border-bottom: 1px solid var(--line); position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line);
}
@media (max-width: 880px) { .stat:nth-child(odd)::before { display: none; } }
.stat-num {
  font-size: clamp(40px, 5.4vw, 68px); font-weight: 500; letter-spacing: -0.04em;
  line-height: 1; display: block; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-num em { font-style: normal; color: var(--gold); }
.stat .mono { font-size: 11px; }

/* ════════════ RECOGNITION ROWS ════════════ */
.award-rows { border-top: 1px solid var(--line); }
.award-row {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: baseline;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  transition: background 0.35s, padding 0.35s var(--ease-out);
}
.award-row:hover { background: rgba(255, 255, 255, 0.025); padding-left: 22px; }
.award-row .yr { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); }
.award-row h3 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 500; }
.award-row .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 720px) { .award-row { grid-template-columns: 1fr; gap: 6px; } }

/* ════════════ QUOTE BAND ════════════ */
.quote-band { text-align: center; padding: clamp(80px, 11vw, 150px) 0; }
.quote-band blockquote {
  font-size: clamp(26px, 4.4vw, 52px); font-weight: 400; letter-spacing: -0.03em;
  line-height: 1.22; max-width: 22ch; margin: 0 auto;
}
.quote-band .serif { color: var(--gold); }
.quote-band cite { display: block; margin-top: 30px; font-style: normal; }

/* ════════════ PAGE HERO (inner pages) ════════════ */
.page-hero { padding-top: clamp(150px, 20vh, 210px); padding-bottom: clamp(30px, 5vw, 60px); }
.page-hero h1 { margin: 24px 0 22px; max-width: 14ch; }
.page-hero .lede { max-width: 60ch; }

/* ════════════ PROSE / STORY ════════════ */
.story-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(40px, 6vw, 90px); }
@media (max-width: 920px) { .story-grid { grid-template-columns: 1fr; } }
.story-side { position: sticky; top: 120px; align-self: start; }
@media (max-width: 920px) { .story-side { position: static; } }
.prose p { color: var(--ink-dim); margin-bottom: 26px; font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.8; }
.prose p strong { color: var(--ink); font-weight: 500; }
.prose .drop {
  font-size: clamp(21px, 2.2vw, 27px); color: var(--ink); line-height: 1.5; font-weight: 400;
}

/* ════════════ PRINCIPLES ════════════ */
.principles { border-top: 1px solid var(--line); }
.principle {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 34px 8px; border-bottom: 1px solid var(--line); align-items: baseline;
  transition: background 0.3s, padding-left 0.35s var(--ease-out);
}
.principle:hover { background: rgba(255,255,255,0.02); padding-left: 20px; }
.principle .mono { font-size: 12px; }
.principle h3 { font-size: clamp(19px, 2.4vw, 28px); margin-bottom: 8px; }
.principle p { color: var(--ink-dim); font-size: 15.5px; max-width: 64ch; }

/* ════════════ FACT GRID / GLASS BENTO ════════════ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.bento > * { padding: 32px 30px; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 880px) { .bento > * { grid-column: span 12 !important; } }
.bento h3 { font-size: 21px; margin-bottom: 10px; }
.bento p { color: var(--ink-dim); font-size: 15.5px; }
.bento .big {
  font-size: clamp(38px, 5vw, 58px); font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 12px; display: block;
}

/* ════════════ PRODUCT CARDS (GarudaX) ════════════ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .products { grid-template-columns: 1fr; } }
.product { padding: 34px 30px 38px; display: flex; flex-direction: column; }
.product .p-icon {
  width: 46px; height: 46px; border-radius: 14px; margin-bottom: 26px;
  display: grid; place-items: center; font-size: 19px;
  background: linear-gradient(135deg, rgba(232, 181, 78, 0.18), rgba(95, 184, 168, 0.1));
  border: 1px solid rgba(232, 181, 78, 0.25);
}
.product h3 { font-size: 21px; margin-bottom: 12px; }
.product p { color: var(--ink-dim); font-size: 15px; flex: 1; }
.product ul { list-style: none; margin-top: 20px; }
.product li {
  font-size: 14px; color: var(--ink-dim); padding: 9px 0;
  border-top: 1px solid var(--line); display: flex; gap: 10px;
}
.product li::before { content: "→"; color: var(--gold); }

/* ════════════ SERVICES GRID ════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card {
  padding: 26px 24px 30px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card .sc-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--gold); opacity: 0.75;
}
.service-card h3 {
  font-size: 18px; font-weight: 500; margin: 16px 0 9px; letter-spacing: -0.01em;
}
.service-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-dim); }
.service-card .sc-glyph {
  position: absolute; top: 20px; right: 20px; width: 22px; height: 22px;
  stroke: var(--gold); fill: none; stroke-width: 1.5; opacity: 0.5;
  transition: opacity 0.4s, transform 0.5s var(--spring);
}
.service-card:hover .sc-glyph { opacity: 0.95; transform: rotate(8deg) scale(1.1); }
.service-card.has-link { text-decoration: none; color: inherit; }
.service-card .sc-link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
}
.service-card .sc-link .arr { transition: transform 0.4s var(--spring); }
.service-card.has-link:hover .sc-link .arr { transform: translateX(5px); }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .services-grid { grid-template-columns: 1fr; } }

/* ════════════ SUCCESS STORIES ════════════ */
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.proof-strip .ps-cell {
  text-align: center; padding: 26px 14px;
}
.proof-strip .ps-num {
  display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1;
}
.proof-strip .ps-lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; display: block;
}
@media (max-width: 720px) { .proof-strip { grid-template-columns: repeat(2, 1fr); } }

.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .stories { grid-template-columns: 1fr; } }
.story { padding: 32px 28px 30px; display: flex; flex-direction: column; }
.story .st-metric {
  font-size: clamp(38px, 5vw, 52px); font-weight: 600; letter-spacing: -0.02em;
  line-height: 1;
}
.story .st-metric-lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-dim); margin-top: 10px; display: block;
}
.story blockquote {
  font-family: var(--font-serif); font-style: italic; font-size: 18px;
  line-height: 1.5; color: var(--ink); margin: 22px 0 20px;
  padding-top: 22px; border-top: 1px solid var(--line); flex: 1;
}
.story .st-who { display: flex; align-items: center; gap: 12px; }
.story .st-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--bg);
  background: var(--grad);
}
.story .st-name { font-size: 14px; font-weight: 500; }
.story .st-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-faint); text-transform: uppercase; }

/* ════════════ PROJECT PREVIEWS ════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
@media (max-width: 820px) { .projects-grid { grid-template-columns: minmax(0, 1fr); } }
.featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 940px) { .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .featured-grid { grid-template-columns: minmax(0, 1fr); } }
.site-frame.compact { height: 340px; }
.project-card { display: flex; flex-direction: column; min-width: 0; }
.browser {
  min-width: 0; max-width: 100%;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: #0d0c0b;
  box-shadow: 0 26px 64px -26px rgba(0, 0, 0, 0.72);
  transition: transform 0.5s var(--spring), box-shadow 0.5s;
}
.project-card:hover .browser {
  transform: translateY(-7px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  border-color: rgba(232, 181, 78, 0.22);
}
.browser-bar {
  display: flex; align-items: center; gap: 12px; padding: 11px 15px;
  background: linear-gradient(180deg, rgba(255, 240, 214, 0.06), rgba(255, 240, 214, 0.015));
  border-bottom: 1px solid var(--line);
}
.browser-bar .dots { display: flex; gap: 7px; flex-shrink: 0; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.browser-bar .dots i:nth-child(1) { background: #e0655a; }
.browser-bar .dots i:nth-child(2) { background: #e0b552; }
.browser-bar .dots i:nth-child(3) { background: #5fb87a; }
.browser-bar .url {
  flex: 1; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-dim);
  background: rgba(0, 0, 0, 0.32); border: 1px solid var(--line); border-radius: 20px;
  padding: 6px 15px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.site-frame {
  position: relative; height: 440px; overflow-y: auto; overflow-x: hidden;
  background: #0d0c0b; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: rgba(232, 181, 78, 0.4) transparent;
}
.site-frame::-webkit-scrollbar { width: 8px; }
.site-frame::-webkit-scrollbar-thumb { background: rgba(232, 181, 78, 0.35); border-radius: 8px; }
.site-frame iframe { display: block; border: 0; background: #fff; }
.site-frame .frame-load {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  background: #0d0c0b; color: var(--ink-faint);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: opacity 0.6s ease; pointer-events: none;
}
.site-frame .frame-load.done { opacity: 0; }
.site-frame .frame-load::after {
  content: ''; position: absolute; width: 34px; height: 34px; margin-top: 46px;
  border: 2px solid rgba(232, 181, 78, 0.25); border-top-color: var(--gold);
  border-radius: 50%; animation: fspin 0.9s linear infinite;
}
@keyframes fspin { to { transform: rotate(360deg); } }
.site-frame .scroll-hint {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: rgba(10, 9, 8, 0.72); border: 1px solid var(--line); border-radius: 20px;
  padding: 6px 12px; backdrop-filter: blur(10px); pointer-events: none;
  transition: opacity 0.4s;
}
.project-card:hover .scroll-hint { opacity: 0; }
.project-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-top: 20px; }
.project-meta h3 { font-size: 21px; font-weight: 500; letter-spacing: -0.01em; }
.project-meta .pm-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 5px; display: block;
}
.project-meta .pm-visit {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap; flex-shrink: 0; padding-top: 4px;
  transition: transform 0.35s var(--spring);
}
.project-meta .pm-visit:hover { transform: translateX(3px); }

/* ════════════ TIMELINE (journey) ════════════ */
.journey { position: relative; padding-left: 36px; }
.journey::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(rgba(232,181,78,0.6), rgba(95,184,168,0.25), transparent);
}
.j-item { position: relative; padding-bottom: 46px; }
.j-item::before {
  content: ""; position: absolute; left: -34.5px; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--gold);
  box-shadow: 0 0 14px rgba(232, 181, 78, 0.6);
}
.j-item .mono { display: block; margin-bottom: 8px; }
.j-item h3 { font-size: clamp(19px, 2.3vw, 26px); margin-bottom: 8px; }
.j-item p { color: var(--ink-dim); max-width: 62ch; font-size: 15.5px; }

/* ════════════ CONTACT ════════════ */
.contact-hero { text-align: left; }
.mail-link {
  display: inline-block; text-decoration: none;
  font-size: clamp(26px, 4.6vw, 58px); font-weight: 500; letter-spacing: -0.03em;
  margin: 22px 0 8px; position: relative;
}
.mail-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--grad); transform: scaleX(0); transform-origin: right;
  transition: transform 0.55s var(--ease-out);
}
.mail-link:hover::after { transform: scaleX(1); transform-origin: left; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
@media (max-width: 880px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { padding: 30px 28px; text-decoration: none; }
.contact-card .mono { display: block; margin-bottom: 14px; }
.contact-card h3 { font-size: 19px; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; }
.contact-card h3 .arr { transition: transform 0.35s var(--ease-out); font-size: 16px; color: var(--ink-faint); }
.contact-card:hover h3 .arr { transform: translate(4px, -4px); color: var(--ink); }
.contact-card p { color: var(--ink-dim); font-size: 14.5px; }

/* ════════════ FOOTER ════════════ */
footer { position: relative; z-index: 2; margin-top: clamp(40px, 8vw, 110px); }
.footer-cta { text-align: center; padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 7vw, 90px); }
.footer-cta h2 { font-size: clamp(38px, 7vw, 92px); letter-spacing: -0.04em; margin: 18px 0 36px; }
.footer-cta h2 .serif { color: var(--gold); }
.footer-base {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 34px 0 110px;
}
.footer-cols {
  display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  font-size: 14px; color: var(--ink-faint);
}
.footer-cols a { color: var(--ink-dim); text-decoration: none; transition: color 0.3s; }
.footer-cols a:hover { color: var(--ink); }
.footer-cols .links { display: flex; gap: 22px; flex-wrap: wrap; }
.watermark {
  font-size: clamp(70px, 14.5vw, 210px); font-weight: 600; letter-spacing: -0.05em;
  line-height: 0.9; text-align: center; user-select: none; margin-top: 50px;
  background: linear-gradient(180deg, rgba(246, 213, 136, 0.14), rgba(246, 213, 136, 0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}

/* ════════════ MISC ════════════ */
.divider-dot { display: flex; align-items: center; gap: 14px; color: var(--ink-faint); }
.divider-dot::before, .divider-dot::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.tilt { transform-style: preserve-3d; will-change: transform; transition: transform 0.5s var(--spring); }
/* cursor-following glare on tilt cards (Apple liquid-glass) */
.tilt::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity 0.4s; z-index: 4;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 240, 214, 0.14), transparent 60%);
}
.tilt:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
  .fade-up, [data-stagger] > * { opacity: 1; transform: none; }
  .line-mask > span { transform: none; }
}

/* ════════════ GOLD SHIMMER (gradient text) ════════════ */
.grad-text { background-size: 220% auto; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 220% center; } }

/* ════════════ DEVANAGARI ════════════ */
.dev { font-family: var(--font-dev); font-weight: 400; letter-spacing: 0; }

/* ════════════ MANDALA (yantra line-art, JS-injected) ════════════ */
.mandala { position: absolute; pointer-events: none; color: var(--gold); }
.mandala svg { width: 100%; height: 100%; display: block; overflow: visible; }
.m-slow { animation: spin 140s linear infinite; transform-origin: center; }
.m-fast { animation: spin 90s linear infinite reverse; transform-origin: center; }
.m-mid  { animation: spin 200s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.mandala-hero {
  inset: -24%; opacity: 0.5; z-index: -1;
}
.mandala-quote {
  width: min(620px, 88vw); aspect-ratio: 1; opacity: 0.16;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.mandala-foot {
  width: min(720px, 96vw); aspect-ratio: 1; opacity: 0.1;
  left: 50%; bottom: -42%; transform: translateX(-50%);
}

/* ════════════ GOLD DUST PARTICLES ════════════ */
.dust { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* ════════════ ORBITS (portrait) ════════════ */
.orbit {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px dashed rgba(232, 181, 78, 0.22);
}
.orbit i {
  position: absolute; top: -4.5px; left: 50%; width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 14px rgba(232, 181, 78, 0.9);
}
.orbit.o1 { inset: -7%; animation: spin 26s linear infinite; }
.orbit.o2 { inset: -15%; animation: spin 44s linear infinite reverse; border-color: rgba(95, 184, 168, 0.18); }
.orbit.o2 i { background: var(--teal); box-shadow: 0 0 14px rgba(95, 184, 168, 0.9); }

/* ════════════ GLASS SHEEN SWEEP ════════════ */
.glass-hover::after {
  content: ""; position: absolute; top: -10%; bottom: -10%; left: -65%; width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 226, 160, 0.075), transparent);
  transition: left 0.85s var(--ease-out);
  pointer-events: none;
}
.glass-hover:hover::after { left: 135%; }

/* ════════════ SHLOKA BAND ════════════ */
.shloka { position: relative; }
.shloka .dev-line {
  font-family: var(--font-dev);
  font-size: clamp(34px, 6vw, 72px); line-height: 1.45;
  display: block; margin-bottom: 22px;
}
.shloka .translit {
  display: block; margin-bottom: 34px; font-size: 12px; letter-spacing: 0.22em;
}
.shloka .meaning {
  font-size: clamp(19px, 2.4vw, 28px); font-weight: 400; letter-spacing: -0.02em;
  line-height: 1.45; max-width: 36ch; margin: 0 auto; color: var(--ink-dim);
}
.shloka .meaning strong { color: var(--ink); font-weight: 500; }

/* ════════════ NAME-MEANING NOTE ════════════ */
.name-note {
  display: inline-flex; align-items: baseline; gap: 12px; margin-top: 20px;
  padding: 10px 18px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.name-note .dev { font-size: 21px; color: var(--gold); }
.name-note small { font-size: 13px; color: var(--ink-dim); letter-spacing: 0; }

/* ════════════ LOGO WALL ════════════ */
.logo-wall {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 18px;
}
.logo-card {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 34px; min-height: 86px;
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.055), rgba(255, 240, 214, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 18px;
  backdrop-filter: blur(24px) saturate(1.6); -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.4s, transform 0.5s var(--spring);
}
.logo-card:hover {
  border-color: rgba(232, 181, 78, 0.35);
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.09), rgba(255, 240, 214, 0.03));
  transform: translateY(-5px);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.16) inset, 0 20px 44px -16px rgba(0, 0, 0, 0.55);
}
.logo-card img {
  height: 34px; width: auto; max-width: 170px; object-fit: contain;
  filter: brightness(0) invert(0.88) sepia(0.18) saturate(1.2);
  opacity: 0.85; transition: opacity 0.3s, filter 0.3s;
}
.logo-card:hover img { opacity: 1; filter: brightness(0) invert(0.96) sepia(0.25) saturate(1.6); }
.logo-card.with-mark { gap: 13px; }
.logo-card.with-mark img { height: 30px; }
.logo-card.with-mark span {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-dim); transition: color 0.3s;
}
.logo-card.with-mark:hover span { color: var(--gold); }
.logo-card.text-logo {
  flex-direction: column; gap: 4px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-dim);
}
.logo-card.text-logo:hover { color: var(--gold); }
.logo-card.text-logo small { display: block; font-size: 9.5px; letter-spacing: 0.12em; color: var(--ink-faint); margin-top: 3px; text-align: center; }

/* ════════════ OM DIVIDER ════════════ */
.om-divider {
  display: flex; align-items: center; gap: 26px;
  width: min(680px, 80vw); margin: 0 auto;
  color: rgba(232, 181, 78, 0.55);
}
.om-divider::before, .om-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 181, 78, 0.35));
}
.om-divider::after { background: linear-gradient(90deg, rgba(232, 181, 78, 0.35), transparent); }
.om-divider .dev { font-size: 26px; line-height: 1; }

/* ════════════ JOURNEY CHAPTERS ════════════ */
.chapter {
  display: grid; grid-template-columns: 180px 1fr; gap: clamp(24px, 4vw, 64px);
  padding: clamp(44px, 6vw, 72px) 0; border-top: 1px solid var(--line);
  position: relative;
}
@media (max-width: 820px) { .chapter { grid-template-columns: 1fr; gap: 18px; } }
.chapter-marker { position: sticky; top: 130px; align-self: start; }
@media (max-width: 820px) { .chapter-marker { position: static; } }
.chapter-marker .dev-num {
  font-family: var(--font-dev); font-size: 54px; line-height: 1;
  display: block; margin-bottom: 10px;
  background: var(--grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
}
.chapter-marker .mono { display: block; }
.chapter-body h3 { font-size: clamp(24px, 3.2vw, 38px); margin-bottom: 18px; }
.chapter-body h3 .serif { color: var(--gold); }
.chapter-body p { color: var(--ink-dim); font-size: clamp(16px, 1.5vw, 18.5px); line-height: 1.8; max-width: 68ch; margin-bottom: 16px; }
.chapter-body p strong { color: var(--ink); font-weight: 500; }
.chapter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ════════════ EXPERIENCE ROWS ════════════ */
.xp-rows { border-top: 1px solid var(--line); }
.xp-row {
  display: grid; grid-template-columns: 170px 1fr auto; gap: 20px; align-items: baseline;
  padding: 26px 8px; border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding-left 0.35s var(--ease-out);
}
.xp-row:hover { background: rgba(255, 240, 214, 0.025); padding-left: 20px; }
.xp-row .yr { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: 0.06em; }
.xp-row h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 500; }
.xp-row .role { display: block; font-size: 14px; color: var(--ink-dim); margin-top: 4px; }
.xp-row .loc { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.xp-row .now { color: var(--gold); }
@media (max-width: 720px) { .xp-row { grid-template-columns: 1fr; gap: 5px; } }

/* ── grouped company experience ── */
.xp-groups { border-top: 1px solid var(--line); }
.xp-group {
  padding: 30px 8px 22px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease-out);
}
.xp-group:hover { background: rgba(255, 240, 214, 0.02); }
.xp-co {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.xp-co h3 {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; letter-spacing: -0.01em;
}
.xp-co .xp-total {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ink-faint); text-transform: uppercase;
}
.xp-co .xp-flag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(232, 181, 78, 0.3); border-radius: 20px;
  padding: 3px 11px;
}
.xp-roles { margin-top: 14px; }
.xp-sub {
  display: grid; grid-template-columns: 210px 1fr; gap: 8px 24px;
  padding: 13px 0 13px 20px; position: relative;
  border-top: 1px dashed rgba(255, 240, 214, 0.08);
}
.xp-sub:first-child { border-top: 0; }
.xp-sub::before {
  content: ''; position: absolute; left: 0; top: 20px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px rgba(232, 181, 78, 0.6);
}
.xp-sub.past::before { background: var(--ink-faint); box-shadow: none; }
.xp-sub .r-name { font-size: 16px; font-weight: 500; color: var(--ink); }
.xp-sub .r-when { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.04em; }
.xp-sub .r-when .now { color: var(--gold); }
.xp-sub .r-meta {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-dim); margin-top: 3px;
}
@media (max-width: 720px) {
  .xp-sub { grid-template-columns: 1fr; gap: 3px; padding-left: 18px; }
  .xp-sub .r-when { order: -1; }
}

/* ════════════ SANSKRIT VALUES ════════════ */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1020px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 30px 24px 32px; text-align: center; }
.value-card .dev-big {
  font-family: var(--font-dev); font-size: 46px; line-height: 1.3; display: block;
  background: var(--grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite; margin-bottom: 6px;
}
.value-card .v-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

/* ════════════ HERO HONORS RAIL ════════════ */
.honors {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  margin-top: 26px; position: relative; z-index: 2;
}
@media (max-width: 900px) { .honors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .honors { grid-template-columns: 1fr; } }
.honor {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.06), rgba(255, 240, 214, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(26px) saturate(1.7); -webkit-backdrop-filter: blur(26px) saturate(1.7);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.12) inset, 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  transition: border-color 0.35s, background 0.35s, box-shadow 0.4s, transform 0.5s var(--spring);
}
.honor:hover {
  transform: translateY(-5px); border-color: rgba(232, 181, 78, 0.35);
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.09), rgba(255, 240, 214, 0.03));
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.18) inset, 0 18px 44px -14px rgba(0, 0, 0, 0.6), 0 0 36px -14px rgba(232, 181, 78, 0.35);
}
.honor .h-num {
  font-size: 34px; font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  background: var(--grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s linear infinite;
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.honor .h-ic {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(232, 181, 78, 0.1); border: 1px solid rgba(232, 181, 78, 0.25);
}
.honor .h-ic svg { width: 20px; height: 20px; }
.honor strong { display: block; font-size: 14px; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; }
.honor .mono { display: block; font-size: 9.5px; margin-top: 4px; letter-spacing: 0.1em; }
.honor.prize {
  border-color: rgba(232, 181, 78, 0.35);
  background: linear-gradient(135deg, rgba(232, 181, 78, 0.09), rgba(232, 181, 78, 0.025));
  animation: prizeGlow 3.6s ease-in-out infinite;
}
@keyframes prizeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(232, 181, 78, 0); }
  50% { box-shadow: 0 6px 34px rgba(232, 181, 78, 0.18); }
}

/* third portrait tag (award) */
.portrait-tag.t3 {
  bottom: -7%; left: -12%; animation-delay: 3.4s; --tz: 80px;
  border-color: rgba(232, 181, 78, 0.35);
  background: linear-gradient(135deg, rgba(58, 45, 18, 0.85), rgba(15, 15, 24, 0.75));
}
.portrait-tag.t3 .mono { color: var(--gold); }
@media (max-width: 1100px) { .portrait-tag.t3 { left: -2%; } }

/* greeting */
#greet { color: var(--gold); }

/* ════════════ SUDARSHANA CHAKRA (3D, hero) ════════════ */
.chakra {
  position: absolute; inset: -40% -34%; z-index: -2;
  pointer-events: none; display: grid; place-items: center;
  transform: translateZ(-110px);
  transform-style: preserve-3d;
}
.chakra-tilt {
  width: min(560px, 96%); aspect-ratio: 1; position: relative;
  transform: rotateX(66deg);
  transform-style: preserve-3d;
}
.chakra-ring { position: absolute; inset: 0; color: var(--gold); }
.chakra-ring svg {
  width: 100%; height: 100%; display: block; overflow: visible;
  filter: drop-shadow(0 0 18px rgba(232, 181, 78, 0.22));
}
.chakra-ring.r1 { opacity: 0.62; animation: spin 46s linear infinite; }
.chakra-ring.r2 {
  transform: translateZ(40px) scale(0.66); color: var(--teal);
  opacity: 0.4; animation: spin 64s linear infinite reverse;
}
.chakra-ring.r3 {
  transform: translateZ(-52px) scale(1.2); opacity: 0.22;
  animation: spin 150s linear infinite;
}
@media (max-width: 960px) { .chakra { inset: -28% -20%; opacity: 0.7; } }
@media (prefers-reduced-motion: reduce) { .chakra { display: none; } }

/* ════════════ SCROLL PROGRESS FILAMENT (JS-injected) ════════════ */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 1500;
  transform: scaleX(0); transform-origin: left; pointer-events: none;
  background: var(--grad); background-size: 220% auto;
  box-shadow: 0 0 14px rgba(232, 181, 78, 0.55);
}

/* ════════════ GARUDA CREST (winged emblem) ════════════ */
.crest {
  width: min(360px, 66vw); margin: 0 auto 34px;
  color: rgba(232, 181, 78, 0.72);
  animation: floaty 7.5s ease-in-out infinite;
}
.crest svg {
  width: 100%; height: auto; display: block; overflow: visible;
  filter: drop-shadow(0 0 20px rgba(232, 181, 78, 0.22));
}
.crest .cr-core { animation: pulse 3.2s ease-in-out infinite; transform-origin: center; }

/* ════════════ CONTACT PAGE PORTRAIT ════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-portrait { width: min(320px, 100%); }
@media (max-width: 960px) { .contact-portrait { margin: 12px auto 0; width: min(260px, 80%); } }

/* ════════════════════════════════════════════════════════════════
   GRAPHICS: IMAGERY + DATA VISUALIZATION
   ════════════════════════════════════════════════════════════════ */

/* ── Image card (photo inside glass with overlay) ── */
.img-card { position: relative; overflow: hidden; padding: 0 !important; min-height: 240px; display: flex; }
.img-card .ic-media { position: absolute; inset: 0; z-index: 0; }
.img-card .ic-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.1s var(--ease-out); filter: saturate(1.05) contrast(1.02); }
.img-card:hover .ic-media img { transform: scale(1.1); }
.img-card .ic-ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,9,8,0.25) 0%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.92) 100%);
}
.img-card .ic-body { position: relative; z-index: 2; align-self: flex-end; padding: 30px 30px 32px; }
.img-card .ic-body h3 { font-size: clamp(20px,2.4vw,28px); margin-bottom: 8px; letter-spacing: -0.02em; }
.img-card .ic-body p { color: var(--ink-dim); font-size: 14.5px; max-width: 46ch; }
.img-card .ic-kicker { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }

/* ── Full-bleed cinematic image band ── */
.chapter-visual { margin: 8px 0 44px; min-height: clamp(260px, 34vw, 380px); }
.chapter-visual .ic-media img { transform: scale(1.06); }

.image-band { position: relative; overflow: hidden; padding: 0; min-height: 64vh; display: grid; place-items: center; }
.image-band .ib-bg { position: absolute; inset: -20% 0; z-index: 0; background-size: cover; background-position: center; will-change: transform; }
.image-band .ib-ov {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 50%, rgba(10,9,8,0.35), rgba(10,9,8,0.82) 80%),
    linear-gradient(180deg, var(--bg), transparent 18%, transparent 82%, var(--bg));
}
.image-band .ib-inner { position: relative; z-index: 2; text-align: center; padding: 90px 0; }
.image-band h2 { font-size: clamp(30px, 5vw, 60px); }

/* ── DONUT / RADIAL CHART ── */
.viz-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 18px; }
.donut-wrap { position: relative; width: 168px; height: 168px; }
.donut { width: 168px; height: 168px; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 10; stroke-linecap: round; }
.donut .d-track { stroke: rgba(255, 240, 214, 0.08); }
.donut .d-prog {
  stroke: url(#goldGrad); stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.7s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(232,181,78,0.35));
}
.in .donut .d-prog { stroke-dashoffset: var(--off, 33); }
.donut-center { position: absolute; inset: 0; display: grid; place-items: center; flex-direction: column; }
.donut-center .d-num { font-size: 46px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.donut-center .d-num em { font-style: normal; color: var(--gold); }
.viz-card .v-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); }

/* ── BAR CHART ── */
.bars-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.bars-head h3 { font-size: 21px; }
.bars-head .mono { font-size: 10.5px; }
.bars { display: flex; flex-direction: column; gap: 18px; }
.bar-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: center; }
@media (max-width: 560px) { .bar-row { grid-template-columns: 1fr; gap: 6px; } }
.bar-label { font-size: 14px; color: var(--ink-dim); }
.bar-track { position: relative; height: 34px; border-radius: 9px; background: rgba(255, 240, 214, 0.05); border: 1px solid var(--line); overflow: hidden; }
.bar-fill {
  position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 9px;
  background: var(--grad); background-size: 220% auto; animation: shimmer 7s linear infinite;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 14px;
  transition: width 1.5s var(--ease-out);
  box-shadow: 0 0 22px -4px rgba(232,181,78,0.45);
}
.in .bar-fill { width: var(--w, 50%); }
.bar-fill b { font-size: 13px; font-weight: 600; color: #1a1408; letter-spacing: -0.01em; white-space: nowrap; }

/* ── stacked mini-stats inside bento ── */
.stat-stack { display: flex; flex-direction: column; justify-content: center; gap: 0; padding: 0 !important; }
.stat-stack .ss-row { display: flex; align-items: baseline; gap: 14px; padding: 20px 28px; border-bottom: 1px solid var(--line); }
.stat-stack .ss-row:last-child { border-bottom: none; }
.stat-stack .ss-num { font-size: clamp(28px,3.4vw,40px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; min-width: 1.6em; }
.stat-stack .ss-num em { font-style: normal; color: var(--gold); }
.stat-stack .ss-cap { font-size: 13.5px; color: var(--ink-dim); }

/* ════════════ RADAR / SKILLS CHART ════════════ */
.radar {
  color: var(--gold); width: 100%; max-width: 340px; margin: 0 auto;
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--spring);
}
.in .radar { opacity: 1; transform: none; }
.radar svg { width: 100%; height: auto; display: block; overflow: visible; }
.radar .radar-area { filter: drop-shadow(0 0 12px rgba(232, 181, 78, 0.35)); }

/* legend rows beside a viz */
.viz-legend { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.viz-legend .lg-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.viz-legend .lg-label { font-size: 14px; color: var(--ink-dim); }
.viz-legend .lg-bar { display: flex; align-items: center; gap: 10px; }
.viz-legend .lg-meter { width: 90px; height: 5px; border-radius: 3px; background: rgba(255,240,214,0.08); overflow: hidden; }
.viz-legend .lg-meter i { display: block; height: 100%; width: 0; border-radius: 3px; background: var(--grad); transition: width 1.4s var(--ease-out); }
.in .viz-legend .lg-meter i { width: var(--v, 50%); }
.viz-legend .lg-val { font-family: var(--font-mono); font-size: 11px; color: var(--gold); min-width: 32px; text-align: right; }

/* ════════════════════════════════════════════════════════════════
   INNER-PAGE 3D + VISUAL ENRICHMENT
   ════════════════════════════════════════════════════════════════ */

/* 3D Sudarshana chakra behind every inner-page hero */
.page-hero { position: relative; overflow: hidden; perspective: 1400px; }
.page-hero.contact-hero { overflow: visible; }            /* portrait tags need to bleed out */
.page-hero > .wrap { position: relative; z-index: 2; }
.page-hero .chakra {
  position: absolute; inset: auto;
  width: min(640px, 78vw); height: min(640px, 78vw);
  right: -11%; top: 50%;
  transform: translateY(-50%);
  z-index: 0; opacity: 0.46;
}
.page-hero .chakra .chakra-tilt { transform: rotateX(64deg); }
@media (max-width: 900px) {
  .page-hero .chakra { right: -28%; top: 22%; opacity: 0.26; }
}

/* soft floating accent orb for page heroes */
.hero-orb {
  position: absolute; z-index: 0; border-radius: 50%; pointer-events: none;
  width: 280px; height: 280px; right: 8%; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle at 40% 35%, rgba(232,181,78,0.12), transparent 62%);
  filter: blur(8px);
}

/* ════════════ RESUME / CV ════════════ */
.cv-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.cv-name { font-size: clamp(34px, 5.2vw, 58px); font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
.cv-role {
  margin-top: 12px; font-size: clamp(15px, 1.8vw, 18px); color: var(--gold);
  font-family: var(--font-mono); letter-spacing: 0.02em;
}
.cv-contact { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; }
.cv-contact a, .cv-contact span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em; color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 7px;
}
.cv-contact a:hover { color: var(--gold); }
.cv-contact svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }

.cv-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; margin: 30px 0 12px; }
.cv-stat { padding: 16px 14px; border-radius: 14px; background: rgba(255, 240, 214, 0.035); border: 1px solid var(--line); }
.cv-stat b {
  display: block; font-size: clamp(19px, 2.4vw, 26px); font-weight: 600; letter-spacing: -0.02em;
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cv-stat span {
  display: block; margin-top: 5px; font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); line-height: 1.45;
}
@media (max-width: 860px) { .cv-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .cv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.cv-grid { display: grid; grid-template-columns: 1.85fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 40px; }
@media (max-width: 900px) { .cv-grid { grid-template-columns: 1fr; } }
.cv-sec { margin-bottom: 34px; }
.cv-sec > h2 {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 9px; margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
.cv-job { margin-bottom: 22px; }
.cv-job-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cv-job h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.cv-job .cv-when { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); white-space: nowrap; }
.cv-job .cv-org { display: block; margin-top: 3px; font-size: 13.5px; color: var(--gold); }
.cv-job ul { list-style: none; margin-top: 9px; }
.cv-job li {
  position: relative; padding-left: 15px; margin-top: 5px;
  font-size: 13.5px; line-height: 1.6; color: var(--ink-dim);
}
.cv-job li::before { content: '·'; position: absolute; left: 3px; color: var(--gold); font-weight: 700; }
.cv-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cv-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
  padding: 6px 11px; border-radius: 20px; color: var(--ink-dim);
  background: rgba(255, 240, 214, 0.04); border: 1px solid var(--line);
}
.cv-line { margin-bottom: 15px; }
.cv-line strong { display: block; font-size: 14px; font-weight: 500; }
.cv-line span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--ink-dim); }
.cv-line em { font-family: var(--font-mono); font-style: normal; font-size: 10.5px; color: var(--ink-faint); }

/* ── print: flip to ink-friendly light, drop all the ambience ── */
@media print {
  @page { size: A4; margin: 12mm 12mm; }
  html, body { background: #fff !important; color: #14110c !important; }
  .preloader, .veil, .aurora, .noise, .cursor, .site-nav, .scroll-prog,
  .wa-fab, .sfx-toggle, .wa-modal, .mandala, .watermark, .no-print,
  footer .footer-cta, .footer-base .links, #local-time { display: none !important; }
  main { padding: 0 !important; }
  section { padding: 0 !important; }
  .wrap { width: 100% !important; max-width: none !important; }
  .page-hero { min-height: 0 !important; padding: 0 !important; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; box-shadow: none !important; }
  .cv-name, .cv-job h3, .cv-line strong { color: #14110c !important; }
  .cv-role, .cv-job .cv-org, .cv-sec > h2 { color: #8a6a1f !important; }
  .cv-job li, .cv-line span, .cv-contact a, .cv-contact span { color: #3c352a !important; }
  .cv-when, .cv-line em, .cv-stat span { color: #6b6153 !important; }
  .cv-head, .cv-sec > h2 { border-color: #d8d2c6 !important; }
  .cv-stat, .cv-tag { background: #f7f4ee !important; border-color: #ddd7cb !important; }
  .cv-stat b { -webkit-text-fill-color: #8a6a1f !important; color: #8a6a1f !important; background: none !important; }
  .cv-grid { grid-template-columns: 1.85fr 1fr !important; gap: 30px !important; }
  .cv-sec, .cv-job { break-inside: avoid; }
  a { text-decoration: none !important; }
}
