/* ============================================================
   TEMPLATE A — "OBSIDIAN"
   Editorial black & champagne-gold luxury
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --ink: #ecebe6;
  --accent: #c9a96e;
  --muted: #857f70;
  --line: rgba(201, 169, 110, 0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

body { font-weight: 300; letter-spacing: .01em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 5;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(24px, 8vw, 130px) 60px;
}
.hero-kicker { margin-bottom: 30px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 10.5vw, 172px);
  font-weight: 300; line-height: .96; letter-spacing: .01em;
  text-transform: uppercase;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  color: var(--accent); letter-spacing: .015em;
}
.hero-sub {
  max-width: 520px; margin-top: 42px;
  font-size: clamp(15px, 1.3vw, 18px); font-weight: 200;
  line-height: 1.75; color: var(--muted);
}
.hero-cta { margin-top: 46px; }

/* ---------- Hero stats strip ---------- */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(28px, 5vw, 90px);
  margin-top: clamp(56px, 9vh, 110px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  width: fit-content; max-width: 100%;
}
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 40px);
  color: var(--ink); font-weight: 400;
}
.stat-cap {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint {
  position: absolute; right: clamp(24px, 5vw, 56px); bottom: 36px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint i {
  width: 1px; height: 54px; background: var(--line);
  position: relative; overflow: hidden; display: block;
}
.scroll-hint i::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--accent);
  animation: drip 2.2s var(--ease) infinite;
}
@keyframes drip {
  0% { top: -50%; } 60%, 100% { top: 105%; }
}
@media (max-width: 900px) { .scroll-hint { display: none; } }

/* ---------- Mission ---------- */
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(48px, 7vh, 84px);
}
.mission-card {
  background: var(--bg); padding: clamp(32px, 3.5vw, 52px);
  transition: background .6s var(--ease);
}
.mission-card:hover { background: #111010; }
.mission-card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2vw, 30px); color: var(--accent);
  margin-bottom: 18px;
}
.mission-card p { font-size: 14px; line-height: 1.8; color: var(--muted); }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }

/* ---------- Metric tiles ---------- */
.tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(48px, 7vh, 84px);
}
.tile {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.tile:hover { border-color: var(--accent); transform: translateY(-6px); }
.tile-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 300; color: var(--ink); line-height: 1;
}
.tile-num .tilde { color: var(--accent); margin: 0 4px; }
.tile h4 {
  margin-top: 20px; font-weight: 400;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent);
}
.tile p { margin-top: 10px; font-size: 13px; line-height: 1.7; color: var(--muted); }
@media (max-width: 900px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tile-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.cta-block {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-body {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 300; line-height: 1.25; max-width: 720px;
}
