/* =========================================
   JNS GROUP INDORE — premium 3D site
   Design system + sectioned styles
   ========================================= */

/* ---------- TOKENS ---------- */
:root {
  --ink-0: #050505;
  --ink-1: #0a0a0a;
  --ink-2: #131313;
  --ink-3: #1a1a1a;
  --ink-4: #232323;
  --ink-5: #2e2e2e;

  --cream-0: #f3eee5;
  --cream-1: #ece6d8;
  --cream-2: #ddd5c2;
  --cream-3: #c8bfa9;

  /* warm copper / champagne luxury accent */
  --gold-0: #d4a574;
  --gold-1: #b88a5a;
  --gold-2: #8a6437;
  --gold-3: #f5d4a8;

  --text-on-ink: #f3eee5;
  --text-on-ink-mute: rgba(243, 238, 229, 0.62);
  --text-on-ink-faint: rgba(243, 238, 229, 0.32);

  --text-on-cream: #131313;
  --text-on-cream-mute: rgba(19, 19, 19, 0.66);
  --text-on-cream-faint: rgba(19, 19, 19, 0.32);

  --line-on-ink: rgba(243, 238, 229, 0.08);
  --line-on-ink-strong: rgba(243, 238, 229, 0.16);
  --line-on-cream: rgba(19, 19, 19, 0.10);
  --line-on-cream-strong: rgba(19, 19, 19, 0.18);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1280px;
  --pad: clamp(20px, 4vw, 64px);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-1: 0 10px 30px rgba(0,0,0,0.18);
  --shadow-2: 0 30px 80px rgba(0,0,0,0.30);
  --shadow-glow: 0 0 80px rgba(212, 165, 116, 0.18);

  --ease: cubic-bezier(0.6, 0.01, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  background: var(--ink-1);
  color: var(--text-on-ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--gold-0); color: var(--ink-1); }

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

.section-head { margin-bottom: clamp(40px, 6vw, 80px); max-width: 760px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-0);
  margin-bottom: 24px;
}
.kicker .dash {
  width: 32px; height: 1px;
  background: var(--gold-0);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  color: inherit;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-0);
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-0) 60%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-on-ink-mute);
  max-width: 60ch;
}

/* light section variants */
.how, .testimonials {
  background: var(--cream-0);
  color: var(--text-on-cream);
}
.how .kicker, .testimonials .kicker { color: var(--gold-2); }
.how .kicker .dash, .testimonials .kicker .dash { background: var(--gold-2); }
.how .section-lede, .testimonials .section-lede { color: var(--text-on-cream-mute); }
.how .section-title em, .testimonials .section-title em {
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  --btn-bg: var(--gold-0);
  --btn-fg: var(--ink-1);
  --btn-bd: var(--gold-0);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-spring); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 165, 116, 0.30); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 18px 28px; font-size: 15px; }

.btn--primary {
  --btn-bg: var(--gold-0);
  --btn-fg: var(--ink-1);
  --btn-bd: var(--gold-0);
}
.btn--primary:hover {
  --btn-bg: var(--gold-3);
  --btn-bd: var(--gold-3);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  --btn-bd: var(--line-on-ink-strong);
}
.btn--ghost:hover {
  --btn-bg: rgba(243,238,229,0.06);
  --btn-bd: var(--gold-0);
}

/* ---------- LOGO ---------- */
.logo-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-on-ink);
}
.logo-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-0);
  display: inline-block;
  margin: 0 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px var(--gold-0);
}
.logo-word {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-on-ink-mute);
  text-transform: uppercase;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink-0);
  z-index: 1000;
  display: grid; place-items: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner {
  width: min(420px, 86vw);
  text-align: center;
}
.preloader__logo {
  display: inline-flex; align-items: center;
  margin-bottom: 32px;
}
.preloader__bar {
  width: 100%;
  height: 1px;
  background: var(--line-on-ink-strong);
  position: relative;
  overflow: hidden;
}
.preloader__bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-0), var(--gold-3));
  box-shadow: 0 0 20px var(--gold-0);
  transition: width 0.3s var(--ease);
}
.preloader__count {
  margin-top: 18px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--text-on-ink);
}
.preloader__pct {
  font-size: 22px;
  color: var(--text-on-ink-mute);
  vertical-align: super;
  margin-left: 4px;
}
.preloader__caption {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-faint);
  margin-top: 8px;
}

