/* ============================================================
   ROUTE 66 — Vintage Americana 50s/60s
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Anton&family=Special+Elite&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

:root {
  --red-66:       #C8362D;
  --red-66-dark:  #8E2218;
  --sun:          #F2B530;
  --sun-dark:     #D9961C;
  --sand:         #E8D4A8;
  --sand-light:   #F5EAD0;
  --cream:        #FAF3E0;
  --paper:        #F7EFD9;
  --sky:          #5A9BC4;
  --sky-deep:     #2C5F7F;
  --ink:          #1E2A3A;
  --asphalt:      #1F1E1B;
  --rust:         #A04A2A;

  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --sign:    "Bebas Neue", Impact, sans-serif;
  --type:    "Special Elite", "Courier New", monospace;
  --body:    "Libre Franklin", system-ui, sans-serif;

  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #c8a96e;
  background-image: url('../img/2013/03/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 2px, rgba(160,74,42,0.015) 2px 3px),
    repeating-linear-gradient(-45deg, transparent 0 2px, rgba(30,42,58,0.01) 2px 3px);
  mix-blend-mode: multiply;
}

/* ============================================================
   TOPBAR / NAV
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--asphalt);
  color: var(--cream);
  border-bottom: 4px solid var(--sun);
  box-shadow: 0 2px 0 var(--red-66), 0 6px 18px rgba(0,0,0,0.25);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sign);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--cream);
  line-height: 1;
  flex-shrink: 0;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform .2s ease;
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); }
.brand small {
  display: block;
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--sun);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  display: block;
  font-family: var(--sign);
  font-size: 17px;
  letter-spacing: 2px;
  padding: 10px 14px;
  color: var(--cream);
  border-radius: 2px;
  transition: all .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sun); }
.nav-links a.active { background: var(--red-66); color: var(--cream); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -18px;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--red-66);
}
.burger {
  display: none;
  background: none;
  border: 2px solid var(--cream);
  color: var(--cream);
  width: 42px; height: 42px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
  place-items: center;
}

/* ============================================================
   HERO — carousel photo background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 24px 100px;
  overflow: hidden;
  background-color: var(--asphalt);
}

/* Slides layer */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

/* Dark gradient overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31,30,27,0.15) 0%,
    rgba(31,30,27,0.50) 55%,
    rgba(31,30,27,0.82) 100%
  );
  z-index: 1;
}
/* Bottom vignette strip with road dashes */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--sun) 0 40px, transparent 40px 60px);
  z-index: 3;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}
/* Route 66 shield image logo */
.hero-logo {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 36px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
  transition: transform .3s ease;
}
.hero-logo:hover { transform: scale(1.04) rotate(-2deg); }

@media (max-width: 760px) {
  .hero-logo { width: 160px; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--cream);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4), 0 6px 24px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--sun); }
.hero-sub {
  font-family: var(--type);
  font-size: 16px;
  color: var(--cream);
  background: rgba(31,30,27,0.55);
  display: inline-block;
  padding: 10px 28px;
  border: 2px solid rgba(242,181,48,0.6);
  letter-spacing: 3px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--asphalt);
  color: var(--cream);
  padding: 90px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--sun);
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(242,181,48,0.06) 80px 82px),
    radial-gradient(circle at 30% 50%, rgba(200,54,45,0.2), transparent 50%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header .kicker {
  display: inline-block;
  background: var(--red-66);
  color: var(--cream);
  font-family: var(--sign);
  letter-spacing: 4px;
  padding: 6px 18px;
  font-size: 13px;
  margin-bottom: 24px;
}
.page-header .kicker.kp  { background: var(--sun-dark); color: var(--asphalt); }
.page-header .kicker.kny { background: var(--sky-deep); }
.page-header .kicker.kr  { background: var(--red-66); }
.page-header .kicker.klv { background: var(--rust); }

.page-header h1 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 100px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  word-break: break-word;
}
.page-header p {
  font-family: var(--type);
  font-size: 16px;
  color: var(--sand-light);
  margin-top: 18px;
  letter-spacing: 2px;
}

/* ============================================================
   TIMELINE STRIP
   ============================================================ */
.timeline-strip {
  background: rgba(245,234,200,0.90);
  padding: 60px 0;
  border-top: 4px solid var(--asphalt);
  border-bottom: 4px solid var(--asphalt);
  position: relative;
}
.timeline-strip::before, .timeline-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--asphalt) 0 40px, transparent 40px 70px);
}
.timeline-strip::before { top: 4px; }
.timeline-strip::after  { bottom: 4px; }

.timeline-title {
  text-align: center;
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--asphalt);
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}
.timeline-subtitle {
  text-align: center;
  font-family: var(--type);
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--rust);
  margin-bottom: 50px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
