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

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

:root {
  --bg-void: #060606;
  --bg-primary: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #181818;
  --bg-card: #141414;
  --text-primary: #f2ede6;
  --text-secondary: #a89f94;
  --text-muted: #5a5550;
  --text-white: #ffffff;
  --gold: #c8992a;
  --gold-light: #e8c060;
  --gold-dim: rgba(200, 153, 42, 0.12);
  --gold-border: rgba(200, 153, 42, 0.25);
  --border: rgba(242, 237, 230, 0.07);
  --border-hover: rgba(242, 237, 230, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-pad: clamp(80px, 12vw, 160px);
  --gutter: clamp(24px, 5vw, 80px);
  --max-width: 1440px;
}

html { scroll-behavior: smooth; }
body { background: var(--bg-void); color: var(--text-primary); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; cursor: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: var(--font-body); }
::selection { background: var(--gold-dim); color: var(--gold-light); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.t-display { font-family: var(--font-display); font-weight: 200; font-size: clamp(4rem, 10vw, 9rem); line-height: 0.92; letter-spacing: -0.02em; }
.t-heading { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.0; }
.t-subheading { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.1; }
.t-label { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.t-body { font-family: var(--font-body); font-weight: 300; font-size: clamp(0.95rem, 1.2vw, 1.05rem); line-height: 1.85; color: var(--text-secondary); }
.t-nav { font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.t-italic { font-style: italic; }
.t-gold { color: var(--gold-light); }
.t-white { color: var(--text-white); }
.t-muted { color: var(--text-muted); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.full-screen { min-height: 100vh; display: flex; align-items: center; }
.grid-line-bg {
  background-image:
    repeating-linear-gradient(90deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 100px),
    repeating-linear-gradient(0deg, var(--border) 0, var(--border) 1px, transparent 1px, transparent 100px);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }
.reveal-stagger.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.72s; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border: 1px solid;
  cursor: none;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; transform: translateX(-101%); transition: transform 0.4s var(--ease); }
.btn:hover::before { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }
.btn-gold { background: var(--gold); color: var(--bg-void); border-color: var(--gold); }
.btn-gold::before { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-hover); }
.btn-outline::before { background: rgba(255,255,255,0.05); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ─── PAGE LOADER ────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-void);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease);
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-text {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: loaderPulse 1.2s var(--ease) infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.3; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1); }
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.cursor-ring .cursor-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
body.cursor-link .cursor-dot { width: 10px; height: 10px; }
body.cursor-link .cursor-ring { width: 56px; height: 56px; background: var(--gold-dim); }
body.cursor-view .cursor-ring { width: 72px; height: 72px; }
body.cursor-view .cursor-ring .cursor-label { opacity: 1; }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--text-primary); letter-spacing: 0.05em; }
.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-primary); position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold-light); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 4px; cursor: none; }
.nav-hamburger span { display: block; width: 26px; height: 1px; background: var(--text-primary); transition: all 0.4s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── NAV OVERLAY ────────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  background: var(--bg-void);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-inner { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.nav-overlay-link {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--text-primary); text-decoration: none;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.nav-overlay.open .nav-overlay-link:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.10s; }
.nav-overlay.open .nav-overlay-link:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.17s; }
.nav-overlay.open .nav-overlay-link:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.24s; }
.nav-overlay.open .nav-overlay-link:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.31s; }
.nav-overlay.open .nav-overlay-link:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.38s; }
.nav-overlay-link:hover { color: var(--gold-light); }
.nav-overlay-contact {
  margin-top: 40px; display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transition: opacity 0.5s var(--ease) 0.5s;
}
.nav-overlay.open .nav-overlay-contact { opacity: 1; }
.nav-overlay-contact a {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text-muted); text-decoration: none; transition: color 0.3s;
}
.nav-overlay-contact a:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to bottom, transparent 50%, var(--bg-void) 100%),
    linear-gradient(to right, rgba(6,6,6,0.6) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 10; padding-left: var(--gutter); max-width: 800px; }
