:root {
  --cream:    #F7F4EF;
  --parchment:#EDE8E0;
  --stone:    #D4CCC0;
  --white:    #FFFFFF;
  --charcoal: #1A1A18;
  --ink:      #0E0E0C;
  --mid:      #2C2C28;
  --warm:     #5C5850;
  --muted:    #9A9288;
  --gold:     #B8975A;
  --gold-l:   #D4B47A;
  --gold-d:   #9A7A3E;
  --line:     rgba(26,26,24,0.09);
  --line-dk:  rgba(255,255,255,0.09);
  --f-serif:  'Cormorant Garamond', Georgia, serif;
  --f-sans:   'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────────── */
.c-dot {
  position: fixed; width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .18s, height .18s, background .2s;
}
.c-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(184,151,90,0.5);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s, border-color .2s;
}
.c-dot.hover  { width: 12px; height: 12px; background: var(--gold-d); }
.c-ring.hover { width: 52px; height: 52px; border-color: var(--gold); }

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 32px 56px;
  transition: padding .35s ease, background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  padding: 16px 56px;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm); text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); background: var(--charcoal);
  padding: 12px 28px; text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }

/* ── HERO — V1 ENERGY IN V2 PALETTE ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left — bold serif text pane */
.hero-left {
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 160px 56px 88px;
  position: relative; z-index: 2;
  background: var(--cream);
}

/* Subtle grain texture overlay */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeUp .7s ease .3s both;
  position: relative;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
}

/* BIG serif headline — V1 scale, V2 typeface */
.hero-headline {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(60px, 7.5vw, 116px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 40px;
  animation: fadeUp .85s ease .4s both;
  position: relative;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 15px; font-weight: 300;
  color: var(--warm);
  max-width: 420px; line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeUp .8s ease .55s both;
  position: relative;
}
.hero-body strong { color: var(--charcoal); font-weight: 500; }

.hero-actions {
  display: flex; gap: 16px; align-items: center;
  animation: fadeUp .8s ease .65s both;
  position: relative;
}

.btn-primary {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); background: var(--charcoal);
  padding: 15px 38px; text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: background .22s, color .22s, border-color .22s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-text {
  font-size: 11px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--warm); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.btn-text::after { content: '→'; transition: transform .2s; }
.btn-text:hover { color: var(--ink); }
.btn-text:hover::after { transform: translateX(5px); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 56px;
  display: flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  animation: fadeUp .6s ease .9s both;
}
.hero-scroll-line {
  width: 44px; height: 1px;
  background: var(--stone); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  animation: scanline 2.6s ease-in-out infinite;
}
@keyframes scanline {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Right — photo pane, full bleed */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.65);
  transform: scale(1.04);
  transition: transform 9s ease, filter .6s ease;
}
.hero-right:hover .hero-img {
  transform: scale(1.0);
  filter: saturate(0.85);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(14,14,12,0.75) 0%,
    rgba(14,14,12,0.2) 45%,
    transparent 100%);
}
.hero-img-caption {
  position: absolute; bottom: 44px; left: 40px; right: 40px;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
  display: flex; justify-content: space-between; align-items: flex-end;
  animation: fadeUp .7s ease .85s both;
}
.hero-img-label {
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.hero-img-name {
  font-family: var(--f-serif);
  font-size: 13px; font-style: italic;
  color: rgba(255,255,255,0.65);
}
.hero-img-num {
  position: absolute; top: 44px; right: 40px;
  font-family: var(--f-serif);
  font-size: 72px; font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1; letter-spacing: -4px;
}

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

/* ── MARQUEE — V1 ENERGY, V2 PALETTE ──────────────────────────── */
.marquee-wrap {
  background: var(--charcoal);
  padding: 15px 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 32px;
}
.marquee-track span.sep {
  color: var(--gold);
  padding: 0 4px;
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── CLIENTS STRIP ─────────────────────────────────────────────── */
.clients-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 56px;
  display: flex; align-items: stretch;
}
.clients-label {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted);
  padding: 26px 40px 26px 0;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  display: flex; align-items: center;
}
.clients-logos {
  display: flex; align-items: center; flex: 1; overflow: hidden;
}
.client-name {
  font-family: var(--f-serif);
  font-size: 16px; font-weight: 400;
  color: var(--stone);
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  transition: color .25s;
  letter-spacing: .5px;
}
.client-name:last-child { border-right: none; }
.client-name:hover { color: var(--charcoal); }

