/* ============================================
   ATELIER NOIR — Architectural Luxury Design System
   Phoenix Wallpaper Installation Team
   Complete visual redesign
   ============================================ */

/* --- Custom Properties --- */
:root {
  --noir: #0a0a0a;
  --noir-soft: #141414;
  --charcoal: #1c1c1c;
  --graphite: #2a2a2a;
  --slate: #3d3d3d;
  --ash: #6b6b6b;
  --silver: #9a9a9a;
  --mist: #c8c8c8;
  --pearl: #e8e4df;
  --ivory: #f5f3f0;
  --white: #fefefe;
  --accent: #c9a96e;
  --accent-light: #dfc08a;
  --accent-dark: #a68940;
  --success: #5ba67a;
  --error: #d4534b;

  /* Legacy aliases used by inline styles in HTML */
  --onyx-900: var(--noir);
  --onyx-800: var(--noir-soft);
  --onyx-700: var(--charcoal);
  --onyx-600: var(--graphite);
  --onyx-500: var(--slate);
  --bone-50: var(--white);
  --bone-100: var(--ivory);
  --bone-200: var(--pearl);
  --bone-300: var(--mist);
  --champagne-50: var(--white);
  --champagne-100: var(--pearl);
  --champagne-200: var(--silver);
  --champagne-300: var(--ash);
  --copper: var(--accent);
  --copper-bright: var(--accent-light);
  --copper-soft: rgba(201,169,110,0.08);
  --copper-line: rgba(201,169,110,0.22);
  --ink-deep: var(--noir-soft);
  --ink-shadow: var(--noir);
  --mist-soft: var(--ivory);
  --mist-bright: var(--white);
  --slate-text: var(--ash);
  --sea-glass: var(--accent);
  --green: var(--accent);
  --green-light: var(--accent-light);
  --green-muted: var(--accent-light);
  --green-pale: rgba(201,169,110,0.08);
  --green-line: rgba(201,169,110,0.22);
  --graph-900: var(--noir);
  --graph-800: var(--noir-soft);
  --graph-700: var(--charcoal);
  --graph-600: var(--graphite);
  --graph-500: var(--slate);
  --stone-50: var(--white);
  --stone-100: var(--ivory);
  --stone-200: var(--pearl);
  --stone-300: var(--mist);
  --ink-1: var(--noir);
  --ink-2: var(--slate);
  --ink-3: var(--ash);
  --chalk-50: var(--white);
  --chalk-100: var(--pearl);
  --chalk-200: var(--silver);
  --chalk-300: var(--ash);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --container-narrow: 860px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 140px;
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
  --section-gap: 128px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  background: var(--noir);
}

html.no-scroll, body.no-scroll { overflow: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast), opacity var(--transition-fast); }
a:hover { color: var(--accent-light); opacity: 1; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--noir);
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--accent); color: var(--noir); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Sections --- */
.section { padding: var(--space-2xl) 0; }
.section-light { background: var(--ivory); color: var(--slate); }
.section-white { background: var(--white); color: var(--slate); }
.section-dark { background: var(--noir-soft); color: var(--pearl); }
.section-darker { background: var(--noir); color: var(--pearl); }

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-darker h1, .section-darker h2, .section-darker h3, .section-darker h4 { color: var(--white); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ash);
  max-width: 640px;
}

.section-dark .section-subtitle, .section-darker .section-subtitle { color: var(--silver); }

/* --- Top Bar --- */
.top-bar {
  background: var(--noir);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.top-bar a { color: var(--silver); font-size: 12px; }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; color: var(--silver); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.logo > div {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.3);
}
.logo-sub {
  font-size: 10px;
  color: var(--accent);
  font-weight: 600;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a:not(.btn) {
  color: var(--mist);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--accent); opacity: 1; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { margin-left: 8px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--noir); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--noir); box-shadow: 0 8px 32px rgba(201,169,110,0.35); opacity: 1; }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-tertiary { background: rgba(255,255,255,0.95); color: var(--noir); border-color: rgba(255,255,255,0.95); }
.btn-tertiary:hover { background: var(--white); color: var(--noir); opacity: 1; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 12px; letter-spacing: 0.06em; }

/* --- Hamburger & Mobile Nav --- */
.hamburger { display: none; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--noir);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a { color: var(--white); font-size: 22px; font-weight: 600; font-family: var(--font-display); }
.mobile-nav .close-nav { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ==========================================
   HERO — Split Screen
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: var(--white);
}

