/* ═══════════════════════════════════════════════════════════════
   Euro-Gespann-Treffen — eurogespanntreffen.de
   House-Style analog Gespann-Katalog/-Lexikon, Leitfarbe Amber.
   Generiert von build.py — nicht direkt editieren, sondern Quelle.
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonts (lokal, wie Katalog) ── */
@font-face {
  font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/dm-mono-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/dm-mono-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/dm-mono-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Mono'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/dm-mono-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #BA7517;      /* EGT-Amber */
  --primary-h: #FFF3E0;    /* helles Amber (Hintergrund/Callout) */
  --dark: #0A0A0A;
  --gray-900: #1C1C1C;
  --gray-800: #2D2D2D;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --side-nav-width: 150px;
  --sh: 0 2px 12px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  display: flex;
  min-height: 100vh;
  background: var(--white);
  color: var(--text-primary);
  font-family: 'DM Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── SIDE NAV ── */
.side-nav {
  position: fixed; left: 0; top: 0;
  width: var(--side-nav-width); height: 100vh;
  background: var(--dark);
  display: flex; flex-direction: column;
  padding: 2rem 1.25rem;
  z-index: 200;
  border-right: 1px solid var(--gray-800);
  overflow-y: auto;
}
.side-nav-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--white); text-decoration: none; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  margin-bottom: auto; line-height: 1.1;
}
.side-nav-brand:hover { color: var(--primary); }
.side-nav-links { list-style: none; margin: 1.5rem 0; padding: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.side-nav-links a {
  display: flex; flex-direction: column;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; text-decoration: none;
  padding: 0.45rem 0; transition: color 0.2s ease; line-height: 1.3;
}
.side-nav-links a .link-num { font-size: 0.58rem; color: var(--primary); margin-bottom: 0.15rem; }
.side-nav-links a:hover, .side-nav-links a.active { color: var(--white); }
.side-nav-meta { display: flex; flex-direction: column; gap: 0.4rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-800); }
.side-nav-meta span { font-size: 0.6rem; color: rgba(255,255,255,0.55); line-height: 1.4; }
.side-nav-translate { margin-top: 1rem; }
.side-nav-translate button {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  color: rgba(255,255,255,0.65); background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.6rem 0.5rem; cursor: pointer; width: 100%; min-height: 44px; transition: all 0.2s;
}
.side-nav-translate button:hover { color: var(--white); border-color: var(--primary); }
.side-nav-imprint {
  font-size: 0.6rem; color: rgba(255,255,255,0.55); text-decoration: none;
  margin-top: 0.75rem; padding: 0.4rem 0.25rem; display: block; transition: color 0.2s;
}
.side-nav-imprint:hover { color: var(--white); }

