/* ── TOKENS ─────────────────────────────────── */
:root {
  --bg:           #07070f;
  --surface:      #0e0e1c;
  --card:         #12121e;
  --border:       rgba(201,169,110,0.13);
  --accent:       #c9a96e;
  --accent-light: #e8c98a;
  --accent-dim:   rgba(201,169,110,0.16);
  --text:         #f0ede6;
  --text-muted:   rgba(240,237,230,0.46);
  --text-soft:    rgba(240,237,230,0.72);
  --display:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        72px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 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; }

/* ── FIXED 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(36px);
  transition: opacity 0.78s var(--ease), transform 0.78s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SECTION LABEL ───────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  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.875rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 14px 28px;
  transition: all 0.28s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #07070f;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,169,110,0.28);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-soft);
  background: rgba(201,169,110,0.04);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,169,110,0.08);
}

/* ── 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(7,7,15,0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.09);
}
.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.1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  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.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  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: #07070f;
  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);
  transform-origin: center;
}
.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(7,7,15,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.8rem !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;
  align-items: center;
  padding: calc(var(--nav-h) + 72px) 0 100px;
}
.hero-content { max-width: 960px; }
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(4.8rem, 13vw, 12rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 40px;
}
.hero-headline span { display: block; }
.italic-gold {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-line {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.35; transform: translateX(-50%) scaleY(1) translateY(0); }
  50%       { opacity: 0.9;  transform: translateX(-50%) scaleY(0.65) translateY(8px); }
}

/* ── PAIN ────────────────────────────────────── */
.pain {
  position: relative;
  z-index: 1;
  padding: 128px 0 148px;
  background: rgba(7,7,15,0.9);
}
.pain-opener {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.6;
  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: 80px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease), background 0.3s;
}
.pain-beat:hover {
  background: rgba(201,169,110,0.03);
  padding-left: 10px;
}
.beat-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
}
.pain-beat p {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.5;
}
.pain-pivot { padding: 48px 0 0; max-width: 580px; }
.pivot-line {
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pivot-solve {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 18px;
  letter-spacing: -0.01em;
}

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

/* ── ABOUT ───────────────────────────────────── */
.about {
  position: relative;
  z-index: 1;
  padding: 140px 0 160px;
  background: rgba(7,7,15,0.92);
}
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 88px;
  align-items: start;
}
.about-image { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
.about-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: saturate(0.88) brightness(0.9);
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.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(7,7,15,0.55) 100%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: rgba(12,12,20,0.94);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(14px);
}
.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.4); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.about-content { padding-top: 10px; }
.about-headline {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  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.96rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.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.7rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICES ────────────────────────────────── */
.services {
  position: relative;
  z-index: 1;
  padding: 120px 0 148px;
  background: rgba(7,7,15,0.88);
}
.section-header { margin-bottom: 64px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 260px 1fr 150px;
  gap: 32px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.28s, padding-left 0.28s var(--ease);
  cursor: default;
}
.service-row:hover {
  background: rgba(201,169,110,0.025);
  padding-left: 14px;
}
.service-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.service-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.45;
  margin-top: 6px;
  flex-shrink: 0;
}
.service-left h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
.service-row p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.service-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  justify-self: end;
  background: var(--accent-dim);
}

/* ── PORTFOLIO ───────────────────────────────── */
.portfolio {
  position: relative;
  z-index: 1;
  padding: 120px 0 0;
  background: rgba(7,7,15,0.92);
}
.portfolio-sub {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.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: 20px;
  padding: 0 40px;
  width: max-content;
}
.gallery-item {
  position: relative;
  flex-shrink: 0;
  width: clamp(300px, 36vw, 480px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(201,169,110,0.1);
}
.gallery-item img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9);
  transition: filter 0.42s, transform 0.5s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.022);
}
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(7,7,15,0.92) 0%, transparent 100%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── VOICE AI ─────────────────────────────────── */
.voice-ai {
  position: relative;
  z-index: 1;
  padding: 148px 0 160px;
  background: rgba(7,7,15,0.9);
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 88px;
  align-items: center;
}
.voice-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 26px;
}
.voice-headline em { font-style: italic; color: var(--accent); }
.voice-body {
  font-size: 0.96rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}
.voice-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  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: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.05),
    0 24px 80px rgba(0,0,0,0.55);
}
.player-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.player-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), rgba(201,169,110,0.04));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  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.5);
  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.6; }
}
.player-meta { flex: 1; min-width: 0; }
.player-meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.player-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.player-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  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: 56px;
  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: 16px;
}
.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #07070f;
  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.07);
  box-shadow: 0 8px 28px rgba(201,169,110,0.3);
}
.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.72rem;
  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.73rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── PROCESS ─────────────────────────────────── */
.process {
  position: relative;
  z-index: 1;
  padding: 128px 0 148px;
  border-top: 1px solid var(--border);
  background: rgba(7,7,15,0.9);
}
.process-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.process-step {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding-left 0.28s var(--ease), background 0.28s;
}
.process-step:hover {
  background: rgba(201,169,110,0.02);
  padding-left: 10px;
}
.step-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  opacity: 0.45;
  flex-shrink: 0;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ── CONTACT ─────────────────────────────────── */
.contact {
  position: relative;
  z-index: 1;
  padding: 148px 0 160px;
  background: linear-gradient(to bottom, rgba(7,7,15,0.92), rgba(7,7,15,0.96));
}
.contact-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.contact-pre {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.contact-headline {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}
.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 52px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #07070f;
  background: var(--accent);
  padding: 18px 38px;
  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.28);
}
.btn-arrow { font-size: 1.1em; }
.contact-note {
  margin-top: 22px;
  font-size: 0.75rem;
  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(7,7,15,0.96);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer a { color: var(--text-muted); transition: color 0.22s; }
.footer a:hover { color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1080px) {
  .about-grid    { grid-template-columns: 340px 1fr; gap: 60px; }
  .voice-grid    { grid-template-columns: 1fr; gap: 60px; }
  .service-row   { grid-template-columns: 220px 1fr 130px; }
}
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 400px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .service-tag  { justify-self: start; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .gallery-track { padding: 0 24px; }
  .voice-player-wrap { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-headline { font-size: clamp(3.4rem, 16vw, 6rem); }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .footer-inner  { flex-direction: column; gap: 12px; text-align: center; }
  .voice-player  { padding: 20px; }
  .pullquote blockquote { padding-left: 24px; }
}

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