/* ─────────────────────────────────────────────────────────────────────
   Content Kings Media — Premium Theme
   Dark editorial. NYC energy. Motion-heavy.
   ───────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg:        #080808;
  --bg-2:      #0d0d0d;
  --bg-3:      #111111;
  --surface:   #161616;
  --surface-2: #1c1c1c;
  --border:    rgba(255,255,255,0.07);
  --border-gold: rgba(201,169,110,0.2);

  /* Brand colors */
  --gold:      #c9a96e;
  --gold-dim:  #a8875a;
  --gold-glow: rgba(201,169,110,0.15);
  --cream:     #f0ece0;
  --red:       #e84040;

  /* Text */
  --text:      #e8e3d8;
  --text-2:    #b0a898;
  --text-dim:  #6a6560;
  --text-inv:  #080808;

  /* Type */
  --font-head: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════ REVEAL ANIMATIONS ═══════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════ NAV ═════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.nav-scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  padding: 18px 64px;
  border-bottom-color: var(--border);
}

/* Logo */
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.nav-logo-ck {
  color: var(--gold);
  font-size: 22px;
}
.nav-logo-text {
  color: var(--cream);
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { right: 0; }

.nav-cta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--gold);
  padding: 16px 40px;
  border-radius: 4px;
}

/* ═══════════════════════════════ HERO ════════════════════════════════ */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  overflow: hidden;
  background: var(--bg);
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  animation: gridDrift 20s ease-in-out infinite alternate;
}
@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20px, -10px); }
}

/* Noise texture */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: 10%;
  background: radial-gradient(circle, rgba(232,64,64,0.07) 0%, transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-line { display: block; }
.hero-line-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.4s ease;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }
.btn-primary:hover::after { transform: translateX(200%) skewX(-20deg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--cream); background: rgba(255,255,255,0.03); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-gold);
  padding: 15px 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold-glow); border-color: var(--gold); transform: translateY(-1px); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════ MARQUEE ═════════════════════════════ */

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.marquee-dot {
  color: var(--gold) !important;
  font-size: 10px !important;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════ SECTIONS ════════════════════════════ */

.section {
  padding: 120px 64px;
}
.section-header {
  margin-bottom: 64px;
}
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.centered-eyebrow {
  justify-content: center;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.0;
}
.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 20px;
}
.centered-sub { text-align: center; }

/* ═══════════════════════════════ PORTFOLIO ═══════════════════════════ */

.work-section {
  background: var(--bg);
  padding-bottom: 80px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--surface);
}
.portfolio-item.portfolio-large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.portfolio-item.portfolio-wide {
  grid-column: span 2;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  background-color: var(--surface);
}
/* CSS gradient fallbacks for photo categories */
.portfolio-bg-studio {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2018 50%, #1a1208 100%);
  background-image:
    radial-gradient(ellipse at 30% 40%, rgba(201,169,110,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(100,80,40,0.15) 0%, transparent 50%);
}
.portfolio-bg-weddings {
  background: linear-gradient(135deg, #0d0d12 0%, #1a1525 50%, #0d0a18 100%);
  background-image:
    radial-gradient(ellipse at 60% 30%, rgba(150,120,200,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.1) 0%, transparent 50%);
}
.portfolio-bg-food {
  background: linear-gradient(135deg, #0d0800 0%, #1a1000 50%, #0d0a00 100%);
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(200,150,50,0.2) 0%, transparent 60%);
}

.portfolio-item:hover .portfolio-bg {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.portfolio-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}
.portfolio-meta {
  font-size: 13px;
  color: rgba(240,236,224,0.6);
  margin-bottom: 12px;
}
.portfolio-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio-item:hover .portfolio-cta {
  opacity: 1;
  transform: none;
}

.work-cta {
  text-align: center;
  margin-top: 56px;
}

/* ═══════════════════════════════ VIDEO REEL ══════════════════════════ */

.reel-section {
  padding: 120px 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.reel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.reel-copy .section-sub { max-width: 340px; }

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.credit-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.credit-name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* ═══════════════════════════════ SERVICES ════════════════════════════ */

.services-section {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:last-child { border-bottom: none; }

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.service-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.service-row:hover .service-name { color: var(--gold); }
.service-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.service-row:hover .service-tags span {
  border-color: var(--border-gold);
  color: var(--gold);
}
.service-cta-wrap {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  transition: all 0.2s ease;
}
.service-link:hover { background: var(--gold-glow); transform: translateY(-1px); }

/* Pricing callout */
.pricing-callout {
  margin-top: 80px;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(201,169,110,0.02) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
}
.callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
}
.callout-copy h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}
.callout-copy p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.6;
}

/* ═══════════════════════════════ ABOUT ═══════════════════════════════ */

.about-section {
  padding: 120px 64px;
  background: var(--bg);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-copy .section-title {
  margin-top: 20px;
  margin-bottom: 28px;
}
.about-body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-quote {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  font-style: normal;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.4;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.about-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* About card */
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.about-card-inner {
  padding: 48px 40px;
}
.about-stat-big {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
.stat-big-num {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-big-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
  font-weight: 400;
}
.about-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 36px;
}
.about-services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.asi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.about-card-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════ CONTACT ═════════════════════════════ */

.contact-section {
  padding: 120px 64px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.contact-orb {
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-header {
  text-align: center;
  margin-bottom: 72px;
}
.contact-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 0.95;
  margin-top: 20px;
  margin-bottom: 24px;
}
.headline-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}
.contact-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact form + aside */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201,169,110,0.5);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a6560' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-select option { background: var(--surface); color: var(--text); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 0.12em;
  justify-content: center;
}
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
  line-height: 1.5;
}
.form-status.success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.2);
  color: #81c784;
  display: block;
}
.form-status.error {
  background: rgba(232,64,64,0.1);
  border: 1px solid rgba(232,64,64,0.2);
  color: #e84040;
  display: block;
}

/* Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.contact-info-block h4 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}
.contact-info-block p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-link-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-1px);
}
.cli-icon { font-size: 20px; }
.cli-title {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
}
.cli-sub {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 400;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════ FOOTER ══════════════════════════════ */

.footer {
  padding: 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.footer-logo-ck { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}

/* ═══════════════════════════════ RESPONSIVE ══════════════════════════ */

@media (max-width: 1200px) {
  .nav { padding: 22px 48px; }
  .nav.nav-scrolled { padding: 16px 48px; }
  .hero { padding: 120px 48px 80px; }
  .hero-scroll { left: 48px; }
  .section { padding: 100px 48px; }
  .reel-section { padding: 100px 48px; }
  .about-section { padding: 100px 48px; }
  .contact-section { padding: 100px 48px; }
  .footer { padding: 48px; }
}

@media (max-width: 1024px) {
  .nav { padding: 20px 36px; }
  .nav.nav-scrolled { padding: 14px 36px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 100px 36px 80px; }
  .hero-scroll { left: 36px; }
  .hero-headline { font-size: clamp(56px, 9vw, 100px); }
  .section { padding: 80px 36px; }
  .reel-inner { grid-template-columns: 1fr; gap: 48px; }
  .reel-copy .section-sub { max-width: 100%; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.portfolio-large { grid-column: span 2; }
  .portfolio-item.portfolio-wide { grid-column: span 2; }
  .services-section { padding: 80px 36px; }
  .service-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .service-cta-wrap { display: none; }
  .about-section { padding: 80px 36px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-card { position: static; }
  .contact-section { padding: 80px 36px; }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav.nav-scrolled { padding: 14px 24px; }
  .hero { padding: 100px 24px 80px; }
  .hero-scroll { display: none; }
  .hero-headline { font-size: clamp(48px, 12vw, 72px); }
  .hero-stats { gap: 0; }
  .stat-num { font-size: 24px; }
  .stat-divider { margin-right: 24px; }
  .stat { padding-right: 24px; }
  .section { padding: 72px 24px; }
  .reel-section, .services-section, .about-section, .contact-section { padding: 72px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.portfolio-large,
  .portfolio-item.portfolio-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .service-row { display: flex; flex-direction: column; gap: 16px; padding: 36px 0; }
  .callout-inner { flex-direction: column; align-items: flex-start; gap: 24px; padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 24px; }
  .footer { padding: 36px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-line-accent { -webkit-text-stroke-width: 1.5px; }
  .contact-headline { -webkit-text-stroke-width: 1.5px; }
  .headline-accent { -webkit-text-stroke-width: 1.5px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 20px 60px; }
  .hero-badge { font-size: 10px; }
  .hero-headline { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 56px 20px; }
  .reel-section, .services-section, .about-section, .contact-section { padding: 56px 20px; }
  .section-title { font-size: 32px; }
  .contact-headline { font-size: 40px; }
  .contact-form { padding: 28px 20px; }
  .footer { padding: 32px 20px; }
  .about-section { padding: 56px 20px; }
  .about-quote { font-size: 17px; }
  .stat-big-num { font-size: 56px; }
}
