/* VR — layout, nav, hero, sections */

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: color-mix(in oklch, var(--ink-1) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.nav-brand-text { text-align: left; line-height: 1; }
.nav-brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 32px;
}
.nav-links button {
  font-size: 13px;
  font-weight: 500;
  color: var(--bone-dim);
  padding: 0;
  transition: color .15s ease;
}
.nav-links button:hover { color: var(--gold); }
.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.nav-burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bone);
}
.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 24px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.nav-mobile button {
  text-align: left;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile button:last-child { border: 0; margin-top: 8px; justify-content: center; }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 64px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,220,132,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,220,132,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}
.hero-meta .live::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--gold); }
  100% { box-shadow: 0 0 0 10px transparent; }
}

.hero-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.hero-kicker {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-kicker .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.hero-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 9.5vw, 148px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}
.hero-h .outline {
  -webkit-text-stroke: 1.5px var(--bone);
  color: transparent;
}
.hero-h .accent { color: var(--gold); font-style: italic; font-weight: 900; }
.hero-h .slash { color: var(--gold); font-weight: 900; }

.hero-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--bone-dim);
  max-width: 42ch;
  margin: 28px 0 36px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--bone-dim);
  flex-wrap: wrap;
}
.hero-trust-stars { color: var(--gold); letter-spacing: 2px; }
.hero-trust b { color: var(--bone); font-weight: 700; }

/* Before/after split */
.ba-split {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  max-height: 640px;
}
.ba-split.ba-real {
  aspect-ratio: 10/9;
  max-height: none;
  background: var(--ink-1);
  border-color: var(--line);
}
.ba-col {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ba-col.before { left: 0; }
.ba-col.after  { left: 50%; }
.ba-split:not(.ba-real) .ba-col { width: 100%; left: 0; }
.ba-split:not(.ba-real) .ba-col.before { clip-path: polygon(0 0, 55% 0, 45% 100%, 0 100%); }
.ba-split:not(.ba-real) .ba-col.after  { clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%); }
.ba-col .ph {
  flex: 1;
  border: 0;
}
.ba-col.before .ph { background: #1a1712; }
.ba-col.after  .ph { background: #14110a; }
.ba-col.before .ph::before {
  background-image: repeating-linear-gradient(135deg, rgba(61,220,132,0.03) 0 10px, rgba(61,220,132,0.06) 10px 20px);
}
.ba-col.after .ph::before {
  background-image: repeating-linear-gradient(135deg, rgba(61,220,132,0.06) 0 10px, rgba(61,220,132,0.12) 10px 20px);
}
.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  background: var(--ink-1);
}
.ba-real .ba-col::after {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--bone);
  z-index: 4;
  pointer-events: none;
}
.ba-real .ba-col.before::after { left: 14px; color: var(--fog); }
.ba-real .ba-col.after::after { right: 14px; color: var(--gold); border-color: var(--gold-deep); }
.ba-real .ba-col .ph,
.ba-real .ba-col .ph::before,
.ba-real .ba-col .ph-label,
.ba-real .ba-col .ph-corner { display: none; }

.ba-captions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.ba-cap {
  padding: 16px 4px 0;
}
.ba-cap.right { text-align: right; }
.ba-cap-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
}
.ba-cap.right .ba-cap-label { color: var(--gold); }
.ba-cap-meta {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-top: 6px;
}

.ba-caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  color: var(--bone);
}
.ba-caption .figure {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}
.ba-caption .cap-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%) skewX(-10deg);
  width: 2px;
  background: var(--gold);
  z-index: 2;
  box-shadow: 0 0 24px var(--gold-deep);
}
.ba-real .ba-divider {
  transform: translateX(-50%) !important;
  box-shadow: 0 0 18px rgba(201,163,79,0.4) !important;
}