.hero-label { display: block; margin-bottom: 28px; clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease) 0.5s; }
.hero-label.visible { clip-path: inset(0 0% 0 0); }
.hero-heading {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.88; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero-sub { margin-bottom: 48px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll-line { width: 1px; height: 60px; background: var(--gold); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity:1; } 50% { transform: scaleY(0.3); opacity:0.3; } }
.hero-scroll-text {
  font-family: var(--font-body); font-size: 9px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl;
}
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(6,6,6,0.6); backdrop-filter: blur(8px);
  padding: 16px var(--gutter); display: flex; align-items: center; gap: 24px;
}
.hero-project-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 300;
  letter-spacing: 0.15em; color: var(--text-muted); flex-shrink: 0;
}
.hero-progress { flex: 1; max-width: 160px; height: 1px; background: var(--border); position: relative; }
.hero-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--gold); width: 14%; transition: width 0.6s var(--ease);
}
.hero-side-text {
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: center;
  z-index: 10; font-family: var(--font-body); font-size: 9px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}

/* ─── MANIFESTO ──────────────────────────────────────────────── */
.manifesto { background: var(--bg-void); min-height: 100vh; display: flex; align-items: center; }
.manifesto-inner { width: 100%; max-width: 900px; }
.manifesto-text-wrap { position: relative; min-height: 1.1em; margin-bottom: 40px; }
.manifesto-phrase {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92; letter-spacing: -0.02em; color: var(--text-white);
  position: absolute; top: 0; left: 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
.manifesto-phrase.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.manifesto-phrase.exit { opacity: 0; transform: translateY(-24px); }
.manifesto-rule { width: 80px; height: 1px; background: var(--gold); margin: 40px 0; }
.manifesto-body { max-width: 560px; }

/* ─── SCROLL GALLERY ─────────────────────────────────────────── */
.gallery-panel {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end; cursor: none;
}
.gallery-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-attachment: fixed;
  transition: transform 0.1s linear;
}
.gallery-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,6,6,0.85) 0%, rgba(6,6,6,0.3) 60%, transparent 100%);
  z-index: 1;
}
.gallery-panel-content { position: relative; z-index: 2; padding: 0 var(--gutter) 80px; max-width: 700px; }
.gallery-panel-content .t-label { margin-bottom: 16px; display: block; }
.gallery-panel-content .t-display { margin-bottom: 16px; }
.gallery-panel-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--gold-border); padding-bottom: 4px;
  margin-top: 24px; text-decoration: none;
  transition: gap 0.3s var(--ease), border-color 0.3s;
}
.gallery-panel-link:hover { gap: 20px; border-color: var(--gold); }
.gallery-panel-link .arrow { transition: transform 0.3s var(--ease); }
.gallery-panel-link:hover .arrow { transform: translateX(6px); }
.gallery-panel-number {
  position: absolute; right: 40px; bottom: 40px; z-index: 2;
  font-family: var(--font-display); font-weight: 200; font-size: 8rem;
  color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none;
}

/* ─── SERVICES LIST (homepage) ───────────────────────────────── */
.services-list { background: var(--bg-surface); }
.services-list-header { padding: var(--section-pad) var(--gutter) 0; max-width: var(--max-width); margin: 0 auto; }
.services-rows { margin-top: 48px; }
.service-row {
  display: flex; align-items: center;
  padding: 28px var(--gutter); border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit; position: relative;
  transition: background 0.5s var(--ease); overflow: hidden; gap: 0;
}
.service-row::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.4s var(--ease);
}
.service-row:hover::before { height: 100%; }
.service-row:hover { background: var(--bg-elevated); }
.service-row-num {
  font-family: var(--font-display); font-weight: 600; font-size: 5rem;
  color: rgba(200,153,42,0.1); line-height: 1; flex-shrink: 0; width: 100px;
  transition: color 0.4s;
}
.service-row:hover .service-row-num { color: rgba(200,153,42,0.25); }
.service-row-name {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-primary); flex: 1; margin-left: 16px; transition: color 0.4s;
}
.service-row:hover .service-row-name { color: var(--gold-light); }
.service-row-desc {
  font-family: var(--font-body); font-weight: 300; font-size: 0.85rem;
  color: var(--text-muted); max-width: 280px; text-align: right;
  margin-left: auto; transition: color 0.3s;
}
.service-row-arrow {
  font-size: 1.2rem; color: var(--gold); margin-left: 24px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease); flex-shrink: 0;
}
.service-row:hover .service-row-arrow { opacity: 1; transform: translateX(0); }

