/* ============================================================
   ROJAS PRODUCTIONS — Premium Stylesheet
   ============================================================ */

@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;600;700&display=swap');

:root {
  --black:      #000000;
  --off-black:  #080808;
  --dark:       #0f0f0f;
  --dark-2:     #141414;
  --dark-3:     #1c1c1c;
  --dark-4:     #242424;
  --mid:        #444444;
  --muted:      #6a6a6a;
  --light-muted:#a0a0a0;
  --off-white:  #f2ede8;
  --white:      #ffffff;
  --gold:       #c8a96e;
  --gold-light: #d6bc88;
  --gold-dark:  #a8894e;
  --gold-faint: rgba(200,169,110,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height:      80px;
  --section-pad:     130px;
  --container-max:   1420px;
  --container-gutter: 48px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --t-fast:  0.18s ease;
  --t-med:   0.38s ease;
  --t-slow:  0.8s var(--ease-out);
}

/* ── 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);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }
ul { list-style: none; }

/* ── Page loader ────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.loader-wordmark span { color: var(--gold); }

.loader-line-wrap {
  width: 120px;
  height: 1px;
  background: var(--dark-4);
  overflow: hidden;
}
.loader-line {
  height: 100%;
  background: var(--gold);
  width: 0%;
  animation: loaderProgress 1.2s var(--ease-out) forwards;
}
@keyframes loaderProgress { to { width: 100%; } }

/* ── Custom cursor ──────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.2s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,169,110,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  * { cursor: auto !important; }
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--t-med), border-color var(--t-med), backdrop-filter var(--t-med);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255,255,255,0.05);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--t-fast), transform var(--t-fast);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-menu-btn span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-in-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--white);
  letter-spacing: -0.01em;
  padding: 12px 0;
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 32px;
  padding: 16px 44px !important;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal-l.visible { opacity: 1; transform: translateX(0); }

.reveal-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal-r.visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── Typography helpers ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin-top: 24px;
}
.section-header { margin-bottom: 72px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 42px;
  transition: transform var(--t-fast);
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.btn-gold:hover::after { transform: translateX(0); }
.btn-gold .btn-text { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-outline:hover { border-color: var(--white); }

.btn-arrow { font-size: 1rem; font-weight: 400; }

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

/* Animated background (cinematic atmosphere fallback) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200,169,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(100,120,180,0.05) 0%, transparent 55%),
    linear-gradient(160deg, #080808 0%, #040404 50%, #080808 100%);
  animation: heroAtmosphere 12s ease-in-out infinite alternate;
}
@keyframes heroAtmosphere {
  0%   { filter: brightness(1); }
  100% { filter: brightness(1.08); }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  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='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 1060px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s 0.4s var(--ease-out) forwards;
}
.hero-eyebrow-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.1s 0.6s var(--ease-out) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 56px;
  opacity: 0;
  animation: fadeUp 1.1s 0.8s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s 1s var(--ease-out) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards;
}
.hero-scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: horizontal-tb;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.4; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ── Section base ───────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

/* ── Work showcase ──────────────────────────────────────────── */
.work-section { background: var(--off-black); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.work-item:nth-child(2) { grid-column: span 5; aspect-ratio: 9/11; }
.work-item:nth-child(3) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(4) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4/5; }
.work-item:nth-child(6) { grid-column: span 12; aspect-ratio: 21/8; }

.work-bg {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--ease-out);
}
.work-item:hover .work-bg { transform: scale(1.06); }

.work-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.work-item:hover .work-veil { opacity: 1; }

.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
}
.work-item:hover .work-info { opacity: 1; transform: translateY(0); }

.work-cat {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.work-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.work-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
  width: 60px; height: 60px;
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med), transform var(--t-med);
}
.work-item:hover .work-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.work-play svg { width: 18px; height: 18px; fill: var(--white); margin-left: 3px; }

