/* ============================================================
   CAPTURE STUDIO — Main Stylesheet
   Craft · Creativity · Code
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&family=Space+Grotesk:wght@400;500;600&display=swap');

/* === CSS Variables === */
:root {
  --black:       #0A0A0A;
  --gold:        #C9A84C;
  --gold-light:  #E2BB67;
  --gold-dim:    rgba(201,168,76,0.12);
  --white:       #F5F0E8;
  --white-dim:   rgba(245,240,232,0.55);
  --dark-1:      #111111;
  --dark-2:      #181818;
  --dark-3:      #222222;
  --border:      rgba(201,168,76,0.18);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-label:  'Space Grotesk', system-ui, sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === Scrollbar === */
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:var(--gold); }

/* === Custom Cursor === */
.cursor {
  position:fixed; width:10px; height:10px;
  background:var(--gold); border-radius:50%;
  pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .25s var(--ease), height .25s var(--ease), background .25s;
}
.cursor-ring {
  position:fixed; width:38px; height:38px;
  border:1px solid rgba(201,168,76,0.45);
  border-radius:50%; pointer-events:none;
  z-index:9998; transform:translate(-50%,-50%);
  transition:width .35s var(--ease), height .35s var(--ease), opacity .35s;
}
.cursor.expand   { width:50px; height:50px; background:rgba(201,168,76,0.08); }
.cursor-ring.expand { opacity:0; }

/* === Typography === */
h1,h2,h3,h4 {
  font-family:var(--font-display);
  font-weight:400;
  line-height:1.05;
}
h1 { font-size:clamp(3.5rem,8.5vw,10rem); }
h2 { font-size:clamp(2.5rem,5vw,5.5rem); }
h3 { font-size:clamp(1.6rem,2.5vw,2.4rem); }
h4 { font-size:clamp(1.1rem,1.5vw,1.4rem); }

.label {
  font-family:var(--font-label);
  font-size:.65rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
}
.overline {
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  margin-bottom:1.2rem;
}
.overline::before {
  content:'';
  width:2rem; height:1px;
  background:var(--gold);
  flex-shrink:0;
}

/* === Layout === */
.container { max-width:1440px; margin:0 auto; padding:0 5%; }
section     { padding:7rem 5%; }

.section-head {
  display:flex; align-items:flex-end;
  justify-content:space-between;
  padding-bottom:2rem;
  margin-bottom:4rem;
  border-bottom:1px solid var(--border);
}
.section-head-left { flex:1; }
.view-all {
  font-family:var(--font-label);
  font-size:.65rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold);
  display:flex; align-items:center; gap:.5rem;
  transition:gap .3s;
}
.view-all::after { content:'→'; }
.view-all:hover { gap:1rem; }

/* === Navigation === */
.nav {
  position:fixed; inset-inline:0; top:0;
  z-index:900; padding:2.2rem 5%;
  display:flex; align-items:center;
  justify-content:space-between;
  transition:padding .4s var(--ease), background .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
.nav.stuck {
  background:rgba(10,10,10,.92);
  backdrop-filter:blur(18px);
  padding:1.2rem 5%;
  border-color:var(--border);
}
.nav-logo {
  font-family:var(--font-display);
  font-size:1.2rem; font-weight:500;
  letter-spacing:.06em;
}
.nav-logo span { color:var(--gold); }

.nav-links {
  display:flex; gap:2.8rem; align-items:center;
}
.nav-links a {
  font-family:var(--font-label);
  font-size:.68rem; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--white-dim);
  position:relative;
  transition:color .3s;
}
.nav-links a::after {
  content:''; position:absolute;
  bottom:-5px; left:0;
  width:0; height:1px;
  background:var(--gold);
  transition:width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.nav-book {
  font-family:var(--font-label);
  font-size:.65rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); padding:.65rem 1.5rem;
  border:1px solid var(--gold);
  transition:background .3s, color .3s;
}
.nav-book:hover { background:var(--gold); color:var(--black); }

