/* ═══════════════════════════════════════════════════════════
   AIRFRAME MEDIA — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #06060A;
  --surface:   #0C0C15;
  --gold:      #C4A24A;
  --gold-dim:  rgba(196, 162, 74, 0.18);
  --gold-glow: rgba(196, 162, 74, 0.05);
  --white:     #F0EDE6;
  --muted:     #6A6878;
  --border:    rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  cursor: none;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ──────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -60px;
  width: calc(100% + 120px);
  height: calc(100% + 120px);
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 900;
  animation: grain 0.5s steps(2) infinite;
}

@keyframes grain {
  0%   { transform: translate(0px,   0px); }
  25%  { transform: translate(-3px,  2px); }
  50%  { transform: translate( 2px, -3px); }
  75%  { transform: translate(-1px,  3px); }
  100% { transform: translate( 3px, -1px); }
}

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
  opacity: 0;
}

.cursor-ring.active   { opacity: 1; }
.cursor-ring.hovering { width: 56px; height: 56px; background: var(--gold-dim); }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot.active { opacity: 1; }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 2.2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(6, 6, 10, 0.88);
  backdrop-filter: blur(16px) saturate(1.5);
  padding: 1.4rem 3.5rem;
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}

.nav-logo em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}

.nav-links a {
  font-size: clamp(0.82rem, 0.85vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover          { color: var(--white); }
.nav-links a:hover::after   { width: 100%; }
.nav-links .cta-link        { color: var(--gold) !important; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: heroZoom 14s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  animation: heroZoom 14s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 70% at 50% 110%, rgba(196,162,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 10% 90%, rgba(20,30,70,0.2) 0%, transparent 60%),
    #080810;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.02); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6,6,10,0.55) 0%,
      rgba(6,6,10,0.10) 35%,
      rgba(6,6,10,0.65) 75%,
      rgba(6,6,10,1.00) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.hero-eyebrow {
  font-size: clamp(0.75rem, 0.9vw, 1.1rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-title-line         { display: block; overflow: hidden; }
.hero-title-line span    { display: block; opacity: 0; transform: translateY(100%); }

.hero-title-line:nth-child(1) span {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}
.hero-title-line:nth-child(2) span {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.72s forwards;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.45);
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
  display: flex;
  align-items: center;
  gap: 1.2em;
}

.hero-tagline .sep {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.6s forwards;
  margin-top: 0.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(0.85rem, 0.9vw, 1.1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-fill             { background: var(--gold); color: var(--bg); }
.btn-fill::before     { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); transform: translateX(-100%); transition: transform 0.35s ease; }
.btn-fill:hover::before { transform: translateX(0); }

.btn-outline          { border: 1px solid rgba(255,255,255,0.2); color: rgba(240,237,230,0.6); }
.btn-outline:hover    { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 2.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s ease 2.2s forwards;
}

.scroll-hint span {
  font-size: clamp(0.65rem, 0.7vw, 0.85rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 1; }
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-section { display: none; }

/* ── SECTION DIVIDER (replaces marquee) ─────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.6;
}

/* ── SECTION SHARED ─────────────────────────────────────── */
.section-label {
  font-size: clamp(0.72rem, 0.75vw, 0.95rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 1.8rem; height: 1px;
  background: var(--gold);
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ── SERVICES ───────────────────────────────────────────── */
.services-wrap {
  padding: 8rem 3.5rem;
  max-width: 1500px;
  margin: 0 auto;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
}

.services-sub {
  font-size: clamp(0.85rem, 1vw, 1.15rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

/* ── SERVICE CARDS ──────────────────────────────────────── */
.scard {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}

.scard-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(1) saturate(1);
}

.scard:hover .scard-img {
  transform: scale(1.15);
  filter: brightness(0.5) saturate(0.7);
}

.scard-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,6,10,0.6) 0%, transparent 60%, rgba(6,6,10,0.3) 100%),
    linear-gradient(to top, rgba(6,6,10,0.95) 0%, transparent 55%);
}