/* ── SHARED SECTION STYLES ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 9px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
h2.serif-title {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  color: var(--ink);
}
h2.serif-title em { font-style: italic; color: var(--gold); }
h2.serif-title.inv { color: var(--white); }

.section-lead {
  font-size: 15px; font-weight: 300;
  color: var(--warm); line-height: 1.75;
  max-width: 520px; margin-bottom: 56px;
}
.section-lead.inv { color: rgba(255,255,255,0.45); }

/* ── INTRO SPLIT ───────────────────────────────────────────────── */
.intro-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 260px 1fr;
}
.intro-left {
  border-right: 1px solid var(--line);
  padding: 80px 40px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.intro-num {
  font-family: var(--f-serif);
  font-size: 110px; font-weight: 300;
  color: var(--parchment);
  line-height: 1; letter-spacing: -8px;
}
.intro-sub {
  font-size: 12px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
}
.intro-right { padding: 80px 64px 80px 56px; }
.intro-body {
  font-size: 16px; font-weight: 300;
  color: var(--warm); line-height: 1.8;
  margin-bottom: 24px; max-width: 640px;
}
.intro-body strong { color: var(--charcoal); font-weight: 500; }
.intro-body:last-child { margin-bottom: 0; }

/* ── SERVICES — V1 HOVER IN V2 STYLE ──────────────────────────── */
.services-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.services-header {
  padding: 72px 56px 56px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
}
.services-header p {
  font-size: 14px; font-weight: 300;
  color: var(--warm); line-height: 1.75;
  align-self: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}
.svc-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 36px 36px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
/* V1-style full fill hover — in charcoal, not yellow */
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--charcoal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  z-index: 0;
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-card > * { position: relative; z-index: 1; }

.svc-num {
  font-family: var(--f-serif);
  font-size: 13px; color: var(--stone);
  margin-bottom: 32px;
  transition: color .2s;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,0.25); }
.svc-name {
  font-family: var(--f-serif);
  font-size: 24px; font-weight: 400;
  letter-spacing: -0.3px; line-height: 1.15;
  color: var(--ink); margin-bottom: 14px;
  transition: color .2s;
}
.svc-card:hover .svc-name { color: var(--white); }
.svc-body {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
  margin-bottom: 28px; transition: color .2s;
}
.svc-card:hover .svc-body { color: rgba(255,255,255,0.5); }
.svc-link {
  font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.svc-link-bar {
  width: 22px; height: 1px;
  background: var(--gold);
  transition: width .22s, background .2s;
}
.svc-card:hover .svc-link { color: var(--gold-l); }
.svc-card:hover .svc-link-bar { width: 38px; background: var(--gold-l); }

/* ── WORK MOSAIC ───────────────────────────────────────────────── */
.work-section { padding: 100px 56px; background: var(--cream); }
.work-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.work-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 500px 340px;
  gap: 3px;
}
.work-card {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.work-card.tall { grid-row: span 2; }
.work-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s;
}
.work-card:hover .work-img { transform: scale(1.06); filter: saturate(1); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(14,14,12,0.88) 0%,
    rgba(14,14,12,0.2) 50%,
    transparent 100%);
  transition: opacity .3s;
}
.work-tag {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
}
.work-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px; z-index: 2;
  transform: translateY(5px); transition: transform .3s;
}
.work-card:hover .work-content { transform: translateY(0); }
.work-cat {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-l);
  margin-bottom: 7px;
}
.work-title {
  font-family: var(--f-serif);
  font-size: 22px; font-weight: 400;
  color: var(--white); line-height: 1.25;
  letter-spacing: -0.3px; margin-bottom: 7px;
}
.work-meta {
  font-size: 11px; color: rgba(255,255,255,0.35);
  letter-spacing: .5px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s .05s, transform .3s .05s;
}
.work-card:hover .work-meta { opacity: 1; transform: translateY(0); }

/* ── NUMBERS ───────────────────────────────────────────────────── */
.numbers-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.num-item {
  padding: 56px 44px;
  border-right: 1px solid var(--line);
  position: relative;
}
.num-item:last-child { border-right: none; }
.num-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--gold);
  transition: width .6s ease;
}
.num-item.in::before { width: 100%; }
.num-val {
  font-family: var(--f-serif);
  font-size: 64px; font-weight: 300;
  letter-spacing: -4px; color: var(--ink);
  line-height: 1; margin-bottom: 10px;
}
.num-val sup { font-size: 28px; letter-spacing: 0; color: var(--gold); vertical-align: super; }
.num-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}

/* ── GLOBAL REACH ──────────────────────────────────────────────── */
.reach-section {
  background: var(--charcoal);
  padding: 110px 56px;
  position: relative; overflow: hidden;
}
.reach-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 860px; height: 480px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}
.reach-section::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 520px; height: 290px;
  border: 1px solid rgba(184,151,90,0.06);
  border-radius: 50%;
}
.reach-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.reach-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 72px;
}
.reach-top p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.35);
  max-width: 320px; line-height: 1.7;
  text-align: right;
}
.reach-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
}
.reach-card {
  background: var(--charcoal);
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.reach-card:hover { background: rgba(184,151,90,0.06); }
.reach-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 1px; height: 0;
  background: var(--gold);
  transition: height .35s;
}
.reach-card:hover::after { height: 100%; }
.reach-num {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 28px;
}
.reach-name {
  font-family: var(--f-serif);
  font-size: 26px; font-weight: 300;
  color: var(--white); letter-spacing: -0.5px;
  line-height: 1.15; margin-bottom: 18px;
}
.reach-cities {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.28);
  line-height: 2.0;
}

