:root {
  /* Brand palette */
  --color-navy: #1a1a2e;
  --color-yellow: #ffb700;
  --color-cream: #fbf7f0;

  /* Semantic */
  --color-bg: #ffffff;
  --color-bg-alt: var(--color-cream);
  --color-text: var(--color-navy);
  --color-muted: #5b5b6e;
  --color-primary: var(--color-navy);
  --color-primary-dark: #0f0f1f;
  --color-accent: var(--color-yellow);
  --color-accent-dark: #e6a500;
  --color-border: #ece6d8;
  --color-dark: var(--color-navy);

  --max-width: 1180px;
  --max-narrow: 760px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --shadow: 0 6px 24px rgba(26, 26, 46, 0.07);
  --shadow-lg: 0 16px 44px rgba(26, 26, 46, 0.14);
  --font-base: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

a { color: var(--color-navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; text-decoration-color: var(--color-yellow); }
a:hover { text-decoration-color: var(--color-navy); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 0.6em;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  font-weight: 800;
  font-family: var(--font-display);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; }
strong { color: var(--color-navy); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container.narrow { max-width: var(--max-narrow); }

/* Topbar */
.topbar {
  margin: 0;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

/* Co-branding bajo el CTA del hero */
.hero-sponsor {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.hero-sponsor-project {
  height: 88px;
  width: auto;
  display: block;
}
.hero-sponsor-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--color-muted);
  line-height: 1;
}
.hero-sponsor-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-start;
}
.hero-sponsor-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.hero-sponsor-logo {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Tags & badges */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-yellow);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-yellow);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* Highlight (logo-style yellow marker underline) */
.hl {
  background-image: linear-gradient(180deg, transparent 65%, var(--color-yellow) 65%, var(--color-yellow) 95%, transparent 95%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.05em;
}
.dot { color: var(--color-yellow); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 56px; width: auto; display: block; }

.primary-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.primary-nav a {
  color: var(--color-navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}
.primary-nav a:not(.btn):hover { color: var(--color-accent-dark); }
.primary-nav a.btn { padding: 0.55rem 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  margin: 5px auto;
  transition: transform 0.25s, opacity 0.25s;
}
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); }
  .primary-nav a:last-child { border-bottom: 0; margin-top: 0.5rem; text-align: center; }
  .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); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s, border-color 0.2s;
  font-size: 0.98rem;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--color-yellow);
  color: var(--color-navy);
  border-color: var(--color-yellow);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.btn-outline {
  border-color: var(--color-navy);
  color: var(--color-navy);
  background: transparent;
}
.btn-outline:hover { background: var(--color-navy); color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Section utilities */
.section { padding: 5rem 0; }
.section-alt { background: var(--color-cream); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ───────── HERO ───────── */
.hero-wrap { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.hero-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) {
  .hero-card { grid-template-columns: 1fr; }
}
.hero-card-content h1 { margin-bottom: 1.25rem; }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.7rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-aside {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.dot-yellow {
  position: absolute;
  border-radius: 50%;
  background: var(--color-yellow);
  pointer-events: none;
  z-index: 2;
}
.dot-yellow {
  width: 110px;
  height: 110px;
  top: -28px;
  right: -28px;
}
.dot-yellow.small {
  width: 56px;
  height: 56px;
  bottom: 18%;
  left: -22px;
  top: auto;
  right: auto;
}
.dot-yellow.tiny {
  width: 26px;
  height: 26px;
  bottom: -14px;
  right: 22%;
  top: auto;
}

/* ───────── CALLOUT (banner convocatoria) ───────── */
.callout-wrap { padding: 0.5rem 1.25rem 0; }
.callout {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
}
.callout p { margin: 0; }
.callout strong { color: #fff; }
.callout a {
  color: var(--color-yellow);
  font-weight: 700;
  text-decoration-color: var(--color-yellow);
}
.callout-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-yellow);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255, 183, 0, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 183, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0); }
}

/* ───────── BENEFITS (grid 3x2: intro + 4 cards + 1 destacada) ───────── */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
}
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 0.4rem;
}
.benefit h3 { margin: 0; }
.benefit p { margin: 0; color: var(--color-muted); flex-grow: 1; }
.benefit-link {
  margin-top: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-navy);
  font-size: 0.95rem;
  align-self: flex-start;
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 2px;
}
.benefit-link:hover { text-decoration: none; opacity: 0.85; }

/* Intro: sin celda, contenido suelto */
.benefit-intro {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.5rem;
  gap: 0.6rem;
}
.benefit-intro:hover { transform: none; box-shadow: none; }
.benefit-intro h3 { margin: 0; }
.benefit-intro p { color: var(--color-muted); }
.benefit-intro .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
}
.benefit-intro .section-tag { align-self: flex-start; margin-bottom: 0; }