.scard-body {
  position: absolute;
  inset: 0;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scard-num {
  font-size: clamp(0.6rem, 0.65vw, 0.8rem);
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.scard-name {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.scard-desc {
  font-size: clamp(0.85rem, 0.95vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 237, 230, 0.65);
  line-height: 1.65;
  max-width: 32ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scard:hover .scard-desc { opacity: 1; transform: translateY(0); }

.scard-link {
  position: absolute;
  top: 2.4rem; right: 2.4rem;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75) rotate(-45deg);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
  text-decoration: none;
}

.scard:hover .scard-link {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  border-color: var(--gold);
}

.scard-link svg { stroke: var(--gold); fill: none; }

/* ── DIVIDER LINE ───────────────────────────────────────── */
.divider-line {
  width: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 3.5rem;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.divider-line.in { width: calc(100% - 7rem); }

/* ── QUOTE SECTION ──────────────────────────────────────── */
.quote-section {
  padding: 10rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.quote-main {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5.5rem, 18vw, 18rem);
  line-height: 0.82;
  color: var(--white);
  display: block;
  letter-spacing: -0.025em;
  position: relative;
}

.quote-sub {
  font-family: 'Syncopate', sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.8vw, 1.5rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1rem;
}

/* ── STATS ──────────────────────────────────────────────── */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.stat-item {
  padding: 2.5rem 3.5rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}

.stat-item:hover { background: #10101A; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── CLIENTS MARQUEE ────────────────────────────────────── */
.clients-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.clients-label {
  font-size: clamp(0.6rem, 0.7vw, 0.8rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 5rem;
  animation: clientsScroll 50s linear infinite;
}

.clients-track img {
  height: 43px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.4s ease;
  display: block;
}

.clients-track img:hover { opacity: 0.9; }

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  padding: 8rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}

.cta-left h2 {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 14ch;
}

.cta-left h2 em { font-style: normal; color: var(--gold); }

.cta-left p {
  margin-top: 1.5rem;
  font-size: clamp(0.9rem, 1.1vw, 1.3rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.8;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-brand {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.footer-brand em { color: var(--gold); font-style: normal; }

.footer-motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  color: var(--muted);
}

.footer-links { display: flex; gap: 2rem; }

.footer-links a {
  font-size: clamp(0.72rem, 0.8vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }


/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS — max-width: 768px
   ═══════════════════════════════════════════════════════════ */

/* Hamburger hidden on desktop */
.nav-hamburger { display: none; }

@media (max-width: 768px) {

  /* ── CURSOR ─────────────────────────────────────────────── */
  .cursor-ring, .cursor-dot { display: none; }
  body { cursor: auto; }

  /* ── NAV ────────────────────────────────────────────────── */
  nav { padding: 1.4rem 1.5rem; }
  nav.scrolled { padding: 1.2rem 1.5rem; }

  .nav-logo {
    font-size: 0.72rem;
    opacity: 1;
    animation: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    display: none;
    z-index: 550;
    animation: none;
    opacity: 1;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--white);
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 600;
  }

  .nav-hamburger span {
    width: 24px; height: 1.5px;
    background: var(--white);
    display: block;
    transition: all 0.3s ease;
  }

  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 6px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -6px); }

  /* ── HERO ───────────────────────────────────────────────── */
  .hero-content { padding: 0 1.5rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── SERVICES (homepage) ────────────────────────────────── */
  .services-wrap { padding: 4rem 1.5rem; }
  .services-head { flex-direction: column; margin-bottom: 2.5rem; }
  .services-sub   { text-align: left; max-width: 100%; }
  .services-grid  { grid-template-columns: 1fr; }
  .scard          { aspect-ratio: 16/9; }

  /* ── STATS ──────────────────────────────────────────────── */
  .stats-section {
    grid-template-columns: 1fr;
    padding: 0;
    background: var(--surface);
  }
  .stat-item { padding: 2rem 1.5rem; }

  /* ── QUOTE ──────────────────────────────────────────────── */
  .quote-section { padding: 5rem 1.5rem; }

  /* ── DIVIDER ────────────────────────────────────────────── */
  .divider-line       { margin: 0 1.5rem; }
  .divider-line.in    { width: calc(100% - 3rem); }

  /* ── CTA ────────────────────────────────────────────────── */
  .cta-section {
    padding: 4rem 1.5rem;
    flex-direction: column;
  }

  /* ── CLIENTS MARQUEE ────────────────────────────────────── */
  .clients-section { padding: 3rem 0; }
  .clients-track img { height: 32px; }

  /* ── FOOTER ─────────────────────────────────────────────── */
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* ── PAGE HEADERS (inner pages) ─────────────────────────── */
  .page-header { padding: 9rem 1.5rem 3rem; }

  /* ── SERVICOS PAGE ──────────────────────────────────────── */
  .service-block {
    grid-template-columns: 1fr;
    direction: ltr !important;
    min-height: auto;
  }
  .service-img { aspect-ratio: 16/9; }
  .service-content {
    padding: 2.5rem 1.5rem;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--border);
  }

  /* ── SOBRE PAGE ─────────────────────────────────────────── */
  .bio-wrap { grid-template-columns: 1fr; }
  .bio-photo { min-height: 300px; }
  .bio-text { padding: 3rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-section { padding: 4rem 1.5rem; }
  .about-cta { padding: 4rem 1.5rem; flex-direction: column; }
  .about-quote { padding: 5rem 1.5rem; }

  /* ── CONTACTO PAGE ──────────────────────────────────────── */
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info {
    padding: 3rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .contact-form-wrap { padding: 3rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-quote { margin-top: 2rem; }

  /* ── TIMELAPSE PAGE ─────────────────────────────────────── */
  .tl-hero-content { padding: 0 1.5rem; text-align: center; }
  .tl-intro { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .tl-specs { grid-template-columns: repeat(2, 1fr); }
  .tl-features { padding: 4rem 1.5rem; }
  .tl-features-grid { grid-template-columns: 1fr; }
  .tl-how { padding: 4rem 1.5rem; }
  .tl-steps { grid-template-columns: 1fr; gap: 2rem; }
  .tl-cta { padding: 5rem 1.5rem; }
  .tl-videos { padding: 4rem 1.5rem; }
  .tl-video-hero-wrap { width: 100%; }
  .tl-video-grid { grid-template-columns: 1fr; }

  /* ── PORTFOLIO PAGE ─────────────────────────────────────── */
  .filter-bar { padding: 1.5rem 1rem; }
  .filter-btn  { padding: 0.6rem 1rem; font-size: 0.7rem; letter-spacing: 0.18em; }
  .portfolio-grid { columns: 2; column-gap: 2px; padding: 2px; }
  .portfolio-video-pair { flex-direction: column; width: 100%; }
  .portfolio-video-solo { width: 100%; }
  .portfolio-cta { padding: 4rem 1.5rem; flex-direction: column; }

  /* ── HERO TITLE SIZE FIX ────────────────────────────────── */
  .hero-title { font-size: 11vw !important; }
}
