/* =========================================================================
   PGC Trébol Rugby — Landing stylesheet
   Premium sports-club aesthetic. Inspired by Six Nations / top-tier European
   rugby club sites. No external images — all visuals are CSS + inline SVG.
   ========================================================================= */

/* ── Design tokens ───────────────────────────────────────────────────────── */

:root {
  /* Primary brand greens — pitch / clover */
  --green-900: #0b3d2a;
  --green-800: #114a35;
  --green-700: #155a3f;
  --green-600: #1a6e4d;
  --green-500: #22a05a;
  --green-400: #3fbf78;
  --green-100: #d6efdf;
  --green-50:  #ecf8f1;

  /* Heritage gold — 50 años accent */
  --gold-600: #b88a2e;
  --gold-500: #d4a64a;
  --gold-300: #f0d089;

  /* Neutrals */
  --ink-900: #0c1410;
  --ink-700: #2a342e;
  --ink-500: #58685e;
  --ink-300: #9aa9a0;
  --ink-100: #e3ebe6;
  --paper:   #f7f4ec;
  --white:   #ffffff;

  /* Layout */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 61, 42, 0.08);
  --shadow:    0 8px 24px rgba(11, 61, 42, 0.12);
  --shadow-lg: 0 24px 48px rgba(11, 61, 42, 0.18);

  /* Type */
  --font-display: 'Bebas Neue', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ── Reset / base ────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

a:hover {
  color: var(--green-500);
}

/* ── Utility — container ─────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top bar (announce strip + nav) ──────────────────────────────────────── */

.topbar {
  background: var(--ink-900);
  color: var(--ink-100);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-weight: 600;
}

.topbar-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.18);
}

.topbar-meta {
  color: var(--ink-300);
}

/* ── Header / nav ────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink-900);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(11, 61, 42, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--green-900);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  letter-spacing: 0.02em;
}

.nav-list a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.nav-list a.is-active {
  color: var(--green-900);
  font-weight: 600;
}

.nav-list a.is-active::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--green-500);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.nav-cta:hover {
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.nav-cta-arrow {
  width: 14px;
  height: 14px;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: var(--ink-700);
}

.nav-toggle:hover {
  background: var(--green-50);
  border-color: var(--green-100);
}

#nav-toggle {
  display: none;
}

/* Mobile menu — hidden on desktop, only revealed at <720px breakpoint */
.mobile-menu {
  display: none;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -20%, rgba(63, 191, 120, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(212, 166, 74, 0.10), transparent 60%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  isolation: isolate;
}

/* Field stripes — subtle "alternating mowed grass" texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 80px,
    transparent 80px,
    transparent 160px
  );
  pointer-events: none;
}

/* Decorative oversized clover */
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 620px;
  height: 620px;
  z-index: -1;
  opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='%23ffffff'><path d='M100 30c-12 0-22 10-22 22 0 8 4 14 10 18-12 0-22 10-22 22s10 22 22 22c4 0 8-1 11-3-1 4-1 7-1 11 0 12 10 22 22 22s22-10 22-22c0-4 0-7-1-11 3 2 7 3 11 3 12 0 22-10 22-22s-10-22-22-22c6-4 10-10 10-18 0-12-10-22-22-22-8 0-14 4-18 10-4-6-10-10-18-10z'/><path d='M100 110v60' stroke='%23ffffff' stroke-width='6'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.6;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--white);
  text-wrap: balance;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease),
              box-shadow 0.15s var(--ease), color 0.15s var(--ease),
              border-color 0.15s var(--ease);
}

.btn-primary {
  background: var(--gold-500);
  color: var(--ink-900);
  box-shadow: 0 8px 22px rgba(212, 166, 74, 0.32);
}

.btn-primary:hover {
  background: var(--gold-300);
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 166, 74, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Stats panel on the right side of hero */
.hero-stats {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--gold-300);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-detail {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-top: 4px;
}

/* ── Section primitives ──────────────────────────────────────────────────── */

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--green-900);
  margin: 0 0 16px;
  text-wrap: balance;
}

.section-lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 0 56px;
  line-height: 1.65;
}

