@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/poppins-800.woff2") format("woff2");
}

:root {
  --bg: #f5eee2;
  --cream: #fbf7ef;
  --sand: #f3ebde;
  --text: #2f3e34;
  --accent: rgba(229, 154, 63, 0.9);
  --accent-strong: rgba(229, 154, 63, 1);
  --soft-border: rgba(47, 62, 52, 0.12);
  --glass: rgba(255, 255, 255, 0.45);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 14px 36px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 2.2rem));
}

.bg-accent {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.33;
  background:
    radial-gradient(at 18% 18%, rgba(229, 154, 63, 0.74), transparent 58%),
    radial-gradient(at 78% 75%, rgba(120, 78, 28, 0.54), transparent 70%),
    radial-gradient(at 62% 8%, rgba(255, 255, 255, 0.4), transparent 68%),
    radial-gradient(at 6% 92%, rgba(0, 0, 0, 0.22), transparent 72%);
}

.section {
  padding: clamp(52px, 8vw, 104px) 0;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.75rem;
  opacity: 0.74;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  margin: 0 auto;
  max-width: 70ch;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  opacity: 0.92;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 52px);
}

#intro .eyebrow,
#intro h2,
#intro .lead {
  text-align: center;
}

.site-header {
  position: relative;
  width: 100%;
  height: min(84vh, 840px);
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(8, 12, 14, 0.74) 0%,
    rgba(8, 12, 14, 0.58) 30%,
    rgba(8, 12, 14, 0.34) 54%,
    rgba(8, 12, 14, 0.14) 76%,
    rgba(8, 12, 14, 0) 100%
  );
}

.hero-picture {
  position: absolute;
  inset: 0;
}

.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(
    to bottom,
    rgba(253, 251, 247, 0.2) 0%,
    rgba(244, 234, 215, 0.22) 100%
  );
  backdrop-filter: blur(7px) saturate(104%);
  -webkit-backdrop-filter: blur(7px) saturate(104%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(10, 12, 14, 0.44);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  text-decoration: none;
}

.logo {
  border-radius: 14px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.32));
}

.brand-copy {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  margin-top: 1px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-close-row,
.menu-close {
  display: none;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 170ms ease,
    color 170ms ease;
}

.menu a[href^="#"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: rgba(229, 154, 63, 0.92);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 190ms ease;
}

.menu a[href^="#"]:hover,
.menu a[href^="#"].active {
  opacity: 1;
}

.menu a[href^="#"]:hover::after,
.menu a[href^="#"].active::after {
  transform: scaleX(1);
}

.menu .kontakt-cta {
  background: var(--accent);
  border: 1px solid rgba(229, 154, 63, 1);
  box-shadow:
    0 0 16px rgba(229, 154, 63, 0.42),
    0 6px 16px rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 800px;
  color: #fffaf2;
  padding-top: clamp(88px, 10vw, 132px);
}

.hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4.7vw, 3.8rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.hero-copy p {
  margin: 0 0 16px;
  max-width: 64ch;
  color: rgba(255, 250, 242, 0.96);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.34);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 16px;
}

.btn-primary {
  color: #fff;
  background: var(--accent);
  border-color: rgba(229, 154, 63, 1);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ghost-dark {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--soft-border);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.75);
}

.intro-cards,
.tips-grid,
.quiet-grid,
.season-grid {
  display: grid;
  gap: 20px;
}

.intro-cards {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.tip,
.quiet,
.season {
  background: var(--glass);
  border: 1px solid var(--soft-border);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.route-list {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.route-step {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 22px;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-soft);
}

.route-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.route-media img {
  width: 100%;
  height: clamp(240px, 34vw, 400px);
  object-fit: cover;
}

.day-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 12px;
}

.route-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2px, 0.8vw, 10px);
}

.route-copy ul {
  margin: 8px 0 0;
  padding-left: 1.05rem;
}

.route-copy li {
  margin-bottom: 6px;
}

.map-flow {
  --map-content-max: calc(1160px + 2.2rem);
  --map-rail-width: minmax(300px, 420px);
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, var(--map-content-max)) var(--map-rail-width);
  justify-content: end;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
  background: transparent;
}

.map-content {
  min-width: 0;
}

.map-content .section {
  background: transparent;
  margin: 0;
}

.map-content .section.section-cream,
.map-content .section.section-sand {
  background: transparent;
}

.map-content .section + .section {
  position: relative;
}

.map-content .section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2.2rem));
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(47, 62, 52, 0) 0%,
    rgba(47, 62, 52, 0.14) 18%,
    rgba(47, 62, 52, 0.26) 50%,
    rgba(47, 62, 52, 0.14) 82%,
    rgba(47, 62, 52, 0) 100%
  );
  pointer-events: none;
}

.map-rail {
  position: relative;
  min-width: 0;
  align-self: stretch;
  background: transparent;
}

.map-card {
  position: sticky;
  top: 92px;
  background: transparent;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  padding: 12px;
}