/* ── WHY BUD ───────────────────────────────────────────────────── */
.why-section {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-left {
  padding: 100px 56px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: space-between;
}
.why-img-block {
  position: relative; height: 260px;
  margin-top: 48px; overflow: hidden;
}
.why-img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) contrast(1.1);
  transition: transform .6s ease;
}
.why-img-block:hover img { transform: scale(1.04); }
.why-img-overlay { position: absolute; inset: 0; background: rgba(26,26,24,0.25); }
.why-img-caption {
  position: absolute; bottom: 18px; left: 18px;
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.why-right { padding: 100px 56px; }
.why-point {
  padding: 26px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 24px;
}
.why-point:first-child { padding-top: 0; }
.why-pt-num {
  font-family: var(--f-serif);
  font-size: 13px; color: var(--stone);
  min-width: 22px; padding-top: 4px;
}
.why-pt-title {
  font-family: var(--f-serif);
  font-size: 20px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.3px;
  margin-bottom: 7px; transition: color .2s;
}
.why-point:hover .why-pt-title { color: var(--gold); }
.why-pt-body {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.test-section {
  background: var(--parchment);
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}
.test-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.test-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.test-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 44px 36px;
  transition: background .2s;
}
.test-card:hover { background: var(--white); }
.test-mark {
  font-family: var(--f-serif);
  font-size: 72px; line-height: 0.7;
  color: var(--stone); margin-bottom: 20px; display: block;
}
.test-quote {
  font-family: var(--f-serif);
  font-size: 18px; font-weight: 300;
  font-style: italic; color: var(--charcoal);
  line-height: 1.6; margin-bottom: 28px;
}
.test-rule {
  width: 28px; height: 1px;
  background: var(--gold); margin-bottom: 18px;
}
.test-name {
  font-family: var(--f-serif);
  font-size: 15px; font-weight: 500;
  color: var(--ink); margin-bottom: 3px;
}
.test-co {
  font-size: 11px; letter-spacing: .5px;
  color: var(--muted); text-transform: uppercase;
}

/* ── CTA ───────────────────────────────────────────────────────── */
.cta-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.cta-left {
  padding: 100px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--cream);
}
.cta-left h2 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: -3px; line-height: 0.95;
  color: var(--ink);
}
.cta-left h2 em { font-style: italic; color: var(--gold); }
.cta-body {
  font-size: 14px; font-weight: 300;
  color: var(--warm); line-height: 1.75;
  max-width: 380px; margin-top: 28px;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.cta-right {
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.cta-right img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45;
  filter: saturate(0);
  transition: opacity .4s;
}
.cta-right:hover img { opacity: 0.6; }
.cta-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(184,151,90,0.1) 0%,
    rgba(14,14,12,0.5) 100%);
}
.cta-right-caption {
  position: absolute; bottom: 44px; left: 44px;
  font-family: var(--f-serif);
  font-size: 12px; font-style: italic;
  color: rgba(255,255,255,0.35);
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 80px 56px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dk);
  margin-bottom: 36px;
}
.footer-brand-name {
  font-family: var(--f-serif);
  font-weight: 600; font-size: 30px;
  letter-spacing: 7px; color: var(--white);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.28);
  line-height: 1.75; max-width: 290px;
}
.footer-col h4 {
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.42);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 11px; letter-spacing: 1px;
  color: rgba(255,255,255,0.18);
}
.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-decoration: none; transition: color .2s;
}
.footer-socials a:hover { color: var(--gold); }

/* ── REVEAL ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .22s; }
.d3 { transition-delay: .34s; }
.d4 { transition-delay: .46s; }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding-left: 32px; padding-right: 32px; }
  .hero-left { padding: 140px 32px 72px; }
  .clients-strip { padding: 0 32px; }
  .intro-section { grid-template-columns: 1fr; }
  .intro-left { display: none; }
  .intro-right { padding: 72px 32px; }
  .services-header { padding: 56px 32px; grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-section { padding: 80px 32px; }
  .numbers-band { grid-template-columns: 1fr 1fr; }
  .reach-section { padding: 80px 32px; }
  .reach-grid { grid-template-columns: 1fr 1fr; }
  .why-section { grid-template-columns: 1fr; }
  .why-left { border-right: none; border-bottom: 1px solid var(--line); padding: 64px 32px; }
  .why-right { padding: 64px 32px; }
  .test-section { padding: 80px 32px; }
  .test-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-right { height: 380px; }
  .cta-left { padding: 80px 32px; border-right: none; }
  footer { padding: 64px 32px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reach-top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .reach-top p { text-align: left; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 52vw; }
  .hero-left { padding: 130px 24px 64px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card.tall { grid-row: auto; }
  .numbers-band { grid-template-columns: 1fr 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}