/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:           #030307;
  --surface:      #07070d;
  --card:         rgba(255,255,255,0.028);
  --card-hover:   rgba(255,255,255,0.052);
  --border:       rgba(201,169,110,0.12);
  --border-soft:  rgba(255,255,255,0.055);
  --accent:       #c9a96e;
  --accent-light: #e8c98a;
  --accent-dim:   rgba(201,169,110,0.14);
  --text:         #f5f2ec;
  --text-muted:   rgba(245,242,236,0.40);
  --text-soft:    rgba(245,242,236,0.66);
  --display:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        68px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --radius-lg:    22px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ── PAGE LOADER ─────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s var(--ease), visibility 0.75s;
}
#page-loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content { text-align: center; }
.loader-name {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  animation: loader-name-in 0.8s 0.15s var(--ease) forwards;
}
@keyframes loader-name-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loader-track {
  width: 200px;
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 0 auto 18px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  width: 0%;
  animation: loader-progress 1.4s 0.3s ease-in-out forwards;
}
@keyframes loader-progress {
  0%   { width: 0%; }
  100% { width: 100%; }
}
.loader-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: loader-name-in 0.6s 0.5s var(--ease) forwards;
}

/* ── SCROLL PROGRESS ─────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  z-index: 200;
  pointer-events: none;
  will-change: width;
  transition: width 0.08s linear;
}

/* ── CURSOR GLOW ─────────────────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(201,169,110,0.055) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  will-change: left, top;
}

/* ── BACKGROUND MESH ─────────────────────────────────── */
#bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 65% at 50% -8%,  rgba(201,169,110,0.08) 0%, transparent 52%),
    radial-gradient(ellipse 55%  55% at 90%  55%,  rgba(80,55,190,0.04)  0%, transparent 52%),
    radial-gradient(ellipse 45%  60% at  5%  80%,  rgba(201,169,110,0.04) 0%, transparent 55%);
}

/* ── THREE.JS CANVAS ─────────────────────────────────── */
#scene-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

