/* ============================================================
   DESERT TENT MUSIC — STYLESHEET
   ============================================================ */

/* ── GOOGLE FONTS IMPORT (fallback) ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@300;400;500&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --bg:              #080807;
  --bg-secondary:    #0d0c0b;
  --bg-tertiary:     #111009;
  --cream:           #d8c7a5;
  --cream-muted:     #9b9283;
  --cream-dim:       rgba(216,199,165,0.55);
  --accent:          #a95735;
  --accent-dim:      rgba(169,87,53,0.75);
  --border:          rgba(216,199,165,0.12);
  --border-strong:   rgba(216,199,165,0.22);
  --border-hover:    rgba(216,199,165,0.32);

  --font-display:    'Bebas Neue', 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:       'Inter', 'Helvetica Neue', Arial, sans-serif;

  --page-margin:     6vw;
  --section-gap:     0px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: none;
  color: inherit;
}

/* ── FILM GRAIN ─────────────────────────────────────────── */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.038;
  mix-blend-mode: overlay;
  animation: grain 0.5s steps(2) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-1px,-1px); }
  20% { transform: translate(1px,0); }
  30% { transform: translate(0,1px); }
  40% { transform: translate(-1px,1px); }
  50% { transform: translate(1px,-1px); }
  60% { transform: translate(-1px,0); }
  70% { transform: translate(0,-1px); }
  80% { transform: translate(1px,1px); }
  90% { transform: translate(-1px,-1px); }
}

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cream);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(.23,1,.32,1),
              height 0.35s cubic-bezier(.23,1,.32,1),
              opacity 0.3s;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(216,199,165,0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(.23,1,.32,1),
              height 0.4s cubic-bezier(.23,1,.32,1),
              border-color 0.3s;
}

.cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

body.cursor-project .cursor-dot { width: 0; height: 0; opacity: 0; }
body.cursor-project .cursor-ring {
  width: 60px; height: 60px;
  background: rgba(8,8,7,0.7);
  border-color: var(--cream-muted);
}
body.cursor-project .cursor-text { opacity: 1; }

body.cursor-link .cursor-ring { width: 44px; height: 44px; border-color: var(--accent); }

/* ── SHARED COMPONENTS ──────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 16px;
}

.eyebrow.accent { color: var(--accent); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(216,199,165,0.25);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}

.cta-link .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}

.cta-link:hover { border-color: var(--cream); }
.cta-link:hover .arrow { transform: translateX(6px); }

.accent { color: var(--accent); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.23,1,.32,1), transform 0.8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--page-margin);
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s;
}

.header.scrolled {
  background: rgba(8,8,7,0.88);
  backdrop-filter: blur(8px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  cursor: pointer;
}

.header-logo-line1,
.header-logo-line2 {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.25s;
}
.nav-link:hover { color: var(--cream); }

.header-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: none;
}

.menu-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216,199,165,0.3);
  border-radius: 50%;
  gap: 4px;
  transition: border-color 0.3s;
}
.menu-icon:hover { border-color: rgba(216,199,165,0.6); }
.menu-icon span {
  display: block;
  width: 11px;
  height: 1px;
  background: var(--cream-muted);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,8,7,0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: var(--page-margin);
  font-size: 18px;
  color: var(--cream-muted);
  cursor: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 60px);
  color: var(--cream);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s cubic-bezier(.23,1,.32,1) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,8,7,0.82) 0%, rgba(8,8,7,0.45) 55%, rgba(8,8,7,0.18) 100%),
    linear-gradient(to top, rgba(8,8,7,0.65) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,8,7,0.4) 0%, transparent 25%);
}

/* Hero Side Index */
.hero-index {
  position: absolute;
  left: calc(var(--page-margin) - 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.idx-num {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(216,199,165,0.4);
  writing-mode: horizontal-tb;
}

.idx-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.idx-bar {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(216,199,165,0.25);
}

.idx-dots {
  font-size: 7px;
  letter-spacing: 0.05em;
  color: rgba(216,199,165,0.25);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  margin-left: var(--page-margin);
  max-width: 520px;
  opacity: 0;
  animation: heroFadeIn 1.2s 0.3s cubic-bezier(.23,1,.32,1) forwards;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12.5vw, 175px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}

.hero-body {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--cream-muted);
  margin-bottom: 26px;
  max-width: 320px;
}

.hero-cta { margin-top: 4px; }

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--page-margin);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  cursor: none;
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.scroll-ring { position: absolute; top: 0; left: 0; }

.scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: rgba(216,199,165,0.65);
  animation: spinSlow 12s linear infinite reverse;
  line-height: 1;
}

/* ============================================================
   CATEGORY RAIL
   ============================================================ */
.category-rail {
  width: 100%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.rail-inner {
  display: flex;
  align-items: center;
  height: 36px;
  white-space: nowrap;
  animation: railScroll 28s linear infinite;
}

.category-rail:hover .rail-inner {
  animation-play-state: paused;
}

@keyframes railScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rail-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.rail-item {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0 24px;
  border-right: 1px solid var(--border);
  cursor: default;
  line-height: 36px;
  transition: color 0.25s;
}
.rail-item:first-child { border-left: 1px solid var(--border); }

.rail-item.rail-accent { color: var(--accent); }

.rail-emblem {
  padding: 0 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  height: 36px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--bg-secondary);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.services-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.services-left {
  width: 28%;
  padding: 0 var(--page-margin);
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 28px;
  margin-top: 8px;
}

.services-cta { margin-top: 8px; }

/* Services Grid */
.services-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.5s;
}

.service-card:hover { border-color: var(--border-strong); }

.sc-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0807;
}

.sc-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(.23,1,.32,1);
}

.service-card:hover .sc-image { transform: scale(1.08); }

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(.23,1,.32,1);
  position: absolute;
  inset: 0;
}

.service-card:hover .sc-img { transform: scale(1.08); }

/* Cinematic placeholder images for service cards */
.sc-image--audio {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8,8,7,0.35) 0%, rgba(110,65,25,0.5) 60%, rgba(140,85,35,0.35) 100%);
  background-color: #1a1208;
}

.sc-image--film {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,7,0.3) 0%, rgba(70,55,30,0.55) 55%, rgba(100,75,35,0.4) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(180,120,45,0.3) 0%, transparent 55%);
  background-color: #110f08;
}

.sc-image--creative {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8,8,7,0.45) 0%, rgba(85,60,25,0.5) 60%, rgba(110,75,30,0.4) 100%),
    radial-gradient(ellipse at 45% 55%, rgba(130,85,35,0.35) 0%, transparent 55%);
  background-color: #0e0c07;
}

.sc-image--post {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,8,7,0.2) 0%, rgba(45,35,18,0.7) 55%, rgba(70,50,20,0.5) 100%),
    radial-gradient(ellipse at 25% 70%, rgba(100,70,28,0.35) 0%, transparent 50%);
  background-color: #0c0b07;
}

.sc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,7,0.9) 0%, rgba(8,8,7,0.45) 45%, rgba(8,8,7,0.15) 100%),
    linear-gradient(to right, rgba(8,8,7,0.2) 0%, transparent 60%);
  transition: opacity 0.6s;
}

.service-card:hover .sc-overlay {
  background:
    linear-gradient(to top, rgba(8,8,7,0.85) 0%, rgba(8,8,7,0.35) 45%, rgba(8,8,7,0.1) 100%),
    linear-gradient(to right, rgba(8,8,7,0.15) 0%, transparent 60%);
}

.sc-content {
  position: relative;
  z-index: 2;
  padding: 20px 22px 14px;
}

.sc-num {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(216,199,165,0.45);
  margin-bottom: 10px;
}

.sc-title {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}

.sc-desc {
  font-family: var(--font-body);
  font-size: 10.5px;
  line-height: 1.6;
  color: var(--cream-muted);
  max-width: 240px;
}

.sc-arrow {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  font-size: 16px;
  color: rgba(216,199,165,0.5);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1), color 0.3s;
  display: block;
}

.service-card:hover .sc-arrow {
  transform: translate(5px, 0);
  color: var(--cream);
}

/* ============================================================
   FEATURED WORK HEADER
   ============================================================ */
.featured-header {
  padding: 60px var(--page-margin) 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.featured-header-inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  justify-content: space-between;
}

.fh-left { flex-shrink: 0; }

.featured-heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 90px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 8px;
}

.fh-right {
  text-align: right;
  max-width: 380px;
}

.fh-desc {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.7;
  color: var(--cream-muted);
  margin-bottom: 18px;
}

