:root {
  --bg: #0A0A0A;
  --charcoal: #141414;
  --surface: #1A1A1A;
  --surface-2: #222222;
  --gold: #C9A227;
  --gold-hi: #E8C547;
  --gold-mute: #A68B2C;
  --text: #F5F0E8;
  --text-2: #B8B0A0;
  --border: rgba(201, 162, 39, 0.22);
  --border-soft: rgba(245, 240, 232, 0.08);
  --radius: 14px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2.5rem)); margin: 0 auto; }
.serif { font-family: "Playfair Display", Georgia, serif; }

/* ——— Top bar ——— */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.emblem {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #E8C547, #C9A227 45%, #8A7020 100%);
  display: grid; place-items: center;
  box-shadow: 0 0 0 1px rgba(232,197,71,0.35), 0 8px 24px rgba(201,162,39,0.25);
  flex-shrink: 0;
}
.emblem span {
  font-family: "Playfair Display", serif;
  font-weight: 700; font-size: 1.25rem; color: #0A0A0A; line-height: 1;
}
.wordmark {
  display: flex; flex-direction: column; line-height: 1.15; min-width: 0;
}
.wordmark strong {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wordmark small {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-mute); font-weight: 500;
}
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { font-size: 0.85rem; color: var(--text-2); transition: color .2s; }
.nav a:hover { color: var(--gold-hi); }
.nav a.is-active { color: var(--gold-hi); }
.nav a.phone-chip {
  color: var(--gold-hi); font-size: 0.82rem;
}
.phone-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(201,162,39,0.08);
  color: var(--gold-hi); font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
}
.phone-chip svg { width: 14px; height: 14px; fill: currentColor; }

.nav-links {
  display: flex; align-items: center; gap: 1.15rem;
}
.has-dropdown { position: relative; }
.has-dropdown > a,
.has-dropdown > span.trigger {
  display: inline-flex; align-items: center; gap: 0.28rem;
  font-size: 0.85rem; color: var(--text-2); cursor: pointer;
  background: none; border: 0; font-family: inherit;
}
.has-dropdown > span.trigger::after,
.has-dropdown > a::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
}
.has-dropdown:hover > span.trigger,
.has-dropdown:focus-within > span.trigger { color: var(--gold-hi); }
.dropdown {
  position: absolute;
  top: 100%;
  padding-top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}
.dropdown a:hover,
.dropdown a.is-active {
  background: rgba(201,162,39,0.08);
  color: var(--gold-hi);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  overflow: hidden;
}
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--gold-hi);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute; left: 0; width: 16px; height: 1.5px;
  background: var(--gold-hi);
}
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 70% 10%, rgba(201,162,39,0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,162,39,0.06), transparent 55%),
    linear-gradient(180deg, #0A0A0A 0%, #121212 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 1.15rem;
}
.hero h1 em {
  font-style: italic; color: var(--gold-hi);
}
.hero-lead {
  font-size: 1.05rem; color: var(--text-2); max-width: 36rem;
  margin-bottom: 1.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent; cursor: pointer; transition: all .2s;
}
.btn-primary {
  background: linear-gradient(135deg, #E8C547, #C9A227 55%, #A68B2C);
  color: #0A0A0A;
  box-shadow: 0 10px 30px rgba(201,162,39,0.28);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.geo {
  font-size: 0.88rem; color: var(--text-2);
}
.geo strong { color: var(--text); font-weight: 500; }

.hero-card {
  background: linear-gradient(160deg, rgba(26,26,26,0.95), rgba(20,20,20,0.98));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::after {
  content: "";
  position: absolute; inset: -1px; border-radius: 21px;
  background: linear-gradient(135deg, rgba(232,197,71,0.35), transparent 40%, transparent 60%, rgba(201,162,39,0.2));
  z-index: -1; opacity: 0.55;
}
.hero-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem; margin-bottom: 0.35rem;
}
.hero-card p { color: var(--text-2); font-size: 0.9rem; margin-bottom: 1.25rem; }
.perk-list { list-style: none; display: grid; gap: 0.75rem; }
.perk-list li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.9rem; color: var(--text);
  padding: 0.7rem 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.perk-list a { color: inherit; text-decoration: none; display: block; width: 100%; }
.perk-list a:hover strong { color: var(--gold-hi); }
.perk-list li:has(a):hover { border-color: var(--border); }

/* ——— Sections ——— */
section { padding: 4.25rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600; margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-2); font-size: 1rem; }

/* B. Industry tiles */
.industries { background: var(--charcoal); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tile {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-height: 168px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.65rem;
}
a.tile { color: inherit; }
.tile:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.tile-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232,197,71,0.25), rgba(201,162,39,0.08));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--gold-hi);
}
.tile-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.tile h3 { font-family: "Playfair Display", serif; font-size: 1.05rem; font-weight: 600; }
.tile p { font-size: 0.78rem; color: var(--text-2); line-height: 1.4; }
.tile-photo {
  width: 100%; height: 96px; object-fit: cover; object-position: center 22%;
  border-radius: 10px; border: 1px solid var(--border); display: block;
}
.tile.has-photo { padding: 0.7rem 0.7rem 1.15rem; gap: 0.5rem; }
.tile.has-photo .tile-icon { display: none; }

