:root {
  --ink: #2c160b;
  --orange: #ff6b00;
  --orange-dark: #d9480f;
  --sand: #f3e6cf;
  --cream: #fff7ed;
  --white: #ffffff;
  --green: #0f6b55;
  --green-soft: #c8f2df;
  --clay: #c2410c;
  --text-soft: #67402a;
  --gold-line: #ffb366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background-color: var(--ink);
  background-image: url("./assets/el-regio-interior-bg.png");
  background-position: center center;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 22, 11, 0.88), rgba(44, 22, 11, 0.58), rgba(44, 22, 11, 0.16));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  min-height: 82svh;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  display: block;
  width: auto;
  height: 96px;
  max-width: 152px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand__logo--truck {
  height: 106px;
  max-width: 176px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: #ffd39d;
}

.hero__copy {
  width: min(100%, 760px);
  margin: auto 0;
  padding: 64px 0;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 9px 15px;
  border-radius: 8px;
  background: var(--orange);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 116px);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin: 0;
  color: var(--clay);
  font-size: 22px;
  font-weight: 900;
}

.hero__lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #fff4dc;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.truck-hours-note {
  max-width: 620px;
  margin: 16px 0 0;
  color: #fff4dc;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.truck-hours-note a,
.hours-link {
  color: #ffd39d;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-link--dark {
  color: var(--orange-dark);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(255, 107, 0, 0.36);
}

.button--primary:hover {
  background: var(--orange-dark);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button--secondary:hover,
.button--outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--map {
  border: 1px solid rgba(44, 22, 11, 0.24);
  background: var(--cream);
  color: var(--ink);
}

.button--map:hover {
  background: var(--sand);
}

.button--truck {
  border: 1px solid rgba(44, 22, 11, 0.18);
  background: var(--white);
  color: var(--ink);
}

.button--truck:hover {
  background: var(--sand);
}

.quick-strip {
  background: #050505;
  padding: 32px 20px;
}

.quick-strip__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.quick-strip__inner div {
  border: 1px solid rgba(255, 107, 0, 0.78);
  border-radius: 8px;
  background: #101010;
  padding: 16px;
  color: #fff7ed;
  text-align: center;
  font-weight: 800;
}

.storefront-scroll {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  background-color: #050505;
  background-image: url("./assets/el-regio-storefront-night.png");
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: clamp(64px, 8vw, 108px) 20px;
}

.storefront-scroll__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04) 42%);
}

.storefront-scroll__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.storefront-scroll__kicker {
  display: inline-block;
  margin: 0 0 16px;
  border-radius: 8px;
  background: var(--orange);
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 900;
}

.storefront-scroll h2 {
  max-width: 720px;
  color: var(--white);
}

.storefront-scroll p:not(.storefront-scroll__kicker) {
  max-width: 620px;
  color: #ffe8c4;
  font-size: 19px;
  line-height: 1.7;
}

.truck-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background-color: #050505;
  background-image: url("./assets/el-regio-food-truck-main.jpeg");
  background-position: center center;
  background-size: cover;
  color: var(--white);
}

.truck-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12));
}

.truck-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  min-height: 78svh;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}

.truck-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 48px;
  align-items: center;
  margin: auto 0;
  padding: 56px 0 72px;
}

.truck-hero__copy {
  width: min(100%, 760px);
}

.truck-hero__copy h1 {
  max-width: 640px;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1.02;
}

.truck-hero__mark {
  justify-self: end;
  width: min(100%, 360px);
  border: 1px solid rgba(255, 107, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.94);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.truck-hero__mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section {
  padding: 64px 20px;
}

.section__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

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

.section--menu {
  background: #050505;
  color: var(--white);
}

.section--about {
  background: #101010;
  color: var(--white);
}

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

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

.section--food-gallery,
.section--truck-gallery {
  background: #101010;
  color: var(--white);
}

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

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section__intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: end;
}

.section__intro > p,
.body-large {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.section--dark .body-large {
  color: #ffe8c4;
}

.section--menu .section__intro > p {
  color: #ffe8c4;
}

.section--food-gallery .section__intro > p,
.section--truck-gallery .section__intro > p {
  color: #ffe8c4;
}

.food-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}

.food-feature-card,
.food-rail-card {
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
  margin: 0;
}