/* ── CONTAINER ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION LABEL ───────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.835rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 14px 26px;
  transition: all 0.28s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #030307; }
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,169,110,0.32);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-soft);
  background: rgba(201,169,110,0.03);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,169,110,0.07);
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(3,3,7,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.22s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: #030307; border-color: var(--accent); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(3,3,7,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s var(--ease), opacity 0.44s var(--ease);
  z-index: 99;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text-soft);
  padding: 10px 0;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 28px;
  font-family: var(--body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  border: 1px solid var(--border);
  padding: 13px 32px;
  border-radius: 100px;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 88px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(3.4rem, 13.5vw, 16rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-headline .line {
  display: block;
  clip-path: inset(0 0 0 0);
}
.italic-gold { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.82;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hstat { display: flex; flex-direction: column; gap: 5px; }
.hstat-n {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.hstat-l {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hstat-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ── HERO PORTRAIT ───────────────────────────────────── */
.hero-portrait {
  position: relative;
  display: flex;
  justify-content: center;
}
.portrait-rings {
  position: absolute;
  inset: -16%;
  pointer-events: none;
  z-index: 0;
}
.p-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.08);
}
.p-ring-1 { animation: ring-spin 20s linear infinite; }
.p-ring-2 {
  inset: 9%;
  border-style: dashed;
  border-color: rgba(201,169,110,0.05);
  animation: ring-spin 32s linear infinite reverse;
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

.portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 3/4;
  clip-path: inset(0 0 0 0 round 26px);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.04) saturate(0.85) brightness(0.9);
  transition: filter 0.6s var(--ease), transform 0.7s var(--ease);
  will-change: transform;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,3,7,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.hero-portrait:hover .portrait-frame img {
  filter: contrast(1.02) saturate(1) brightness(0.94);
  transform: scale(1.024);
}
.portrait-badge {
  position: absolute;
  bottom: -14px;
  left: 20px;
  z-index: 2;
  background: rgba(7,7,13,0.94);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  white-space: nowrap;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0   rgba(74,222,128,0.5); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.portrait-pill {
  position: absolute;
  top: 22px;
  right: -12px;
  z-index: 2;
  background: var(--accent);
  color: #030307;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── HERO SCROLL LINE ────────────────────────────────── */
.hero-scroll-line {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-drop 2.8s ease-in-out infinite;
  z-index: 1;
}
@keyframes scroll-drop {
  0%, 100% { opacity: 0.28; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.75; transform: translateX(-50%) translateY(9px); }
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee-strip {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  background: rgba(201,169,110,0.012);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.m-item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.m-sep { color: var(--accent); opacity: 0.32; font-size: 0.42rem; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PAIN ────────────────────────────────────────────── */
.pain {
  position: relative;
  z-index: 1;
  padding: 130px 0 150px;
  background: rgba(3,3,7,0.88);
}
.pain-opener {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.6vw, 1.62rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.62;
  max-width: 640px;
  margin-bottom: 72px;
}
.pain-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-bottom: 80px;
}
.pain-beat {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.32s var(--ease), background 0.32s;
}
.pain-beat:hover { background: rgba(201,169,110,0.022); padding-left: 10px; }
.beat-num {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}
.pain-beat p {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.52;
}
.pain-pivot { padding: 48px 0 0; max-width: 580px; }
.pivot-line {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pivot-solve {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 18px;
  letter-spacing: -0.01em;
}

/* ── PULLQUOTE ───────────────────────────────────────── */
.pullquote {
  position: relative;
  z-index: 1;
  padding: 110px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(201,169,110,0.016);
}
.pullquote blockquote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.44;
  max-width: 940px;
  position: relative;
  padding-left: 48px;
}
.pullquote blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.14em;
  font-size: 5.5rem;
  color: var(--accent);
  opacity: 0.26;
  line-height: 1;
  font-family: var(--display);
}

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  position: relative;
  z-index: 1;
  padding: 140px 0 160px;
  background: rgba(3,3,7,0.92);
}
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: start;
}
.about-image { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: saturate(0.86) brightness(0.9);
  transition: transform 0.8s var(--ease), filter 0.5s;
  will-change: transform;
}
.about-img-wrap:hover img { transform: scale(1.028); filter: saturate(1) brightness(1); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(3,3,7,0.5) 100%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: rgba(7,7,13,0.94);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.about-content { padding-top: 10px; }
.about-headline {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 28px;
}
.about-headline em { font-style: italic; color: var(--accent); }
.about-body { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.about-body p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.84; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.stat-n {
  display: block;
  font-family: var(--display);
  font-size: 2.9rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 7px;
}
.stat-l {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICES — BENTO ────────────────────────────────── */
.services {
  position: relative;
  z-index: 1;
  padding: 120px 0 150px;
  background: rgba(3,3,7,0.88);
}
.section-header { margin-bottom: 56px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.bento-grid .bento-wide { grid-column: 1 / 3; }
.bento-grid .bento-tall { grid-column: 3 / 4; grid-row: 1 / 3; }

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.44s var(--ease), border-color 0.44s, box-shadow 0.44s;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
}
.bento-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Grid texture on wide card */
.bento-wide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.032) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
/* Left accent line on tall card */
.bento-tall::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.28), transparent);
  pointer-events: none;
}

/* Shimmer sweep on hover */
.bento-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -80%;
  width: 55%;
  height: 300%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.038) 50%,
    transparent 60%
  );
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.bento-card:hover::after { left: 135%; }

.bento-bg-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--display);
  font-size: clamp(5.5rem, 9.5vw, 11rem);
  font-weight: 300;
  color: var(--accent);
  opacity: 0.052;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.4s;
}
.bento-card:hover .bento-bg-num { opacity: 0.1; }