.map-canvas {
  width: 100%;
  height: clamp(340px, 56vh, 620px);
  border-radius: 14px;
  border: 1px solid var(--soft-border);
  overflow: hidden;
  background: transparent;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.map-status {
  margin: 10px 0 0;
  padding: 8px 11px;
  border-left: 3px solid rgba(229, 154, 63, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 62, 52, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.map-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(47, 62, 52, 0.46);
}

.map-chip-red {
  border-color: rgba(190, 66, 59, 0.3);
}

.map-chip-red::before {
  background: rgba(190, 66, 59, 0.88);
}

.map-chip-green {
  border-color: rgba(49, 127, 75, 0.3);
}

.map-chip-green::before {
  background: rgba(49, 127, 75, 0.86);
}

.map-chip.is-active {
  border-color: rgba(229, 154, 63, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 0 0 1px rgba(229, 154, 63, 0.2),
    0 5px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.route-step.is-map-active,
.scan-block.is-map-active {
  border-color: rgba(229, 154, 63, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.leaflet-container {
  font-family: "Poppins", sans-serif;
  background: transparent;
}

.leaflet-control-zoom a {
  border-radius: 8px;
}

.map-fallback {
  margin: 0;
  padding: 16px;
  font-size: 0.92rem;
}

.tips-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scan-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.scan-pill {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--soft-border);
  border-left: 4px solid rgba(229, 154, 63, 0.9);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.scan-pill h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.scan-pill p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.92;
}

.scan-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.scan-layout-map {
  position: relative;
  row-gap: 18px;
  align-items: stretch;
}

.scan-layout-map > .scan-block {
  height: 100%;
}

.map-track {
  --map-track-offset: 126px;
  position: relative;
  height: 0;
  pointer-events: none;
}

.map-track-step {
  position: absolute;
  left: 0;
  width: 1px;
  height: var(--map-track-step-height, 220px);
  top: calc(
    var(--map-track-offset) + var(--step-index, 0) * var(--map-track-step-height, 220px)
  );
  opacity: 0;
}

@media (min-width: 1041px) {
  #stau .scan-block,
  #parken .scan-block {
    min-height: 286px;
  }

  #stau {
    --map-track-step-height: 224px;
  }

  #parken {
    --map-track-step-height: 210px;
  }
}

.scan-block {
  position: relative;
  z-index: 1;
  background: var(--glass);
  border: 1px solid var(--soft-border);
  border-radius: 22px;
  padding: clamp(20px, 2.8vw, 28px);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.scan-block h3 {
  margin: 0 0 6px;
}

.scan-kicker {
  margin: 0 0 12px;
  font-weight: 600;
  opacity: 0.9;
}

.scan-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.scan-block li {
  margin-bottom: 6px;
}

.timing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.timing-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(47, 62, 52, 0.9);
  border: 1px solid var(--soft-border);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scan-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid rgba(229, 154, 63, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  opacity: 0.92;
  text-align: left;
}

.quiet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quiet span {
  display: inline-block;
  margin-top: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.72;
}

.season-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--soft-border);
  background: var(--glass);
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 10px 0 0;
}

.section-cta {
  padding-top: clamp(34px, 5vw, 72px);
}

.cta-box {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--soft-border);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  padding: clamp(20px, 4vw, 34px);
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.site-footer {
  background: transparent;
  padding: 44px 0 0;
}

.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 8px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.site-footer a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-footer a:hover {
  border-color: rgba(229, 154, 63, 1);
}

.footer-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(47, 62, 52, 0.16);
}

.footer-bottom-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 14;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease;
}

body.nav-open #overlay {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms cubic-bezier(0.2, 1, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 1, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .map-flow {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }

  .route-step {
    grid-template-columns: 1fr;
  }

  .scan-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scan-layout {
    grid-template-columns: 1fr;
  }

  .scan-layout-map {
    row-gap: 18px;
  }

  #stau {
    --map-track-step-height: 400px;
  }

  #parken {
    --map-track-step-height: 390px;
  }

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

@media (max-width: 920px) {
  .map-flow {
    grid-template-columns: 1fr;
  }

  .map-rail {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .brand-copy {
    color: #fff;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84vw, 360px);
    height: 100vh;
    background: rgba(247, 244, 237, 0.98);
    border-left: 1px solid rgba(47, 62, 52, 0.12);
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 16px;
    transition: right 260ms ease;
    z-index: 15;
  }

  .menu-close-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
  }

  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(47, 62, 52, 0.2);
    background: rgba(47, 62, 52, 0.06);
    color: var(--text);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
  }

  .menu-close:hover {
    background: rgba(47, 62, 52, 0.12);
  }

  .menu.show {
    right: 0;
  }

  .menu a {
    color: var(--text);
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(47, 62, 52, 0.1);
    justify-content: flex-start;
    padding: 14px 30px 14px 10px;
  }

  .menu a[href^="#"]::after {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 8px;
  }

  .menu .kontakt-cta {
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(229, 154, 63, 1);
    color: #fff;
  }

  .site-header {
    height: clamp(540px, 100svh, 780px);
  }

  .hero-picture img {
    height: 100%;
  }

  .hero {
    min-height: 100%;
    align-items: flex-end;
    padding-bottom: 26px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: clamp(104px, 18vw, 134px);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7.6vw, 2.9rem);
  }

  .hero-copy p {
    max-width: 58ch;
  }

  .intro-cards,
  .tips-grid,
  .quiet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .map-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .map-rail {
    order: -1;
  }

  .map-card {
    position: relative;
    top: auto;
  }

  .map-canvas {
    height: clamp(250px, 44vh, 340px);
  }
}

@media (max-width: 640px) {
  .map-flow {
    width: 100%;
    margin: 0 auto;
  }

  .container,
  .narrow {
    width: min(100%, calc(100% - 1.3rem));
  }

  .map-content .section + .section::before {
    width: min(100%, calc(100% - 1.3rem));
  }

  .site-header {
    height: clamp(520px, 94svh, 700px);
  }

  .hero {
    padding-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8.7vw, 2.3rem);
  }

  .hero-copy {
    padding-top: clamp(92px, 24vw, 120px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .map-canvas {
    height: clamp(220px, 40vh, 290px);
  }

  .scan-summary {
    grid-template-columns: 1fr;
  }

  .scan-pill,
  .scan-block {
    padding: 16px;
  }

  .timing-chips span {
    font-size: 0.74rem;
    padding: 5px 9px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 14px;
  }
}
