/* ============================================================
   Atlético Fuente-Álamo — hoja de estilos principal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --maroon-900: #3c0a10;
  --maroon-800: #521019;
  --maroon: #6e1420;
  --maroon-600: #83192a;
  --maroon-500: #9c2033;
  --gold: #b0842d;
  --gold-light: #cf9f42;
  --gold-pale: #e9d9ae;
  --cream: #fcfaf6;
  --cream-dark: #f3ece0;
  --ink: #211a16;
  --ink-soft: #5b4f45;
  --white: #ffffff;
  --line: #e7ded0;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(33, 26, 22, .08);
  --shadow-md: 0 14px 34px rgba(33, 26, 22, .14);
  --shadow-lg: 0 26px 64px rgba(33, 26, 22, .24);

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-soft); line-height: 1.7; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- utilidades ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--maroon { background: var(--maroon-900); color: var(--cream); }
.section--maroon p { color: rgba(252, 250, 246, .78); }
.section--cream-dark { background: var(--cream-dark); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 14px 0 16px;
  color: var(--maroon-900);
}
.section--maroon .section-title { color: var(--cream); }
.section-lead { font-size: 1.05rem; }

.divider-diamond {
  width: 90px;
  height: 10px;
  margin: 18px auto;
  position: relative;
}
.divider-diamond::before, .divider-diamond::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--gold);
}
.divider-diamond::before { left: 0; }
.divider-diamond::after { right: 0; }
.divider-diamond span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--maroon-900);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: var(--shadow-md); }
.btn-outline {
  border-color: rgba(252, 250, 246, .5);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(252, 250, 246, .08); }
.btn-maroon {
  background: var(--maroon);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-maroon:hover { background: var(--maroon-600); box-shadow: var(--shadow-md); }
.btn-ghost-maroon {
  border-color: var(--maroon);
  color: var(--maroon);
}
.btn-ghost-maroon:hover { background: var(--maroon); color: var(--cream); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: .82rem; }

/* ============================================================
   BARRA SUPERIOR + CABECERA
   ============================================================ */
.topbar {
  background: var(--maroon-900);
  color: rgba(252, 250, 246, .82);
  font-size: .78rem;
  letter-spacing: .03em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar-msg { font-weight: 600; color: var(--gold-pale); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { opacity: .85; transition: opacity .2s; }
.topbar-social a:hover { opacity: 1; color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(252, 250, 246, .97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 56px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--maroon-900);
  letter-spacing: .01em;
}
.brand-text span {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 999px;
  transition: background-color .2s, color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--maroon); background: var(--cream-dark); }
.nav-links a.is-active { color: var(--maroon); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.mobile-menu { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon-900);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 18%, var(--maroon-600), var(--maroon-900) 62%);
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(176,132,45,.35) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .25;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  border: 1.5px solid rgba(176,132,45,.28);
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring--1 { width: 620px; height: 620px; right: -180px; top: -140px; }
.hero-ring--2 { width: 420px; height: 420px; right: -60px; bottom: -160px; border-color: rgba(252,250,246,.12); }
.hero-ring--3 { width: 260px; height: 260px; left: -80px; bottom: -60px; border-color: rgba(176,132,45,.2); }

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy .eyebrow { color: var(--gold-pale); }
.hero-copy .eyebrow::before, .hero-copy .eyebrow::after { background: var(--gold-pale); }
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  margin: 20px 0 22px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  font-size: 1.12rem;
  color: rgba(252, 250, 246, .82);
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(252, 250, 246, .16);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-light);
}
.hero-stats div span {
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(252, 250, 246, .68);
}

.hero-crest {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-crest-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,132,45,.35), transparent 70%);
  filter: blur(4px);
}
.hero-crest img {
  position: relative;
  width: min(360px, 82%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
}

/* franja anuncio */
.announce-bar {
  background: var(--gold);
  color: var(--maroon-900);
  overflow: hidden;
}
.announce-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  padding: 12px 0;
  animation: scroll-x 26s linear infinite;
  width: max-content;
}
.announce-track span {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.announce-track span::after { content: "•"; opacity: .55; margin-left: 60px; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

/* ============================================================
   TARJETAS / GRIDS GENÉRICOS
   ============================================================ */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-600));
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.1rem; color: var(--maroon-900); margin-bottom: 10px; }
.value-card p { font-size: .92rem; margin: 0; }

