/* ============================================================
   Aurwest Resources — site stylesheet
   Visual DNA from the corporate deck, freer for the web.
   ============================================================ */

:root {
  /* Palette (from deck) */
  --ink:        #0E1B2C;
  --ink-2:      #142436;
  --ink-3:      #1B2C40;
  --paper:      #F2EDE3;
  --bone:       #FAF7F0;
  --gold:       #B8924A;
  --gold-soft:  #C9A865;
  --rust:       #B8421C;
  --slate:      #5C6B7D;
  --slate-2:    #8B96A4;
  --rule-ink:   rgba(242,237,227,0.18);
  --rule-paper: rgba(14,27,44,0.14);

  /* Type */
  --serif: "Newsreader", "Source Serif Pro", Georgia, serif;
  --sans:  "Geist", "Söhne", "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1440px;
  --nav-h:  72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ───────────────────────── Nav ───────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(14, 27, 44, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-ink);
  color: var(--bone);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand .mark {
  width: 10px; height: 10px;
  background: var(--gold);
  display: inline-block;
  transform: translateY(1px);
}
.brand .ticker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-left: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8C2B3;
  transition: color 120ms ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--bone); }
.nav-links a.active { color: var(--gold-soft); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-cta .arrow { font-family: var(--mono); font-size: 14px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--bone);
  padding: 8px;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ───────────────────────── Sections ───────────────────────── */
section { position: relative; }
.section-ink   { background: var(--ink);   color: var(--bone); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-pad   { padding: clamp(64px, 9vw, 132px) var(--gutter); }
.section-inner { max-width: var(--max); margin: 0 auto; width: 100%; }

/* Eyebrow + section title */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-ink .eyebrow { color: var(--slate-2); }
.eyebrow .num {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  text-transform: none;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  max-width: 22ch;
  text-wrap: pretty;
}
.section-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--slate);
  margin: 28px 0 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.section-ink .section-lede { color: #C8C2B3; }

.rule-gold {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0;
}

/* ───────────────────────── Buttons ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn .arrow { font-family: var(--mono); font-size: 16px; transition: transform 160ms ease; }
.btn:hover { background: var(--gold); color: var(--ink); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.section-ink .btn { color: var(--bone); }
.section-ink .btn:hover { color: var(--ink); }
.cta-band .btn { color: var(--bone); }
.cta-band .btn:hover { color: var(--ink); }

/* ───────────────────────── Hero ───────────────────────── */
.hero {
  background: var(--ink);
  color: var(--bone);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 var(--gutter);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/hero-radiometric.png') center/cover;
  filter: saturate(0.45) brightness(0.55) contrast(1.05);
  opacity: 0.35;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,27,44,0.0) 0%, rgba(14,27,44,0.6) 70%, rgba(14,27,44,0.95) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 12vh, 120px) 0;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.wordmark-big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 11vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
}
.wordmark-big .l2 {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 22px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-top: clamp(18px, 1.5vw, 28px);
}
.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  color: #C8C2B3;
  margin: 44px 0 0;
  max-width: 32ch;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.hero-ctas .btn { color: var(--bone); }
.hero-ctas .btn:hover { color: var(--ink); }
.hero-ctas .btn-primary { color: var(--ink); }