/* ─── STATS BAR ──────────────────────────────────────────────── */
.stats-bar { background: var(--bg-surface); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-number {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(3.5rem, 6vw, 6rem);
  color: var(--gold); line-height: 1; display: block;
}
.stat-suffix { font-family: var(--font-display); font-weight: 200; font-size: clamp(3.5rem, 6vw, 6rem); color: var(--gold); }
.stat-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted);
  display: block; margin-top: 12px;
}

/* ─── CLIENTS MARQUEE ────────────────────────────────────────── */
.clients { background: var(--bg-void); padding: var(--section-pad) 0; overflow: hidden; }
.marquee-wrap { margin-top: 48px; }
.marquee { overflow: hidden; padding: 20px 0; }
.marquee-track {
  display: flex; gap: 80px; align-items: center;
  animation: marqueeLeft 40s linear infinite; width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 64px; width: auto; object-fit: contain; flex-shrink: 0;
  background: rgba(255,255,255,0.92); padding: 12px 20px; border-radius: 4px;
  box-sizing: border-box; opacity: 0.75;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.marquee-track img:hover { opacity: 1; transform: translateY(-2px); }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-attachment: fixed; z-index: 0;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.6) 100%); z-index: 1;
}
.cta-content { position: relative; z-index: 2; }
.cta-email {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-border); padding-bottom: 2px;
  transition: border-color 0.3s;
}
.cta-email:hover { border-color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-void); border-top: 1px solid var(--border); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; padding-bottom: 60px; }
.footer-brand { flex: 2; min-width: 180px; }
.footer-tagline { margin-top: 8px; }
.footer-nav { display: flex; flex-direction: column; gap: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-link { text-decoration: none; color: var(--text-muted); transition: color 0.3s; }
.footer-link:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-muted) !important; text-transform: none !important; letter-spacing: 0.04em !important; font-size: 0.8rem !important; }
.footer-logo { display: block; margin-bottom: 20px; color: var(--text-primary); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--text-muted); text-decoration: none; transition: color 0.3s; line-height: 1.7; }
.footer-links li a:hover { color: var(--text-primary); }
.footer-contact li { font-family: var(--font-body); font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); }
.footer-social { display: flex; gap: 16px; margin-top: 28px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border);
  color: var(--text-muted); text-decoration: none; transition: border-color 0.3s, color 0.3s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 28px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-bottom p { font-family: var(--font-body); font-size: 0.8rem; font-weight: 300; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-family: var(--font-body); font-size: 0.8rem; font-weight: 300; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ─── PROJECTS PAGE ──────────────────────────────────────────── */
.projects-hero {
  min-height: 50vh; display: flex; align-items: flex-end;
  padding-bottom: 60px; position: relative; overflow: hidden;
}
.projects-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-attachment: fixed; z-index: 0;
}
.projects-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,1) 0%, rgba(6,6,6,0.4) 100%); z-index: 1;
}
.projects-hero .container { position: relative; z-index: 2; }
.page-hero {
  padding: clamp(120px, 16vw, 180px) 0 clamp(40px, 5vw, 56px);
  background: var(--bg-void);
}
.page-hero .t-label { display: block; margin-bottom: 16px; }
.page-hero-sub { max-width: 560px; color: var(--text-muted); }