.hero-stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stat {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.hero-stat-num .unit { color: var(--gold); font-size: 28px; vertical-align: top; margin-left: 2px; }
.hero-stat-label {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}

@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Hero variants */
.hero-variant-full .ba-wrap { grid-column: 1 / -1; }
.hero-variant-full .hero-body { grid-template-columns: 1fr; }
.hero-variant-full .hero-h { font-size: clamp(48px, 7vw, 96px); max-width: 16ch; }

.hero-variant-manifesto .hero-h { font-size: clamp(48px, 7vw, 104px); }
.hero-variant-manifesto .hero-body { grid-template-columns: 1.5fr 1fr; }
.hero-variant-manifesto .ba-split { aspect-ratio: 3/4; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--ink-1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  transition: background .2s ease;
}
.service-card:hover { background: var(--ink-2); }
.service-index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon {
  width: 60px; height: 60px;
  border: 1px solid var(--gold-deep);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 28px;
}
.service-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-price {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-desc {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.service-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.service-feats li {
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--bone-dim);
  display: flex;
  gap: 10px;
}
.service-feats li::before {
  content: '+';
  color: var(--gold);
  font-weight: 700;
}
.service-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bone);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  transition: color .2s ease;
}
.service-card:hover .service-cta { color: var(--gold); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ PROGRAMS ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.prog-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.prog-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.prog-card.featured {
  background: linear-gradient(180deg, color-mix(in oklch, var(--gold) 8%, var(--ink-2)), var(--ink-2) 40%);
  border-color: var(--gold-deep);
}
.prog-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--gold);
  color: var(--gold-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 10px;
}
.prog-code {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--fog);
  margin-bottom: 12px;
}
.prog-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.prog-name .sub {
  display: block;
  font-size: 14px;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.prog-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--bone-dim);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.prog-desc {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.prog-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.prog-price .cur {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bone-dim);
}
.prog-price .amt {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.prog-price .once {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--fog);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: 8px;
}
.prog-price.free .amt { color: var(--gold); }

@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.testi {
  background: var(--ink-1);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.testi-quote {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  flex: 1;
}
.testi-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; font-size: 14px; }
.testi-meta { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.15em; color: var(--fog); text-transform: uppercase; }
.testi-placeholder {
  background: color-mix(in oklch, var(--gold) 4%, var(--ink-1));
  border: 1px dashed var(--gold-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.testi-placeholder .mono { color: var(--gold); }

@media (max-width: 900px) {
  .testis { grid-template-columns: 1fr; }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.about-stack-imgs {
  position: relative;
}
.about-stack-imgs .ph { aspect-ratio: 3/4; overflow: hidden; }
.about-stack-imgs .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  z-index: 1;
}
.about-stack-imgs .ph.real::before,
.about-stack-imgs .ph.real .ph-label,
.about-stack-imgs .ph.real .ph-corner { display: none; }
.about-stack-imgs .ph.small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 3/4;
  border-color: var(--gold-deep);
  box-shadow: -30px 30px 0 var(--ink-1);
}
.about-h {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 12px 0 28px;
}
.about-pulls {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.about-pull {
  background: var(--ink-2);
  padding: 20px;
}
.about-pull .pull-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.about-pull .pull-lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog);
  margin-top: 8px;
}
.about p {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px;
}
.about .sig {
  margin-top: 32px;
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stack-imgs .ph.small { display: none; }
}

/* ============ FAQ ============ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--gold); }
.faq-q .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold);
  min-width: 36px;
  letter-spacing: 0.15em;
}
.faq-q .plus {
  font-size: 28px;
  font-weight: 300;
  transition: transform .25s ease;
  color: var(--gold);
  line-height: 1;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 26px 60px;
}
.faq-a p {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.65;
  max-width: 70ch;
  margin: 0 0 12px;
}

@media (max-width: 600px) {
  .faq-item.open .faq-a { padding-left: 36px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 56px;
}
.footer-hero-h {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  margin: 12px 0 0;
  letter-spacing: -0.02em;
}
.footer-hero-h .accent { color: var(--gold); font-style: italic; }
.footer-hero-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-hero-note { color: var(--fog); font-size: 13px; max-width: 36ch; margin: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 48px 0;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-col button, .footer-col a {
  font-size: 14px;
  color: var(--bone-dim);
  text-align: left;
  padding: 0;
  transition: color .15s ease;
}
.footer-col button:hover, .footer-col a:hover { color: var(--gold); }
.footer-col-h {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 12px;
}
.footer-brand-blurb {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0 0;
  max-width: 36ch;
}
.footer-socials { display: flex; gap: 8px; margin-top: 12px; }
.footer-soc {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all .15s ease;
}
.footer-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: color-mix(in oklch, var(--gold) 6%, var(--ink-2));
}
.footer-handle {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 10px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fog);
  flex-wrap: wrap;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