/* Hamburger */
.nav-burger {
  display:none;
  flex-direction:column; gap:5px;
  width:28px; cursor:pointer;
}
.nav-burger span {
  height:1px; background:var(--white);
  transition:var(--ease) .3s;
  display:block;
}
.nav-burger.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  display:none;
  position:fixed; inset:0;
  background:var(--black);
  z-index:899;
  flex-direction:column;
  align-items:center; justify-content:center;
  gap:2.5rem;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  font-family:var(--font-display);
  font-size:clamp(2.2rem,7vw,4rem);
  color:var(--white-dim);
  transition:color .3s;
}
.nav-mobile a:hover { color:var(--gold); }

/* === Buttons === */
.btn {
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:var(--font-label);
  font-size:.65rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  padding:1rem 2.2rem;
  transition:background .3s, color .3s, border-color .3s;
}
.btn-gold   { background:var(--gold); color:var(--black); }
.btn-gold:hover { background:var(--gold-light); }
.btn-outline { border:1px solid rgba(245,240,232,.25); color:var(--white); }
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }
.btn-ghost  { color:var(--gold); }
.btn-ghost::after { content:'→'; }
.btn-ghost:hover  { gap:1.2rem; }
.btn-wa     { background:#25D366; color:#fff; }
.btn-wa:hover { background:#1ebf5c; }

/* === Hero === */
.hero {
  min-height:100svh;
  display:grid; grid-template-rows:1fr auto;
  position:relative; overflow:hidden;
  padding-top:10rem;
}
.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,.04) 0%, transparent 60%),
    var(--black);
  will-change:transform;
}
.hero-grid-lines {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size:100px 100px;
}
.hero-content {
  position:relative; z-index:2;
  padding:0 5%;
  align-self:center;
}
.hero-eyebrow {
  display:flex; align-items:center; gap:1rem;
  margin-bottom:2rem;
}
.hero-eyebrow::before {
  content:'';
  width:3rem; height:1px; background:var(--gold);
}
.hero-eyebrow span {
  font-family:var(--font-label);
  font-size:.65rem; font-weight:600;
  letter-spacing:.25em; text-transform:uppercase;
  color:var(--gold);
}
.hero h1 {
  max-width:14ch;
  margin-bottom:2rem;
  font-weight:300;
}
.hero h1 em {
  font-style:italic;
  color:var(--gold);
}
.hero-sub {
  font-size:1rem;
  color:var(--white-dim);
  max-width:40ch;
  margin-bottom:3rem;
  line-height:1.7;
}
.hero-cta {
  display:flex; flex-wrap:wrap; gap:1rem;
  margin-bottom:4rem;
}
.hero-scroll {
  position:relative; z-index:2;
  padding:2rem 5%;
  display:flex; align-items:center; gap:1rem;
  border-top:1px solid var(--border);
}
.hero-scroll-line {
  width:2rem; height:1px;
  background:var(--gold);
  animation:scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100%{ width:2rem; opacity:1; }
  50%    { width:4rem; opacity:.6; }
}
.hero-scroll span {
  font-family:var(--font-label);
  font-size:.6rem; letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--white-dim);
}

/* === Marquee === */
.marquee-band {
  overflow:hidden;
  background:var(--gold);
  padding:.75rem 0;
  border-block:1px solid rgba(0,0,0,.2);
}
.marquee-track {
  display:flex; gap:2.5rem;
  white-space:nowrap;
  animation:marquee 22s linear infinite;
  width:max-content;
}
.marquee-track.reverse { animation-direction:reverse; }
.marquee-track span {
  font-family:var(--font-label);
  font-size:.65rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--black);
  flex-shrink:0;
}
.marquee-track span.dot { color:rgba(0,0,0,.35); }
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* === Stats === */
.stats-section {
  padding:0 5%;
  border-block:1px solid var(--border);
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat-item {
  padding:3.5rem 2.5rem;
  border-right:1px solid var(--border);
  transition:background .4s;
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background:var(--dark-1); }
.stat-num {
  font-family:var(--font-display);
  font-size:clamp(3rem,5vw,5.5rem);
  font-weight:300; line-height:1;
  color:var(--gold); margin-bottom:.4rem;
}
.stat-label {
  font-family:var(--font-label);
  font-size:.62rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--white-dim);
}

