
:root {
  --bg: #f4efe6;
  --bg-strong: #efe4d1;
  --panel: rgba(255, 252, 246, 0.88);
  --panel-strong: #fff9f1;
  --ink: #11211d;
  --muted: #54605b;
  --line: rgba(17, 33, 29, 0.12);
  --accent: #0f766e;
  --accent-strong: #0a4b45;
  --gold: #b7791f;
  --shadow: 0 24px 60px rgba(17, 33, 29, 0.10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 121, 31, 0.18), transparent 32%),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 52%, #f1e7d6 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }
.wrap { width: min(1160px, calc(100vw - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 239, 0.74);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  color: white;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}
nav a.active,
nav a:hover {
  color: var(--ink);
  background: rgba(15, 118, 110, 0.08);
}
.hero {
  padding: 72px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.hero-kicker,
.eyebrow {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.4rem); max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.35rem; }
.hero-copy,
.subhero p {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel,
.lane,
.vendor-card,
.stat,
.prose,
.site-footer,
.subhero,
.content-grid .card {
  padding: 24px;
}
.signal-list,
.plain-list {
  margin: 0;
  padding-left: 18px;
}
.signal-list li,
.plain-list li {
  margin: 0 0 12px;
  color: var(--muted);
}
.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
}
.button.primary {
  background: var(--ink);
  color: #fff8ee;
  border-color: transparent;
}
.button.secondary {
  background: transparent;
}
.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}
.outbound::after {
  content: " ↗";
}
.stat-strip,
.lane-grid,
.vendor-grid,
.content-grid {
  display: grid;
  gap: 18px;
}
.stat-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 12px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.stat strong {
  font-size: 1.55rem;
}
.stat span,
.meta-row span,
.meta-stack div,
.subhero-note {
  color: var(--muted);
}
.section {
  padding: 28px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
.section-head p {
  max-width: 62ch;
  color: var(--muted);
}
.lane-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lane-stat {
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 700;
}
.vendor-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.meta-row,
.meta-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.tag-list.spacious { margin-top: 20px; }
.tag-list li {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent-strong);
  font-size: 0.88rem;
}
.insight-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}
.logo-cloud span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
}
.subpage,
.vendor-page,
.error-page {
  padding: 48px 0 60px;
}
.subhero {
  margin-bottom: 24px;
}
.vendor-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.content-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 18px;
}
.prose h2,
.content-grid .card h3 {
  margin-bottom: 12px;
}
.site-footer {
  margin: 36px auto 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 960px) {
  .hero-grid,
  .insight-band,
  .content-grid,
  .lane-grid,
  .vendor-grid,
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .nav-shell,
  .footer-inner,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  h1 { font-size: 2.7rem; }
  .hero { padding-top: 42px; }
  .wrap { width: min(100vw - 20px, 1160px); }
  .hero-panel,
  .lane,
  .vendor-card,
  .stat,
  .prose,
  .site-footer,
  .subhero,
  .content-grid .card {
    padding: 20px;
  }
}
