/* Bufufu — dark minimal + gold (clean version + small refinements) */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #111113;
  --bg-card: #141416;
  --border: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 95, 0.28);
  --text: #f4f1ea;
  /* slightly brighter secondary gray (refinement #1) */
  --text-muted: #a8a29a;
  --text-dim: #7a756c;
  --gold: #d4af5f;
  --gold-soft: #e8d5a3;
  --gold-deep: #a8843a;
  --gold-glow: rgba(212, 175, 95, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --font: "Roboto", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* consistent vertical rhythm (refinement #2) */
  --section-pad: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ── ambient layers ─────────────────────────────────────────────── */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.85;
}

.glow-a {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.14), transparent 70%);
}

.glow-b {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -100px;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.07), transparent 70%);
}

/* always behind text/UI */
.atom-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.66;
}

.cursor-glow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.084), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform;
}

.cursor-glow.is-on {
  opacity: 1;
}

/* ── toast ──────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 100;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold-deep));
  color: #1a1408;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(212, 175, 95, 0.35);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
  pointer-events: none;
}

.toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── header ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  transition: transform 0.25s var(--ease);
}

.logo:hover .logo-mark {
  box-shadow: 0 0 32px rgba(212, 175, 95, 0.45);
  transform: scale(1.06);
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold-deep));
  color: #1a1408;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 24px var(--gold-glow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.logo-text {
  color: var(--text);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--gold-soft);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold) !important;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 28px var(--gold-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 64px 0 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.25rem;
  font-size: 1.25rem;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.nav-mobile a:hover {
  color: var(--gold);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* ── layout (refinement #5 — consistent width / gutters) ─────────── */
main {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
  isolation: isolate;
  width: 100%;
}

/* ── hero (centered) ────────────────────────────────────────────── */
.hero {
  padding: var(--section-pad) 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

.hero-title {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  overflow: visible;
  text-align: center;
  width: 100%;
}

.hero-title-line {
  display: block;
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(2.55rem, 7.2vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--text);
  overflow: visible;
  padding-bottom: 0.06em;
  text-align: center;
}

.hero-title-accent {
  display: inline-block;
  padding-bottom: 0.12em;
  background: linear-gradient(105deg, var(--gold-soft) 0%, var(--gold) 42%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: center;
}

.hero-sub {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.98rem;
  color: var(--text-dim);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(145deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #1a1408;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 8px 32px var(--gold-glow);
}

.btn-gold:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset, 0 14px 48px rgba(212, 175, 95, 0.35);
}

.btn-hint {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: -0.15rem;
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--border-gold);
  color: var(--gold-soft);
  box-shadow: 0 0 24px var(--gold-glow);
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.pill {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.pill:hover {
  color: var(--gold-soft);
  border-color: var(--border-gold);
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* ── sections (consistent spacing) ──────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Editorial: centered full-width heading band (Service / Impact / Insight / Agency) */
.section-head-center {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-head-center .eyebrow {
  justify-content: center;
}

.section-head-center h2 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.section-head-center .section-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Content blocks */
.editorial-block {
  width: 100%;
}

.editorial-center {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.editorial-center .prose-block,
.editorial-center .prose-block.wide {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.editorial-center .lead-line {
  text-align: center;
}

.editorial-center .exp-line {
  text-align: center;
}

.editorial-full {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .section-head-center {
    margin-bottom: 2.5rem;
  }
}

.section-head h2,
.cta-panel h2,
.choose-banner h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ── stats / counters ───────────────────────────────────────────── */
.stats {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 560px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  --mx: 50%;
  --my: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 100%;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(212, 175, 95, 0.16),
    transparent 45%
  );
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.stat-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 95, 0.08), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 95, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

.stat-value {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.1rem, 3.8vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 0.55rem;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.06em;
  text-align: center;
  width: 100%;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-top: 0;
  text-align: center;
  max-width: 14ch;
}

.stats.is-live .stat-card {
  animation: stat-in 0.7s var(--ease) both;
}

.stats.is-live .stat-card:nth-child(1) {
  animation-delay: 0.05s;
}
.stats.is-live .stat-card:nth-child(2) {
  animation-delay: 0.1s;
}
.stats.is-live .stat-card:nth-child(3) {
  animation-delay: 0.15s;
}
.stats.is-live .stat-card:nth-child(4) {
  animation-delay: 0.2s;
}
.stats.is-live .stat-card:nth-child(5) {
  animation-delay: 0.25s;
}
.stats.is-live .stat-card:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes stat-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── prose ──────────────────────────────────────────────────────── */
.prose-block {
  max-width: 640px;
}

.prose-block.wide {
  max-width: 720px;
}

.prose-block p,
.prose-card p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

.prose-block p:last-child,
.prose-card p:last-child {
  margin-bottom: 0;
}

.prose-block strong {
  color: var(--text);
  font-weight: 500;
}

.lead-line {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--text) !important;
  line-height: 1.45 !important;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem !important;
}

.exp-line {
  margin-top: 1.35rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-gold);
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.prose-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 860px) {
  .prose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.prose-card,
.choose-banner,
.cta-panel {
  --mx: 50%;
  --my: 50%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.prose-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.prose-card > p {
  flex: 1;
  margin-bottom: 0;
  text-align: center;
}

.card-heading {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.85rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  text-align: center;
}

.prose-card-gold {
  background: var(--bg-card);
  border-color: var(--border);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.prose-card-gold .card-heading {
  color: var(--text);
}

.hover-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    500px circle at var(--mx) var(--my),
    rgba(212, 175, 95, 0.14),
    transparent 42%
  );
  transition: opacity 0.35s var(--ease);
  border-radius: inherit;
}

.hover-glow:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 95, 0.08), 0 24px 48px rgba(0, 0, 0, 0.35);
}

.hover-glow:hover::after {
  opacity: 1;
}

.hover-lift {
  transition: transform 0.35s var(--ease);
}

.hover-lift:hover {
  transform: translateX(4px);
}

.choose-banner {
  margin-top: 3rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(212, 175, 95, 0.1), transparent 55%),
    var(--bg-elevated);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2.5rem;
  align-items: center;
  text-align: center;
}

.choose-banner-full {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  .choose-banner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .choose-banner-full {
    text-align: left;
  }
}

.choose-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.choose-banner h2 {
  margin-bottom: 0;
  max-width: none;
}

.choose-banner h2 em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-soft);
}