/* Hero stats strip */
.hero-strip {
  border-top: 1px solid var(--rule-ink);
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-strip .cell .k {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-2);
  font-weight: 500;
  margin-bottom: 10px;
}
.hero-strip .cell .v {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hero-strip .cell .v .unit {
  font-size: 0.5em;
  color: var(--slate-2);
  margin-left: 4px;
}

/* ───────────────────────── Pillars (investment thesis) ───────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--rule-paper);
}
.section-ink .pillar-grid { border-top-color: var(--rule-ink); }
.pillar {
  padding: 44px 56px 44px 0;
  border-bottom: 1px solid var(--rule-paper);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
}
.section-ink .pillar { border-bottom-color: var(--rule-ink); }
.pillar:nth-child(even) {
  padding-left: 56px;
  border-left: 1px solid var(--rule-paper);
}
.section-ink .pillar:nth-child(even) { border-left-color: var(--rule-ink); }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pillar-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.section-ink .pillar-tag { color: var(--slate-2); }
.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 17px;
  line-height: 1.55;
  color: #2D3A4A;
  max-width: 52ch;
  margin: 0;
}
.section-ink .pillar p { color: #C8C2B3; }

/* ───────────────────────── Asset summary cards ───────────────────────── */
.asset-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 64px;
}
.asset-card {
  background: var(--ink-2);
  color: var(--bone);
  padding: 38px 36px 36px;
  border: 1px solid var(--rule-ink);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 200ms ease, border-color 200ms ease;
}
.asset-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.asset-card .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.asset-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.asset-card .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
  border-top: 1px solid var(--rule-ink);
  padding-top: 22px;
}
.asset-card .stat .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 6px;
}
.asset-card .stat .v {
  font-family: var(--serif);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.asset-card p {
  font-size: 16px;
  line-height: 1.55;
  color: #C8C2B3;
  margin: 0;
  flex: 1;
}
.asset-card .more {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 160ms ease;
}
.asset-card:hover .more { gap: 14px; }

/* ───────────────────────── Leadership grid ───────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule-paper);
}
.section-ink .team-grid { border-top-color: var(--rule-ink); }
.team-card {
  padding: 38px 36px 38px 0;
  border-right: 1px solid var(--rule-paper);
  border-bottom: 1px solid var(--rule-paper);
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.section-ink .team-card {
  border-right-color: var(--rule-ink);
  border-bottom-color: var(--rule-ink);
}
.team-card:nth-child(3n) { border-right: none; }
.team-card:not(:nth-child(3n+1)) { padding-left: 36px; }
.team-card:last-child { border-right: none; }

/* Two-column variant (board of directors) — desktop */
.team-grid--two { grid-template-columns: repeat(2, 1fr); }
.team-grid--two .team-card:nth-child(3n) { border-right: 1px solid var(--rule-ink); }
.team-grid--two .team-card:nth-child(2n) { border-right: none; }
.team-grid--two .team-card:nth-child(odd) { padding-left: 0; }
.team-grid--two .team-card:nth-child(even) { padding-left: 36px; }
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.team-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.team-card .cred {
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
}
.section-ink .team-card .cred { color: var(--slate-2); }
.team-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #2D3A4A;
  margin: 0;
}
.section-ink .team-card p { color: #C8C2B3; }

/* ───────────────────────── Big numeral block ───────────────────────── */
.big-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.big-stat .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.big-stat .num .unit {
  font-size: 0.35em;
  color: var(--gold-soft);
  margin-left: 0.1em;
  letter-spacing: -0.01em;
}
.big-stat .descr {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: var(--slate);
  max-width: 38ch;
}
.section-ink .big-stat .descr { color: #C8C2B3; }

/* ───────────────────────── Footer + forms ───────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(64px, 8vw, 100px) var(--gutter);
  display: grid;
  place-items: center;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
  text-wrap: pretty;
}
.cta-band h2 .l2 {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(11px, 1.2vw, 18px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-top: 22px;
}
.cta-band .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: #C8C2B3;
  margin-top: 28px;
  max-width: 50ch;
}
.cta-band .row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.signup-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  width: 100%;
  margin-top: 36px;
  border: 1px solid var(--rule-ink);
  background: rgba(255,255,255,0.04);
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: var(--bone);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.signup-form input::placeholder { color: var(--slate-2); }
.signup-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms ease;
}
.signup-form button:hover { background: var(--gold-soft); }

.site-footer {
  background: #0a1422;
  color: #C8C2B3;
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid var(--rule-ink);
}
.site-footer .footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-ink);
}
.site-footer .brand-big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.site-footer .brand-big .l2 {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-top: 10px;
}
.site-footer .tag {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: #C8C2B3;
  max-width: 38ch;
}
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: #C8C2B3; font-size: 15px; transition: color 120ms ease; }
.site-footer ul a:hover { color: var(--bone); }
.site-footer .legal {
  max-width: var(--max);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate-2);
}

/* ───────────────────────── Generic page header ───────────────────────── */
.page-header {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(72px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/hero-radiometric.png') center/cover;
  filter: saturate(0.35) brightness(0.5);
  opacity: 0.22;
}
.page-header .inner { position: relative; max-width: var(--max); margin: 0 auto; }
.page-header .eyebrow { color: var(--gold-soft); }
.page-header h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  max-width: 18ch;
  text-wrap: pretty;
}
.page-header .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  color: #C8C2B3;
  margin: 36px 0 0;
  max-width: 50ch;
  text-wrap: pretty;
}

/* ───────────────────────── Target table ───────────────────────── */
.targets {
  margin-top: 56px;
  border-top: 1px solid var(--rule-paper);
  overflow-x: auto;
}
.targets .row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule-paper);
  align-items: stretch;
  min-width: 720px;
}
.targets .row.head { background: rgba(184,146,74,0.08); }
.targets .row .cell {
  padding: 22px 24px;
  border-left: 1px solid var(--rule-paper);
  font-size: 16px;
}
.targets .row .cell:first-child { border-left: none; }
.targets .row.head .cell {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.targets .row.head .cell.lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.targets .row .cell.lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  align-self: center;
}
.targets .grade { color: var(--rust); font-family: var(--serif); font-size: 22px; }
.targets .drill { color: var(--gold); font-family: var(--serif); font-size: 24px; }