/* C. Trust strip */
.trust {
  padding: 2.25rem 0;
  background: var(--bg);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-item {
  text-align: center; padding: 1.25rem 0.75rem;
  border-right: 1px solid var(--border-soft);
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem; color: var(--gold-hi);
  margin-bottom: 0.35rem;
}
.trust-item span { font-size: 0.82rem; color: var(--text-2); }

/* D. Free software */
.apps { background: var(--charcoal); }
.app-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.app-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.app-card:hover { border-color: var(--border); transform: translateY(-2px); }
.app-badge {
  align-self: flex-start;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0A0A0A; background: var(--gold);
  padding: 0.28rem 0.55rem; border-radius: 999px; font-weight: 700;
  margin-bottom: 1rem;
}
.app-badge.mute {
  background: transparent;
  color: var(--gold-hi);
  border: 1px solid var(--border);
}
.app-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem; margin-bottom: 0.4rem;
}
.app-card .audience { color: var(--gold-mute); font-size: 0.82rem; font-weight: 500; margin-bottom: 0.75rem; }
.app-card p { color: var(--text-2); font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }
.app-link {
  font-size: 0.88rem; font-weight: 600; color: var(--gold-hi);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.app-link:hover { color: var(--gold); }
.wedge-note {
  margin-top: 2rem; text-align: center;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(201,162,39,0.05);
  color: var(--text-2); font-size: 0.92rem;
}
.wedge-note strong { color: var(--gold-hi); }

/* E. Soft proof */
.proof { background: var(--bg); }
.proof-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, var(--surface), var(--charcoal));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}
.proof-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem; margin-bottom: 0.85rem;
}
.proof-copy p { color: var(--text-2); margin-bottom: 1rem; }
.proof-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.stat {
  background: rgba(10,10,10,0.45);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.15rem 1rem;
}
.stat b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem; color: var(--gold-hi); margin-bottom: 0.3rem;
}
.stat span { font-size: 0.78rem; color: var(--text-2); }
.stat .label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-mute); margin-bottom: 0.35rem; display: block; }