/* Left panel — dark content */
.hero-panel-left {
  background: var(--noir);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

/* removed right-edge gradient overlay that was bleeding over text */

/* Gold vertical accent line */
.hero-panel-left::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 10%, var(--accent) 40%, var(--accent-light) 60%, transparent 90%);
}

/* Right panel — photo */
.hero-panel-right {
  position: relative;
  overflow: hidden;
}
.hero-panel-right .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
  filter: none;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.5) 0%, transparent 50%);
  z-index: 1;
}

/* Floating stat bar inside right panel */
.hero-panel-stat-bar {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
}
.hero-panel-stat {
  text-align: center;
  padding: 16px 28px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,169,110,0.3);
  border-right: 1px solid rgba(201,169,110,0.12);
  flex: 1;
}
.hero-panel-stat:last-child { border-right: none; }
.hero-panel-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-panel-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
  margin-top: 6px;
}

/* Content inside left panel */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  font-family: var(--font-body);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 3.8vw, 64px);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.hero h1 em { font-style: italic; color: var(--accent-light); font-weight: 400; }

.hero-text {
  color: var(--silver);
  font-size: 16px;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.75;
  border-left: 2px solid rgba(201,169,110,0.3);
  padding-left: 18px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Badges row */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ash);
  letter-spacing: 0.03em;
}
.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--accent); }

/* Hide old hero elements that are now handled differently */
.hero-visual { display: none; }

/* ==========================================
   HERO METRICS — Floating Stat Cards
   ========================================== */
.hero-metrics-header { text-align: center; margin-bottom: var(--space-lg); }
.hero-metrics-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; }
.hero-metrics-header p { font-size: 17px; color: var(--ash); }

.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.hero-metric-card {
  background: var(--white);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-metric-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); z-index: 2; }
.hero-metric-card::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--accent); }
.hero-metric-value { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--noir); line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em; }
.hero-metric-card h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; font-family: var(--font-body); }
.hero-metric-card p { font-size: 14px; color: var(--ash); line-height: 1.5; }

/* ==========================================
   PROJECT TYPES — Editorial Cards
   ========================================== */
.project-types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: var(--space-md); }
.project-type-card { display: block; position: relative; overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,0.05); transition: transform var(--transition), box-shadow var(--transition); }
.project-type-card:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(0,0,0,0.1); }
.project-type-media { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.project-type-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.project-type-card:hover .project-type-media img { transform: scale(1.05); }
.project-type-icon { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: rgba(10,10,10,0.7); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.project-type-icon svg { width: 20px; height: 20px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.project-type-body { padding: 24px 28px 28px; }
.project-type-body h3 { font-size: 24px; margin-bottom: 8px; }
.project-type-body p { font-size: 15px; color: var(--ash); line-height: 1.6; margin-bottom: 14px; }
.project-type-link { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-family: var(--font-body); }

/* --- Stats Row --- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(0,0,0,0.08); padding: var(--space-md) 0; }
.stat-item { text-align: center; padding: var(--space-sm) 0; border-right: 1px solid rgba(0,0,0,0.06); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--noir); letter-spacing: -0.02em; }
.stat-text { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ash); margin-top: 4px; font-family: var(--font-body); }

/* ==========================================
   CARDS GRID (Six Pillars)
   ========================================== */
.cards-grid { display: grid; gap: 16px; }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { padding: var(--space-md); position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.card-dark { background: var(--graphite); border: 1px solid rgba(201,169,110,0.06); }
.card-dark:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); border-color: rgba(201,169,110,0.2); }
.card-dark::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); opacity: 0; transition: opacity var(--transition); }
.card-dark:hover::before { opacity: 1; }
.card-icon { width: 44px; height: 44px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; background: rgba(201,169,110,0.1); border-radius: 50%; }
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.card-dark h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.card-dark p { font-size: 14px; line-height: 1.7; color: var(--silver); }

/* ==========================================
   FULL-CYCLE PANEL — Horizontal Timeline
   ========================================== */