/* ============================================================
   FEATURED WORK GRID
   ============================================================ */
.featured-work {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.projects-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--border);
  min-height: 460px;
}

.project-card {
  position: relative;
  border-right: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: unset;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: none;
}

.pc-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(.23,1,.32,1);
}

.project-card:hover .pc-img { transform: scale(1.09); }

/* CSS-only cinematic placeholder images */
.pc-img-placeholder {
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(.23,1,.32,1);
}

.project-card:hover .pc-img-placeholder { transform: scale(1.09); }

.pc-img-placeholder--dune {
  background:
    linear-gradient(180deg, rgba(30,20,8,1) 0%, rgba(120,80,30,0.7) 40%, rgba(80,50,15,0.9) 70%, rgba(15,12,5,1) 100%);
  background-color: #0e0c06;
}

.pc-img-placeholder--awake {
  background:
    radial-gradient(ellipse at 50% 35%, rgba(170,100,40,0.6) 0%, rgba(80,50,20,0.4) 40%, rgba(10,8,4,1) 70%);
  background-color: #0a0804;
}

.pc-img-placeholder--drifter {
  background:
    linear-gradient(180deg, rgba(5,5,3,1) 0%, rgba(40,30,10,0.9) 35%, rgba(80,60,20,0.5) 60%, rgba(8,7,3,1) 100%),
    radial-gradient(ellipse at 30% 55%, rgba(150,100,40,0.4) 0%, transparent 50%);
  background-color: #080703;
}

.pc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,7,0.9) 0%, rgba(8,8,7,0.35) 35%, rgba(8,8,7,0.1) 60%, transparent 100%),
    linear-gradient(to bottom, rgba(8,8,7,0.35) 0%, transparent 25%);
  transition: background 0.6s;
}

.project-card:hover .pc-overlay {
  background:
    linear-gradient(to top, rgba(8,8,7,0.95) 0%, rgba(8,8,7,0.5) 35%, rgba(8,8,7,0.2) 60%, rgba(8,8,7,0.1) 100%),
    linear-gradient(to bottom, rgba(8,8,7,0.4) 0%, transparent 25%);
}

/* Play button */
.pc-play {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(216,199,165,0.35) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), border-color 0.3s;
  cursor: none;
}

.project-card:hover .pc-play {
  transform: scale(1.15);
  border-color: rgba(216,199,165,0.65) !important;
}

/* Project info */
.pc-info {
  position: relative;
  z-index: 2;
  padding: 0 14px 16px;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}

.project-card:hover .pc-info { transform: translateY(-4px); }

.pc-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.pc-category {
  display: block;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* ============================================================
   BELIEF SECTION
   ============================================================ */
.belief {
  background: var(--bg);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.belief-inner {
  display: grid;
  grid-template-columns: 25% 35% 40%;
  align-items: stretch;
  min-height: 320px;
}

.belief-left {
  padding: 60px 40px 60px var(--page-margin);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.belief-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 10px;
}

.belief-center {
  padding: 60px 40px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.belief-body {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: 24px;
}

.belief-right {
  height: auto;
  min-height: 320px;
  border-left: 1px solid var(--border);
  overflow: hidden;
}

.belief-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.belief-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(5,4,2,0.55) 0%, rgba(90,60,20,0.45) 30%, rgba(170,115,42,0.32) 52%, rgba(90,60,20,0.55) 72%, rgba(5,4,2,0.8) 100%),
    radial-gradient(ellipse at 50% 42%, rgba(190,128,42,0.38) 0%, transparent 52%);
  background-color: #0c0b06;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(.23,1,.32,1);
}

.belief:hover .belief-img-placeholder { transform: scale(1.06); }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  padding: 0 var(--page-margin);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
}

.stat-icon {
  color: rgba(216,199,165,0.4);
  height: 28px;
  display: flex;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.stat-text {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.02em;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 0.65em;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: grid;
  grid-template-columns: 30% 35% 35%;
  min-height: 360px;
}

.cta-left {
  padding: 60px 40px 60px var(--page-margin);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
}

.cta-center {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.cta-body {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--cream-muted);
  margin-bottom: 24px;
}

.cta-right {
  overflow: hidden;
  position: relative;
}

.cta-img-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(8,8,7,0.3) 0%, rgba(60,40,15,0.5) 50%, rgba(120,80,30,0.4) 100%),
    radial-gradient(ellipse at 40% 60%, rgba(200,140,60,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(160,100,40,0.3) 0%, transparent 40%);
  background-color: #0f0c06;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.23,1,.32,1);
}