.choose-banner-col p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .choose-banner-full .choose-banner-col:first-child {
    text-align: left;
  }
  .choose-banner-full .choose-banner-col:last-child {
    text-align: left;
  }
}

/* ── CTA — more compact (refinement #3) ─────────────────────────── */
.cta-section {
  padding-top: 3.25rem;
  padding-bottom: 1.5rem;
}

.cta-panel {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border-gold);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(212, 175, 95, 0.12), transparent 55%),
    linear-gradient(160deg, #161512 0%, var(--bg-elevated) 100%);
  padding: 1.45rem 1.4rem;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 1.25rem 2.25rem;
    padding: 1.5rem 1.65rem;
  }
}

.cta-col-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.cta-panel .eyebrow {
  margin-bottom: 0.7rem;
}

.cta-panel h2 {
  max-width: 12ch;
  margin-bottom: 0.45rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.cta-lead {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0 0 1.1rem;
  max-width: 28ch;
  line-height: 1.6;
}

.cta-col-copy .btn-gold-lg {
  width: auto;
  max-width: 100%;
  min-height: 2.95rem;
  padding: 0.8rem 1.3rem;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cta-col-meta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  padding-top: 0;
}

@media (min-width: 768px) {
  .cta-col-meta {
    border-left: 1px solid var(--border-gold);
    padding-left: 2rem;
    padding-top: 0;
  }
}

.cta-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cta-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.cta-meta-value {
  font-style: normal;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

button.cta-meta-value {
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button.cta-meta-value:hover {
  color: var(--gold);
}

.contact-address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.linkish {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
  font-size: inherit;
  padding: 0;
}

.linkish:hover {
  color: var(--gold-soft);
}

/* ── footer ─────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem 3rem;
  isolation: isolate;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-inner .logo-text {
  display: inline-block;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-inner p {
  margin-bottom: 0.35rem;
}

.footer-copy {
  margin-top: 1rem !important;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* ── reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .dot {
    animation: none;
  }
  .stats.is-live .stat-card {
    animation: none;
  }
  .atom-field,
  .cursor-glow {
    display: none !important;
  }
  .stat-card,
  .prose-card,
  .choose-banner,
  .cta-panel {
    transform: none !important;
  }
}

@media (hover: none) {
  .atom-field,
  .cursor-glow {
    display: none !important;
  }
}
