/* ===========================
   RESET & TOKENS
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0e0c0b;
  --off-black: #141210;
  --surface: #1c1917;
  --border: #2e2822;
  --gold: #d4a96a;
  --gold-light: #f0cc8e;
  --gold-dim: rgba(212,169,106,0.12);
  --gold-glow: rgba(212,169,106,0.18);
  --white: #f5f0e8;
  --muted: #7a7068;
  --muted-light: #9e9488;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; font-family: 'Space Mono', monospace; }

/* ===========================
   NOISE OVERLAY
=========================== */
.noise {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
  animation: noiseShift 0.2s steps(1) infinite;
}
@keyframes noiseShift {
  0%  { transform: translate(0, 0); }
  25% { transform: translate(-5%, -5%); }
  50% { transform: translate(5%, 0); }
  75% { transform: translate(0, 5%); }
}

/* ===========================
   SCROLL PROGRESS
=========================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===========================
   CURSOR
=========================== */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212,169,106,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  mix-blend-mode: normal;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
.cursor.hovering {
  width: 70px; height: 70px;
  background: rgba(212,169,106,0.08);
  border-color: var(--gold);
}

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-bottom 0.4s;
}
#navbar.scrolled {
  background: rgba(14,12,11,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-right: 4px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(212,169,106,0.25); }
