/* ============================================================
   ADT — Academia Departamental de Taekwondo de Bolívar
   style.css — Variables, reset y estilos globales
   Versión: 1.0
   ============================================================ */

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

/* ── Variables ────────────────────────────────────────────── */
:root {
  /* Colores */
  --negro:         #1A1A1A;
  --naranja:       #E8650A;
  --naranja-hover: #C4540A;
  --naranja-suave: #FFF3E8;
  --blanco:        #FFFFFF;
  --gris-piedra:   #F5F5F5;
  --gris-texto:    #4A4A4A;
  --gris-borde:    #E0E0E0;

  /* Tipografía */
  --font-titulo:    'Oswald', sans-serif;
  --font-sub:       'Montserrat', sans-serif;
  --font-cuerpo:    'Inter', sans-serif;
  --font-cita:      'Playfair Display', serif;

  /* Espaciado (sistema 8px) */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;

  /* Layout */
  --max-width:      1200px;
  --header-h:       72px;
  --radius:         8px;
  --radius-lg:      16px;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.16);

  /* Transiciones */
  --t-fast:  150ms ease;
  --t-base:  250ms ease;
  --t-slow:  400ms ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-cuerpo);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gris-texto);
  background: var(--blanco);
  min-height: 100vh;
}

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

a {
  color: var(--naranja);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--naranja-hover); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ── Tipografía global ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-titulo);
  font-weight: 700;
  line-height: 1.2;
  color: var(--negro);
  text-transform: uppercase;
  letter-spacing: .03em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--s2); }
p:last-child { margin-bottom: 0; }

blockquote {
  font-family: var(--font-cita);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gris-texto);
  border-left: 4px solid var(--naranja);
  padding-left: var(--s3);
  margin: var(--s4) 0;
}

/* ── Layout helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s3);
}

.section {
  padding: var(--s10) 0;
}
.section--gray { background: var(--gris-piedra); }
.section--dark {
  background: var(--negro);
  color: var(--blanco);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--blanco); }
.section--orange {
  background: var(--naranja);
  color: var(--blanco);
}
.section--orange h2,
.section--orange h3 { color: var(--blanco); }

.section--warm {
  background: var(--naranja-suave);
}
.section--warm h2,
.section--warm h3 { color: var(--negro); }

.section__header {
  text-align: center;
  margin-bottom: var(--s8);
}
.section__header h2 { margin-bottom: var(--s2); }
.section__header p {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: inherit;
  opacity: .8;
}

/* ── Grid ─────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: var(--s4);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ── Flex helpers ─────────────────────────────────────────── */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: var(--s1); }
.gap-2 { gap: var(--s2); }
.gap-3 { gap: var(--s3); }
.gap-4 { gap: var(--s4); }

/* ── Botones ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--naranja);
  color: var(--blanco);
}
.btn--primary:hover {
  background: var(--naranja-hover);
  color: var(--blanco);
  box-shadow: 0 4px 16px rgba(232,101,10,.4);
}

.btn--outline {
  background: transparent;
  color: var(--naranja);
  border: 2px solid var(--naranja);
}
.btn--outline:hover {
  background: var(--naranja);
  color: var(--blanco);
}

.btn--white {
  background: var(--blanco);
  color: var(--negro);
}
.btn--white:hover {
  background: var(--naranja-suave);
  color: var(--naranja);
}

.btn--outline-white {
  background: transparent;
  color: var(--blanco);
  border: 2px solid var(--blanco);
}
.btn--outline-white:hover {
  background: var(--blanco);
  color: var(--negro);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* ── Badges / Tags ────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge--naranja { background: var(--naranja-suave); color: var(--naranja); }
.badge--negro   { background: var(--negro); color: var(--blanco); }
.badge--white   { background: rgba(255,255,255,.2); color: var(--blanco); }

/* ── Separador decorativo ─────────────────────────────────── */
.divider {
  width: 48px;
  height: 4px;
  background: var(--naranja);
  border-radius: 2px;
  margin: var(--s2) auto var(--s3);
}
.divider--left { margin-left: 0; }

/* ── Placeholder de imágenes ──────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-family: var(--font-sub);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Header / Navbar ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.header.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}
.header.is-scrolled .header__logo-text strong {
  color: var(--negro);
}
.header.is-scrolled .header__logo-text span {
  color: var(--naranja);
}
.header.is-scrolled .nav__link {
  color: var(--gris-texto);
}
.header.is-scrolled .nav__link:hover,
.header.is-scrolled .nav__link.active {
  color: var(--naranja);
}
.header.is-scrolled .nav__toggle span {
  background: var(--negro);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
}
.header__logo img {
  height: 48px;
  width: auto;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-text strong {
  font-family: var(--font-sub);
  font-size: .82rem;
  font-weight: 700;
  color: var(--blanco);
  text-transform: none;
  letter-spacing: .02em;
  line-height: 1.2;
}
.header__logo-text span {
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 500;
  color: var(--naranja);
  text-transform: none;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s1);
}
.nav__link {
  font-family: var(--font-sub);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover,
.nav__link.active {
  color: var(--naranja);
  background: rgba(232,101,10,.1);
}

.nav__cta {
  margin-left: var(--s2);
}

/* Menú hamburguesa */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF3E8 0%, #FFE4CC 50%, #FFD6B0 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255,243,232,.95) 0%,
    rgba(255,228,204,.7) 50%,
    rgba(255,214,176,.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--s12) 0 var(--s8);
  max-width: 680px;
}

.hero__badge {
  margin-bottom: var(--s3);
}

.hero__title {
  color: var(--negro);
  margin-bottom: var(--s3);
}
.hero__title em {
  color: var(--naranja);
  font-style: normal;
}