/* F. CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201,162,39,0.12), transparent 60%),
    var(--charcoal);
  border-top: 1px solid var(--border-soft);
}
.cta-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem; margin-bottom: 0.75rem;
}
.cta-box > div > p { color: var(--text-2); margin-bottom: 1.25rem; }
.form-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-mock label {
  display: block; font-size: 0.75rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-2); margin-bottom: 0.35rem; font-weight: 600;
}
.form-row { margin-bottom: 0.9rem; }
.form-mock input, .form-mock select, .form-mock textarea {
  width: 100%;
  background: #121212;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font: inherit; font-size: 0.92rem;
  outline: none;
}
.form-mock input:focus, .form-mock select:focus, .form-mock textarea:focus {
  border-color: var(--gold);
}
.form-mock textarea { min-height: 84px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-note { font-size: 0.75rem; color: var(--text-2); margin-top: 0.75rem; text-align: center; }
.form-note a { color: var(--gold-hi); font-weight: 600; }

/* G. Footer */
footer {
  background: #070707;
  border-top: 1px solid var(--border-soft);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2.25rem;
}
.eps-tiles {
  display: flex; gap: 0.35rem; margin-bottom: 1rem;
}
.eps-tile {
  width: 36px; height: 36px;
  background: #0A0A0A;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700; color: var(--gold-hi); font-size: 1rem;
}
.footer-brand p { color: var(--text-2); font-size: 0.88rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.85rem;
}
.footer-col ul { list-style: none; }
.footer-col li { color: var(--text-2); font-size: 0.88rem; margin-bottom: 0.45rem; }
.footer-col a:hover { color: var(--gold-hi); }
.disclaimer {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
  font-size: 0.75rem; color: #7a7468; line-height: 1.55;
}
.copy-line {
  margin-top: 1rem;
  font-size: 0.78rem; color: var(--text-2);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
}
.copy-line a { color: var(--gold-hi); }

/* ——— Interior page helpers (same tokens, not a redesign) ——— */
.page-hero { padding: 3.5rem 0 3rem; }
.page-hero .hero-grid { align-items: start; }
.page-hero.narrow .hero-grid { grid-template-columns: 1fr; max-width: 720px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.1rem; }
.pill {
  display: inline-flex; align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(201,162,39,0.08);
  color: var(--gold-hi);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.pill.quiet {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-soft);
}
.prose { max-width: 40rem; }
.prose h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem; font-weight: 600; margin: 0 0 0.75rem;
}
.prose h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem; margin: 1.5rem 0 0.5rem;
}
.prose p { color: var(--text-2); margin-bottom: 1rem; }
.prose ul { color: var(--text-2); margin: 0 0 1rem 1.15rem; }
.prose li { margin-bottom: 0.4rem; }
.two-col {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
}
.step-num {
  font-family: "Playfair Display", serif;
  color: var(--gold-hi); font-size: 1.35rem; margin-bottom: 0.5rem; display: block;
}
.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem; margin-bottom: 0.45rem;
}
.step-card p { color: var(--text-2); font-size: 0.9rem; }
.alt-bg { background: var(--charcoal); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.link-gold { color: var(--gold-hi); font-weight: 600; }
.link-gold:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .proof-panel, .cta-box, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .app-grid, .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-soft); }

  .nav-burger { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.85rem 1.25rem 1.15rem;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(14px);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links > a,
  .has-dropdown > span.trigger {
    padding: 0.55rem 0.2rem;
  }
  .has-dropdown .dropdown {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.1rem 0 0.4rem 0.85rem;
  }
}
@media (max-width: 640px) {
  .container { width: min(100%, calc(100% - 1.5rem)); }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .page-hero { padding: 2.25rem 0 2rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .wordmark strong { font-size: 0.82rem; }
  .topbar .phone-chip span.hide-xs { display: none; }
  .proof-stats { grid-template-columns: 1fr; }
  section { padding: 3rem 0; }
}

  .hp-field { position:absolute; left:-9999px; height:0; overflow:hidden; }


/* ——— Aliases + interior chrome (HTML uses nav-dd / page-hero / split / callout) ——— */
.nav a.active { color: var(--gold-hi); }
.nav-dd { position: relative; }
.nav-dd > a {
  display: inline-flex; align-items: center; gap: 0.28rem;
}
.nav-dd > a::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
}
.nav-dd .menu {
  position: absolute;
  top: 100%;
  padding-top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}