/* ── MOBILE HAMBURGER + OVERLAY ── */
.hamburger {
  display: none; position: fixed; top: 1rem; left: 1rem; z-index: 300;
  width: 44px; height: 44px; background: var(--dark); border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: var(--dark); z-index: 250;
  flex-direction: column; justify-content: center; padding: 4rem;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav-overlay ul li { margin-bottom: 1.25rem; }
.mobile-nav-overlay ul a {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(1.8rem, 7vw, 3.2rem);
  color: var(--white); text-decoration: none; display: block; transition: color 0.2s;
}
.mobile-nav-overlay ul a:hover { color: var(--primary); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 2rem; background: none; border: none;
  color: var(--white); font-size: 2.5rem; cursor: pointer; line-height: 1;
}

/* ── MAIN CONTENT ── */
.main-content { margin-left: var(--side-nav-width); flex: 1; min-width: 0; }

/* ── HERO (Startseite) ── */
.hero {
  min-height: 88vh; color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2.5rem 4rem 5rem; position: relative; overflow: hidden;
  background:
    /* Unterkante 80px hoch auf Weiss auslaufen lassen (weicher Uebergang zur Section darunter),
       am Bildrand vollstaendig weiss (0% des Fotos sichtbar). Zusaetzlich ein gezielter dunkler
       Verlauf links (dort steht der Text), der nach rechts komplett ausblendet, damit der
       ueberwiegende Teil des Fotos unabgedunkelt bleibt (Bernhard 2026-09-06: bessere Lesbarkeit). */
    linear-gradient(to top, rgba(255,255,255,1) 0px, rgba(255,255,255,0) 80px),
    linear-gradient(100deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.45) 35%, rgba(10,10,10,0.15) 60%, rgba(10,10,10,0) 78%),
    url('../img/hero-2027.jpg') center 35% / cover no-repeat;
}
.hero-inner { margin-top: -50px; }
.hero-label {
  font-size: 0.85rem; color: var(--primary); text-transform: uppercase;
  letter-spacing: 0.22em; margin-bottom: 1.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 7vw, 6.2rem); font-weight: 400;
  line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 0.75rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 4px 28px rgba(0,0,0,0.6);
}
.hero-title .em { color: var(--primary); display: block; }
.hero-motto {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem); font-weight: 400;
  color: var(--primary); letter-spacing: -0.01em; margin: 0 0 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero-meta {
  font-size: 1.05rem; color: rgba(255,255,255,0.92); line-height: 1.9; max-width: 640px; margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.55);
}
/* Flex-Kinder schrumpfen sonst nicht unter ihre Inhaltsbreite (min-width:auto) und laufen auf
   schmalen Viewports seitlich aus dem Rahmen statt umzubrechen — Fix fuer alle Hero-Textelemente. */
.hero-label, .hero-title, .hero-motto, .hero-meta, .hero-cta { min-width: 0; overflow-wrap: break-word; }
.hero-meta strong { color: var(--white); }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem; align-self: flex-start;
  font-family: 'DM Mono', monospace; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--white); background: var(--primary); padding: 1rem 1.75rem; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); background: #d18a29; }

/* ── PAGE HEADER (Unterseiten) ── */
.page-header {
  padding: 1.5rem 4rem 2.25rem; background: var(--dark); color: var(--white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: attr(data-bg-text); position: absolute; bottom: -2.5rem; right: 1.5rem;
  font-family: 'Archivo Black', sans-serif; font-size: 11rem; color: rgba(255,255,255,0.10);
  letter-spacing: -0.05em; line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.page-label {
  display: block; font-size: 0.72rem; color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem;
}
.page-title {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 400; line-height: 0.92; letter-spacing: -0.04em; margin: 0; position: relative; z-index: 1;
}

/* ── CONTENT SECTIONS ── */
.section { padding: 3.5rem 4rem; border-bottom: 1px solid var(--gray-200); }
/* Begruessung ruecht 50% dichter an den Hero-Bereich heran (halbierter Top-Abstand) */
#begruessung { padding-top: 1.75rem; }
.section:last-of-type { border-bottom: none; }
.section h2 {
  font-family: 'Archivo Black', sans-serif; font-size: 1.6rem; font-weight: 400;
  letter-spacing: -0.02em; margin: 0 0 1.5rem; color: var(--dark);
}
.section h3 {
  font-family: 'DM Mono', monospace; font-weight: 500; font-size: 1.05rem;
  color: var(--primary); margin: 2rem 0 0.75rem; letter-spacing: 0.02em;
}
.section p { max-width: 720px; margin: 0 0 1rem; color: var(--text-secondary); }
.section p strong { color: var(--dark); }
.section a { color: var(--primary); text-decoration: none; border-bottom: 1px solid rgba(186,117,23,0.3); }
.section a:hover { border-bottom-color: var(--primary); }
.section ul { max-width: 720px; padding-left: 1.2rem; color: var(--text-secondary); }
.section li { margin-bottom: 0.5rem; }
.lead { font-size: 1.15rem; color: var(--dark) !important; max-width: 720px; }

/* dreisprachige Begrüßung */
.greet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1000px; }
.greet-card { border-left: 3px solid var(--primary); padding-left: 1.25rem; }
.greet-card .lang { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--primary); margin-bottom: 0.6rem; }
.greet-card p { font-size: 0.92rem; }

