/* ==========================================================================
   PALIO DEI TERZIERI — main.css
   Custom properties, reset, base, tipografia, utility, layout
   ========================================================================== */

/* ─── 1. CUSTOM PROPERTIES ──────────────────────────────────────────── */
:root {
  /* Toni scuri (per hero, footer e accenti dark) */
  --ink:          #0A0200;
  --ink-2:        #130600;
  --ink-3:        #1A0A00;
  --ink-4:        #0E0500;
  --ink-5:        #080200;
  /* Bordeaux & oro */
  --burgundy:     #6B1520;
  --burgundy-2:   #8B1A28;
  --deep-red:     #9B1C2C;
  --gold:         #B8861E;
  --gold-light:   #D4A338;
  --gold-pale:    #E8C97A;
  --gold-deep:    #8B6515;
  /* Pergamena chiara — colore dominante ora */
  --parchment:    #FAF1D6;
  --parchment-2:  #F0E2BA;
  --parchment-3:  #E5D2A0;
  --parchment-warm: #F5E4B8;
  /* Inchiostro per testo su pergamena */
  --ink-text:     #2A1B09;
  --ink-text-2:   #4A2E0F;
  /* Accent dei terzieri (usate per stati hover/iconografia interna alle pagine) */
  --castello-acc: #5BAE6E;
  --casalino-acc: #4A7BB8;
  --borgo-acc:    #F4C430;
  /* Stati */
  --error:        #C24A4A;

  --nav-h:        70px;
  --max-w:        1200px;

  --t-fast:       0.25s ease;
  --t-base:       0.35s ease;
  --t-slow:       0.6s ease;

  /* Sistema tipografico — 3 voci, ruoli chiari */
  --font-display: 'Cinzel Decorative', Georgia, serif;  /* solo H1 + section-title */
  --font-heading: 'Cinzel', Georgia, serif;             /* H3/H4, etichette, numeri grandi */
  --font-body:    'EB Garamond', Georgia, serif;        /* corpo, citazioni */
}

/* ─── 2. RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
img, svg, video { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; border-radius: 0; }
table { border-collapse: collapse; width: 100%; }

/* ─── 3. BASE ───────────────────────────────────────────────────────── */
body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--parchment);
  color: var(--ink-text);
  font-size: 1.08rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.4rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

/* ─── 4. TIPOGRAFIA — 3 voci, ruoli chiari ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-text);
  letter-spacing: 0.01em;
}
/* Display (decorato) — solo H1 e section-title */
h1, h2.section-title {
  font-family: var(--font-display);
}
/* Heading (Cinzel pulito) — H3/H4 e tutti i titoli di card */
h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-family: var(--font-display); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-family: var(--font-body); }
em { font-style: italic; }

/* Override: titoli di card e numeri grandi → Cinzel pulito (non Decorative) */
.terziere-name,
.evento-title,
.news-title,
.taverna-name,
.history-card .year,
.timeline-year,
.partner-name,
.org-card .name,
.cd-num,
.punteggio-inline .num,
.punteggio-val {
  font-family: var(--font-heading);
  font-weight: 700;
}
/* Numeri "monumentali": tabular-nums + tracking stretto */
.cd-num,
.punteggio-inline .num,
.punteggio-val {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ─── 5. UTILITY ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-muted { color: var(--parchment-2); opacity: 0.75; }
.text-center { text-align: center; }
.italic { font-style: italic; }
.hidden { display: none !important; }

/* Spaziatura: utility per stacchi tra elementi al fondo di un blocco/section */
.mt-sm { margin-top: 1.5rem; }
.mt-md { margin-top: 2.5rem; }
.mt-lg { margin-top: 3rem; }

/* Riga CTA orizzontale (riusabile fuori dall'hero, niente animazione) */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.cta-row.center { justify-content: center; }

/* Nota di servizio (mailto + telefono in fondo a una sezione) */
.helper-note {
  font-style: italic;
  color: var(--ink-text-2);
  opacity: 0.85;
  line-height: 1.85;
  max-width: 700px;
  margin: 3rem auto 0;
}
.section-bg-burgundy .helper-note,
.section-bg-ink .helper-note { color: var(--parchment-2); opacity: 0.85; }
.helper-note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 0.2em; }
.helper-note a:hover { color: var(--burgundy); }
.section-bg-burgundy .helper-note a,
.section-bg-ink .helper-note a { color: var(--gold-light); }