.timeline {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--asphalt) 0 28px, var(--sun) 28px 50px);
  border-radius: 3px;
  z-index: 1;
}
.tl-stop {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8px;
  display: block;
}
.tl-dot {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--red-66);
  color: var(--cream);
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 24px;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 3px var(--asphalt), 0 8px 16px rgba(0,0,0,0.15);
  transition: transform .25s ease;
}
.tl-stop:hover .tl-dot { transform: translateY(-4px) rotate(-4deg); }
.tl-stop:nth-child(2) .tl-dot { background: var(--sky-deep); }
.tl-stop:nth-child(3) .tl-dot { background: var(--sun-dark); }
.tl-stop:nth-child(4) .tl-dot { background: var(--rust); }

.tl-name {
  font-family: var(--sign);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--asphalt);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.tl-date {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--rust);
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

/* ============================================================
   CONTAINER / SECTIONS
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; position: relative; background: rgba(250,243,224,0.72); }
.section.tan  { background: rgba(245,234,200,0.84); }
.section.sky  { background: linear-gradient(180deg, rgba(90,155,196,0.92) 0%, rgba(127,180,210,0.92) 100%); color: var(--cream); }
.section.dark { background: rgba(31,30,27,0.94); color: var(--cream); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.35);
}
.section-head .lede {
  font-family: var(--type);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--rust);
  text-transform: uppercase;
  max-width: 380px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.section.dark .section-head .lede { color: var(--sun); }

.phase-kicker {
  display: inline-block;
  background: var(--red-66);
  color: var(--cream);
  font-family: var(--sign);
  letter-spacing: 4px;
  padding: 4px 14px;
  font-size: 12px;
  margin-bottom: 8px;
}
.phase-kicker.kp  { background: var(--sun-dark); color: var(--asphalt); }
.phase-kicker.kny { background: var(--sky-deep); }
.phase-kicker.kr  { background: var(--red-66); }
.phase-kicker.klv { background: var(--rust); }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.card {
  background: rgba(250,243,224,0.88);
  border: 3px solid var(--asphalt);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 6px 6px 0 var(--asphalt);
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--asphalt);
}
.card::before {
  content: "USA";
  position: absolute;
  top: -10px; right: 16px;
  background: var(--cream);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 3px;
  padding: 2px 8px;
  color: var(--red-66);
  border: 2px solid var(--red-66);
  z-index: 3;
  transform: rotate(4deg);
}
.card-photo {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--asphalt);
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}
.card-photo-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 64px;
  color: rgba(31,30,27,0.15);
}
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,30,27,0.15));
  pointer-events: none;
}
.card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red-66);
  color: var(--cream);
  font-family: var(--sign);
  letter-spacing: 2px;
  font-size: 13px;
  padding: 5px 12px;
  z-index: 2;
}
.card-cat.cat-prep  { background: var(--sun-dark); color: var(--asphalt); }
.card-cat.cat-ny    { background: var(--sky-deep); }
.card-cat.cat-road  { background: var(--red-66); }
.card-cat.cat-vegas { background: var(--rust); }

.card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--rust);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--asphalt);
}
.card p { font-size: 14px; color: #3a4555; flex: 1; }
.card-more {
  margin-top: 14px;
  font-family: var(--sign);
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--red-66);
  border-bottom: 2px solid var(--red-66);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ============================================================
   PROSE (article body)
   ============================================================ */
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  color: #2d3340;
}
.prose h2 {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 50px 0 18px;
  color: var(--asphalt);
  border-bottom: 4px solid var(--sun);
  padding-bottom: 8px;
}
.prose h3 {
  font-family: var(--sign);
  font-size: 26px;
  letter-spacing: 2px;
  margin: 32px 0 12px;
  color: var(--red-66);
}
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 6px solid var(--sun);
  padding: 16px 24px;
  margin: 26px 0;
  background: var(--sand-light);
  font-family: var(--type);
  font-size: 18px;
  color: var(--asphalt);
}
.prose a { color: var(--red-66); text-decoration: underline; text-decoration-color: rgba(200,54,45,0.4); }
.prose a:hover { text-decoration-color: var(--red-66); }
.prose img {
  max-width: 100%;
  height: auto;
  border: 3px solid var(--asphalt);
  box-shadow: 5px 5px 0 var(--asphalt);
  margin: 24px auto;
  display: block;
}
.prose figure { margin: 24px 0; }

/* ============================================================
   VIDEO EMBEDS
   ============================================================ */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 2rem 0;
  border: 3px solid var(--asphalt);
  box-shadow: 5px 5px 0 var(--asphalt);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   ARTICLE NAVIGATION
   ============================================================ */