/* === Services Grid === */
.services-preview {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
}
.svc-card {
  padding:3rem 2.5rem;
  background:var(--dark-1);
  border:1px solid transparent;
  position:relative; overflow:hidden;
  transition:background .4s, border-color .4s;
}
.svc-card-line {
  position:absolute; top:0; left:0; right:0;
  height:2px; background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s var(--ease);
}
.svc-card:hover { background:var(--dark-2); border-color:var(--border); }
.svc-card:hover .svc-card-line { transform:scaleX(1); }
.svc-card-num {
  font-family:var(--font-display);
  font-size:4rem; font-weight:300;
  color:var(--gold-dim); line-height:1;
  margin-bottom:1.5rem;
}
.svc-card h3 { font-size:1.6rem; margin-bottom:.8rem; }
.svc-card p  { font-size:.85rem; color:var(--white-dim); line-height:1.75; margin-bottom:1.5rem; }
.svc-card-price {
  font-family:var(--font-label);
  font-size:.72rem; color:var(--gold);
  letter-spacing:.05em;
}

/* === Portfolio Masonry === */
.portfolio-masonry {
  columns:3; column-gap:3px;
}
.p-item {
  break-inside:avoid;
  margin-bottom:3px;
  position:relative; overflow:hidden;
}
.p-item img {
  width:100%; display:block;
  transition:transform .7s var(--ease-out);
}
.p-item:hover img { transform:scale(1.04); }
.p-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,10,10,.75) 0%, transparent 50%);
  opacity:0;
  transition:opacity .4s;
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding:1.5rem;
}
.p-item:hover .p-overlay { opacity:1; }
.p-overlay .label  { margin-bottom:.3rem; }
.p-overlay h4 { font-size:1rem; }

/* === Differentiators === */
.diff-quote {
  font-family:var(--font-display);
  font-size:clamp(1.6rem,3vw,2.8rem);
  font-style:italic;
  color:var(--white-dim);
  max-width:28ch;
  line-height:1.3;
  padding-bottom:3rem;
  margin-bottom:3rem;
  border-bottom:1px solid var(--border);
}
.diff-quote em { color:var(--gold); font-style:italic; }
.diff-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
}
.diff-card {
  padding:3rem 2.5rem;
  background:var(--dark-1);
  border:1px solid var(--border);
  transition:border-color .3s, background .3s;
}
.diff-card:hover { border-color:var(--gold); background:var(--dark-2); }
.diff-n {
  font-family:var(--font-display);
  font-size:5rem; font-weight:300;
  color:rgba(201,168,76,.1); line-height:1;
  margin-bottom:1.5rem;
}
.diff-card h3 { font-size:1.4rem; margin-bottom:.8rem; }
.diff-card p  { font-size:.85rem; color:var(--white-dim); line-height:1.75; }

/* === Clients === */
.clients-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
}
.client-chip {
  padding:2rem 2.5rem;
  background:var(--dark-1);
  border:1px solid var(--border);
  transition:border-color .3s, background .3s;
}
.client-chip:hover { border-color:var(--gold); background:var(--dark-2); }
.client-chip h4 {
  font-family:var(--font-label);
  font-size:.75rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:.25rem;
}
.client-chip span { font-size:.75rem; color:var(--white-dim); }

/* === CTA Band === */
.cta-band {
  text-align:center;
  background:var(--dark-1);
  padding:8rem 5%;
  border-block:1px solid var(--border);
}
.cta-band h2 { margin-bottom:1.5rem; }
.cta-band h2 em { color:var(--gold); font-style:italic; }
.cta-band > p {
  font-size:1rem; color:var(--white-dim);
  max-width:44ch; margin:0 auto 3rem;
  line-height:1.75;
}
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* === Footer === */
.footer {
  padding:5rem 5% 2.5rem;
  border-top:1px solid var(--border);
}
.footer-body {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:5rem;
  padding-bottom:4rem;
  border-bottom:1px solid var(--border);
}
.footer-brand h2 { font-size:2rem; margin-bottom:.4rem; }
.footer-brand h2 span { color:var(--gold); }
.footer-brand .label { margin:.6rem 0 1rem; }
.footer-brand p {
  font-size:.82rem; color:var(--white-dim);
  max-width:28ch; line-height:1.75;
}
.footer-col h5 {
  font-family:var(--font-label);
  font-size:.62rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1.5rem;
}
.footer-col li + li { margin-top:.75rem; }
.footer-col a {
  font-size:.82rem; color:var(--white-dim);
  transition:color .3s;
}
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  padding-top:2rem;
  display:flex; align-items:center;
  justify-content:space-between;
}
.footer-bottom p {
  font-family:var(--font-label);
  font-size:.65rem; letter-spacing:.1em;
  color:var(--white-dim);
}