/* Diamond icon dorato per liste menu/specialità */
.icon-gold { color: var(--gold-light); }
.icon-gold .icon { color: var(--gold-light); }

/* ─── ICON SYSTEM (SVG sprite locale) ──────────────────────────────── */
/* Tutte le icone usano <svg class="icon"><use href="img/icons.svg#name"/></svg>.
   Si scalano col font-size (width:1em / height:1em) ed ereditano il colore (currentColor). */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  vertical-align: -0.13em;
  flex-shrink: 0;
}
.icon use { fill: inherit; stroke: inherit; }

/* ─── 6. LAYOUT SEZIONI ─────────────────────────────────────────────── */
.section {
  padding: 6.5rem 2rem;
  position: relative;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
/* Sezioni chiare — pergamena pulita */
.section-bg-1 {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(184, 134, 30, 0.08) 0%, transparent 60%),
    var(--parchment);
  color: var(--ink-text);
}
.section-bg-2 {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(107, 21, 32, 0.06) 0%, transparent 70%),
    var(--parchment);
  color: var(--ink-text);
}
.section-bg-3 {
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(184, 134, 30, 0.10) 0%, transparent 70%),
    var(--parchment-warm);
  color: var(--ink-text);
}
.section-bg-4 {
  background:
    radial-gradient(ellipse 70% 50% at 70% 80%, rgba(107, 21, 32, 0.08) 0%, transparent 60%),
    var(--parchment);
  color: var(--ink-text);
}
/* Sezione INK — pulita, niente fade artifizzosi */
.section-bg-ink {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--parchment);
  position: relative;
}
.section-bg-ink .section-title { color: var(--parchment); }
.section-bg-ink .section-subtitle,
.section-bg-ink p { color: var(--parchment-2); }
.section-bg-ink .divider hr { border-top-color: rgba(212, 163, 56, 0.4); }

.section-bg-burgundy {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 163, 56, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--burgundy) 0%, #4A0F18 100%);
  color: var(--parchment);
  position: relative; overflow: hidden;
}
.section-bg-burgundy .section-title { color: var(--parchment); }
.section-bg-burgundy .section-subtitle,
.section-bg-burgundy p { color: var(--parchment-2); }
.section-bg-burgundy .divider hr { border-top-color: rgba(212, 163, 56, 0.4); }
.section-bg-burgundy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(201,151,43,0.12), transparent 60%);
  pointer-events: none;
}