.full-cycle-panel { background: var(--white); border: 1px solid rgba(0,0,0,0.06); padding: var(--space-xl) var(--space-lg); }
.full-cycle-header { text-align: center; margin-bottom: var(--space-lg); }
.full-cycle-header h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 12px; }
.full-cycle-intro { font-size: 16px; color: var(--ash); max-width: 520px; margin: 0 auto; }
.full-cycle-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.full-cycle-steps::before { content: ''; position: absolute; top: 28px; left: 16.67%; right: 16.67%; height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); }
.full-cycle-step { text-align: center; padding: 0 var(--space-md); position: relative; }
.full-cycle-step-number { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--noir); color: var(--accent); font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 20px; position: relative; z-index: 2; }
.full-cycle-step h3 { font-size: 20px; margin-bottom: 8px; }
.full-cycle-step p { font-size: 14px; color: var(--ash); line-height: 1.6; }
.full-cycle-footer { text-align: center; margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid rgba(0,0,0,0.06); }
.full-cycle-note { font-size: 15px; font-weight: 500; color: var(--slate); font-style: italic; }

/* ==========================================
   CTA DIVIDER
   ========================================== */
.cta-divider-section { padding: var(--space-xl) 0; }
.cta-divider { display: flex; align-items: center; justify-content: space-between; background: var(--noir); padding: var(--space-lg) var(--space-xl); position: relative; overflow: hidden; }
.cta-divider::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--accent); }
.cta-divider-copy h2 { font-size: clamp(22px, 2.8vw, 34px); color: var(--white); margin-bottom: 8px; }
.cta-divider-copy p { font-size: 16px; color: var(--silver); }
.cta-divider .section-label { margin-bottom: 8px; }

/* ==========================================
   HOW WE WORK — Staggered Timeline
   ========================================== */
.how-we-work-header { text-align: center; margin-bottom: var(--space-xl); }
.how-we-work-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; }
.how-we-work-steps { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 720px; margin: 0 auto; position: relative; padding-left: 60px; }
.how-we-work-steps::before { content: ''; position: absolute; top: 0; left: 23px; bottom: 0; width: 1px; background: linear-gradient(180deg, var(--accent), rgba(201,169,110,0.15)); }
.how-we-work-step { padding: var(--space-md) 0; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05); }
.how-we-work-step:last-child { border-bottom: none; }
.how-we-work-number { position: absolute; left: -60px; top: var(--space-md); width: 46px; height: 46px; border-radius: 50%; background: var(--noir); color: var(--accent); font-family: var(--font-display); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 2; }
.how-we-work-step h3 { font-size: 22px; margin-bottom: 8px; }
.how-we-work-step p { font-size: 15px; color: var(--ash); line-height: 1.7; }

/* ==========================================
   BRAND STRIP — Marquee
   ========================================== */
.brand-strip-section { padding: var(--space-lg) 0; }
.brand-strip { text-align: center; }
.brand-strip .section-label { margin-bottom: 8px; }
.brand-strip-title { font-size: 24px; margin-bottom: var(--space-lg); }
.brand-strip-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.brand-strip-track { display: flex; gap: 64px; align-items: center; animation: marquee 30s linear infinite; width: max-content; }
.brand-strip-logo { height: 36px; width: auto; opacity: 0.45; filter: grayscale(1); transition: opacity var(--transition), filter var(--transition); }
.brand-strip-logo:hover { opacity: 1; filter: none; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================
   SPLIT SECTIONS — Asymmetric Editorial
   ========================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-content h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.2; margin-bottom: var(--space-sm); }
.section-dark .split-content h2 { color: var(--white); }
.split-content p { font-size: 16px; line-height: 1.8; margin-bottom: var(--space-sm); }
.section-dark .split-content p { color: var(--silver); }
.split-content ul { margin-top: var(--space-sm); display: grid; gap: 10px; }
.split-content ul li { font-size: 15px; padding-left: 20px; position: relative; color: var(--ash); }
.section-dark .split-content ul li { color: var(--silver); }
.split-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background: var(--accent); }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.9); transition: transform var(--transition); }
.split-image:hover img { transform: scale(1.03); }
.split-image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(10,10,10,0.15), transparent); pointer-events: none; }

/* ==========================================
   CASE STUDIES — Carousel
   ========================================== */
.case-studies-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.case-studies-kicker { font-size: 14px; color: var(--ash); }
.case-studies-controls, .testimonial-controls { display: flex; gap: 8px; }
.case-studies-arrow, .testimonial-arrow { width: 44px; height: 44px; border: 1px solid rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--slate); transition: all var(--transition-fast); background: var(--white); }
.case-studies-arrow:hover, .testimonial-arrow:hover { border-color: var(--accent); color: var(--accent); }
.case-studies-arrow:disabled, .testimonial-arrow:disabled { opacity: 0.3; pointer-events: none; }
.section-dark .testimonial-arrow { border-color: rgba(255,255,255,0.15); color: var(--mist); background: transparent; }
.section-dark .testimonial-arrow:hover { border-color: var(--accent); color: var(--accent); }

