/* ============================================================
   MORE THAN MOMENTUM — style.css
   ============================================================ */

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

:root {
  --black: #0c0c0c;
  --white: #f4f4f2;
  --gray: #888;
  --mid: #555;
  --light: #e6e6e4;
  --accent: #2D6BE4;
  --accent-light: #5B8FF0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --speed: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  cursor: none !important;
  overflow-x: hidden;
}

/* --- SPEED HEADINGS --- */
.hero-title,
.about-heading,
.services-heading,
.pricing-heading,
.portfolio-heading,
.process-heading,
.contact-heading {
  font-family: var(--speed);
  font-weight: 700;
  letter-spacing: -.01em;
}

.hero-title em,
.about-heading em,
.services-heading em,
.pricing-heading em,
.portfolio-heading em,
.process-heading em,
.contact-heading em {
  font-style: italic;
  font-weight: 700;
  color: inherit;
  opacity: .6;
}

/* --- CURSOR --- */
* { cursor: none !important; }
a, button, .nav-cta, .plan-cta, .btn-primary, .btn-ghost, .social-link, select { cursor: pointer !important; }
.cursor {
  position: fixed;
  width: 110px; height: 110px;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor.big { width: 130px; height: 130px; }
.cursor img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .15s ease;
}

.cursor-ring { display: none; }

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem 5rem;
  z-index: 200;
  transition: background .4s, padding .4s;
}
nav.scrolled {
  background: rgba(244,244,242,.98);
  padding: .4rem 5rem;
  border-bottom: 1px solid var(--light);
}
.nav-logo {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none; color: var(--black);
}

#nav-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: opacity .3s, filter .3s;
  filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(1200%) hue-rotate(205deg) brightness(110%);
  margin: -35px 0;
  overflow: hidden;
}