.projects-filter-bar,
.filter-bar {
  position: sticky; top: 72px; z-index: 100;
  background: rgba(6,6,6,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.filter-bar-inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; padding: 0 var(--gutter); }
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent; padding: 20px 24px;
  cursor: none; transition: color 0.3s, border-color 0.3s; white-space: nowrap;
}
.filter-btn:hover { color: var(--text-primary); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.projects-masonry { columns: 3; column-gap: 64px; background: var(--bg-void); padding: 60px var(--gutter); }
.project-card { break-inside: avoid; position: relative; }
.project-card-link {
  display: block; text-decoration: none; color: inherit;
}
.project-card-img { display: none; }
.project-card-info {
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--border);
}
.project-card-cat {
  display: block;
  margin-bottom: 12px;
}
.project-card-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}
.project-card-loc {
  display: block;
  color: var(--text-muted);
}
.project-card-link:hover .project-card-name { color: var(--gold-light); }

/* ─── PROJECT DETAIL PAGES ───────────────────────────────────── */
.project-detail-hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: flex-end; }
.project-detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-attachment: fixed; z-index: 0;
}
.project-detail-hero-bg-video,
.project-section-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.project-video-section-full {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.project-section-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.3) 50%, transparent 100%);
  z-index: 1;
}
.project-section-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 80px;
}
.project-section-content .t-label { display: block; margin-bottom: 8px; }
.project-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,1) 0%, rgba(6,6,6,0.5) 50%, rgba(6,6,6,0.2) 100%);
  z-index: 1;
}
.project-detail-back { position: absolute; top: 100px; left: var(--gutter); z-index: 3; }
.back-link {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s var(--ease);
}
.back-link:hover { gap: 14px; }
.project-detail-hero-content { position: relative; z-index: 2; padding: 0 var(--gutter) 80px; width: 100%; }
.project-detail-hero-content .t-label { margin-bottom: 16px; display: block; }
.project-detail-hero-content h1 {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(3rem, 8vw, 8rem);
  color: var(--text-white); line-height: 0.92; letter-spacing: -0.02em; margin-bottom: 16px;
}
.project-detail-meta { margin-top: 12px; }
.project-detail-content { background: var(--bg-primary); padding: var(--section-pad) 0; }
.project-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; align-items: start; }
.project-detail-description .t-label { margin-bottom: 24px; display: block; }
.project-detail-description p {
  font-family: var(--font-body); font-weight: 300; font-size: 1.05rem;
  color: var(--text-secondary); line-height: 1.9; max-width: 640px;
}
.project-detail-meta-panel { border-left: 1px solid var(--border); padding-left: 48px; }
.meta-item { border-bottom: 1px solid var(--border); padding: 20px 0; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.3s; }
.meta-item:hover { border-bottom-color: var(--gold-border); }
.meta-key { font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.meta-value { font-family: var(--font-body); font-size: 0.95rem; font-weight: 300; color: var(--text-primary); }
.project-gallery { background: var(--bg-void); padding: var(--section-pad) 0; }
.cta-section--compact { min-height: 40vh; background: var(--bg-surface); }
.cta-section--compact .cta-content { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.project-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 12px; }
.project-gallery-grid img { width: 100%; height: auto; display: block; }
.project-gallery-grid img:hover { transform: scale(1.02); }

/* ─── GALLERY SLIDESHOW ─────────────────────────────────────── */
.gallery-slideshow { position: relative; background: var(--bg-void); user-select: none; }
.gallery-track { position: relative; }
.gallery-slide { display: none; }
.gallery-slide.active { display: block; animation: slideIn 0.5s var(--ease); }
@keyframes slideIn { from { opacity: 0; } to { opacity: 1; } }
.gallery-slide img { width: 100%; height: auto; display: block; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(6,6,6,0.75); border: 1px solid var(--border);
  color: var(--gold); padding: 14px 20px; z-index: 10;
  font-size: 1rem; font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s; cursor: none;
}
.gallery-arrow:hover { background: rgba(6,6,6,0.95); border-color: var(--gold-border); }
.gallery-arrow--prev { left: 16px; }
.gallery-arrow--next { right: 16px; }
.gallery-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.gallery-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(242,237,230,0.25); border: none; padding: 0;
  cursor: none; transition: background 0.2s;
}
.gallery-dot.active { background: var(--gold); }
/* ─── PROJECT VIDEO PLAYERS ─────────────────────────────────── */
.project-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.project-video-figure { margin: 0; }
.project-video-single { max-width: 900px; margin: 0 auto; }
.project-video-player { width: 100%; display: block; border: 1px solid var(--gold-border); background: var(--bg-surface); }
.project-video-caption { display: block; margin-top: 12px; text-align: center; color: var(--text-muted); }