/* === Page Hero (inner pages) === */
.page-hero {
  padding:14rem 5% 6rem;
  border-bottom:1px solid var(--border);
  position:relative; overflow:hidden;
}
.page-hero::after {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.05), transparent);
  pointer-events:none;
}

/* === Portfolio Page === */
.filter-row {
  display:flex; gap:.5rem;
  flex-wrap:wrap; margin-bottom:3rem;
}
.f-btn {
  font-family:var(--font-label);
  font-size:.62rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  padding:.55rem 1.3rem;
  border:1px solid var(--border);
  color:var(--white-dim);
  transition:border-color .3s, color .3s, background .3s;
}
.f-btn.on, .f-btn:hover {
  border-color:var(--gold);
  color:var(--gold);
  background:var(--gold-dim);
}

/* === Services Page === */
.svc-list { display:flex; flex-direction:column; gap:2px; margin-bottom:6rem; }
.svc-row {
  display:grid;
  grid-template-columns:2.5fr 1.2fr 1.5fr;
  gap:3rem; align-items:start;
  padding:3rem 2.5rem;
  background:var(--dark-1);
  border:1px solid transparent;
  transition:background .3s, border-color .3s;
}
.svc-row:hover { background:var(--dark-2); border-color:var(--border); }
.svc-row h3    { font-size:1.7rem; margin-bottom:.8rem; }
.svc-row p     { font-size:.85rem; color:var(--white-dim); line-height:1.75; }
.svc-row-price {
  font-family:var(--font-display);
  font-size:1.2rem; color:var(--gold); line-height:1.3;
}
.svc-row-includes { display:flex; flex-direction:column; gap:.5rem; }
.svc-row-includes li {
  font-size:.8rem; color:var(--white-dim);
  padding-bottom:.5rem;
  border-bottom:1px solid rgba(245,240,232,.06);
  display:flex; gap:.5rem;
}
.svc-row-includes li::before { content:'—'; color:var(--gold); font-size:.6rem; }

.rate-wrap {
  background:var(--dark-1);
  border:1px solid var(--border);
  overflow:hidden;
}
.rate-table { width:100%; border-collapse:collapse; }
.rate-table thead th {
  font-family:var(--font-label);
  font-size:.62rem; letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--gold); background:var(--dark-2);
  padding:1.2rem 2rem; text-align:left;
  border-bottom:1px solid var(--border);
}
.rate-table tbody td {
  padding:1.1rem 2rem;
  font-size:.88rem;
  border-bottom:1px solid rgba(245,240,232,.05);
  background:var(--dark-1);
}
.rate-table tbody td:last-child { color:var(--gold); font-weight:500; }
.rate-table tbody tr:hover td { background:var(--dark-2); }
.rate-table tfoot td {
  padding:1rem 2rem;
  font-size:.75rem; color:var(--white-dim);
  background:var(--dark-2);
  border-top:1px solid var(--border);
}

/* === About Page === */
.about-lead {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7rem; align-items:center;
  margin-bottom:7rem;
}
.about-lead-img {
  aspect-ratio:3/4; overflow:hidden;
  border:1px solid var(--border);
}
.about-lead-img img {
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .7s var(--ease-out);
}
.about-lead-img:hover img { transform:scale(1.04); }
.about-lead-text h2 { margin-bottom:2rem; }
.about-lead-text p  {
  font-size:.95rem; color:var(--white-dim);
  line-height:1.85; margin-bottom:1.2rem;
}

.gear-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2px; margin-top:3rem;
}
.gear-card {
  padding:2.5rem;
  background:var(--dark-1);
  border:1px solid var(--border);
  transition:border-color .3s;
}
.gear-card:hover { border-color:var(--gold); }
.gear-card .label { margin-bottom:.8rem; }
.gear-card h4  { font-size:1.2rem; margin-bottom:.6rem; }
.gear-card p   { font-size:.82rem; color:var(--white-dim); line-height:1.7; }