/* Sezione "pergamena" — chiara, calda, per spezzare il buio */
.section-bg-parchment {
  background:
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(201, 151, 43, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(107, 21, 32, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #F0E2BA 0%, #E5D2A2 50%, #DCC58E 100%);
  color: #2A1B09;
  position: relative;
  overflow: hidden;
}
.section-bg-parchment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(110, 70, 20, 0.04) 80px, rgba(110, 70, 20, 0.04) 81px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(110, 70, 20, 0.04) 60px, rgba(110, 70, 20, 0.04) 61px);
  pointer-events: none;
}
.section-bg-parchment .section-label { color: #6B1520; }
.section-bg-parchment .section-label::after { border-top-color: rgba(107, 21, 32, 0.3); }
.section-bg-parchment .section-label.center::before { border-top-color: rgba(107, 21, 32, 0.3); }
.section-bg-parchment .section-title { color: #2A1B09; }
.section-bg-parchment .section-subtitle,
.section-bg-parchment p { color: #3D2A12; opacity: 1; }
.section-bg-parchment .divider hr { border-top-color: rgba(107, 21, 32, 0.3); }
.section-bg-parchment .divider .gem { background: var(--burgundy); }
.section-bg-parchment .text-gold-light { color: #6B1520 !important; }
.section-bg-parchment em { color: var(--burgundy); font-style: italic; }

/* Prologo — pergamena calda con stacco netto dall'ink dell'hero.
   Crea il primo "respiro luminoso" del sito (pattern editoriale: copertina nera → prima pagina avoria) */
.section-bg-prologue {
  position: relative;
  color: var(--ink-text);
  padding: 7rem 2rem 6rem;
  /* hard-edge: 6% di ink in cima, poi pergamena piena. Niente gradient morbido. */
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink) 4%, var(--parchment-warm) 4%, var(--parchment-warm) 100%);
}
/* Soglia: linea oro orizzontale + sigillo araldico al confine */
.section-bg-prologue::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 4%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translate(-50%, -50%);
}
.section-bg-prologue::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 4%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 4px var(--parchment-warm);
}
.section-bg-prologue .section-title { color: var(--ink-text); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.section-bg-prologue .section-subtitle, .section-bg-prologue p { color: var(--ink-text-2); }
.section-bg-prologue .divider hr { border-top-color: rgba(107, 21, 32, 0.3); }
.section-bg-prologue .divider .gem { background: var(--burgundy); }
.section-bg-prologue .narrative-bridge .quote { color: var(--ink-text); }
.section-bg-prologue .narrative-bridge .quote::before,
.section-bg-prologue .narrative-bridge .quote::after { color: var(--burgundy); }
.section-bg-prologue .narrative-bridge .attribution { color: var(--burgundy); opacity: 0.85; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.section-label .num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--gold-deep);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-right: 0.2rem;
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
.section-bg-ink .section-label .num,
.section-bg-burgundy .section-label .num { color: var(--gold-light); }
.section-bg-parchment .section-label .num { color: var(--burgundy); }
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  border-top: 1px solid rgba(107, 21, 32, 0.3);
}
.section-label.center { justify-content: center; }
.section-label.center::after,
.section-label.center::before {
  content: '';
  flex: 0 1 80px;
  height: 1px;
  border-top: 1px solid rgba(107, 21, 32, 0.3);
}
/* Su sezioni scure */
.section-bg-ink .section-label,
.section-bg-burgundy .section-label { color: var(--gold-light); }
.section-bg-ink .section-label::after,
.section-bg-ink .section-label.center::before,
.section-bg-burgundy .section-label::after,
.section-bg-burgundy .section-label.center::before {
  border-top-color: rgba(212, 163, 56, 0.4);
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--ink-text);
  line-height: 1.1;
  margin-bottom: 1.3rem;
  font-weight: 700;
}
.section-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--ink-text-2);
  max-width: 700px;
  margin-bottom: 2rem;
}
/* Quando il subtitle è marcato text-center (o sta in un container text-center)
   centra anche il box, non solo il testo */
.section-subtitle.text-center,
.text-center > .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section-bg-ink .section-subtitle,
.section-bg-burgundy .section-subtitle { color: var(--parchment-2); }