.case-studies-viewport, .testimonial-viewport { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; scrollbar-width: none; -ms-overflow-style: none; }
.case-studies-viewport::-webkit-scrollbar, .testimonial-viewport::-webkit-scrollbar { display: none; }

.case-study-card { flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; align-items: stretch; }
.case-study-media { position: relative; overflow: hidden; min-height: 360px; }
.case-study-media-slideshow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.case-study-media-slideshow img.is-active { opacity: 1; }
.case-study-body { padding: var(--space-lg); display: flex; flex-direction: column; justify-content: center; }
.case-study-meta { display: flex; gap: 12px; margin-bottom: var(--space-sm); flex-wrap: wrap; }
.case-study-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(201,169,110,0.08); padding: 4px 10px; font-family: var(--font-body); }
.case-study-location { font-size: 12px; color: var(--ash); display: flex; align-items: center; }
.case-study-body h3 { font-size: 26px; margin-bottom: 12px; }
.case-study-summary { font-size: 15px; color: var(--ash); line-height: 1.7; margin-bottom: var(--space-md); }
.case-study-stats { display: flex; gap: 24px; margin-bottom: var(--space-md); padding-bottom: var(--space-md); border-bottom: 1px solid rgba(0,0,0,0.06); flex-wrap: wrap; }
.case-study-stat { text-align: center; }
.case-study-stat-value { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--noir); line-height: 1.2; }
.case-study-stat-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ash); margin-top: 4px; font-family: var(--font-body); }
.case-study-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-study-block h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); margin-bottom: 6px; font-family: var(--font-body); }
.case-study-block p { font-size: 13px; color: var(--ash); line-height: 1.6; }

.case-studies-dots, .testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--space-md); }
.case-studies-dot, .testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.12); transition: all var(--transition-fast); }
.case-studies-dot.is-active, .testimonial-dot.is-active { background: var(--accent); transform: scale(1.3); }

/* ==========================================
   SERVICE AREAS GRID
   ========================================== */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: var(--space-md); }
.area-card { display: block; padding: var(--space-md); background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.08); transition: all var(--transition); position: relative; overflow: hidden; }
.area-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: rgba(201,169,110,0.04); transition: width var(--transition); }
.area-card:hover::before { width: 100%; }
.area-card:hover { border-color: var(--accent); transform: translateX(4px); }
.area-card h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; position: relative; }
.area-card p { font-size: 14px; color: var(--silver); line-height: 1.6; margin-bottom: 12px; position: relative; }
.card-link { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); position: relative; font-family: var(--font-body); }

/* ==========================================
   GALLERY BENTO
   ========================================== */
.gallery-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition), filter var(--transition); filter: saturate(0.8); }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(to top, rgba(10,10,10,0.85), transparent); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); transform: translateY(100%); transition: transform var(--transition); font-family: var(--font-body); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ==========================================
   TESTIMONIALS — Quote Wall
   ========================================== */
.testimonial-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.testimonial-kicker { font-size: 14px; color: var(--silver); }
.testimonial-slide { flex: 0 0 100%; scroll-snap-align: start; }
.testimonial-card { max-width: 720px; margin: 0 auto; text-align: center; padding: var(--space-lg) var(--space-md); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-display); font-size: 120px; line-height: 1; color: rgba(201,169,110,0.12); position: absolute; top: -20px; left: 50%; transform: translateX(-50%); }
.testimonial-card blockquote { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); font-weight: 400; font-style: italic; line-height: 1.6; color: var(--white); margin-bottom: var(--space-md); position: relative; }
.testimonial-card cite { display: block; font-size: 14px; font-weight: 600; font-style: normal; color: var(--accent); margin-bottom: 4px; }
.testimonial-project { font-size: 13px; color: var(--silver); }

/* --- Client Logos --- */
.client-logos { margin-top: var(--space-xl); text-align: center; }
.client-logos-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); margin-bottom: var(--space-md); font-family: var(--font-body); }
.client-logos-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.client-logo-mark { height: 40px; width: auto; opacity: 0.45; filter: grayscale(1) brightness(2); transition: opacity var(--transition); }
.client-logo-mark:hover { opacity: 0.8; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { padding: 24px 0; font-family: var(--font-display); font-size: 19px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color var(--transition-fast); }
.faq-question:hover { color: var(--accent-dark); }
.faq-question::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--accent); transition: transform var(--transition-fast); }
.faq-item.active .faq-question::after, .faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; font-size: 15px; line-height: 1.8; color: var(--ash); }
.faq-item.active .faq-answer, .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer a { color: var(--accent-dark); text-decoration: underline; }