/* Escudo / identidad */
.identity {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.identity-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.identity-art::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream-dark), transparent 70%);
  z-index: 0;
}
.identity-art img { position: relative; width: min(320px, 90%); z-index: 1; filter: drop-shadow(0 20px 34px rgba(110,20,32,.18)); }
.identity-list { margin-top: 26px; display: grid; gap: 16px; }
.identity-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--ink-soft);
}
.identity-list strong { color: var(--maroon-900); font-family: var(--font-head); font-weight: 700; display: block; margin-bottom: 2px; }
.identity-list .dot {
  flex: none;
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Comunicado destacado */
.press-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.press-card-media {
  background: var(--maroon-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.press-card-media img { border-radius: var(--radius); box-shadow: 0 20px 44px rgba(0,0,0,.4); }
.press-card-body { padding: 48px 52px; }
.press-card-body .eyebrow { color: var(--gold); }
.press-card-body h3 { font-size: 1.7rem; color: var(--maroon-900); margin: 14px 0 18px; }
.press-card-body p { font-size: .98rem; }
.press-card-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }

/* Noticias */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--maroon-800), var(--maroon-900));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.news-card-img img { width: 96px; opacity: .92; }
.news-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--maroon-900);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.news-card-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: .76rem; color: var(--gold); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.news-card-body h3 { font-size: 1.12rem; color: var(--maroon-900); margin-bottom: 10px; }
.news-card-body p { font-size: .88rem; flex: 1; }
.news-more { font-size: .82rem; font-weight: 700; color: var(--maroon); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.news-card.is-soon { opacity: .72; }
.news-card.is-soon .news-tag { background: var(--cream-dark); color: var(--ink-soft); }

/* CTA banda */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--maroon), var(--maroon-800));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(252,250,246,.14);
  right: -80px; top: -120px;
}
.cta-band h3 { font-size: 1.7rem; margin-bottom: 8px; color: var(--cream); position: relative; }
.cta-band p { color: rgba(252,250,246,.78); margin: 0; max-width: 460px; position: relative; }
.cta-band-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* Tabla / niveles socios */
.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier-card.is-featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--maroon-900);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.tier-card h3 { font-family: var(--font-head); color: var(--maroon-900); font-size: 1.25rem; margin-bottom: 6px; }
.tier-price { font-size: .84rem; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.tier-card ul { display: grid; gap: 12px; margin-bottom: 26px; text-align: left; }
.tier-card li { font-size: .9rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.tier-card li svg { flex: none; margin-top: 3px; color: var(--gold); }

/* Timeline */
.timeline { position: relative; margin-top: 20px; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: -34px; top: 3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold);
}
.timeline-item strong { display: block; color: var(--maroon-900); font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 4px; }
.timeline-item span.date { font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Formularios */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
}
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--maroon-900);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,132,45,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.checkline { display: flex; align-items: flex-start; gap: 10px; }
.field.checkline input { width: auto; margin-top: 3px; }
.field.checkline label { margin: 0; font-weight: 500; font-size: .85rem; color: var(--ink-soft); }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }
.form-status {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: #e9f5ea; color: #276b34; }

/* Info de contacto */
.contact-info-card {
  background: var(--maroon-900);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 10px; }
.contact-info-card p { color: rgba(252,250,246,.72); }
.contact-list { margin-top: 26px; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(176,132,45,.18); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-list strong { display: block; font-size: .9rem; color: var(--cream); margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: .87rem; color: rgba(252,250,246,.72); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* Página cabecera interior */
.page-hero {
  background: radial-gradient(circle at 85% 20%, var(--maroon-600), var(--maroon-900) 65%);
  color: var(--cream);
  padding: 76px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(176,132,45,.3) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .22;
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: .78rem; color: rgba(252,250,246,.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); }
.page-hero p { max-width: 560px; margin-top: 14px; color: rgba(252,250,246,.78); }

/* Escudo simbolismo lista horizontal */
.symbol-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.symbol-strip .value-card { padding: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--maroon-900);
  color: rgba(252, 250, 246, .68);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(252, 250, 246, .12);
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { width: 56px; }
.footer-brand strong { display: block; color: var(--cream); font-family: var(--font-head); font-size: 1.1rem; }
.footer-brand p { margin-top: 10px; font-size: .86rem; max-width: 260px; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(252,250,246,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-900); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .2s;
  z-index: 150;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--maroon-600); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .identity, .press-card { grid-template-columns: 1fr; }
  .press-card-media { padding: 40px; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-crest { order: -1; margin-bottom: 10px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 0; }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--cream);
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 190;
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu a {
    display: block;
    padding: 16px 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--maroon-900);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn { margin-top: 24px; }
  .topbar-social { display: none; }
  .grid-2, .grid-3, .form-row.cols-2 { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-band-actions { justify-content: center; }
  .contact-info-card { padding: 30px; }
  .form-card { padding: 28px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-4, .symbol-strip { grid-template-columns: 1fr; }
  .press-card-body { padding: 32px 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