.bento-body { position: relative; z-index: 1; }
.bento-card h3 {
  font-family: var(--display);
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.bento-card:hover h3 { color: var(--accent-light); }
.bento-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.76;
  margin-bottom: 22px;
}
.service-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--accent-dim);
}

/* ── PORTFOLIO ───────────────────────────────────────── */
.portfolio {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
  background: rgba(3,3,7,0.92);
}
.portfolio-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 52px;
  line-height: 1.74;
}
.gallery-outer {
  width: 100%;
  overflow-x: auto;
  padding: 0 0 56px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  user-select: none;
}
.gallery-outer::-webkit-scrollbar { height: 3px; }
.gallery-outer::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.gallery-outer.dragging { cursor: grabbing; }
.gallery-track { display: flex; gap: 18px; padding: 0 40px; width: max-content; }
.gallery-item {
  position: relative;
  flex-shrink: 0;
  width: clamp(290px, 34vw, 460px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: transform 0.44s var(--ease), box-shadow 0.44s, border-color 0.44s;
}
.gallery-item:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.16);
  border-color: rgba(201,169,110,0.2);
}
.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.88);
  transition: filter 0.44s, transform 0.5s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img { filter: saturate(1) brightness(1); transform: scale(1.026); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(3,3,7,0.92) 0%, transparent 100%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── VOICE AI ────────────────────────────────────────── */
.voice-ai {
  position: relative;
  z-index: 1;
  padding: 148px 0 160px;
  background: rgba(3,3,7,0.86);
  overflow: hidden;
}
#babylon-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.72;
}
.voice-container { position: relative; z-index: 1; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 88px;
  align-items: center;
}
.voice-headline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.voice-headline em { font-style: italic; color: var(--accent); }
.voice-body { font-size: 0.93rem; color: var(--text-soft); line-height: 1.84; max-width: 430px; margin-bottom: 34px; }
.voice-features { display: flex; flex-direction: column; gap: 13px; }
.voice-features li { display: flex; align-items: center; gap: 12px; font-size: 0.855rem; color: var(--text-soft); }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; opacity: 0.8; }

/* ── AUDIO PLAYER ────────────────────────────────────── */
.voice-player-wrap { display: flex; flex-direction: column; }
.voice-player {
  background: rgba(7,7,13,0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.04),
    0 28px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.player-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.player-avatar {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(201,169,110,0.03));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
}
.avatar-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.voice-player.playing .avatar-ring {
  border-color: rgba(201,169,110,0.45);
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.1); opacity: 0.5; }
}
.player-meta { flex: 1; min-width: 0; }
.player-meta strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.player-meta span  { font-size: 0.72rem; color: var(--text-muted); }
.player-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap; transition: color 0.3s;
}
.voice-player.playing .player-status { color: #4ade80; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; transition: background 0.3s; }
.voice-player.playing .status-dot { animation: pulse-dot 1.4s ease-in-out infinite; }
.waveform { height: 52px; margin-bottom: 18px; display: flex; align-items: center; overflow: hidden; }
.wave-bars { display: flex; gap: 3px; align-items: center; width: 100%; height: 100%; }
.wave-bar { flex: 1; background: var(--accent); border-radius: 2px; opacity: 0.2; transition: height 0.08s ease, opacity 0.08s ease; min-height: 3px; }
.player-controls { display: flex; align-items: center; gap: 14px; }
.play-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #030307;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
}
.play-btn:hover { background: var(--accent-light); transform: scale(1.08); box-shadow: 0 8px 28px rgba(201,169,110,0.34); }
.progress-wrap { flex: 1; height: 4px; background: rgba(201,169,110,0.1); border-radius: 2px; cursor: pointer; position: relative; }
.progress-wrap:hover { background: rgba(201,169,110,0.18); }
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; pointer-events: none; position: relative; }
.progress-fill::after {
  content: '';
  position: absolute; right: -4px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-light); opacity: 0; transition: opacity 0.2s;
}
.progress-wrap:hover .progress-fill::after { opacity: 1; }
.time-display { font-size: 0.68rem; font-weight: 500; font-variant-numeric: tabular-nums; color: var(--text-muted); min-width: 34px; text-align: right; }
.player-note { margin-top: 14px; font-size: 0.7rem; color: var(--text-muted); text-align: center; letter-spacing: 0.04em; }