/* Video inside work items */
.work-item video.work-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Work bg gradients */
.wb1 { background: linear-gradient(145deg, #0d1829 0%, #0a1220 40%, #0f2040 100%); }
.wb2 { background: linear-gradient(145deg, #1a0d0d 0%, #281510 50%, #1a0808 100%); }
.wb3 { background: linear-gradient(145deg, #0d1510 0%, #0a1a0d 50%, #111a10 100%); }
.wb4 { background: linear-gradient(145deg, #180d1a 0%, #1a0f1c 50%, #0f0a10 100%); }
.wb5 { background: linear-gradient(145deg, #141008 0%, #1c160a 50%, #100d06 100%); }
.wb6 { background: linear-gradient(145deg, #100808 0%, #1c0e0e 40%, #280d0d 100%); }

/* ── Who We Serve ───────────────────────────────────────────── */
.serve-section { background: var(--black); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.serve-card {
  padding: 52px 28px 48px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background var(--t-med), transform var(--t-med);
  cursor: default;
}
.serve-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.serve-card:hover { background: var(--dark-2); transform: translateY(-5px); }
.serve-card:hover::after { transform: scaleX(1); }

.serve-icon {
  font-size: 2rem;
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}
.serve-card h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.serve-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Results ────────────────────────────────────────────────── */
.results-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(200,169,110,0.055) 0%, transparent 55%);
  pointer-events: none;
}
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.results-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--light-muted);
  margin: 36px 0 56px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.stat {
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.stat-n {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-n span { color: var(--gold); }
.stat-l {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px;
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color var(--t-med), transform var(--t-med);
}
.value-item:hover { border-color: rgba(200,169,110,0.35); transform: translateX(6px); }

.value-item-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.value-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--off-black); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 72px;
}
.testi-card {
  padding: 52px 44px;
  background: var(--dark);
  transition: background var(--t-med);
}
.testi-card:hover { background: var(--dark-2); }

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}
.testi-stars span {
  color: var(--gold);
  font-size: 0.85rem;
}
.testi-body {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--off-white);
  margin-bottom: 40px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  padding: 160px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,110,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title { max-width: 820px; margin: 0 auto 20px; }
.cta-section .section-subtitle { margin: 0 auto 56px; text-align: center; }
.cta-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 56px;
}
.cta-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-loc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 90px 0 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  display: block;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 270px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy { font-size: 0.78rem; color: var(--muted); }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 210px 0 110px;
  background: var(--off-black);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(200,169,110,0.25) 50%, transparent 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(200,169,110,0.055) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  margin: 16px 0 32px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-visual { position: relative; }
.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #0d1829 0%, #0a1220 60%, #081428 100%);
  position: relative;
  overflow: hidden;
}
.story-img-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px; height: 180px;
  border: 1px solid rgba(200,169,110,0.25);
  background: rgba(200,169,110,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.story-lead {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--light-muted);
  margin: 36px 0 28px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.story-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 22px;
}

.about-values {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 72px;
}
.value-card {
  padding: 60px 48px;
  background: var(--off-black);
  transition: transform var(--t-med);
}
.value-card:hover { transform: translateY(-4px); }
.value-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 400;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.78;
}

.about-mission {
  padding: var(--section-pad) 0;
  background: var(--off-black);
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission-quote em { color: var(--gold); }
.mission-attr {
  text-align: center;
  margin-top: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Services Page ──────────────────────────────────────────── */
.services-section { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 80px;
}
.svc-card {
  padding: 64px 56px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  transition: background var(--t-med);
}
.svc-card:hover { background: var(--dark-2); }
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.svc-card > p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.svc-outcomes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-outcomes li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.83rem;
  color: var(--light-muted);
}
.svc-outcomes li::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.services-process {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 72px;
}
.process-step {
  padding: 48px 36px;
  background: var(--off-black);
  position: relative;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(200,169,110,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Portfolio Page ─────────────────────────────────────────── */
.portfolio-section { background: var(--black); padding-top: 60px; }

.portfolio-filters {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 12px 26px;
  background: var(--dark);
  color: var(--muted);
  border: none;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.filter-btn:hover { background: var(--dark-3); color: var(--white); }
.filter-btn.active { background: var(--gold); color: var(--black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  transition: opacity 0.4s ease;
}
.port-item.hidden { opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.port-bg {
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-out);
}
.port-item:hover .port-bg { transform: scale(1.07); }
.port-veil {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--t-med);
}
.port-item:hover .port-veil { opacity: 1; }
.port-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  padding: 0 20px;
}
.port-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.port-view {
  width: 50px; height: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.port-view svg { width: 16px; height: 16px; fill: var(--white); margin-left: 2px; }

/* Portfolio bg gradients */
.pb1  { background: linear-gradient(145deg, #0d1829 0%, #0a1220 60%, #081428 100%); }
.pb2  { background: linear-gradient(145deg, #18100a 0%, #221408 60%, #180e06 100%); }
.pb3  { background: linear-gradient(145deg, #1a0d0d 0%, #281510 50%, #1a0808 100%); }
.pb4  { background: linear-gradient(145deg, #0d150a 0%, #111c0d 60%, #0d160a 100%); }
.pb5  { background: linear-gradient(145deg, #180d1a 0%, #1c0f1e 50%, #0f0a10 100%); }
.pb6  { background: linear-gradient(145deg, #141008 0%, #1e160a 50%, #100d06 100%); }
.pb7  { background: linear-gradient(145deg, #0d1220 0%, #0d1420 60%, #0d1830 100%); }
.pb8  { background: linear-gradient(145deg, #1a1008 0%, #241408 50%, #180e06 100%); }
.pb9  { background: linear-gradient(145deg, #10080d 0%, #180a12 50%, #100810 100%); }
.pb10 { background: linear-gradient(145deg, #0a1218 0%, #0d1820 60%, #0a1220 100%); }
.pb11 { background: linear-gradient(145deg, #1a0a0a 0%, #240c0c 50%, #1a0808 100%); }
.pb12 { background: linear-gradient(145deg, #141210 0%, #1c180e 50%, #100e08 100%); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-wrap {
  width: 90vw;
  max-width: 1100px;
  position: relative;
}
.lightbox-media {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.lightbox-media-inner {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  flex-direction: column;
  gap: 16px;
}
.lightbox-play-icon {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-play-icon svg { width: 22px; height: 22px; fill: rgba(255,255,255,0.6); margin-left: 4px; }
.lightbox-close {
  position: absolute;
  top: -52px; right: 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-meta {
  padding: 24px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.lightbox-cat {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.contact-info-wrap {
  position: sticky;
  top: 120px;
}
.contact-info-wrap .section-subtitle { max-width: 100%; }
.contact-details {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-detail { display: flex; gap: 18px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,169,110,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-detail p,
.contact-detail a {
  font-size: 0.93rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 1.55;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.form-group {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: border-color var(--t-fast);
}
.form-group:first-child,
.form-row:first-child .form-group { border-top: 1px solid rgba(255,255,255,0.07); }
.form-row .form-group:first-child { padding-right: 28px; }
.form-row .form-group:last-child { padding-left: 28px; border-left: 1px solid rgba(255,255,255,0.07); }
.form-group:focus-within { border-color: var(--gold); }
.form-group label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 300;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.12); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: none; min-height: 130px; line-height: 1.6; }

.form-footer {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.65;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root {
    --section-pad: 100px;
    --container-gutter: 36px;
  }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .results-layout { gap: 72px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root {
    --section-pad: 80px;
    --container-gutter: 28px;
  }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .work-item:nth-child(6) { grid-column: span 2; aspect-ratio: 16/7; }

  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid > :last-child { grid-column: span 2; }

  .results-layout { grid-template-columns: 1fr; gap: 60px; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-locations { flex-wrap: wrap; gap: 20px; }

  .story-layout { grid-template-columns: 1fr; gap: 56px; }
  .story-img-badge { right: 0; bottom: -20px; width: 140px; height: 140px; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .contact-info-wrap { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > :first-child { grid-column: span 2; }
}

@media (max-width: 600px) {
  :root { --container-gutter: 20px; }

  .hero-title { letter-spacing: -0.02em; }
  .hero-actions { flex-direction: column; align-items: center; }
  .work-grid { grid-template-columns: 1fr; }
  .work-item:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .work-item:nth-child(6) { aspect-ratio: 4/3; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-grid > :last-child { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group:first-child { padding-right: 0; }
  .form-row .form-group:last-child { padding-left: 0; border-left: none; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .cta-locations { flex-direction: column; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 44px 32px; }
}