.btn-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  gap: 8px;
}
.mobile-menu a {
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }
.mobile-menu.open { display: flex; }
@media (max-width: 800px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0; }
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   SECTION UTILITIES
=========================== */
.section { padding: 120px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-label span:first-child { color: var(--gold); }

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 64px;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 32px 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.tag-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,169,106,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(212,169,106,0); }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 60px;
}
.hero-line {
  display: block;
  overflow: hidden;
}
.hero-line-2 { color: var(--muted); margin: 12px 0; }
.word-wrap { display: inline-block; overflow: hidden; }
.word { display: inline-block; transform: translateY(110%); animation: wordReveal 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.hero-line:nth-child(1) .word { animation-delay: 0.1s; }
.hero-line-2 .italic-word { animation-delay: 0.25s; animation: wordReveal 1s cubic-bezier(0.16,1,0.3,1) forwards 0.25s; }
.hero-line:nth-child(3) .word { animation-delay: 0.4s; }
@keyframes wordReveal { to { transform: translateY(0); } }

.italic-word { display: inline-block; transform: translateY(110%); }

.hero-accent-img {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
}
.star-burst {
  font-size: clamp(2rem, 5vw, 5rem);
  color: var(--gold);
  animation: spinStar 8s linear infinite;
  display: inline-block;
}
@keyframes spinStar { to { transform: rotate(360deg); } }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  flex-wrap: wrap;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: auto;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-item > div { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-plus { font-size: 1rem; color: var(--gold); font-weight: 700; margin-right: 12px; }
.stat-item p { font-size: 0.82rem; color: var(--muted); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.scroll-wheel {
  width: 22px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  position: relative;
}
.scroll-wheel::after {
  content: '';
  position: absolute;
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 3px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100%{top:6px;opacity:1} 80%{top:18px;opacity:0} }

/* ===========================
   BUTTONS
=========================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.3s;
  width: fit-content;
}
.btn-pill:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(212,169,106,0.25); }
.btn-pill-lg { padding: 18px 44px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, gap 0.2s;
}
.link-arrow:hover { color: var(--white); gap: 12px; }

/* ===========================
   MARQUEE
=========================== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-black);
  padding: 20px 0;
}
.marquee-track { display: flex; white-space: nowrap; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  animation: marqueeScroll 22s linear infinite;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-content:hover { animation-play-state: paused; }
.marquee-star { color: var(--gold); font-size: 0.6rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   SERVICES / BENTO
=========================== */
.services { background: var(--black); }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .bento-grid { grid-template-columns: 1fr; } }

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  transform-style: preserve-3d;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(212,169,106,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover { border-color: rgba(212,169,106,0.25); }
.bento-card:hover::before { opacity: 1; }

.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
@media (max-width: 900px) { .bento-large, .bento-wide { grid-column: span 2; } }
@media (max-width: 580px) { .bento-large, .bento-wide { grid-column: span 1; } }

.bento-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bento-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.bento-icon {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 1.8rem;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}
.bento-card:hover .bento-icon { opacity: 0.8; transform: scale(1.2) rotate(10deg); }

/* ===========================
   PROCESS
=========================== */
.process { background: var(--off-black); }
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.process-item:last-child { border-bottom: 1px solid var(--border); }
.process-item:hover { background: rgba(212,169,106,0.025); }
@media (max-width: 640px) {
  .process-item { grid-template-columns: 60px 1fr; }
  .process-tag { display: none; }
}

.process-meta { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 4px; }
.process-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}
.process-line {
  width: 1px;
  background: var(--border);
  flex: 1;
  min-height: 40px;
}
.process-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.process-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.process-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  margin-top: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.process-item:hover .process-tag { color: var(--gold); border-color: rgba(212,169,106,0.25); }

/* ===========================
   PRICING
=========================== */
.pricing { background: var(--black); }
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-row { grid-template-columns: 1fr; max-width: 440px; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  transform-style: preserve-3d;
}
.price-card:hover { border-color: rgba(212,169,106,0.25); transform: translateY(-6px); }

.price-card-featured {
  background: linear-gradient(160deg, #1f1a14 0%, #241d14 100%);
  border-color: rgba(212,169,106,0.45);
  box-shadow: 0 0 0 1px rgba(212,169,106,0.1), inset 0 1px 0 rgba(212,169,106,0.08), 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(1.03);
}
.price-card-featured:hover { border-color: rgba(212,169,106,0.7); transform: scale(1.03) translateY(-6px); }
.price-card-featured .price-amount { color: var(--gold-light); }

.featured-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.price-amount {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-weight: 500;
}
.price-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.price-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.price-card-featured .price-list li::before { color: var(--gold); }

.price-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.price-btn:hover { border-color: var(--gold); color: var(--gold); }
.price-btn-dark {
  background: rgba(212,169,106,0.1);
  border-color: rgba(212,169,106,0.35);
  color: var(--gold-light);
}
.price-btn-dark:hover { background: rgba(212,169,106,0.18); border-color: var(--gold); color: var(--gold-light); }

.pricing-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
}

/* ===========================
   WORK
=========================== */
.work { background: var(--off-black); }
.work .section-title { padding: 0 32px; max-width: 1280px; margin: 0 auto 48px; }
.work .section-label { padding: 0 32px; max-width: 1280px; margin: 0 auto 20px; }
.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 0;
}
@media (max-width: 900px) { .work-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .work-gallery { grid-template-columns: 1fr; } }

.work-item { position: relative; overflow: hidden; cursor: none; }
.work-thumb {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.work-item:hover .work-thumb { transform: scale(1.04); }

.work-1 { background: linear-gradient(160deg, #1a1a40 0%, #0d3b7c 60%, #1d6db8 100%); }
.work-2 { background: linear-gradient(160deg, #2d0a3d 0%, #6b1fa0 60%, #9b4fd5 100%); }
.work-3 { background: linear-gradient(160deg, #0a2d1a 0%, #0f7040 60%, #1db86b 100%); }
.work-4 { background: linear-gradient(160deg, #2d0a0a 0%, #8b2020 60%, #d44040 100%); }

/* Decorative mockup lines in each card */
.work-thumb::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 0 rgba(255,255,255,0.07),
              0 40px 0 rgba(255,255,255,0.05),
              0 60px 0 rgba(255,255,255,0.04),
              0 80px 0 rgba(255,255,255,0.03);
}

.work-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.work-item:hover .work-hover { opacity: 1; }
.work-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.work-hover h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.work-info {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.work-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.work-info span { font-size: 0.78rem; color: var(--muted); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--black); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 500px; } }

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card-accent {
  background: linear-gradient(160deg, #1f1a14 0%, #241d14 100%);
  border-color: rgba(212,169,106,0.4);
  box-shadow: inset 0 1px 0 rgba(212,169,106,0.08);
}
.testi-card-accent .testi-stars { color: var(--gold); }
.testi-card-accent > p { color: var(--muted-light); }
.testi-card-accent strong { color: var(--white); }
.testi-card-accent span { color: var(--muted); }

.testi-stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 20px; }
.testi-card > p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  color: var(--muted);
}
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 0.9rem; }
.testi-person span { font-size: 0.78rem; color: var(--muted); }

/* ===========================
   CTA SECTION
=========================== */
.cta-section { background: var(--off-black); }
.cta-inner {
  text-align: center;
  position: relative;
  padding: 80px 40px;
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,169,106,0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 40px;
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-left h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px; margin-top: 12px; }
.contact-left > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.contact-meta { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  transition: color 0.2s;
  font-family: 'Space Mono', monospace;
}
.contact-link:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,169,106,0.07);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--gold);
  color: #0e0c0b;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.3s, background 0.2s;
  width: 100%;
}
.form-submit:hover { transform: scale(1.01); background: var(--gold-light); box-shadow: 0 8px 40px rgba(212,169,106,0.25); }
.submit-arrow {
  background: rgba(14,12,11,0.2);
  color: #0e0c0b;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
}
.form-submit:hover .submit-arrow { transform: translateX(4px); }

.form-success {
  display: none;
  background: rgba(212,169,106,0.07);
  border: 1px solid rgba(212,169,106,0.25);
  color: var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.visible { display: block; }

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--off-black); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-inner { display: flex; flex-direction: column; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-top p { font-size: 0.9rem; color: var(--muted); }
.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 640px) { .footer-mid { grid-template-columns: 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ===========================
   TILT CARDS
=========================== */
.tilt-card { transform-style: preserve-3d; will-change: transform; }

/* ===========================
   MAGNETIC
=========================== */
.magnetic { position: relative; }

/* ===========================
   RESPONSIVE HERO
=========================== */
@media (max-width: 800px) {
  .hero-bottom { flex-direction: column; gap: 40px; align-items: flex-start; }
  .hero-stats { flex-direction: row; margin-left: 0; }
  .hero { padding: 140px 24px 80px; }
  .hero-title { font-size: clamp(3rem, 14vw, 6rem); }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
}