/* ---------- CUSTOM CURSOR ---------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, textarea, select, [data-cursor] { cursor: none; }

  .cursor {
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 999;
    mix-blend-mode: difference;
    transform: translate3d(0,0,0);
  }
  .cursor__dot {
    position: absolute; left: -3px; top: -3px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cream-0);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), left 0.3s var(--ease), top 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .cursor__ring {
    position: absolute; left: -16px; top: -16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--cream-0);
    transition: width 0.4s var(--ease-spring), height 0.4s var(--ease-spring), left 0.4s var(--ease-spring), top 0.4s var(--ease-spring), border-color 0.3s var(--ease), background 0.3s var(--ease);
  }
  .cursor__label {
    position: absolute;
    left: 24px; top: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream-0);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .cursor.is-hover .cursor__ring {
    width: 56px; height: 56px;
    left: -28px; top: -28px;
    background: rgba(243, 238, 229, 0.05);
  }
  .cursor.is-hover .cursor__dot {
    width: 0; height: 0; left: 0; top: 0; opacity: 0;
  }
  .cursor.is-label .cursor__label {
    opacity: 1; transform: translateX(0);
  }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line-on-ink);
  padding: 12px 0;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__logo { display: inline-flex; align-items: center; }

.nav__links {
  display: flex; align-items: center; gap: 36px;
}
.nav__links a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--text-on-ink-mute);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold-0);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--text-on-ink); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--text-on-ink); }

.nav__cta { padding: 12px 18px; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-on-ink-strong);
  background: rgba(243,238,229,0.04);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 4px;
}
.nav__burger span {
  display: block; width: 18px; height: 1px;
  background: var(--cream-0);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 0 0 0 0;
  background: var(--ink-0);
  padding: 100px var(--pad) 32px;
  flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  z-index: 90;
  display: none;
}
.nav__mobile.is-open { transform: translateY(0); }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-ink);
  color: var(--text-on-ink);
}
.nav__mobile .btn { margin-top: 24px; align-self: flex-start; font-family: var(--sans); font-size: 15px; }

@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  display: block;
}
.scene--hero {
  z-index: 0;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-on-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-on-ink) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 30%, transparent 75%);
  z-index: 0;
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  align-content: center;
  min-height: calc(100vh - 220px);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(10px, 1.4vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-mute);
  margin-bottom: 36px;
  border: 1px solid var(--line-on-ink-strong);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  max-width: 100%;
  align-self: flex-start;
}
.hero__eyebrow-text { display: inline-flex; }
@media (max-width: 540px) {
  .hero__eyebrow-long { display: none; }
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-0);
  box-shadow: 0 0 12px var(--gold-0);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-0) 50%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-on-ink-mute);
  margin: 0 0 40px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 80px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid var(--line-on-ink);
  max-width: 880px;
}
.hero__meta-item .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-on-ink);
}
.hero__meta-item .num .suf,
.stat .stat__num .suf,
.hero__meta-item .num em {
  font-size: 0.5em;
  color: var(--gold-0);
  font-style: italic;
  margin-left: 4px;
}
.hero__meta-item .lbl {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-ink-mute);
}
@media (max-width: 720px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-ink-faint);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--text-on-ink-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 30%;
  background: var(--gold-0);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(300%); }
}

@media (max-width: 720px) {
  .hero__scroll { display: none; }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee {
  background: var(--ink-2);
  border-top: 1px solid var(--line-on-ink);
  border-bottom: 1px solid var(--line-on-ink);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: scrollX 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--text-on-ink-mute);
}
.marquee__track span { padding: 0 32px; }
.marquee__track i {
  font-style: normal;
  color: var(--gold-0);
  font-size: 0.8em;
}
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* =========================================
   WHY US
   ========================================= */
.why {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ink-1);
  isolation: isolate;
}
.scene--side {
  position: absolute;
  right: -200px;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.why .container { position: relative; z-index: 1; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 980px;
}
.why__card {
  position: relative;
  padding: 36px 32px 32px;
  border: 1px solid var(--line-on-ink);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease), background 0.4s var(--ease);
  min-height: 260px;
  display: flex; flex-direction: column;
}
.why__card-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 56px;
  color: var(--text-on-ink-faint);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.4s var(--ease);
}
.why__card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.why__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-on-ink-mute);
}
.why__card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(212,165,116,0.16), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.why__card > * { position: relative; z-index: 1; }
.why__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-on-ink-strong);
  background: linear-gradient(180deg, rgba(212,165,116,0.06), rgba(255,255,255,0.02));
}
.why__card:hover .why__card-num { color: var(--gold-0); }
.why__card:hover .why__card-glow { opacity: 1; }