.nav-dd:hover .menu,
.nav-dd:focus-within .menu { display: block; }
.nav-dd .menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}
.nav-dd .menu a:hover,
.nav-dd .menu a.active {
  background: rgba(201,162,39,0.08);
  color: var(--gold-hi);
}

.page-hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 70% 10%, rgba(201,162,39,0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201,162,39,0.06), transparent 55%),
    linear-gradient(180deg, #0A0A0A 0%, #121212 100%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.page-hero .container > p:not(.crumb) {
  color: var(--text-2); font-size: 1.05rem; max-width: 38rem;
}
.crumb {
  font-size: 0.78rem; color: var(--text-2); margin-bottom: 0.85rem;
}
.crumb a { color: var(--gold-hi); }
.split {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: start;
}
.callout {
  background: linear-gradient(160deg, rgba(26,26,26,0.95), rgba(20,20,20,0.98));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.callout h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem; margin-bottom: 0.5rem;
}
.callout p { color: var(--text-2); font-size: 0.92rem; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .nav-dd .menu {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.1rem 0 0.4rem 0.85rem;
  }
}


.np-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.np-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  text-align: center;
}
.np-stat b {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.85rem; color: var(--gold-hi); line-height: 1.1;
}
.np-stat span { display: block; font-size: 0.78rem; color: var(--text-2); margin-top: 0.35rem; }
.np-give {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.np-give-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
}
.np-give article {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.35rem 1.2rem;
}
.np-give h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--gold-hi);
}
.np-give p { color: var(--text-2); font-size: 0.88rem; }
.np-table-wrap { overflow-x: auto; }
.np-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.np-table th, .np-table td {
  text-align: left; padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.np-table th {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.np-table td { color: var(--text-2); }
.np-table td:first-child { color: var(--text); font-weight: 600; width: 28%; }
.fineprint { font-size: 0.75rem; color: #7a7468; margin-top: 0.85rem; }
@media (max-width: 980px) {
  .np-stats, .np-give { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .np-stats, .np-give { grid-template-columns: 1fr; }
}


.shot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem;
}
.shot-grid figure { margin: 0; }
.shot-grid img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #111;
}
.shot-grid figcaption {
  font-size: 0.82rem; color: var(--text-2); margin-top: 0.55rem; line-height: 1.4;
}
.install-shot {
  max-width: 420px;
}
.install-shot img {
  width: 100%; height: 480px; object-fit: cover; object-position: center 16%;
  border-radius: 14px; border: 1px solid var(--border); background: #111;
}
.install-shot figcaption {
  font-size: 0.82rem; color: var(--text-2); margin-top: 0.55rem; line-height: 1.4;
}
@media (max-width: 640px) {
  .shot-grid { grid-template-columns: 1fr; }
  .install-shot img { height: 360px; }
}

.hw-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.hw-row figure {
  margin: 0;
  background: #f3f3f3;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 0.85rem 0.85rem 0.7rem;
}
.hw-row img {
  width: 100%; height: 200px; object-fit: contain;
  background: #fff; border-radius: 10px;
}
.hw-row figcaption {
  font-size: 0.82rem; color: #3a3528; margin-top: 0.6rem;
  text-align: center; line-height: 1.4; font-weight: 500;
}
@media (max-width: 640px) {
  .hw-row { grid-template-columns: 1fr; }
  .hw-row img { height: 220px; }
}

.term-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
.term-row figure {
  margin: 0;
  background: #f3f3f3;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 0.85rem 0.85rem 0.7rem;
}
.term-row img {
  width: 100%; height: 220px; object-fit: contain;
  background: #fff; border-radius: 10px;
}
.term-row figcaption {
  font-size: 0.82rem; color: #3a3528; margin-top: 0.6rem;
  text-align: center; line-height: 1.4; font-weight: 500;
}
@media (max-width: 640px) {
  .term-row { grid-template-columns: 1fr; }
  .term-row img { height: 240px; }
}