/* ───────────────────────── Capital table + donut ───────────────────────── */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.donut { width: 320px; height: 320px; }
.legend { margin-top: 28px; }
.legend .item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-paper);
  align-items: baseline;
}
.legend .item:last-child { border-bottom: none; }
.legend .swatch { width: 12px; height: 12px; margin-top: 8px; }
.legend .nm { font-family: var(--serif); font-size: 20px; }
.legend .pct { font-family: var(--serif); font-size: 22px; font-variant-numeric: tabular-nums; }
.cap-table .row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
  border-top: 1px solid var(--rule-paper);
  align-items: baseline;
}
.cap-table .row:last-of-type { border-bottom: 1px solid var(--rule-paper); }
.cap-table .row.total { border-top: 2px solid var(--gold); padding: 22px 0; }
.cap-table .row.total .k,
.cap-table .row.total .v { color: var(--gold); }
.cap-table .k {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.cap-table .v {
  font-family: var(--serif);
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.cap-table .v .sub {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--slate);
  text-align: right;
  margin-top: 2px;
}

/* ───────────────────────── Contact form + grid ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 56px;
}
.contact-info dl {
  margin: 0;
  border-top: 1px solid var(--rule-paper);
}
.contact-info .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-paper);
}
.contact-info dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.contact-info dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.contact-info dd a:hover { color: var(--gold); }
.contact-info dd .sub {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--bone);
  border: 1px solid var(--rule-paper);
  padding: 36px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-paper);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.contact-form .btn { justify-self: start; margin-top: 8px; }

/* ───────────────────────── Reveal animation ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .pillar-grid,
  .asset-cards { grid-template-columns: 1fr; }
  .pillar:nth-child(even) { padding-left: 0; border-left: none; }
  .pillar { padding-right: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card:nth-child(3n) { border-right: 1px solid var(--rule-paper); }
  .team-card:nth-child(2n) { border-right: none; }
  .team-card:not(:nth-child(2n+1)) { padding-left: 36px; }
  .team-card:nth-child(2n+1) { padding-left: 0; }
  .big-stat { grid-template-columns: 1fr; gap: 32px; }
  .cap-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(14,27,44,0.97);
    padding: 24px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--rule-ink);
  }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none !important; padding-left: 0 !important; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
  .site-footer .brand-big { grid-column: 1 / -1; }
  .hero-strip { grid-template-columns: 1fr; }
  .contact-info .row { grid-template-columns: 1fr; gap: 6px; }
}