@media (max-width: 760px) {
  .why__grid { grid-template-columns: 1fr; }
  .scene--side { display: none; }
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink-0) 100%);
  isolation: isolate;
  overflow: hidden;
}
.scene--process {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  z-index: 0;
}
.process .container { position: relative; z-index: 1; }

.process__steps {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.process__steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-on-ink-strong) 10%, var(--line-on-ink-strong) 90%, transparent);
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 22px 0;
  position: relative;
}
.process__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink-strong);
  background: var(--ink-1);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--gold-0);
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-spring), background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.process__step:hover .process__step-num {
  background: var(--gold-0);
  color: var(--ink-1);
  border-color: var(--gold-0);
  transform: scale(1.08) rotate(-4deg);
  box-shadow: var(--shadow-glow);
}
.process__step-body h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.process__step-body p {
  margin: 0;
  color: var(--text-on-ink-mute);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

@media (max-width: 600px) {
  .process__step { grid-template-columns: 56px 1fr; gap: 18px; }
  .process__steps::before { left: 22px; }
}

/* =========================================
   HOW IT WORKS (light section)
   ========================================= */
.how {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.how__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.how__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-1);
  box-shadow: var(--shadow-2);
}
.scene--how {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
}
.how__list { display: flex; flex-direction: column; gap: 4px; }
.how__row {
  border-bottom: 1px solid var(--line-on-cream-strong);
  padding: 18px 0;
  transition: padding 0.3s var(--ease);
}
.how__row[open] { padding-bottom: 22px; }
.how__row summary {
  list-style: none;
  display: grid;
  grid-template-columns: 56px 1fr 24px;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  padding: 4px 0;
}
.how__row summary::-webkit-details-marker { display: none; }
.how__row-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold-2);
}
.how__row-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-on-cream);
}
.how__chev {
  width: 22px; height: 22px;
  color: var(--text-on-cream-mute);
  transition: transform 0.4s var(--ease);
}
.how__row[open] .how__chev { transform: rotate(180deg); color: var(--gold-2); }
.how__row-body {
  margin: 12px 0 0 74px;
  color: var(--text-on-cream-mute);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

@media (max-width: 880px) {
  .how__split { grid-template-columns: 1fr; }
  .how__visual { aspect-ratio: 4 / 3; max-height: 500px; }
}

/* =========================================
   PROJECTS
   ========================================= */
.projects {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ink-1);
  position: relative;
}

.projects__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-on-ink-strong);
  background: transparent;
  color: var(--text-on-ink-mute);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
}
.chip:hover { color: var(--text-on-ink); border-color: var(--text-on-ink-mute); }
.chip.is-active {
  background: var(--gold-0);
  color: var(--ink-1);
  border-color: var(--gold-0);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .projects__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .projects__grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-on-ink);
  background: var(--ink-2);
  isolation: isolate;
  transition: transform 0.6s var(--ease-out), border-color 0.4s var(--ease);
  cursor: pointer;
}
.project-card__visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
}
.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.project-card__visual canvas {
  display: block;
  width: 100%; height: 100%;
}
.project-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-on-ink-strong);
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-ink);
  z-index: 2;
}
.project-card__price {
  position: absolute;
  top: 16px; right: 16px;
  padding: 8px 14px;
  background: var(--gold-0);
  color: var(--ink-1);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.project-card__body {
  padding: 22px 22px 26px;
  display: grid;
  gap: 8px;
}
.project-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-on-ink);
  margin: 0;
}
.project-card__loc {
  font-size: 13px;
  color: var(--text-on-ink-mute);
  display: flex; align-items: center; gap: 6px;
}
.project-card__specs {
  margin-top: 12px;
  display: flex; gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-on-ink);
}
.project-card__specs span {
  font-size: 12px;
  color: var(--text-on-ink-mute);
  letter-spacing: 0.04em;
}
.project-card__specs strong {
  display: block;
  color: var(--text-on-ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  margin-top: 2px;
}
.project-card:hover { transform: translateY(-6px); border-color: var(--gold-1); }
.project-card.is-hidden { display: none; }

/* =========================================
   STATS
   ========================================= */
.stats {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink-0);
  border-top: 1px solid var(--line-on-ink);
  border-bottom: 1px solid var(--line-on-ink);
  overflow: hidden;
}
.scene--stats {
  position: absolute; inset: 0;
  opacity: 0.55;
  z-index: 0;
}
.stats .container { position: relative; z-index: 1; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  text-align: left;
  padding: 18px 0;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-0) 60%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__lbl {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-ink-mute);
}
@media (max-width: 800px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: clamp(80px, 12vw, 160px) 0;
}
.testimonials__rail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.quote {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-md);
  background: rgba(19,19,19,0.04);
  border: 1px solid var(--line-on-cream);
  display: flex; flex-direction: column;
}
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold-1);
  margin-bottom: 8px;
}
.quote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-on-cream);
  margin: 0 0 22px;
}
.quote footer {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-cream);
}
.quote footer strong {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-on-cream);
}
.quote footer span {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-on-cream-mute);
}
@media (max-width: 760px) {
  .testimonials__rail { grid-template-columns: 1fr; }
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip {
  background: var(--ink-0);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212,165,116,0.10), transparent 60%),
    linear-gradient(180deg, transparent, rgba(212,165,116,0.04));
  pointer-events: none;
}
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 22ch;
  margin-inline: auto;
}
.cta-strip h2 em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-3), var(--gold-0), var(--gold-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-strip p {
  color: var(--text-on-ink-mute);
  margin: 0 auto 36px;
  max-width: 50ch;
  font-size: clamp(15px, 1.4vw, 18px);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ink-1);
  isolation: isolate;
  overflow: hidden;
}
.scene--contact {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.5;
}
.contact .container { position: relative; z-index: 1; }

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