/* Divider ornamentale: linea + diamante 10px ruotato 45° + linea */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 3rem;
  max-width: 100%;
}
.divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid rgba(107, 21, 32, 0.35);
}
.divider .gem {
  width: 10px;
  height: 10px;
  background: var(--burgundy);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-bg-ink .divider hr,
.section-bg-burgundy .divider hr { border-top-color: rgba(212, 163, 56, 0.4); }
.section-bg-ink .divider .gem,
.section-bg-burgundy .divider .gem { background: var(--gold-light); }
.divider.center { justify-content: center; }
.divider.center hr { max-width: 120px; }

/* ─── 7. BOTTONI ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  /* Specifico solo le proprietà che cambiano, no 'all' (evita jank) */
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), transform var(--t-base),
              box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn--primary {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
}
.btn--primary:hover {
  background: var(--deep-red);
  border-color: var(--deep-red);
  color: var(--parchment);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -8px rgba(107, 21, 32, 0.55);
}
.btn--secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--secondary:hover {
  background: var(--burgundy);
  color: var(--parchment);
  border-color: var(--burgundy);
  transform: translateY(-2px);
}
/* Bottoni su sezioni scure: oro su ink */
.section-bg-ink .btn--primary,
.section-bg-burgundy .btn--primary,
.hero .btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.section-bg-ink .btn--primary:hover,
.section-bg-burgundy .btn--primary:hover,
.hero .btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
  box-shadow: 0 12px 28px -8px rgba(212, 163, 56, 0.55);
}
.section-bg-ink .btn--secondary,
.section-bg-burgundy .btn--secondary,
.hero .btn--secondary {
  background: transparent;
  color: var(--parchment);
  border-color: var(--gold);
}
.section-bg-ink .btn--secondary:hover,
.section-bg-burgundy .btn--secondary:hover,
.hero .btn--secondary:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 0.5rem 0;
  letter-spacing: 0.25em;
}
.btn--ghost:hover { color: var(--gold-light); transform: translateX(4px); }
.btn i { font-size: 0.9em; }

/* ─── 8. IMG PLACEHOLDER ────────────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--burgundy) 50%, var(--ink-4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.2rem;
  border: 1px solid rgba(201, 151, 43, 0.18);
  transition: filter var(--t-base);
  width: 100%;
}
.img-placeholder i { font-size: 1.8rem; opacity: 0.6; }
.img-placeholder.ratio-16-9 { aspect-ratio: 16 / 9; }
.img-placeholder.h-200 { height: 200px; }

/* ─── 9. PAGE HERO (pagine interne) ─────────────────────────────────── */
.page-hero {
  min-height: 40vh;
  padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107, 21, 32, 0.28) 0%, transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid rgba(201, 151, 43, 0.15);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(201,151,43,0.02) 80px, rgba(201,151,43,0.02) 81px);
  pointer-events: none;
}

/* ─── PAGE HERO con sfondo foto sfocato (variante non distruttiva) ───
   Si attiva aggiungendo la classe .page-hero--photo + il div .page-hero-bg
   con un'<img> al primo posto della section. Per tornare alla versione
   "rosso scuro" originale, basta rimuovere la classe .page-hero--photo
   (oppure il div .page-hero-bg). */
.page-hero--photo {
  isolation: isolate;
  /* Background base in caso l'immagine non si carichi */
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107, 21, 32, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.page-hero--photo .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.page-hero--photo .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: blur(6px) brightness(0.42) saturate(1.1);
  transform: scale(1.08); /* nasconde i bordi del blur */
}
.page-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(107, 21, 32, 0.22) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 4, 0, 0.55) 0%, rgba(10, 4, 0, 0.78) 100%);
  pointer-events: none;
}
@media (max-width: 700px) {
  .page-hero--photo .page-hero-bg img {
    filter: blur(4px) brightness(0.45) saturate(1.05);
  }
}
.page-hero .breadcrumb {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb a { transition: color var(--t-fast); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb i { font-size: 0.55rem; opacity: 0.6; }
.page-hero-logotipo {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--parchment);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-line {
  width: 100px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem 0;
  position: relative;
  z-index: 1;
}

/* ─── 10. RESPONSIVE BREAKPOINTS ────────────────────────────────────── */
@media (max-width: 1200px) {
  .section { padding: 6rem 2rem; }
}
@media (max-width: 900px) {
  .section { padding: 5rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .page-hero { min-height: 30vh; padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
  .section { padding: 5rem 1.5rem; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  .container { padding: 0 1.2rem; }
  .btn { padding: 0.85rem 1.8rem; font-size: 0.72rem; letter-spacing: 0.2em; }
  .divider { margin: 1.2rem 0 2.2rem; }
}
@media (max-width: 420px) {
  .section { padding: 3rem 0.9rem; }
}