/* Callout */
.callout {
  background: var(--primary-h); border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem; max-width: 720px; margin: 1.5rem 0;
}
.callout p { color: var(--dark); margin: 0; }

/* Preisliste / Tabellen */
.pricelist { max-width: 620px; border-collapse: collapse; width: 100%; margin: 1rem 0 2rem; }
.pricelist td { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); }
.pricelist td:last-child { text-align: right; font-weight: 500; white-space: nowrap; }
.pricelist tr:last-child td { border-bottom: none; }

/* Info-Kacheln (Händler, Öffnungszeiten) */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; max-width: 900px; }
.tile { border: 1px solid var(--gray-200); border-top: 3px solid var(--primary); padding: 1.25rem; background: var(--white); }
.tile strong { display: block; color: var(--dark); margin-bottom: 0.35rem; }
.tile-link { display: block; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.tile-link:hover { border-color: var(--primary); transform: translateY(-2px); }
.tile-more { display: block; font-size: 0.65rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; }

/* Buttons/Downloads */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--white); background: var(--primary); padding: 0.85rem 1.5rem;
  text-decoration: none; border: none; margin-top: 0.5rem; transition: background 0.2s;
}
.btn:hover { background: #d18a29; border-bottom: none; }
.section .btn { color: var(--white); border-bottom: none; }

/* Dokument-Thumbnails (PDF-Vorschau) */
.doc-thumb-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1rem 0 1.5rem; }
.doc-thumb { display: block; text-decoration: none; width: 150px; text-align: center; transition: transform 0.2s; }
.doc-thumb:hover { transform: translateY(-3px); }
.doc-thumb img { width: 100%; border: 1px solid var(--gray-200); box-shadow: 0 2px 8px rgba(0,0,0,0.12); background: var(--white); }
.doc-thumb span { display: block; margin-top: 0.5rem; font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Logo (Nav-Badge + Hero-Emblem) ── */
.side-nav-logo { display: block; width: 62px; margin-bottom: 1.25rem; background: var(--white); border-radius: 8px; padding: 5px; }
.hero-logo { width: 128px; margin-bottom: 2rem; background: var(--white); border-radius: 12px; padding: 8px; }

/* ── Chronik: Jahres-Raster ── */
.year-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; max-width: 1100px; }
.year-tile {
  display: flex; flex-direction: column; justify-content: space-between;
  aspect-ratio: 1 / 1; padding: 1rem; text-decoration: none; border: 1px solid var(--gray-200);
  background: var(--white); color: var(--dark); transition: transform 0.2s, border-color 0.2s;
}
.year-tile .yr { font-family: 'Archivo Black', sans-serif; font-size: 1.9rem; line-height: 1; }
.year-tile .nr { font-size: 0.68rem; color: var(--text-secondary); }
.year-tile .detail { display: block; font-size: 0.66rem; color: var(--text-secondary); margin-top: 0.3rem; line-height: 1.3; }
.year-tile.live { border-top: 4px solid var(--primary); }
.year-tile.live:hover { transform: translateY(-3px); border-color: var(--primary); }
.year-tile.live .go { font-size: 0.65rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.15em; }
.year-tile.soon { color: var(--text-secondary); background: var(--gray-100); border-style: dashed; pointer-events: none; }
.year-tile.off { color: #999; background: repeating-linear-gradient(45deg, #f7f7f7, #f7f7f7 8px, #f0f0f0 8px, #f0f0f0 16px); pointer-events: none; }
.year-tile.off .nr { color: #b00; }

/* ── Chronik: Galerie ── */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; max-width: 1100px; margin-top: 1rem; }
.gallery a { display: block; position: relative; overflow: hidden; background: var(--gray-100); aspect-ratio: 1 / 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery a:hover img { transform: scale(1.06); }
.gallery .num {
  position: absolute; right: 0.3rem; bottom: 0.25rem; z-index: 1;
  font-family: 'DM Mono', monospace; font-size: 0.62rem; color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45); padding: 0.05rem 0.35rem; border-radius: 2px; pointer-events: none;
}
/* ── Chronik: Zeitschriftenseiten (unbeschnitten, 1989-1997) ── */
.page-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; max-width: 1100px; margin-top: 1rem; }
.page-gallery a { display: block; position: relative; background: var(--gray-100); border: 1px solid var(--gray-200); }
.page-gallery img { width: 100%; height: auto; display: block; transition: transform 0.35s ease; }
.page-gallery a:hover img { transform: scale(1.03); }
.page-gallery .num {
  position: absolute; right: 0.3rem; bottom: 0.25rem; z-index: 1;
  font-family: 'DM Mono', monospace; font-size: 0.62rem; color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45); padding: 0.05rem 0.35rem; border-radius: 2px; pointer-events: none;
}
.chronik-facts { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin: 0 0 1.5rem; padding: 1.25rem 1.5rem; background: var(--primary-h); max-width: 720px; }
.chronik-facts div { min-width: 120px; }
.chronik-facts .k { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); display: block; }
.chronik-facts .v { color: var(--dark); font-weight: 500; }