/* Card destacada (oscura, con fondo ligeramente girado) */
.benefit-featured {
  background: transparent;
  border-color: transparent;
  color: #fff;
  position: relative;
  isolation: isolate;
  box-shadow: none;
}
.benefit-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  transform: rotate(-2.5deg);
  z-index: -1;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s;
}
.benefit-featured:hover { transform: none; }
.benefit-featured:hover::before { transform: rotate(-1deg); }
.benefit-featured h3 { color: #fff; }
.benefit-featured p { color: rgba(255, 255, 255, 0.85); }
.benefit-featured .benefit-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
}
.benefit-featured .benefit-link {
  color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
}

/* ───────── LEVELS (3 cards con variación de color) ───────── */
.levels {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}
@media (min-width: 880px) { .levels { grid-template-columns: repeat(3, 1fr); } }

.level {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.level:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.level-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.level-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(26, 26, 46, 0.08);
  color: var(--color-navy);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.level-tag-alt { background: rgba(26, 26, 46, 0.08); }
.level h3 { margin: 0.25rem 0 0.25rem; font-size: 1.6rem; }
.level p { margin: 0; }
.level-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.25rem 0 0.75rem !important;
}
.level-price span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}
.level-price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.level-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
  flex-grow: 1;
  font-size: 0.95rem;
}
.level-list li {
  position: relative;
  padding-left: 1.4rem;
}
.level-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-dark);
  font-weight: 800;
}
.level-badge {
  position: absolute;
  top: -12px;
  left: 1.25rem;
  background: var(--color-navy);
  color: var(--color-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.level-cta {
  margin-top: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-navy);
  font-size: 1rem;
  align-self: flex-start;
  border-bottom: 2px solid var(--color-navy);
  padding-bottom: 2px;
}
.level-cta:hover { text-decoration: none; opacity: 0.8; }

.level--cream { background: #fff; border: 1px solid var(--color-border); }
.level--yellow { background: var(--color-yellow); }
.level--yellow .level-tag { background: rgba(26, 26, 46, 0.12); }
.level--navy {
  background: var(--color-navy);
  color: #fff;
}
.level--navy h3 { color: #fff; }
.level--navy .level-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.level--navy .level-cta {
  color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
}
.level--navy .level-price span { color: rgba(255, 255, 255, 0.7); }
.level--navy .level-list li::before { color: var(--color-yellow); }
.level--navy strong { color: #fff; }
.level--navy p { color: rgba(255, 255, 255, 0.92); }

.fineprint {
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ───────── STEPS ───────── */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li {
  counter-increment: step;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.25rem;
  border: 1px solid var(--color-border);
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sponsor */
.sponsor { text-align: center; max-width: 880px; margin: 0 auto; padding: 0 1.25rem; }
.sponsor h2 { margin-bottom: 1rem; }
.sponsor-lead { max-width: 720px; margin: 0 auto 2rem; }
.sponsor-stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .sponsor-stats { grid-template-columns: repeat(3, 1fr); } }
.sponsor-stats li {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}
.sponsor-stats strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.sponsor-stats span {
  font-size: 0.92rem;
  color: var(--color-muted);
  max-width: 220px;
}
.sponsor-quote {
  font-size: 1.05rem;
  color: var(--color-navy);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.6rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.25rem 1.25rem;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--color-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--color-accent-dark);
  transition: transform 0.2s;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 1rem; color: var(--color-muted); }

/* ───────── CONTACT (gran tarjeta redondeada con form layout) ───────── */
.contact-wrap { padding-top: 2rem; padding-bottom: 4rem; }
.contact-card {
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-card h2 { color: #fff; }
.contact-card-content p { color: rgba(255, 255, 255, 0.85); }
.contact-card-content .contact-list li { border-bottom-color: rgba(255, 255, 255, 0.15); }
.contact-card-content .contact-list strong { color: rgba(255, 255, 255, 0.6); }
.contact-card-content .contact-list a,
.contact-card-content .contact-list span { color: #fff; }
.contact-card-content .contact-list a { text-decoration-color: var(--color-yellow); }
.contact-card-content .contact-list a:hover { text-decoration-color: #fff; }
.contact-time { font-size: 0.95rem; }
.contact-card-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--color-text);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (max-width: 560px) { .contact-card-form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-navy);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--color-yellow);
  outline-offset: 1px;
  border-color: var(--color-navy);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}
.field-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-navy); }
.field-check a { color: var(--color-navy); }
.contact-card-form .btn-block { grid-column: 1 / -1; margin-top: 0.25rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.85rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 700;
}
.contact-list a, .contact-list span {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
}
.contact-fineprint {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0.85rem 0 0;
  text-align: center;
  grid-column: 1 / -1;
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: #d8d8e0;
  padding: 2.5rem 0;
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  margin: 0;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
}
.footer-sub {
  font-weight: 400;
  color: var(--color-yellow);
  font-size: 0.88rem;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
  flex: 1;
  justify-content: center;
}
.footer-legal-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-legal-nav a:hover {
  color: var(--color-yellow);
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
}
.footer-legal { margin: 0; color: rgba(255, 255, 255, 0.65); width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 720px) {
  .footer-inner { align-items: flex-start; }
}
.site-footer a { color: var(--color-yellow); text-decoration-color: var(--color-yellow); }