/* ==========================================
   RFP FORM SECTION
   ========================================== */
.rfp-section { background: var(--noir); padding: var(--space-2xl) 0; }
.rfp-section .section-title { color: var(--white); }
.rfp-section .section-subtitle { color: var(--silver); }
.rfp-form { max-width: 680px; margin: 0 auto; }
.rfp-form form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--silver); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-size: 15px; transition: border-color var(--transition-fast); border-radius: var(--radius-sm); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ash); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--noir); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.file-upload-area { border: 1px dashed rgba(255,255,255,0.15); padding: var(--space-md); text-align: center; cursor: pointer; transition: border-color var(--transition-fast); border-radius: var(--radius-sm); }
.file-upload-area:hover { border-color: var(--accent); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-area p { font-size: 14px; color: var(--silver); margin: 4px 0; }
.file-list { margin-top: 12px; }
.form-success { display: none; text-align: center; padding: var(--space-lg); }
.error-message { font-size: 13px; color: var(--error); margin-top: 4px; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer { background: var(--noir); padding: var(--space-xl) 0 var(--space-md); border-top: 1px solid rgba(201,169,110,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.footer-col h3 { font-size: 18px; color: var(--white); margin-bottom: var(--space-sm); }
.footer-col p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 4px; }
.footer-col a { display: block; font-size: 14px; color: var(--silver); padding: 4px 0; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: var(--ash); }
.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================
   STICKY CTA
   ========================================== */
.sticky-cta { position: fixed; bottom: 24px; right: 24px; display: flex; gap: 8px; z-index: 900; background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); padding: 10px 14px; border: 1px solid rgba(201,169,110,0.12); border-radius: var(--radius-sm); }
.sticky-call { display: none; }

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.85); backdrop-filter: blur(8px); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content { background: var(--charcoal); padding: var(--space-lg); max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; scrollbar-width: none; position: relative; border: 1px solid rgba(201,169,110,0.1); }
.modal-content::-webkit-scrollbar { display: none; }
.modal-close { position: absolute; top: 16px; right: 16px; font-size: 28px; color: var(--silver); line-height: 1; transition: color var(--transition-fast); }
.modal-close:hover { color: var(--white); }
.modal-content .form-group label { color: var(--silver); }
.modal-content .form-group input, .modal-content .form-group select, .modal-content .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); color: var(--white); }
.modal-content .file-upload-area { border-color: rgba(255,255,255,0.15); }

/* Newsletter modal */
.newsletter-modal .modal-content { max-width: 440px; }
.newsletter-intro { font-size: 15px; color: var(--silver); margin-bottom: var(--space-md); }
.newsletter-modal form { display: flex; flex-direction: column; gap: 20px; }
.consent-group { display: flex; align-items: flex-start; gap: 10px; }
.consent-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.consent-group label { font-size: 13px; color: var(--silver); line-height: 1.5; }
.consent-group label a { color: var(--accent); text-decoration: underline; }

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner { position: fixed; bottom: -200px; left: 24px; max-width: 480px; background: var(--charcoal); border: 1px solid rgba(201,169,110,0.1); padding: 20px 24px; display: flex; align-items: center; gap: 16px; z-index: 2500; transition: bottom 0.5s ease; }
.cookie-banner.show { bottom: 24px; }
.cookie-banner p { font-size: 13px; color: var(--silver); line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }

/* ==========================================
   INNER PAGES — Area & Service Pages
   ========================================== */
.inner-hero, .page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--noir);
  padding-bottom: var(--space-xl);
}
.inner-hero img.hero-bg, .page-hero img.hero-bg,
.inner-hero > img:first-child, .page-hero > img:first-child {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.5);
}
.inner-hero .container, .page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--silver); margin-bottom: var(--space-sm); font-family: var(--font-body); }
.breadcrumb a { color: var(--silver); }
.breadcrumb a:hover { color: var(--accent); }
.inner-hero .section-label, .page-hero .section-label { color: var(--accent); margin-bottom: var(--space-sm); }
.inner-hero h1, .page-hero h1 { font-size: clamp(36px, 5vw, 64px); color: var(--white); line-height: 1.1; margin-bottom: var(--space-sm); max-width: 700px; }
.inner-hero .hero-text, .page-hero .hero-text,
.inner-hero p:not(.section-label):not(.breadcrumb), .page-hero p:not(.section-label):not(.breadcrumb) { font-size: 17px; color: var(--silver); max-width: 560px; line-height: 1.7; margin-bottom: var(--space-md); }
.inner-hero .hero-ctas, .page-hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Service Cards (area/service pages) --- */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { display: block; padding: var(--space-md); background: var(--white); border: 1px solid rgba(0,0,0,0.06); transition: all var(--transition); position: relative; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: var(--accent); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--ash); line-height: 1.7; margin-bottom: 16px; }
.service-card .card-link { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-family: var(--font-body); }