.ai-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px; margin-top:3rem;
}
.ai-card {
  padding:2.5rem;
  background:var(--dark-1);
  border:1px solid var(--border);
  transition:border-color .3s, background .3s;
}
.ai-card:hover { border-color:var(--gold); background:var(--dark-2); }
.ai-card .label { margin-bottom:.8rem; }
.ai-card h4 { font-size:1.15rem; margin-bottom:.5rem; }
.ai-card p  { font-size:.8rem; color:var(--white-dim); line-height:1.7; }

/* === Contact Page === */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:7rem; align-items:start;
}
.contact-info { display:flex; flex-direction:column; gap:2.5rem; }
.contact-info-row {
  padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}
.contact-info-row h5 {
  font-family:var(--font-label);
  font-size:.62rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.6rem;
}
.contact-info-row p,
.contact-info-row a {
  font-size:1rem; color:var(--white);
  transition:color .3s;
}
.contact-info-row a:hover { color:var(--gold); }
.contact-form { display:flex; flex-direction:column; gap:1.4rem; }
.f-group { display:flex; flex-direction:column; gap:.45rem; }
.f-group label {
  font-family:var(--font-label);
  font-size:.6rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold);
}
.f-group input,
.f-group textarea,
.f-group select {
  background:var(--dark-1);
  border:1px solid var(--border);
  color:var(--white);
  padding:.9rem 1.1rem;
  font-family:var(--font-body);
  font-size:.9rem; outline:none;
  transition:border-color .3s;
  appearance:none;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus { border-color:var(--gold); }
.f-group input::placeholder,
.f-group textarea::placeholder { color:rgba(245,240,232,.25); }
.f-group textarea { min-height:140px; resize:vertical; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }

/* === Animations === */
.reveal {
  opacity:0;
  transform:translateY(32px);
  transition:opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.up { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; }
.d2 { transition-delay:.2s; }
.d3 { transition-delay:.3s; }
.d4 { transition-delay:.4s; }
.d5 { transition-delay:.5s; }

/* === Responsive === */
@media(max-width:1280px){
  .services-preview { grid-template-columns:repeat(2,1fr); }
  .footer-body       { grid-template-columns:1.5fr 1fr 1fr; gap:3rem; }
  .footer-body > :last-child { grid-column:1/-1; }
}
@media(max-width:1024px){
  .portfolio-masonry { columns:2; }
  .diff-grid          { grid-template-columns:1fr 1fr; }
  .clients-grid       { grid-template-columns:repeat(2,1fr); }
  .stats-grid         { grid-template-columns:repeat(2,1fr); }
  .stat-item          { border-right:none; border-bottom:1px solid var(--border); }
  .about-lead         { grid-template-columns:1fr; gap:3rem; }
  .contact-grid       { grid-template-columns:1fr; gap:4rem; }
  .svc-row            { grid-template-columns:1fr; gap:1.5rem; }
}
@media(max-width:768px){
  section  { padding:5rem 5%; }
  .nav-links, .nav-book { display:none; }
  .nav-burger { display:flex; }
  .services-preview { grid-template-columns:1fr; }
  .portfolio-masonry{ columns:2; }
  .diff-grid         { grid-template-columns:1fr; }
  .clients-grid      { grid-template-columns:1fr 1fr; }
  .ai-grid           { grid-template-columns:1fr; }
  .gear-grid         { grid-template-columns:1fr; }
  .footer-body       { grid-template-columns:1fr; gap:2.5rem; }
  .footer-bottom     { flex-direction:column; gap:.8rem; text-align:center; }
  .f-row             { grid-template-columns:1fr; }
  .section-head      { flex-direction:column; align-items:flex-start; gap:1rem; }
  .cta-btns          { flex-direction:column; align-items:center; }
}
@media(max-width:480px){
  .portfolio-masonry{ columns:1; }
  .stats-grid        { grid-template-columns:1fr 1fr; }
}

/* ============================================================
   CAPTURE STUDIO — Premium Effects Layer
   GSAP · VanillaTilt · Grain · Magnetic · 3D · Loader
   ============================================================ */

/* ── Page Loader ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  pointer-events: none;
}
#loader.done { pointer-events: none; }
.loader-logo {
  font-family: var(--font-label);
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}
.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: loaderFill 1.4s var(--ease-out) forwards;
}
@keyframes loaderFill { to { transform: scaleX(1); } }

/* ── Film Grain Overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 8000;
  pointer-events: none;
  opacity: .032;
  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");
  background-size: 180px 180px;
  background-repeat: repeat;
  animation: grainShift 0.4s steps(1) infinite;
}
@keyframes grainShift {
  0%  { background-position: 0 0; }
  25% { background-position: 60px 40px; }
  50% { background-position: -30px 80px; }
  75% { background-position: 90px -20px; }
}

/* ── Enhanced Cursor ────────────────────────────────────── */
.cursor {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201,168,76,.3);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9997;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
}
.cursor.expand       { width: 12px; height: 12px; background: var(--gold-light); }
.cursor-ring.expand  { width: 60px; height: 60px; border-color: var(--gold); }

/* ── 3D Portfolio Cards ─────────────────────────────────── */
.portfolio-masonry { perspective: 1200px; }
.p-item {
  transform-style: preserve-3d;
  will-change: transform;
  cursor: none;
}
.p-item img, .p-item video {
  transition: transform .6s var(--ease-out);
}
.p-item:hover img,
.p-item:hover video { transform: scale(1.04); }

/* ── Shimmer on gold CTA buttons ───────────────────────── */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease-out);
}
.btn-gold:hover::after { left: 160%; }

