/* ============================================================
   CANNERA — site stylesheet
   Palette: deep navy-black, warm gold, cool greys.
   ============================================================ */

:root {
  --bg-deep: #03070b;
  --bg-raise: #070d14;
  --bg-card: rgba(10, 18, 26, 0.55);
  --bg-card-hover: rgba(14, 24, 34, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --gold: #d4af37;
  --gold-bright: #e8c766;
  --gold-muted: rgba(212, 175, 55, 0.45);
  --gold-faint: rgba(212, 175, 55, 0.12);
  --ink: #f4f1ea;
  --muted: #a3acb8;
  --dim: #6e7886;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg-deep); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain — gives the dark surfaces texture instead of flat black */
body::before {
  content: "";
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
::selection { background: var(--gold); color: var(--bg-deep); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 2; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--gold-bright); }

/* ------------------------------------------------------------
   Header & Nav
   ------------------------------------------------------------ */
header {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: linear-gradient(180deg, rgba(3,7,11,0.85), rgba(3,7,11,0.0));
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(3, 7, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-subtle);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height 0.4s var(--ease); }
header.scrolled .nav { height: 68px; }

.wordmark {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0.32em;
  font-weight: 400;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 14px;
}
.wordmark .mark {
  width: 22px; height: 22px; flex: none;
  color: var(--gold);
}

nav ul { display: flex; gap: 36px; list-style: none; }
nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
}
nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
nav a:hover, nav a.active { color: var(--ink); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); transform-origin: left; }

.menu-btn {
  display: none; background: none; border: 0; color: var(--ink);
  font-family: inherit; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
  padding: 8px 0;
}

/* ------------------------------------------------------------
   Heroes
   ------------------------------------------------------------ */
.hero, .page-hero {
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  isolation: isolate;
}
.hero { min-height: 100vh; min-height: 100svh; padding: 160px 0 96px; }
.page-hero { min-height: 62vh; padding: 180px 0 80px; }

.hero img.bg, .page-hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.85);
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
  z-index: -2;
}
@keyframes heroZoom { to { transform: scale(1.0); } }

/* Scrim: dark bottom for legibility, gold glow top-right for warmth */
.hero::after, .page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,7,11,0.30) 0%, rgba(3,7,11,0.10) 35%, rgba(3,7,11,0.90) 100%),
    linear-gradient(90deg, rgba(3,7,11,0.6) 0%, rgba(3,7,11,0) 60%);
}
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 78% 22%, rgba(212,175,55,0.13) 0%, transparent 55%);
  mix-blend-mode: screen;
}

.kicker {
  color: var(--gold); font-size: 10.5px; letter-spacing: 0.34em;
  text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
  font-weight: 500;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: 0.8; }

.hero h1 { font-size: clamp(46px, 7.2vw, 96px); max-width: 16ch; margin-bottom: 28px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); max-width: 18ch; margin-bottom: 8px; }

.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 52ch; font-weight: 300; line-height: 1.6; }
.hero-actions { display: flex; gap: 20px; align-items: center; margin-top: 44px; flex-wrap: wrap; }

.cities {
  margin-top: 56px; color: var(--dim); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; gap: 22px; flex-wrap: wrap;
}
.cities span { position: relative; }
.cities span + span::before { content: ""; position: absolute; left: -14px; top: 50%; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; transform: translateY(-50%); }