/* ── PROCESS ─────────────────────────────────────────── */
.process {
  position: relative;
  z-index: 1;
  padding: 130px 0 150px;
  border-top: 1px solid var(--border);
  background: rgba(3,3,7,0.9);
}
.process-steps { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.process-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding-left 0.3s var(--ease), background 0.3s;
}
.process-step:hover { background: rgba(201,169,110,0.016); padding-left: 10px; }
.step-meta { display: flex; align-items: center; gap: 16px; }
.step-num { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.16em; color: var(--accent); opacity: 0.44; flex-shrink: 0; }
.process-step h3 { font-family: var(--display); font-size: 1.42rem; font-weight: 400; color: var(--text); }
.process-step p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.8; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact {
  position: relative;
  z-index: 1;
  padding: 150px 0 168px;
  background: linear-gradient(to bottom, rgba(3,3,7,0.9), rgba(3,3,7,0.98));
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; }
.contact-pre { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); margin-bottom: 26px; }
.contact-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.contact-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 52px; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #030307;
  background: var(--accent);
  padding: 18px 36px;
  border-radius: 100px;
  transition: all 0.28s var(--ease);
  letter-spacing: 0.01em;
}
.contact-btn:hover { background: var(--accent-light); transform: translateY(-3px); box-shadow: 0 18px 52px rgba(201,169,110,0.32); }
.btn-arrow { font-size: 1.1em; }
.contact-note { margin-top: 22px; font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { position: relative; z-index: 1; padding: 30px 0; border-top: 1px solid var(--border); background: rgba(3,3,7,0.98); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }
.footer a { color: var(--text-muted); transition: color 0.22s; }
.footer a:hover { color: var(--accent); }

/* ── STICKY CTA ──────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(88px);
  opacity: 0;
  z-index: 50;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-cta-btn {
  display: block;
  background: var(--accent);
  color: #030307;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow:
    0 8px 32px rgba(201,169,110,0.40),
    0 0 0 1px rgba(201,169,110,0.18);
  transition: all 0.26s var(--ease);
}
.sticky-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(201,169,110,0.5);
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 350px; }
  .voice-grid { grid-template-columns: 1fr 420px; gap: 60px; }
  .about-grid { grid-template-columns: 300px 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 28px 72px; }
  .hero-right { max-width: 360px; margin: 0 auto; }
  .hero-headline { font-size: clamp(3.2rem, 13vw, 7rem); }
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-wide { grid-column: 1 / 3; }
  .bento-tall { grid-column: 2 / 3; grid-row: 2 / 4; }
  .voice-grid { grid-template-columns: 1fr; gap: 52px; }
  #babylon-canvas { width: 100%; opacity: 0.3; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 360px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .gallery-track { padding: 0 28px; }
  .contact-headline { font-size: clamp(2.4rem, 8vw, 5rem); }
}
@media (max-width: 580px) {
  .hero-headline { font-size: clamp(2.9rem, 14vw, 5.5rem); }
  .hero-stats { gap: 18px; }
  .hstat-n { font-size: 1.9rem; }
  .bento-grid { grid-template-columns: 1fr; gap: 11px; }
  .bento-wide, .bento-tall { grid-column: 1; grid-row: auto; }
  .bento-wide::before { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .voice-player { padding: 20px; }
  .pullquote blockquote { padding-left: 22px; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .hero-stats { flex-wrap: wrap; }
}

.br-desk { display: inline; }
@media (max-width: 600px) { .br-desk { display: none; } }