.food-feature-card {
  border: 1px solid rgba(255, 107, 0, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.food-feature-card img,
.food-rail-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.food-feature-card img {
  height: min(58vw, 560px);
  min-height: 320px;
}

.food-feature-card figcaption {
  border-top: 1px solid rgba(255, 107, 0, 0.28);
  padding: 22px;
}

.food-feature-card figcaption span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.food-feature-card figcaption strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.15;
}

.food-feature-card figcaption p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #ffe8c4;
  font-size: 16px;
  line-height: 1.6;
}

.food-photo-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.food-rail-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #151515;
}

.food-rail-card img {
  height: 190px;
}

.food-rail-card figcaption {
  padding: 13px 15px 15px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.food-rail-card--wide {
  grid-column: span 2;
}

.food-rail-card--wide img {
  height: 220px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
  color: #ffe8c4;
  font-size: 17px;
  line-height: 1.75;
}

.about-copy p {
  margin: 0;
}

.about-signoff {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.truck-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.truck-page-layout,
.truck-contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.truck-layout .body-large {
  max-width: 640px;
  margin-top: 20px;
}

.section--reviews {
  background: #fff0c9;
  color: var(--brown);
}

.section--reviews .body-large {
  color: var(--text-soft);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.rating-card {
  border: 1px solid rgba(255, 107, 0, 0.46);
  border-radius: 8px;
  background: #101010;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.rating-card p {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.95;
}

.rating-card__stars {
  margin-top: 10px;
  color: var(--orange);
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: 0;
}

.rating-card > span {
  display: block;
  margin-top: 14px;
  color: #ffe8c4;
  font-size: 18px;
  font-weight: 800;
}

.truck-board {
  display: grid;
  gap: 12px;
}

.truck-logo-panel {
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 8px;
  background: #fff7ed;
  padding: 18px;
  box-shadow: 0 16px 44px rgba(44, 22, 11, 0.12);
}

.truck-logo-panel img {
  display: block;
  width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.truck-panel {
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 8px;
  background: #101010;
  padding: 22px;
  color: var(--white);
  box-shadow: 0 16px 44px rgba(44, 22, 11, 0.12);
}

.truck-panel p {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.truck-panel strong,
.truck-panel span {
  display: block;
}

.truck-panel strong {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.15;
}

.truck-panel span {
  margin-top: 8px;
  color: #ffe8c4;
  font-size: 16px;
  line-height: 1.55;
}

.visit-box__logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  margin: 0 0 18px;
}

.kicker {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.kicker--light {
  color: #ffd39d;
}

.kicker--orange {
  color: var(--orange);
}

.menu-slider {
  max-width: 920px;
  margin: 42px auto 0;
  border: 1px solid rgba(255, 107, 0, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.08), rgba(255, 107, 0, 0)),
    #101010;
  padding: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.menu-slider--truck {
  max-width: 1080px;
}

.menu-slider__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.menu-slider__bar p {
  margin: 0 0 5px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-slider__bar strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.menu-slider__controls {
  display: flex;
  gap: 10px;
}

.menu-control,
.menu-dots button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-control {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.25);
}

.menu-control:hover,
.menu-dots button:hover {
  transform: translateY(-1px);
}

.menu-control:hover {
  background: var(--orange-dark);
}

.menu-slider__viewport {
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
}

.menu-slider__track {
  display: flex;
  align-items: stretch;
  transition: transform 260ms ease;
  will-change: transform;
}

.menu-slide {
  min-width: 100%;
  margin: 0;
  padding: 16px;
}

.menu-slide img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.menu-slider--truck .menu-slide img {
  width: min(100%, 940px);
}

.menu-slide__image-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.menu-slider--truck .menu-slide__image-group img {
  width: 100%;
}

.menu-slide figcaption {
  margin-top: 12px;
  color: #ffe8c4;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.menu-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.menu-dots button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 107, 0, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: #ffe8c4;
}

.menu-dots button.is-active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.25);
}

.family-layout,
.visit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.info-stack {
  display: grid;
  gap: 12px;
}

.info-panel {
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
}

.info-panel p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.info-panel strong,
.info-panel span,
.visit-box strong,
.visit-box span {
  display: block;
}

.info-panel strong {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.info-panel span {
  margin-top: 6px;
  font-size: 18px;
}

.info-panel--green {
  background: var(--green);
}

.info-panel--green p {
  color: var(--green-soft);
}

.info-panel--orange {
  background: var(--orange);
}

.info-panel--orange p {
  color: #ffe0c2;
}

.visit-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
}

.visit-box strong {
  font-size: 28px;
  line-height: 1.15;
}

.visit-box span {
  margin-top: 6px;
  color: #ffe8c4;
  font-size: 18px;
}

.actions--compact {
  margin-top: 24px;
}

.map-section {
  background: #050505;
  color: var(--white);
}

.map-section__header {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 52px 20px 38px;
  text-align: center;
}

.map-section__header .kicker {
  margin-bottom: 12px;
}

.map-section__header h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.08;
}

.map-section__header p:not(.kicker) {
  margin: 16px 0 0;
  color: #f1e1cf;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
}

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 107, 0, 0.32);
  background: #101010;
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.13) 52%, rgba(0, 0, 0, 0.08)),
    rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(500px, 53vw, 640px);
  border: 0;
  filter: saturate(0.94) contrast(1.02) brightness(0.92);
}