.contact__details {
  list-style: none; padding: 0;
  margin: 36px 0;
  display: grid; gap: 22px;
}
.contact__details li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
}
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink-strong);
  background: rgba(255,255,255,0.03);
  display: grid; place-items: center;
  color: var(--gold-0);
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-faint);
  margin-bottom: 2px;
}
.contact__val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--text-on-ink);
  transition: color 0.3s var(--ease);
}
a.contact__val:hover { color: var(--gold-0); }

.contact__socials {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.contact__socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-on-ink-strong);
  display: grid; place-items: center;
  color: var(--text-on-ink-mute);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.4s var(--ease-spring);
}
.contact__socials a svg { width: 18px; height: 18px; }
.contact__socials a:hover {
  color: var(--ink-1);
  background: var(--gold-0);
  border-color: var(--gold-0);
  transform: translateY(-3px) rotate(-6deg);
}

/* form */
.contact__form {
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-on-ink-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  position: relative;
}
.contact__form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.field { margin-bottom: 22px; display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-faint);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-on-ink-strong);
  color: var(--text-on-ink);
  font-size: 15px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  font-family: var(--sans);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-0);
  background: rgba(0,0,0,0.5);
}
.field textarea { resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.field select option { background: var(--ink-2); }

.contact__form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.contact__note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-on-ink-faint);
  text-align: center;
  line-height: 1.5;
}

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: rgba(212, 165, 116, 0.08);
  border: 1px solid var(--gold-1);
  border-radius: var(--r-md);
  margin-top: 24px;
}
.contact__success.is-on { display: flex; }
.contact__success svg {
  width: 36px; height: 36px;
  color: var(--gold-0);
  margin-bottom: 12px;
}
.contact__success strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
}
.contact__success span {
  color: var(--text-on-ink-mute);
  font-size: 14px;
  margin-top: 6px;
}

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

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--ink-0);
  padding: 80px 0 28px;
  border-top: 1px solid var(--line-on-ink);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-on-ink);
}
.footer__brand p {
  margin: 18px 0 0;
  color: var(--text-on-ink-mute);
  font-size: 14px;
  line-height: 1.55;
  max-width: 36ch;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__links h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-ink-faint);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--text-on-ink-mute);
  margin-bottom: 8px;
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--gold-0); }

.footer__bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: var(--text-on-ink-faint);
  letter-spacing: 0.08em;
}

@media (max-width: 800px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* floating wa */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  z-index: 50;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.4s var(--ease-spring);
}
.float-wa svg { width: 26px; height: 26px; }
.float-wa:hover { transform: translateY(-3px) scale(1.08); }

/* =========================================
   ANIMATION UTILITIES
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.split-line { overflow: hidden; }
.split-line > span { display: inline-block; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .scene { display: none; }
}