/* --- Portfolio Gallery (inner pages) --- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); filter: saturate(0.85); }
.portfolio-item:hover img { transform: scale(1.06); filter: saturate(1); }
.portfolio-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(to top, rgba(10,10,10,0.9), transparent); font-size: 12px; font-weight: 500; color: var(--white); transform: translateY(100%); transition: transform var(--transition); }
.portfolio-item:hover .portfolio-caption { transform: translateY(0); }

/* --- Checklist (inner pages) --- */
.checklist { display: grid; gap: 12px; }
.checklist li { font-size: 15px; padding-left: 24px; position: relative; line-height: 1.6; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 1px; background: var(--accent); }
.section-dark .checklist li { color: var(--silver); }

/* --- Steps (inner pages full-cycle) --- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { text-align: center; padding: var(--space-md); background: var(--white); border: 1px solid rgba(0,0,0,0.06); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--noir); color: var(--accent); font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ash); line-height: 1.6; }

/* --- Privacy / Legal --- */
.legal-content { max-width: var(--container-narrow); margin: 0 auto; padding: var(--space-xl) 32px; }
.legal-content h1 { font-size: 42px; margin-bottom: var(--space-md); }
.legal-content h2 { font-size: 24px; margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.legal-content p { font-size: 16px; line-height: 1.8; color: var(--ash); margin-bottom: var(--space-sm); }
.legal-content ul { margin: var(--space-sm) 0; padding-left: 24px; }
.legal-content ul li { font-size: 15px; color: var(--ash); line-height: 1.7; padding: 4px 0 4px 16px; position: relative; }
.legal-content ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 1px; background: var(--accent); }
.legal-content strong { color: var(--slate); }
.legal-content a { color: var(--accent-dark); text-decoration: underline; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .hero-panel-left { padding: 100px 40px 60px; justify-content: flex-end; }
  .hero-panel-right { min-height: 360px; }
.hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split { grid-template-columns: 1fr; gap: var(--space-lg); }
  .split-reverse { direction: ltr; }
  .case-study-card { grid-template-columns: 1fr; }
  .case-study-media { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .project-types-grid { grid-template-columns: 1fr; }
  .hero-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-xl: 64px; --space-2xl: 96px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-panel-left { padding: 80px 32px 48px; min-height: 60vh; justify-content: center; }
  .hero-panel-right { min-height: 300px; order: -1; }
  .hero-panel-stat-bar { bottom: 16px; }
  .hero-panel-stat { padding: 12px 16px; }
  .hero-panel-stat-value { font-size: 22px; }
  .hero h1 { font-size: 36px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-bento { grid-template-columns: repeat(2, 1fr); }
  .full-cycle-steps { grid-template-columns: 1fr; gap: var(--space-md); }
  .full-cycle-steps::before { display: none; }
  .cta-divider { flex-direction: column; text-align: center; gap: var(--space-md); padding: var(--space-lg) var(--space-md); }
  .cta-divider::before { width: 100%; height: 3px; }
  .how-we-work-steps { padding-left: 48px; }
  .how-we-work-number { left: -48px; width: 38px; height: 38px; font-size: 14px; }
  .hero-metrics-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 0; left: 0; right: 0; border-radius: 0; justify-content: center; border: none; border-top: 1px solid rgba(201,169,110,0.15); }
  .sticky-call { display: inline-flex; }
  .top-bar-left { flex-wrap: wrap; justify-content: center; gap: 12px; font-size: 11px; }
  .top-bar-left span { display: none; }
  .inner-hero, .page-hero { min-height: 400px; }
  .steps-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .case-study-stats { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-panel-left { padding: 64px 24px 40px; }
  .hero-panel-stat-bar { flex-wrap: wrap; }
  .hero-panel-stat { flex: 1 1 40%; }
  .hero h1 { font-size: 30px; }
  .hero-metrics-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .gallery-bento { grid-template-columns: 1fr; }
}