.project-nav { background: var(--bg-surface); border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto 1fr; }
.project-nav-item { padding: 40px var(--gutter); text-decoration: none; transition: background 0.3s; display: flex; flex-direction: column; gap: 8px; }
.project-nav-item:hover { background: var(--bg-elevated); }
.project-nav-prev { border-right: 1px solid var(--border); }
.project-nav-next { border-left: 1px solid var(--border); text-align: right; }
.project-nav-name { font-family: var(--font-display); font-weight: 300; font-size: 1.3rem; color: var(--text-primary); }
.project-nav-all {
  display: flex; align-items: center; justify-content: center; padding: 40px 32px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s; white-space: nowrap;
}
.project-nav-all:hover { color: var(--gold); }

/* ─── STUDIO PAGE ────────────────────────────────────────────── */
.studio-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; background: var(--bg-void); overflow: hidden;
}
.studio-hero-content { position: relative; z-index: 2; }
.studio-gold-rule { width: 100%; height: 1px; background: linear-gradient(to right, var(--gold) 0%, transparent 60%); margin: 40px 0; }
.studio-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.studio-split-text { background: var(--bg-void); padding: var(--section-pad) var(--gutter); display: flex; flex-direction: column; justify-content: center; }
.studio-split-img { position: relative; overflow: hidden; }
.studio-split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.studio-vision { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.studio-vision-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; z-index: 0; }
.studio-vision-overlay { position: absolute; inset: 0; background: rgba(6,6,6,0.82); z-index: 1; }
.studio-vision-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 var(--gutter); }
.studio-vision-content blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 200;
  font-size: clamp(1.8rem, 4vw, 4rem);
  color: var(--text-white); line-height: 1.2; margin-bottom: 32px;
}
.studio-vision-attribution { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.process-section { background: var(--bg-void); padding: var(--section-pad) 0; }
.process-step {
  display: grid; grid-template-columns: 200px 1fr; gap: 60px; align-items: start;
  padding: 60px var(--gutter); border-bottom: 1px solid var(--border);
  max-width: var(--max-width); margin: 0 auto;
}
.process-num { font-family: var(--font-display); font-weight: 200; font-size: 9rem; color: var(--gold); line-height: 0.8; opacity: 0.08; }
.process-body h3 { font-family: var(--font-display); font-weight: 300; font-size: 2.5rem; color: var(--text-white); margin-bottom: 16px; }
.process-body p { font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--text-secondary); line-height: 1.85; max-width: 520px; }
.strengths-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.strength-item { background: var(--bg-void); padding: 48px 36px; transition: background 0.4s var(--ease); }
.strength-item:hover { background: var(--bg-elevated); }
.strength-gold-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.strength-title { font-family: var(--font-display); font-weight: 300; font-size: 1.4rem; color: var(--text-white); margin-bottom: 10px; }
.strength-desc { font-family: var(--font-body); font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.services-page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end; padding-bottom: 80px;
  background: var(--bg-void); overflow: hidden;
}
.service-section { min-height: 100vh; display: grid; align-items: center; }
.service-section.odd { grid-template-columns: 55% 45%; background: var(--bg-void); }
.service-section.even { grid-template-columns: 45% 55%; background: var(--bg-surface); }
.service-section.even .service-img-col { order: 2; }
.service-section.even .service-text-col { order: 1; }
.service-img-col { position: relative; overflow: hidden; height: 100%; min-height: 100vh; }
.service-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-text-col { position: relative; padding: var(--section-pad) var(--gutter); overflow: hidden; }
.service-bg-num {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 200; font-size: 20rem;
  color: rgba(200,153,42,0.04); line-height: 1;
  pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
}
.service-text-col h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 3.5vw, 3.5rem); color: var(--text-white); margin-bottom: 24px; position: relative; z-index: 1; }
.service-text-col p { font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--text-secondary); line-height: 1.85; margin-bottom: 32px; max-width: 460px; position: relative; z-index: 1; }
.service-explore-link {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; transition: gap 0.3s var(--ease); position: relative; z-index: 1;
}
.service-explore-link:hover { gap: 20px; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-hero { min-height: 60vh; display: flex; align-items: center; background: var(--bg-void); padding: 0 var(--gutter); padding-top: 120px; }
.contact-hero h1 {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(3rem, 8vw, 8rem);
  color: var(--text-white); line-height: 0.92; letter-spacing: -0.02em; max-width: 900px;
}
.contact-hero-sub { font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--text-muted); margin-top: 20px; }
.contact-body { display: grid; grid-template-columns: 40% 60%; min-height: 70vh; }
.contact-info-panel { background: var(--bg-surface); padding: var(--section-pad) var(--gutter); }
.contact-info-label { margin-bottom: 48px; display: block; }
.info-row { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.info-bar { width: 3px; min-height: 24px; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.info-label-text { font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; }
.info-value { font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; color: var(--text-primary); line-height: 1.7; text-decoration: none; transition: color 0.3s; }
.info-value:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 40px; }
.contact-hours { font-family: var(--font-body); font-size: 0.85rem; font-weight: 300; color: var(--text-muted); margin-top: 32px; line-height: 1.7; }
.contact-form-panel { background: var(--bg-elevated); padding: var(--section-pad) var(--gutter); }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 32px; }
.form-label { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 300; padding: 14px 0;
  outline: none; border-radius: 0; transition: border-color 0.4s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select { cursor: none; }
.form-select option { background: var(--bg-elevated); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }

/* ─── FORM STATUS ────────────────────────────────────────────── */
.form-status { margin-bottom: 16px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; min-height: 24px; }
.form-status.success { color: #6fcf97; }
.form-status.error { color: #eb5757; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .project-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-detail-meta-panel { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 40px; }
  .studio-split { grid-template-columns: 1fr; }
  .studio-split-img { height: 60vh; position: relative; }
  .service-section.odd,
  .service-section.even { grid-template-columns: 1fr; }
  .service-section.even .service-img-col { order: 1; }
  .service-section.even .service-text-col { order: 2; }
  .service-img-col { min-height: 50vh; position: relative; }
  .contact-body { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 120px 1fr; gap: 32px; }
  .process-num { font-size: 6rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .projects-masonry { columns: 2; column-gap: 40px; }
  .gallery-panel-bg,
  .cta-bg,
  .projects-hero-bg,
  .project-detail-hero-bg,
  .studio-vision-bg { background-attachment: scroll; }
  .hero-side-text { display: none; }
  .project-video-grid { grid-template-columns: 1fr; }
  .project-nav { grid-template-columns: 1fr; }
  .project-nav-prev { border-right: none; border-bottom: 1px solid var(--border); }
  .project-nav-next { text-align: left; border-left: none; border-top: 1px solid var(--border); }
  .project-nav-all { border-top: 1px solid var(--border); }
  .form-row-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .strengths-grid { grid-template-columns: 1fr; }
  .service-row-desc { display: none; }
}

@media (max-width: 480px) {
  .projects-masonry { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; }
  .project-gallery-grid { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }
}