/* ── Lightbox ── */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.94); }
.lb-overlay.open { display: flex; align-items: center; justify-content: center; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 90vh; text-align: center; }
.lb-img-wrap { position: relative; display: inline-block; max-width: 92vw; max-height: 82vh; }
.lb-img { display: block; max-width: 92vw; max-height: 82vh; object-fit: contain; }
.lb-copy {
  position: absolute; right: 0.6rem; bottom: 0.6rem;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.5); padding: 0.2rem 0.6rem; border-radius: 2px;
}
.lb-cap { color: rgba(255,255,255,0.7); font-family: 'DM Mono', monospace; font-size: 0.8rem; margin-top: 0.75rem; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: none; border: none; color: var(--white); cursor: pointer; z-index: 501;
}
.lb-close { top: 1rem; right: 1.5rem; font-size: 2.6rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 3.5rem; padding: 1rem; }
.lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { color: var(--primary); }

/* ── Anfahrt-Platzhalter ── */
.map-placeholder {
  max-width: 720px; aspect-ratio: 16 / 7; border: 1px dashed var(--gray-200);
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.85rem; text-align: center; margin: 1rem 0;
}
.map-embed {
  max-width: 720px; aspect-ratio: 16 / 7; border: 1px solid var(--gray-200);
  margin: 1rem 0; overflow: hidden;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: 1.5rem 4rem 3rem; font-size: 0.8rem;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.footer-brand { font-family: 'Archivo Black', sans-serif; color: var(--white); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 1rem; display: block; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1rem 0; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.22); margin: 1.5rem 0 1rem; }
.footer-sidecarbase { font-family: 'Archivo Black', sans-serif; font-size: 0.9rem; color: var(--white); letter-spacing: 0.04em; text-decoration: none; display: inline-block; }
.footer-sidecarbase:hover { color: var(--primary); }

/* ── Chronik: Jahres-Navigation (Vor/Zurueck) ── */
.year-nav { display: flex; justify-content: space-between; align-items: center; max-width: 720px; margin-bottom: 1.5rem; font-size: 0.85rem; }
.year-nav a { color: var(--primary); text-decoration: none; border-bottom: none; }
.year-nav a:hover { text-decoration: underline; }
.year-nav-all { color: var(--text-secondary) !important; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; }
.year-nav .disabled { color: var(--gray-200); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .side-nav { display: none; }
  .hamburger { display: flex; }
  .main-content { margin-left: 0; }
  body { display: block; }
  .hero { padding: 3.5rem 1.5rem 4rem; min-height: 80vh; }
  .page-header { padding: 3rem 1.5rem 2rem; }
  .page-header::before { font-size: 6rem; bottom: -1rem; }
  .section { padding: 2.5rem 1.5rem; }
  .footer { padding: 1.25rem 1.5rem 2.5rem; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .greet-grid { grid-template-columns: 1fr; }
}