.nav-logo-text {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 400; letter-spacing: .04em;
  transition: color .3s;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .75rem; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; color: var(--white); font-weight: 400;
  transition: opacity .2s, color .3s;
}
.nav-links a:hover { opacity: .35; }
.nav-cta {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: var(--white); background: var(--accent);
  padding: .65rem 1.4rem; font-weight: 400; transition: background .25s;
  position: relative; overflow: hidden;
}
.nav-cta:hover { background: #1a52c4; }

/* --- HAMBURGER BUTTON --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 301;
  position: relative;
}

.nav-hamburger.open {
  position: fixed;
  left: 1.2rem;
  top: 0.5rem;
  z-index: 301;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s;
  transform-origin: center;
}
nav.scrolled .nav-hamburger span { background: var(--black); }
.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 NAV OVERLAY --- */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100dvh;
  background: #0a0a0a;
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid #1a1a1a;
}
.nav-mobile.open {
  transform: translateX(0);
}
.nav-mobile-close {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.nav-mobile-close:hover { color: var(--white); }
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.nav-mobile-link {
  display: block;
  font-family: var(--speed);
  font-size: clamp(2.2rem, 7vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid #1e1e1e;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--accent-light); }
.nav-mobile-cta {
  display: flex;
  justify-content: center;
  font-size: .85rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 1.2rem 2rem;
  text-decoration: none;
  transition: background 0.25s;
  align-self: stretch;
  margin-top: .5rem;
}
.nav-mobile-cta:hover { background: #1a52c4; }
.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s;
}
.nav-mobile-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* --- HERO --- */
.hero {
  min-height: 100vh; background: var(--black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 5rem 5rem; position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-bg-logo {
  position: absolute; right: -5rem; top: 50%;
  transform: translateY(-50%); opacity: .9;
  width: 58vw; pointer-events: none;
  mix-blend-mode: screen;
  filter: brightness(2) contrast(2) grayscale(1);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(255,255,255,.15);
  padding: .45rem 1rem; margin-bottom: 2.5rem;
  margin-top: 6rem;
  width: fit-content; opacity: 0;
  animation: fadeUp .7s .2s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light); opacity: 1; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}
.hero-badge-text {
  font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}

.hero-title {
  font-family: var(--speed);
  font-size: clamp(3.8rem, 9vw, 9.5rem);
  font-weight: 700; line-height: .92;
  letter-spacing: -.025em; color: var(--white);
  opacity: 0; animation: fadeUp .9s .35s forwards;
}

.hero-title em { font-style: italic; color: var(--accent-light); }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 3.5rem; opacity: 0; animation: fadeUp .9s .6s forwards;
}
.hero-desc {
  max-width: 420px; font-size: .92rem;
  color: rgba(255,255,255,.45); line-height: 1.9;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--white); color: var(--black);
  text-decoration: none; font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 2rem; font-weight: 500; transition: gap .3s;
  position: relative; overflow: hidden;
}
.btn-primary::after { content: '→'; }
.btn-primary:hover { gap: 1.3rem; }

/* Blue variant for hero */
.btn-primary.btn-blue {
  background: var(--accent);
  color: var(--white);
}
.btn-primary.btn-blue:hover { background: #1a52c4; }

/* Scan light effect */
.scan-light {
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: scan-btn 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan-btn {
  0%   { left: -60%; }
  100% { left: 140%; }
}

.btn-ghost {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: .2rem;
  transition: color .25s, border-color .25s;
}
.btn-ghost:hover { color: var(--accent-light); border-color: var(--accent-light); }

/* --- PARTICLE CANVAS --- */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content inside dark sections sits above canvas */
.hero > *:not(.particle-canvas):not(.hero-grid):not(.hero-bg-logo) { position: relative; z-index: 2; }
.about-left > *:not(.particle-canvas) { position: relative; z-index: 2; }
.pricing > *:not(.particle-canvas) { position: relative; z-index: 2; }
.contact-left > *:not(.particle-canvas) { position: relative; z-index: 2; }

/* --- 3D VIDEO CAROUSEL --- */
.video-carousel {
  position: relative;
  width: 100%;
  padding: 1rem 0 2rem;
  overflow: hidden;
}

.video-track {
  position: relative;
  height: 560px;
  width: 100%;
  perspective: 1200px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
}

/* 3D video slot */
.video-slot-3d {
  position: absolute;
  width: 300px;
  height: 533px;
  left: calc(50% - 150px);
  top: calc(50% - 266.5px);
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  background: #111;
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.85s ease;
}

/* Blue border glow on hover */
.video-slot-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  pointer-events: none;
  z-index: 5;
}
.video-slot-3d:hover::after {
  border-color: rgba(45, 107, 228, 0.7);
  box-shadow: inset 0 0 20px rgba(45, 107, 228, 0.15);
}

.video-slot-3d video {
  width: 100%; height: 100%; object-fit: cover;
}

.video-slot-3d .video-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; width: 100%; height: 100%;
}

.video-slot-3d .video-placeholder-num {
  font-family: var(--serif); font-size: 4rem;
  font-weight: 300; color: rgba(255,255,255,.07); font-style: italic;
}
.video-slot-3d .video-placeholder-label {
  font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.18);
}
.video-slot-3d .video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity .35s; z-index: 4;
}
.video-slot-3d:hover .video-overlay { opacity: 1; }
.video-slot-3d .video-client {
  font-size: .65rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.video-slot-3d .video-title {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--white); margin-top: .2rem;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  padding: .9rem 0;
}
.ticker-track {
  display: flex; gap: 2.5rem;
  animation: ticker 28s linear infinite;
  width: max-content; white-space: nowrap;
}
.ticker-item { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--black); }
.ticker-sep { color: var(--light); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- SHARED SECTION TAG --- */
.section-tag {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 2.5rem;
}
.section-tag::before { content: ''; width: 1.8rem; height: 1px; background: var(--accent); }

/* --- ABOUT --- */
.about { display: grid; grid-template-columns: 5fr 7fr; border-bottom: 1px solid var(--light); }
.about-left {
  padding: 7rem 5rem; border-right: 1px solid #1a1a1a;
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.about-left .section-tag { color: var(--accent-light); }
.about-left .section-tag::before { background: var(--accent-light); }
.about-heading {
  font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.01em; color: var(--white);
}
.about-heading em { font-style: italic; color: var(--accent-light); }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding-top: 3rem; margin-top: 3rem; border-top: 1px solid #1e1e1e;
}
.stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; letter-spacing: -.02em; color: var(--white); }
.stat-label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .3rem; }
.about-right { padding: 7rem 5rem; }
.about-body { font-size: .95rem; color: var(--mid); line-height: 1.95; margin-bottom: 1.6rem; }
.about-body strong { color: var(--black); font-weight: 500; }
.about-pillars { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem; border: 1px solid var(--light);
}