.article-nav-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 50px 0 20px;
  padding: 28px 0;
  border-top: 4px solid var(--asphalt);
  border-bottom: 4px solid var(--asphalt);
  flex-wrap: wrap;
}
.article-nav-wrap a {
  font-family: var(--sign);
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--red-66);
  border: 2px solid var(--red-66);
  padding: 10px 16px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: calc(50% - 8px);
}
.article-nav-wrap a:hover { background: var(--red-66); color: var(--cream); }
.article-nav-wrap a span {
  display: block;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.3;
  white-space: normal;
}
.article-nav-wrap a:hover span { color: rgba(250,243,224,0.85); }
.article-nav-wrap a.art-next { text-align: right; margin-left: auto; }

/* ============================================================
   RELATED SECTION
   ============================================================ */
.related-section {
  background: rgba(245,234,200,0.84);
  padding: 70px 0;
  border-top: 4px solid var(--asphalt);
}

/* ============================================================
   FACT STRIP
   ============================================================ */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 4px solid var(--asphalt);
  border-bottom: 4px solid var(--asphalt);
  background: rgba(242,181,48,0.95);
}
.fact {
  padding: 32px 24px;
  text-align: center;
  border-right: 4px solid var(--asphalt);
}
.fact:last-child { border-right: none; }
.fact .n {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  color: var(--asphalt);
  letter-spacing: 1px;
}
.fact .l {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-66-dark);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--asphalt);
  color: var(--sand-light);
  padding: 60px 24px 28px;
  border-top: 6px solid var(--sun);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgba(245,234,208,0.25);
}
.footer h4 {
  font-family: var(--sign);
  letter-spacing: 3px;
  color: var(--sun);
  font-size: 16px;
  margin-bottom: 14px;
}
.footer p, .footer li { font-size: 14px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul a:hover { color: var(--sun); }
.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  font-family: var(--type);
  letter-spacing: 2px;
  font-size: 12px;
  text-align: center;
  color: var(--sand);
  text-transform: uppercase;
}

/* ============================================================
   MAP / ITINERARY
   ============================================================ */
.map-wrap {
  position: relative;
  background: var(--sand-light);
  border: 4px solid var(--asphalt);
  box-shadow: 10px 10px 0 var(--asphalt);
  margin-bottom: 50px;
  overflow: hidden;
}
#map {
  height: 520px;
  width: 100%;
}
.stop-card {
  background: var(--cream);
  border: 3px solid var(--asphalt);
  padding: 20px 22px;
  box-shadow: 6px 6px 0 var(--asphalt);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
}
.stop-card .num {
  width: 64px; height: 64px;
  background: var(--red-66);
  color: var(--cream);
  font-family: var(--display);
  font-size: 30px;
  display: grid; place-items: center;
  border: 3px solid var(--asphalt);
  flex-shrink: 0;
}
.stop-card .info h4 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.stop-card .info p {
  font-family: var(--type);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--rust);
}
.stop-card .miles {
  font-family: var(--display);
  font-size: 22px;
  color: var(--sky-deep);
  letter-spacing: 1px;
  white-space: nowrap;
}
.stops-grid { display: grid; gap: 16px; }

/* ============================================================
   DIVIDER + BTN
   ============================================================ */
.divider-66 {
  text-align: center;
  font-family: var(--display);
  letter-spacing: 8px;
  font-size: 22px;
  color: var(--red-66);
  margin: 40px 0;
}
.btn {
  display: inline-block;
  background: var(--red-66);
  color: var(--cream);
  font-family: var(--sign);
  letter-spacing: 3px;
  padding: 14px 28px;
  font-size: 18px;
  border: 3px solid var(--asphalt);
  box-shadow: 5px 5px 0 var(--asphalt);
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--asphalt); }
.btn.sun { background: var(--sun); color: var(--asphalt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .burger { display: grid; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--asphalt);
    flex-direction: column;
    padding: 14px 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 4px solid var(--sun);
  }
  .nav-links.open { max-height: 600px; }
  .nav-links a { padding: 14px 28px; width: 100%; white-space: normal; }
  .nav-links a.active::after { display: none; }
}

@media (max-width: 980px) {
  .timeline-track { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .timeline-track::before { display: none; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .stop-card { grid-template-columns: 48px 1fr; }
  .stop-card .miles { grid-column: 2; }
  .stop-card .num { width: 48px; height: 48px; font-size: 22px; }
}

@media (max-width: 760px) {
  .hero { min-height: 580px; padding: 60px 20px 100px; }
  .shield { width: 200px; height: 228px; }
  .hero::before { width: 110px; height: 110px; top: 8%; right: 6%; }
  .hero h1 { font-size: 50px; }

  .card-grid { grid-template-columns: 1fr; }

  .article-nav-wrap a { max-width: 100%; }

  .page-header { padding: 60px 20px 50px; }
  .page-header h1 { font-size: 38px; }

  .facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 4px solid var(--asphalt); }
  .fact:last-child { border-bottom: none; }

  #map { height: 360px; }

  .section { padding: 60px 0; }
}