.final-cta:hover .cta-img-placeholder { transform: scale(1.06); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px var(--page-margin) 32px;
}

.footer-top {
  display: flex;
  gap: 0;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  align-items: flex-start;
}

.footer-col {
  flex: 1;
  padding-right: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col--brand { flex: 1.2; }
.footer-col--emblem { flex: 0.8; align-items: flex-end; }

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo-line1,
.footer-logo-line2 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(216,199,165,0.35);
  margin-bottom: 6px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.25s;
  display: block;
}
.footer-link:hover { color: var(--cream); }

.footer-address {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: rgba(216,199,165,0.3);
  text-transform: uppercase;
  margin-top: 6px;
}

.footer-emblem {
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-emblem:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: rgba(216,199,165,0.25);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: rgba(216,199,165,0.2);
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1100px) {
  :root { --page-margin: 5vw; }

  .hero-title { font-size: clamp(70px, 11vw, 140px); }

  .services-left { width: 32%; }

  .projects-strip { grid-template-columns: repeat(3, 1fr); }
  .project-card:nth-child(4),
  .project-card:nth-child(5) { display: none; }

  .belief-inner { grid-template-columns: 30% 40% 30%; }

  .cta-inner { grid-template-columns: 35% 40% 25%; }
}

/* ============================================================
   RESPONSIVE — TABLET 768px
   ============================================================ */
@media (max-width: 900px) {
  :root { --page-margin: 5vw; }

  .header-nav { display: none; }

  .hero-title { font-size: clamp(64px, 14vw, 110px); }
  .hero-body { display: none; }

  .services-inner { flex-direction: column; }
  .services-left { width: 100%; padding-bottom: 40px; position: static; }
  .services-grid { border-left: none; width: 100%; }

  .featured-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fh-right { text-align: left; }

  .projects-strip { grid-template-columns: repeat(2, 1fr); overflow-x: auto; }
  .project-card:nth-child(4) { display: flex; }
  .project-card:nth-child(5) { display: none; }

  .belief-inner { grid-template-columns: 1fr 1fr; }
  .belief-right { display: none; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 0 10px; }

  .cta-inner { grid-template-columns: 1fr 1fr; }
  .cta-right { display: none; }

  .footer-top { flex-wrap: wrap; gap: 32px; }
  .footer-col--emblem { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE 600px
   ============================================================ */
@media (max-width: 640px) {
  :root { --page-margin: 5.5vw; }

  .header { padding: 16px var(--page-margin); }

  .hero-content { max-width: 100%; padding-right: var(--page-margin); }
  .hero-title { font-size: clamp(72px, 20vw, 120px); line-height: 0.85; }
  .hero-index { display: none; }
  .hero-scroll { width: 64px; height: 64px; right: var(--page-margin); bottom: 24px; }

  .services-heading { font-size: clamp(40px, 11vw, 60px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16 / 9; }

  .featured-heading { font-size: clamp(40px, 12vw, 70px); }

  .projects-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-left: none;
  }
  .project-card {
    flex-shrink: 0;
    width: 70vw;
    aspect-ratio: 2 / 3;
    border-left: 1px solid var(--border);
    display: flex !important;
  }

  .belief-inner { grid-template-columns: 1fr; }
  .belief-left { padding-bottom: 32px; }
  .belief-center { border-left: none; border-top: 1px solid var(--border); padding: 32px var(--page-margin); }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { width: 50%; flex: none; padding: 24px 0; border-bottom: 1px solid var(--border); }
  .stat-divider { display: none; }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-left { border-right: none; border-bottom: 1px solid var(--border); padding: 48px var(--page-margin); }
  .cta-center { border-right: none; padding: 40px var(--page-margin); }
  .cta-right { display: none; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .film-grain { animation: none; }
  .hero-img { animation: none; }
  .hero-content { animation: none; opacity: 1; }
  .hero-scroll { animation: none; }
  .scroll-arrow { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 1px solid rgba(216,199,165,0.6);
  outline-offset: 3px;
}