/* ── Magnetic buttons ───────────────────────────────────── */
.btn, .nav-book, .f-btn {
  transition: transform .3s var(--ease-out), background .3s, color .3s, border-color .3s;
}

/* ── Gold shimmer text ──────────────────────────────────── */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 80%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Glitch logo effect ─────────────────────────────────── */
.nav-logo:hover {
  animation: glitch .4s steps(2) both;
}
@keyframes glitch {
  0%  { clip-path: inset(0 0 85% 0); transform: translate(-2px, 0); }
  20% { clip-path: inset(40% 0 40% 0); transform: translate(2px, 0); color: var(--gold); }
  40% { clip-path: inset(70% 0 10% 0); transform: translate(-1px, 0); }
  60% { clip-path: inset(0); transform: translate(0); }
  80% { clip-path: inset(20% 0 50% 0); transform: translate(1px, 0); }
  100%{ clip-path: inset(0); transform: translate(0); color: var(--white); }
}

/* ── Hero headline split animation ─────────────────────── */
.hero-split-word {
  display: inline-block;
  overflow: hidden;
}
.hero-split-word span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

/* ── Parallax sections ──────────────────────────────────── */
.parallax-section { will-change: transform; }

/* ── Service card 3D lift ───────────────────────────────── */
.svc-card {
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.svc-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.35);
}

/* ── Differentiator card hover ──────────────────────────── */
.diff-card {
  transition: transform .4s var(--ease-out), background .3s, border-color .3s;
  border: 1px solid transparent;
}
.diff-card:hover {
  transform: translateY(-4px);
  background: var(--dark-2);
  border-color: var(--border);
}

/* ── Client chip hover ──────────────────────────────────── */
.client-chip {
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.client-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,.4);
  background: var(--dark-2);
}

/* ── Scroll progress bar ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9990;
  transition: width .1s linear;
  box-shadow: 0 0 8px var(--gold);
}

/* ── Image hover reveal overlay ────────────────────────── */
.p-overlay {
  background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.3) 60%, transparent 100%);
  transition: opacity .4s var(--ease-out);
}
.p-item:hover .p-overlay { opacity: 1; }

/* ── Stats number glow on hover ─────────────────────────── */
.stat-item:hover .stat-num {
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201,168,76,.4);
  transition: color .3s, text-shadow .3s;
}

/* ── Marquee speed boost on hover ──────────────────────── */
.marquee-inner:hover { animation-play-state: paused; }

/* ── Filter button active glow ──────────────────────────── */
.f-btn.on {
  box-shadow: 0 0 16px rgba(201,168,76,.25);
}

/* ── Nav blur glass on scroll ──────────────────────────── */
.nav.stuck {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10,10,10,.88);
  border-bottom: 1px solid var(--border);
}

/* ── Smooth scroll (Lenis override) ────────────────────── */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ── Hero grid animated lines ───────────────────────────── */
.hero-grid-lines {
  background-image:
    linear-gradient(rgba(201,168,76,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  to { background-position: 80px 80px; }
}