.pillar-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--white); font-family: var(--sans);
}
.pillar-text strong { display: block; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; margin-bottom: .2rem; }
.pillar-text span { font-size: .85rem; color: var(--gray); }

/* --- SERVICES --- */
.services { padding: 7rem 5rem; border-bottom: 1px solid var(--light); }
.services-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.services-heading { font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem); font-weight: 300; letter-spacing: -.01em; }
.services-heading em { font-style: italic; color: #2D6BE4; }
.services-note { max-width: 260px; font-size: .85rem; color: var(--gray); line-height: 1.7; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.svc {
  padding: 2.5rem 2.5rem 3rem;
  border-top: 1px solid var(--light); border-right: 1px solid var(--light);
  position: relative; overflow: hidden; transition: background .3s;
}
.svc:nth-child(3n) { border-right: none; }
.svc::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0; background: var(--black); transition: width .45s ease;
}
.svc:hover::before { width: 100%; }
.svc:hover { background: rgba(0,0,0,.02); }

.svc-icon { font-size: 1.3rem; margin-bottom: .8rem; display: block; }
.svc-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .8rem; line-height: 1.2; }
.svc-desc { font-size: .85rem; color: var(--gray); line-height: 1.85; }
.svc-tag {
  display: inline-flex; margin-top: 1.2rem;
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); padding: .28rem .65rem;
}

/* --- PRICING --- */
.pricing { padding: 7rem 5rem; background: var(--black); color: var(--white); border-bottom: 1px solid #111; position: relative; overflow: hidden; }
.pricing .section-tag { color: var(--accent-light); }
.pricing .section-tag::before { background: var(--accent-light); }
.pricing-heading {
  font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem);
  font-weight: 300; color: var(--white); letter-spacing: -.01em; margin-bottom: 1rem;
}
.pricing-heading em { font-style: italic; color: var(--accent-light); }
.pricing-subhead {
  font-size: .88rem; color: rgba(255,255,255,.5); max-width: 480px;
  line-height: 1.8; margin-bottom: 4rem;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1a1a1a; }
.plan { background: var(--black); padding: 3rem; position: relative; transition: background .3s; }
.plan:hover { background: #0f0f0f; }
.plan.featured { background: var(--white); color: var(--black); }
.plan.featured:hover { background: #f0f0ee; }
.plan-label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.plan.featured .plan-label { color: var(--gray); }
.plan-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; margin-bottom: .6rem; letter-spacing: -.01em; }
.plan.featured .plan-name { color: var(--black); }
.plan-pricing-note {
  font-size: .72rem; letter-spacing: .06em; color: rgba(255,255,255,.5);
  margin-bottom: 1.8rem; font-style: italic;
}
.plan.featured .plan-pricing-note { color: var(--gray); }
.plan-divider { height: 1px; background: #1e1e1e; margin-bottom: 2rem; }
.plan.featured .plan-divider { background: var(--light); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.plan-features li { display: flex; align-items: flex-start; gap: .8rem; font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.plan.featured .plan-features li { color: var(--mid); }
.plan-features li::before { content: '→'; color: #333; font-size: .75rem; margin-top: .05rem; flex-shrink: 0; }
.plan.featured .plan-features li::before { color: var(--black); }
.plan-cta {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: #f9f9f7; border-bottom: 1px solid #f9f9f7; padding-bottom: .25rem;
  transition: color .25s, border-color .25s, gap .25s;
}
.plan-cta::after { content: '→'; }
.plan-cta:hover { gap: 1.1rem; color: var(--accent-light); border-color: var(--accent-light); }
.plan.featured .plan-cta { color: var(--black); border-color: var(--black); }
.plan.featured .plan-cta:hover { color: #333; }
.plan-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: .62rem; letter-spacing: .13em; text-transform: uppercase;
  background: var(--black); color: var(--white); padding: .25rem .6rem;
}

/* --- PORTFOLIO / VIDEO --- */
.portfolio { padding: 7rem 5rem; border-bottom: 1px solid var(--light); }
.portfolio-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.portfolio-heading { font-family: var(--speed); font-size: clamp(2.4rem,3.5vw,3.8rem); font-weight: 300; letter-spacing: -.01em; }
.portfolio-heading em { font-style: italic; color: var(--accent); }
.portfolio-note { font-size: .82rem; color: var(--gray); max-width: 240px; text-align: right; }
.video-slot {
  aspect-ratio: 9/16; background: var(--black);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; cursor: none;
}
.video-slot video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.video-slot:hover video { transform: scale(1.04); }
.video-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.video-placeholder-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; color: rgba(255,255,255,.07); font-style: italic; }
.video-placeholder-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.18); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity .35s;
}
.video-slot:hover .video-overlay { opacity: 1; }
.video-client { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.video-title { font-family: var(--serif); font-size: 1.1rem; color: var(--white); margin-top: .2rem; }


/* --- CAROUSEL CONTROLS --- */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 10;
}
.carousel-arrow {
  background: none;
 border: 1px solid #ccc;
 color: var(--black);
  font-family: var(--sans);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, color .25s, background .25s;
  overflow: hidden;
  position: relative;
  pointer-events: all;
  border-radius: 50%;
}
.carousel-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 0;
}
.carousel-arrow:hover::before { transform: scaleX(1); }
.carousel-arrow:hover { color: var(--white); border-color: var(--black); }
.carousel-arrow span { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .carousel-controls { display: none; }
}

/* --- PROCESS --- */
.process { padding: 7rem 5rem; border-bottom: 1px solid var(--light); background: #f9f9f7; }
.process-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.process-left { position: sticky; top: 8rem; }
.process-heading { font-family: var(--speed); font-size: clamp(2.2rem,3vw,3.2rem); font-weight: 300; letter-spacing: -.01em; line-height: 1.1; }
.process-heading em { font-style: italic; color: var(--accent); }
.process-sub { font-size: .9rem; color: var(--gray); line-height: 1.8; margin-top: 1.5rem; }
.step { display: grid; grid-template-columns: 3rem 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--light); }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gray); padding-top: .2rem; }
.step-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: .7rem; }
.step-desc { font-size: .88rem; color: var(--gray); line-height: 1.85; }