.scroll-cue {
  position: absolute; right: 24px; bottom: 32px; z-index: 3;
  color: var(--dim); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 12px;
}
.scroll-cue::after { content: ""; width: 1px; height: 48px; background: linear-gradient(180deg, var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Hero entrance */
.hero-copy > *, .page-hero .wrap > * {
  opacity: 0; transform: translateY(26px);
  animation: rise 1.1s var(--ease) forwards;
}
.hero-copy > *:nth-child(1), .page-hero .wrap > *:nth-child(1) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(2), .page-hero .wrap > *:nth-child(2) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(3), .page-hero .wrap > *:nth-child(3) { animation-delay: 0.41s; }
.hero-copy > *:nth-child(4), .page-hero .wrap > *:nth-child(4) { animation-delay: 0.54s; }
.hero-copy > *:nth-child(5), .page-hero .wrap > *:nth-child(5) { animation-delay: 0.67s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ------------------------------------------------------------
   Sections
   ------------------------------------------------------------ */
section { padding: 128px 0; position: relative; z-index: 5; }
section.tight { padding: 88px 0; }
section.raised {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head h2, h2.display { font-size: clamp(36px, 4.6vw, 58px); }
.rule { width: 56px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 26px 0; }
.prose { color: var(--muted); font-size: 17px; font-weight: 300; max-width: 62ch; }
.prose p + p { margin-top: 20px; }
.prose strong { color: var(--ink); font-weight: 500; }

/* Two-column heading + text layout */
.lead-split { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.lead-split .prose { max-width: none; }

/* ------------------------------------------------------------
   Grids & Cards
   ------------------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  padding: 44px 36px 40px;
  transition: transform 0.5s var(--ease), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,0.08), transparent 45%);
  opacity: 0; transition: opacity 0.5s;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.card:hover::before, .card:hover::after { opacity: 1; }

.card h3 { font-family: var(--serif); font-size: 29px; line-height: 1.15; margin-bottom: 14px; font-weight: 500; }
.card .meta { color: var(--gold); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }
.card .num {
  font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--gold);
  opacity: 0.55; margin-bottom: 26px; font-weight: 400; letter-spacing: -0.02em;
}
.card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.card .icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 26px; }
.card .icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }

/* Feature list (stacked, numbered) */
.feature-list { list-style: none; border-top: 1px solid var(--border-subtle); }
.feature-list li {
  display: grid; grid-template-columns: 80px 1fr 1.6fr; gap: 40px; align-items: start;
  padding: 44px 0; border-bottom: 1px solid var(--border-subtle);
  transition: background 0.4s;
}
.feature-list li:hover { background: linear-gradient(90deg, rgba(212,175,55,0.04), transparent 60%); }
.feature-list .n { font-family: var(--serif); font-size: 32px; color: var(--gold); opacity: 0.7; line-height: 1; padding-top: 4px; }
.feature-list h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.15; }
.feature-list p { color: var(--muted); font-size: 16px; }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border-subtle); background: rgba(255,255,255,0.015); }
.stat { padding: 40px 32px; border-right: 1px solid var(--border-subtle); }
.stat:last-child { border-right: 0; }
.stat .v { font-family: var(--serif); font-size: 48px; line-height: 1; color: var(--ink); margin-bottom: 12px; font-weight: 400; }
.stat .v small { font-size: 0.5em; color: var(--gold); margin-left: 2px; }
.stat .l { color: var(--dim); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; }

/* Pull quote / statement band */
.statement {
  text-align: center; padding: 140px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.statement::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,0.10), transparent 60%);
}
.statement blockquote {
  font-family: var(--serif); font-size: clamp(28px, 3.6vw, 46px); line-height: 1.25;
  max-width: 24ch; margin: 0 auto; font-weight: 400; text-wrap: balance;
}
.statement cite { display: block; margin-top: 32px; font-style: normal; color: var(--gold); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; }

/* ------------------------------------------------------------
   Visual splits
   ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.split-media { position: relative; }
.split-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold-faint); z-index: 0; pointer-events: none;
}
.split-img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
}
.split-img.wide { aspect-ratio: 5/4; }

/* ------------------------------------------------------------
   Corridor map (SVG drawn in the page)
   ------------------------------------------------------------ */