/* ── Features grid ───────────────────────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin: 0 0 12px;
}

.feature p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* ── Heritage band ───────────────────────────────────────────────────────── */

.heritage {
  background:
    linear-gradient(135deg, rgba(11, 61, 42, 0.95), rgba(17, 74, 53, 0.95)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 2px,
      transparent 2px,
      transparent 14px
    );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.heritage-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  max-width: 880px;
  margin: 0 auto 24px;
  text-wrap: balance;
}

.heritage-quote .gold {
  color: var(--gold-300);
}

.heritage-meta {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.heritage-divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}

/* ── Legal cards ─────────────────────────────────────────────────────────── */

.legal-section {
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.legal-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--ink-100);
  text-decoration: none;
  color: var(--ink-700);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.legal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
  background: var(--white);
  color: var(--ink-700);
}

.legal-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-card-icon svg {
  width: 22px;
  height: 22px;
}

.legal-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin: 0;
}

.legal-card p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}

.legal-card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.legal-card:hover .legal-card-link svg {
  transform: translateX(3px);
}

/* ── Contact section ─────────────────────────────────────────────────────── */

.contact {
  background: var(--paper);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin: 0 0 12px;
}

.contact-card p {
  color: var(--ink-500);
  margin: 0 0 12px;
  font-size: 15px;
}

.contact-meta {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-700);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-600);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 0;
  max-width: 360px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold-300);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-meta a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-meta a:hover {
  color: var(--white);
}

/* ── Legal documents (terms / privacy pages) ─────────────────────────────── */

.legal-doc {
  background: var(--white);
  padding: 64px 0 96px;
}

.legal-doc-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-100);
}

.legal-doc-header .section-eyebrow {
  margin-bottom: 12px;
}

.legal-doc-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--green-900);
  margin: 0 0 12px;
}

.legal-doc-meta {
  font-size: 14px;
  color: var(--ink-500);
}

.legal-doc article {
  display: grid;
  gap: 40px;
}

.legal-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
}

.legal-block-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--gold-500);
  letter-spacing: 0.02em;
  padding-top: 4px;
  border-right: 2px solid var(--gold-500);
  padding-right: 16px;
  text-align: right;
}

.legal-block-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--green-900);
  margin: 0 0 12px;
  line-height: 1.1;
}

.legal-block-body p {
  margin: 0 0 12px;
  color: var(--ink-700);
}

.legal-block-body ul {
  padding-left: 20px;
  margin: 0 0 12px;
}

.legal-block-body li {
  margin-bottom: 8px;
  color: var(--ink-700);
}

.legal-block-body strong {
  color: var(--green-900);
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero {
    padding: 64px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero::after {
    width: 420px;
    height: 420px;
    right: -160px;
    opacity: 0.07;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px;
  }
}

@media (max-width: 720px) {
  .nav-list,
  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Mobile menu shown via :checked sibling selector */
  #nav-toggle:checked ~ .header-inner .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    /* still hidden by default at this breakpoint; toggle reveals it */
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px 24px;
    background: var(--white);
    border-top: 1px solid var(--ink-100);
    box-shadow: var(--shadow);
  }

  .mobile-menu a {
    padding: 12px 16px;
    font-size: 15px;
    color: var(--ink-700);
    border-radius: var(--radius-sm);
  }

  .mobile-menu a:hover,
  .mobile-menu a.is-active {
    background: var(--green-50);
    color: var(--green-900);
  }

  .mobile-menu .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .section,
  .section-tight {
    padding: 64px 0;
  }

  .features,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    font-size: 11px;
  }

  .topbar-meta {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 64px);
  }

  .hero-stats {
    padding: 20px;
  }

  .stat {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .stat-value {
    font-size: 36px;
  }

  .heritage-divider {
    display: none;
  }

  .heritage-meta br {
    display: inline;
  }

  .legal-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-block-num {
    border-right: none;
    border-bottom: 2px solid var(--gold-500);
    padding-right: 0;
    padding-bottom: 8px;
    text-align: left;
    width: fit-content;
  }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── Focus styles ────────────────────────────────────────────────────────── */

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