/* --- CONTACT --- */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  padding: 7rem 5rem; background: var(--black); color: var(--white);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.contact-left .section-tag { color: var(--accent-light); }
.contact-left .section-tag::before { background: var(--accent-light); }
.contact-heading {
  font-family: var(--speed); font-size: clamp(2.2rem,3.2vw,3.6rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.02em; color: var(--white);
}
.contact-heading em { font-style: italic; color: var(--accent-light); }
.contact-details { margin-top: 4rem; display: flex; flex-direction: column; gap: 2rem; }
.contact-detail-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .3rem; }
.contact-detail-value { font-size: .92rem; color: #f9f9f7; }
.contact-socials { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }
.social-link {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: #f9f9f7; text-decoration: none; border: 1px solid #f9f9f7;
  padding: .5rem 1rem; transition: color .25s, border-color .25s;
}
.social-link:hover { color: var(--accent-light); border-color: var(--accent-light); }
.contact-right { padding: 7rem 5rem; }
.contact-form { display: flex; flex-direction: column; gap: 2.2rem; margin-top: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-label { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gray); }
.form-input, .form-select, .form-textarea {
  border: none; border-bottom: 1px solid var(--light);
  padding: .8rem 0; font-family: var(--sans); font-size: .9rem;
  font-weight: 300; background: transparent; color: var(--black);
  outline: none; transition: border-color .3s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--black); }