.map-wrap {
  position: relative; border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 40px; overflow: hidden;
}
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-wrap .dots { fill: rgba(255,255,255,0.10); }
.map-wrap .arc { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.55; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.map-wrap.active .arc { animation: draw 2.6s var(--ease) forwards; }
.map-wrap .arc:nth-of-type(2) { animation-delay: 0.2s; }
.map-wrap .arc:nth-of-type(3) { animation-delay: 0.4s; }
.map-wrap .arc:nth-of-type(4) { animation-delay: 0.6s; }
.map-wrap .arc:nth-of-type(5) { animation-delay: 0.8s; }
.map-wrap .arc:nth-of-type(6) { animation-delay: 1.0s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.map-wrap .hub { fill: var(--gold); }
.map-wrap .hub-ring { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0; transform-origin: center; transform-box: fill-box; animation: ring 3s ease-out infinite; }
@keyframes ring { 0% { transform: scale(0.4); opacity: 0.8; } 100% { transform: scale(2.6); opacity: 0; } }
.map-wrap .node { fill: var(--ink); opacity: 0.8; }
.map-wrap text { font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; fill: var(--muted); }
.map-wrap text.hub-label { fill: var(--gold); font-weight: 500; }
.map-legend { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--dim); }
.map-legend span { display: inline-flex; align-items: center; gap: 10px; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.map-legend i.g { background: var(--gold); }
.map-legend i.w { background: var(--ink); opacity: 0.8; }

/* ------------------------------------------------------------
   Group entity ladder
   ------------------------------------------------------------ */
.entities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.entity {
  border: 1px solid var(--border-subtle); padding: 44px 36px; background: var(--bg-card);
  position: relative; transition: border-color 0.5s ease, transform 0.5s var(--ease);
}
.entity:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }
.entity .tag { color: var(--gold); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.entity .tag::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.entity h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.15; margin-bottom: 8px; }
.entity .sub { color: var(--dim); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px; }
.entity p { color: var(--muted); font-size: 15px; }
.entity.parent { border-color: rgba(212,175,55,0.35); background: linear-gradient(180deg, rgba(212,175,55,0.06), var(--bg-card)); }

/* ------------------------------------------------------------
   People (text only)
   ------------------------------------------------------------ */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  transition: transform 0.5s var(--ease), border-color 0.5s ease, background 0.5s ease;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.person::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease);
}
.person:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.28); background: var(--bg-card-hover); }
.person:hover::before { transform: scaleX(1); }
.person .body { padding: 44px 36px 32px; flex: 1; display: flex; flex-direction: column; }
.person .initials {
  font-family: var(--serif); font-size: 15px; letter-spacing: 0.2em; color: var(--gold);
  width: 52px; height: 52px; border: 1px solid var(--gold-muted); display: grid; place-items: center;
  margin-bottom: 28px; text-transform: uppercase;
}
.person h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.1; margin-bottom: 8px; }
.person .role { color: var(--gold); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; }
.person p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 28px; flex: 1; }
.person-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); padding-top: 18px; }
.person .loc { color: var(--dim); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.person .loc::before { content: ""; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.person a.mail { color: var(--gold); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.person a.mail:hover { color: var(--gold-bright); }
.person a.mail svg { width: 12px; height: 12px; }

/* ------------------------------------------------------------
   Forms & buttons
   ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.addr h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin-bottom: 20px; }
.addr .block { color: var(--muted); line-height: 1.8; font-size: 16px; }
.addr .block strong { color: var(--ink); font-weight: 500; }
.addr .row { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--border-subtle); font-size: 15px; }
.addr .row:last-of-type { border-bottom: 1px solid var(--border-subtle); }
.addr .row .k { color: var(--dim); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding-top: 4px; }
.addr .row .v { color: var(--muted); }
.addr .row .v a { color: var(--gold); }
.addr .note { color: var(--dim); font-size: 13.5px; max-width: 42ch; margin-top: 36px; line-height: 1.7; }

form { background: var(--bg-card); padding: 48px; border: 1px solid var(--border-subtle); position: relative; }
form::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.field { margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 10px; }
input, textarea {
  width: 100%; background: rgba(0,0,0,0.25); border: 1px solid var(--border-subtle);
  color: var(--ink); padding: 15px 16px; font-family: inherit; font-size: 15px; font-weight: 300;
  transition: border-color 0.3s, background 0.3s; border-radius: 0; -webkit-appearance: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: none; border-color: var(--gold-muted); background: rgba(0,0,0,0.4); }
input::placeholder, textarea::placeholder { color: rgba(110,120,134,0.6); }

button, .btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 16px 34px; font-family: inherit; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; font-weight: 500;
  position: relative; overflow: hidden;
}
button::before, .btn::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-101%); transition: transform 0.45s var(--ease); z-index: 0;
}
button > *, .btn > * { position: relative; z-index: 1; }
button:hover, .btn:hover { color: var(--bg-deep); }
button:hover::before, .btn:hover::before { transform: translateX(0); }
.btn svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn.ghost { border-color: var(--border-strong); color: var(--muted); }
.btn.ghost::before { background: var(--ink); }
.btn.ghost:hover { color: var(--bg-deep); border-color: var(--ink); }

/* ------------------------------------------------------------
   CTA band
   ------------------------------------------------------------ */
.cta-band {
  position: relative; overflow: hidden; padding: 120px 0;
  border-top: 1px solid var(--border-subtle);
}
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.7); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,7,11,0.95) 0%, rgba(3,7,11,0.6) 60%, rgba(3,7,11,0.3) 100%); }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(34px, 4.4vw, 56px); max-width: 18ch; }
.cta-band .prose { margin-top: 16px; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer {
  border-top: 1px solid var(--border-subtle); padding: 80px 0 48px; font-size: 13px; color: var(--dim);
  background: #010305; position: relative; z-index: 10;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 56px; }
.foot-brand .wordmark { margin-bottom: 20px; }
.foot-brand p { color: var(--dim); max-width: 34ch; line-height: 1.7; }
.foot h4 { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.foot ul { list-style: none; }
.foot li { margin-bottom: 12px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--ink); }
.foot .off { color: var(--muted); line-height: 1.8; }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--border-subtle); padding-top: 32px; }
.legal { max-width: 78ch; font-size: 13.5px; line-height: 1.8; color: #8a95a3; }
.cities-footer { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }

/* ------------------------------------------------------------
   Scroll reveal
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.active { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border-subtle); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 96px 0; }
  .grid-3, .grid-2, .people, .entities, .split, .contact-grid, .lead-split { grid-template-columns: 1fr; gap: 32px; }
  .split { gap: 56px; }
  .split-img, .split-img.wide { aspect-ratio: 16/10; }
  .split-media::before { display: none; }
  .feature-list li { grid-template-columns: 56px 1fr; gap: 20px; padding: 36px 0; }
  .feature-list li p { grid-column: 2; }
  .hero { padding: 140px 0 80px; }
  .page-hero { padding: 150px 0 64px; min-height: 0; }
  .scroll-cue { display: none; }
  .map-wrap { padding: 20px; }
  .cta-band { padding: 88px 0; }

  .menu-btn { display: block; }
  nav {
    display: none; position: absolute; left: 0; top: 100%; width: 100%;
    background: rgba(3,7,11,0.98); border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 28px 24px 32px; gap: 22px; }
  nav a { font-size: 12px; }
}

@media (max-width: 600px) {
  .wrap { width: calc(100% - 40px); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border-subtle); }
  .stat:last-child { border-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  form { padding: 32px 24px; }
  .card { padding: 36px 28px; }
  .addr .row { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .page-hero .wrap > * { opacity: 1; transform: none; }
  body::before { display: none; }
}