.map-card {
  position: absolute;
  top: 18px;
  left: max(8px, calc((100vw - 1280px) / 2 + 8px));
  z-index: 2;
  width: min(400px, calc(100% - 48px));
  border: 1px solid rgba(255, 107, 0, 0.16);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.map-card__label {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.map-card strong,
.map-card > span,
.map-card__hours span {
  display: block;
}

.map-card strong {
  font-size: 25px;
  line-height: 1.15;
}

.map-card > span {
  margin-top: 8px;
  color: #3d2d21;
  font-size: 17px;
  line-height: 1.5;
}

.map-card__hours {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  border-top: 1px solid #ead6c0;
  padding-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
}

.map-card .actions {
  margin-top: 20px;
}

.map-card .button {
  min-height: 44px;
  padding: 10px 18px;
}

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 107, 0, 0.24);
  padding: 24px 20px;
  color: #ffe8c4;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .brand__logo {
    height: 72px;
    max-width: 116px;
  }

  .brand__logo--truck {
    height: 82px;
    max-width: 136px;
  }

  .hero,
  .hero__content {
    min-height: 84svh;
  }

  .truck-hero,
  .truck-hero__inner {
    min-height: 78svh;
  }

  .hero__content {
    padding-right: 40px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(44, 22, 11, 0.88), rgba(44, 22, 11, 0.62));
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero__copy {
    width: 100%;
    min-width: 0;
    max-width: min(320px, calc(100vw - 48px));
  }

  .eyebrow {
    display: block;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 13px;
  }

  .quick-strip__inner,
  .section__intro,
  .about-layout,
  .truck-layout,
  .truck-page-layout,
  .reviews-layout,
  .truck-contact-layout,
  .family-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 20px;
  }

  .food-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .food-feature-card img {
    height: auto;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .food-feature-card figcaption {
    padding: 18px;
  }

  .food-photo-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .food-rail-card,
  .food-rail-card--wide {
    grid-column: auto;
  }

  .food-rail-card img,
  .food-rail-card--wide img {
    height: auto;
    min-height: 190px;
    aspect-ratio: 4 / 3;
  }

  .storefront-scroll {
    min-height: 70svh;
    background-attachment: scroll;
    background-position: center center;
    padding: 58px 20px;
  }

  .storefront-scroll__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.86));
  }

  .truck-hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.9));
  }

  .truck-hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 54px;
  }

  .truck-hero__mark {
    order: -1;
    justify-self: start;
    width: min(250px, 82vw);
    padding: 14px;
  }

  .menu-slider {
    margin-top: 30px;
    padding: 12px;
  }

  .menu-slider__bar {
    align-items: flex-start;
  }

  .menu-slider__bar strong {
    font-size: 22px;
  }

  .menu-control {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .menu-slide {
    padding: 10px;
  }

  .menu-dots button {
    width: 34px;
    height: 34px;
  }

  .map-section__header {
    padding: 42px 20px 30px;
    text-align: left;
  }

  .map-section__header h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .map-section__header p:not(.kicker) {
    margin-top: 14px;
    font-size: 20px;
  }

  .map-panel {
    min-height: 0;
    overflow: visible;
    padding-bottom: 18px;
  }

  .map-panel::after {
    bottom: auto;
    height: 410px;
    background: rgba(0, 0, 0, 0.16);
  }

  .map-panel iframe {
    height: 410px;
  }

  .map-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: -64px 16px 0;
    padding: 22px;
  }
}