.form-select { appearance: none; cursor: none; }
.form-textarea { resize: none; height: 100px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--black); color: var(--white); border: none;
  padding: 1.1rem 2.4rem; font-family: var(--sans); font-size: .75rem;
  letter-spacing: .13em; text-transform: uppercase; cursor: none;
  transition: background .25s, gap .3s; align-self: flex-start; font-weight: 400;
}
.form-submit:hover { background: #222; gap: 1.5rem; }
.form-submit::after { content: '→'; }
.form-submit:disabled { opacity: .6; }

/* --- FOOTER --- */
footer {
  padding: 2.5rem 5rem; border-top: 1px solid var(--light);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo-text { font-family: var(--serif); font-size: .9rem; font-style: italic; color: var(--gray); }
.footer-copy { font-size: .7rem; letter-spacing: .07em; color: var(--gray); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--black); }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* --- RESPONSIVE: TABLET (≤1024px) --- */
@media (max-width: 1024px) {
  .ticker {
    background: var(--white);
    border-top: none;
  }
  .ticker-item { color: var(--black); }
}

@media (max-width: 1024px) {
  nav, nav.scrolled { padding: .6rem 1.8rem; min-height: 56px; }

  /* Show hamburger, hide desktop nav items */
  .nav-hamburger { display: flex; order: -1; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  /* Logo moves to the right */
  .nav-logo { order: 1; }
  .nav-logo-text {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #nav-logo-img {
    width: 72px;
    height: 72px;
    margin: -20px 0;
  }

  /* Hero fills full screen, no scroll needed */
  .hero {
    padding: 0 2.5rem 2rem;
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
    justify-content: center;
    padding-top: calc(56px + 40px + 36px); /* nav + ticker + gap */
  }
  .hero-badge { margin-top: 0; }
  .hero-bg-logo { width: 70vw; opacity: .5; right: -2rem; }

  .about { grid-template-columns: 1fr; }
  .about-left { border-right: none; border-bottom: 1px solid #1a1a1a; padding: 5rem 2.5rem; }
  .about-right { padding: 5rem 2.5rem; }

  .services, .pricing, .portfolio, .process { padding: 5rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(3n) { border-right: 1px solid var(--light); }
  .svc:nth-child(2n) { border-right: none; }

  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }

  .video-grid, .video-row-2, .video-carousel { width: 100%; }

  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-left { position: static; }

  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 5rem 2.5rem; }

  footer { padding: 2rem 2.5rem; flex-wrap: wrap; gap: 1.2rem; }
  .footer-links { display: none; }
}

/* --- RESPONSIVE: MOBILE (≤640px) --- */
@media (max-width: 640px) {
  nav, nav.scrolled { padding: .5rem 1.2rem; }
  .nav-logo-text { font-size: .9rem; }
  #nav-logo-img { width: 60px; height: 60px; margin: -16px 0; }

  .hero {
    padding: 0 1.5rem 2rem;
    min-height: 100dvh;
    height: 100dvh;
    overflow: hidden;
    justify-content: center;
    padding-top: calc(56px + 40px + 2rem);
  }
  .hero-badge { margin-top: 0; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .hero-desc { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; }
  .btn-primary { width: 100%; justify-content: center; }
  .hero-bg-logo { display: none; }

  .about-left, .about-right { padding: 4rem 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .services, .pricing, .portfolio, .process { padding: 4rem 1.5rem; }
  .services-top, .portfolio-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .services-note, .portfolio-note { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none !important; }

  .pricing-subhead { max-width: 100%; }

  /* Video carousel: show only center card on mobile */
  .video-track { height: 480px; }
  .video-slot-3d[data-state="left"],
  .video-slot-3d[data-state="right"],
  .video-slot-3d[data-state="entering"],
  .video-slot-3d[data-state="exiting"] {
    opacity: 0 !important;
    pointer-events: none;
  }

  .contact { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-heading { font-size: clamp(2rem, 8vw, 2.8rem); }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-links { display: none; }
}

/* --- FORCE HIDE MOBILE NAV ON DESKTOP --- */
@media (min-width: 1025px) {
  .nav-hamburger { display: none !important; }
  .nav-mobile { display: none !important; }
  .nav-mobile-backdrop { display: none !important; }
}

/* --- MOBILE MULTI-PAGE: section spacing & nav ---
 * Sections shown as standalone pages need top padding to clear the fixed nav.
 * Only applies when JS has hidden other sections (mobile/tablet).
 */
@media (max-width: 1024px) {
  /* Non-hero sections used as standalone pages need breathing room under nav */
  .about, .services, .pricing, .portfolio, .process, .contact {
    padding-top: max(5rem, calc(56px + 2.5rem));
  }

  /* Hero already fills full viewport — keep as-is */

  /* Inner page: ensure white nav is always visible */
  body.inner-page #nav,
  body.inner-page nav.scrolled {
    background: rgba(244,244,242,.98) !important;
    border-bottom: 1px solid var(--light);
  }
  body.inner-page .nav-hamburger span { background: var(--black) !important; }
}

@media (max-width: 640px) {
  .about, .services, .pricing, .portfolio, .process, .contact {
    padding-top: max(4rem, calc(56px + 2rem));
  }
}

/* --- HIDE CUSTOM CURSOR ON TOUCH DEVICES --- */
@media (pointer: coarse) {
  .cursor,
  .cursor-ring { display: none !important; }
  body, * { cursor: auto !important; }
  a, button, select,
  .nav-cta, .plan-cta, .btn-primary,
  .btn-ghost, .social-link { cursor: pointer !important; }
}