.hero__sub {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  color: var(--gris-texto);
  margin-bottom: var(--s5);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  color: var(--gris-texto);
  opacity: .4;
  font-family: var(--font-sub);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(26,26,26,.2);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats strip ──────────────────────────────────────────── */
.stats {
  background: var(--naranja);
  padding: var(--s5) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--s4);
  text-align: center;
}
.stat__num {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blanco);
  line-height: 1;
  display: block;
}
.stat__label {
  font-family: var(--font-sub);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: var(--s1);
  display: block;
}

/* ── Cards de programas ───────────────────────────────────── */
.program-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.program-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.program-card__body {
  padding: var(--s3);
}
.program-card__title {
  font-family: var(--font-titulo);
  font-size: 1.3rem;
  color: var(--negro);
  margin-bottom: var(--s1);
}
.program-card__age {
  font-family: var(--font-sub);
  font-size: .8rem;
  color: var(--naranja);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--s2);
}
.program-card__desc {
  font-size: .9rem;
  color: var(--gris-texto);
  margin-bottom: var(--s3);
}
.program-card__link {
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 700;
  color: var(--naranja);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}
.program-card__link:hover { gap: 10px; color: var(--naranja-hover); }
.program-card__link::after { content: '→'; }

/* ── Por qué ADT ──────────────────────────────────────────── */
.why-card {
  background: var(--blanco);
  padding: var(--s4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris-borde);
  transition: all var(--t-base);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--naranja);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--naranja-suave);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--naranja);
  margin-bottom: var(--s2);
}
.why-card__title {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--negro);
  text-transform: none;
  margin-bottom: var(--s1);
}
.why-card__desc {
  font-size: .9rem;
  color: var(--gris-texto);
  line-height: 1.6;
}

/* ── Proceso / Steps ──────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s4);
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 56px;
  height: 56px;
  background: var(--naranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s2);
  font-family: var(--font-titulo);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blanco);
}
.step__title {
  font-family: var(--font-titulo);
  font-size: 1.1rem;
  color: var(--negro);
  margin-bottom: var(--s1);
}
.step__desc { font-size: .9rem; }

/* ── Testimonio ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: var(--s4);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--s2);
  left: var(--s3);
  font-family: var(--font-cita);
  font-size: 5rem;
  color: var(--naranja);
  opacity: .15;
  line-height: 1;
}
.testimonial-card__text {
  font-family: var(--font-cita);
  font-style: italic;
  font-size: 1rem;
  color: var(--gris-texto);
  margin-bottom: var(--s3);
  position: relative;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gris-piedra);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--font-sub);
  font-size: .9rem;
  font-weight: 700;
  color: var(--negro);
}
.testimonial-card__role {
  font-family: var(--font-sub);
  font-size: .78rem;
  color: var(--naranja);
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--naranja);
  padding: var(--s10) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--blanco);
  border-radius: 50%;
  opacity: .06;
}
.cta-band__title {
  color: var(--blanco);
  margin-bottom: var(--s2);
}
.cta-band__sub {
  font-family: var(--font-sub);
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: var(--s5);
}
.cta-band__actions {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--gris-piedra);
  color: var(--gris-texto);
  padding: var(--s8) 0 var(--s4);
  border-top: 1px solid var(--gris-borde);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s6);
  margin-bottom: var(--s6);
}
.footer__brand img { height: 60px; margin-bottom: var(--s2); }
.footer__brand p {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: var(--s3);
}
.footer__social {
  display: flex;
  gap: var(--s2);
}
.footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--blanco);
  border: 1px solid var(--gris-borde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-texto);
  font-size: .9rem;
  transition: all var(--t-fast);
}
.footer__social-link:hover { background: var(--naranja); color: var(--blanco); border-color: var(--naranja); }

.footer__col h4 {
  font-family: var(--font-titulo);
  font-size: .95rem;
  color: var(--negro);
  margin-bottom: var(--s2);
  letter-spacing: .05em;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.footer__links a {
  font-size: .88rem;
  color: var(--gris-texto);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--naranja); }

.footer__contact-item {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
  margin-bottom: var(--s2);
  font-size: .88rem;
}
.footer__contact-icon {
  color: var(--naranja);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--gris-borde);
  padding-top: var(--s3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
  font-size: .82rem;
}
.footer__bottom a { color: var(--naranja); }

/* ── WhatsApp sticky ──────────────────────────────────────── */
.wa-sticky {
  position: fixed;
  bottom: var(--s4);
  right: var(--s4);
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
  color: var(--blanco);
}
.wa-sticky svg { fill: var(--blanco); width: 28px; height: 28px; }

/* ── Formulario de contacto ───────────────────────────────── */
.form-group {
  margin-bottom: var(--s3);
}
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: .85rem;
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gris-borde);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--negro);
  background: var(--blanco);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--naranja);
  box-shadow: 0 0 0 3px rgba(232,101,10,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Utilidades ───────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-naranja { color: var(--naranja); }
.text-blanco  { color: var(--blanco); }
.text-negro   { color: var(--negro); }
.text-muted   { color: rgba(255,255,255,.6); }
.mt-1 { margin-top: var(--s1); }
.mt-2 { margin-top: var(--s2); }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mb-0 { margin-bottom: 0; }
.w-100 { width: 100%; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--negro);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: var(--s3);
    gap: var(--s1);
    transform: translateX(100%);
    transition: transform var(--t-base);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }

  .nav__link {
    padding: 14px var(--s2);
    font-size: 1rem;
    border-radius: var(--radius);
  }
  .nav__cta { margin-left: 0; margin-top: var(--s2); }
  .nav__cta .btn { width: 100%; justify-content: center; }

  .nav__toggle { display: flex; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s4); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section { padding: var(--s8) 0; }
  .section__header { margin-bottom: var(--s6); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--s2); }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}
