:root {
  color-scheme: dark;
  --bg: #050609;
  --bg-2: #0a0d12;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --line-hot: rgba(124, 255, 91, 0.34);
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --green: #7cff5b;
  --blue: #00d4ff;
  --pink: #a855ff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  --max: 1160px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  padding-bottom: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: -22%;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 24%, rgba(124, 255, 91, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 16%, rgba(0, 212, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 78%, rgba(168, 85, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #050609 0%, #080b11 52%, #030407 100%);
  animation: ambientShift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--green);
  color: #061007;
  padding: 10px 14px;
  font-weight: 950;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 6, 9, 0.78);
  backdrop-filter: blur(24px);
}

.nav-shell {
  width: min(100% - 32px, 1240px);
  min-height: var(--header);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
}

.brand img,
.footer-brand img,
.hero-logo,
.final-cta img {
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 16px rgba(124, 255, 91, 0.24)) drop-shadow(0 0 24px rgba(0, 212, 255, 0.18));
}

.brand img {
  width: 54px;
  height: 54px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links > a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  padding: 9px 12px;
  font-size: 0.9rem;
  font-weight: 850;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.nav-links > a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, filter 220ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #051006;
  box-shadow: 0 0 28px rgba(124, 255, 91, 0.26), 0 0 46px rgba(0, 212, 255, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(124, 255, 91, 0.36), 0 0 70px rgba(0, 212, 255, 0.24);
  filter: saturate(1.12);
}

.btn-ghost,
.btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(18px);
}

.btn-ghost:hover,
.btn-dark:hover {
  border-color: rgba(0, 212, 255, 0.48);
  box-shadow: 0 0 34px rgba(0, 212, 255, 0.14);
}

.btn-dark {
  background: rgba(0, 0, 0, 0.24);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px;
}

.lang-btn {
  width: 42px;
  height: 34px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 950;
}

.lang-btn.is-active {
  background: #fff;
  color: #050609;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 11px;
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-actions {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  max-height: 75vh;
  padding: 44px 0 38px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.98), rgba(5, 6, 9, 0.74) 43%, rgba(5, 6, 9, 0.4)),
    url("../assets/hero-drive-thru.jpg") center / cover;
  opacity: 0.86;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-noise {
  position: absolute;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(circle at 34% 28%, rgba(124, 255, 91, 0.2), transparent 22rem),
    radial-gradient(circle at 82% 20%, rgba(0, 212, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 56% 78%, rgba(168, 85, 255, 0.13), transparent 28rem);
  animation: neonDrift 16s ease-in-out infinite alternate;
}

.hero-orbit {
  position: absolute;
  top: 12%;
  right: 5%;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(124, 255, 91, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(0, 212, 255, 0.12), inset 0 0 70px rgba(124, 255, 91, 0.08);
  animation: slowSpin 34s linear infinite;
}

.hero-layout {
  display: block;
}

.hero-copy {
  max-width: 680px;
}

.hero-logo {
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 5.25rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.final-cta p {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 22px;
}

.ribbon-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonScroll 26s linear infinite;
}

.ribbon-line {
  display: flex;
  align-items: center;
}

.ribbon-line span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding-inline: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ribbon-line span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 18px rgba(124, 255, 91, 0.5);
}

.badge-section {
  padding: 48px 0 8px;
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge-grid span,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(124, 255, 91, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 255, 91, 0.11), rgba(0, 212, 255, 0.08));
  color: rgba(255, 255, 255, 0.88);
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 22px rgba(124, 255, 91, 0.08);
}

.section {
  padding: 80px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-head h2,
.map-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(7, 9, 13, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.locations-section {
  padding-bottom: 48px;
}

.locations-layout {
  display: grid;
  gap: 18px;
}

.featured-location {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.72fr);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.featured-location:hover,
.mini-location:hover,
.map-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 44px rgba(0, 212, 255, 0.1);
}

.featured-location img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.featured-location h3 {
  margin: 18px 0 12px;
  font-size: 2.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.featured-location p,
.mini-location p,
.site-footer p {
  margin: 3px 0;
  color: var(--muted);
}

.card-actions {
  margin-top: 22px;
}

.mini-locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.additional-head {
  margin-top: 8px;
}

.additional-head .eyebrow {
  margin-bottom: 0;
}

.mini-location {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 18px 18px 18px 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mini-location::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green), var(--blue));
  opacity: 0.88;
}

.mini-location h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.mini-location a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 34px;
  border: 1px solid rgba(124, 255, 91, 0.26);
  border-radius: 999px;
  background: rgba(124, 255, 91, 0.08);
  color: #dffff4;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
}

.map-section {
  padding-top: 0;
  padding-bottom: 64px;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.52fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.map-copy h2 {
  margin-bottom: 24px;
}

.map-preview {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 60% 38%, rgba(0, 212, 255, 0.22), transparent 18rem),
    radial-gradient(circle at 34% 68%, rgba(124, 255, 91, 0.14), transparent 16rem),
    #070a10;
  background-size: 54px 54px, 54px 54px, auto, auto, auto;
}

.route {
  position: absolute;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--pink));
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.34);
}

.route-main {
  left: 10%;
  top: 50%;
  width: 80%;
  transform: rotate(-8deg);
}

.route-alt {
  left: 18%;
  top: 34%;
  width: 58%;
  opacity: 0.5;
  transform: rotate(21deg);
}

.pin {
  position: absolute;
  width: 23px;
  height: 23px;
  border: 4px solid #050609;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(124, 255, 91, 0.12), 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: rotate(-45deg);
}

.pin-two,
.pin-four {
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.12), 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pin-one {
  left: 18%;
  top: 47%;
}

.pin-two {
  left: 34%;
  top: 32%;
}

.pin-three {
  left: 52%;
  top: 58%;
}

.pin-four {
  left: 68%;
  top: 38%;
}

.pin-five {
  left: 82%;
  top: 62%;
}

.gallery-section {
  padding-top: 56px;
}

.collage {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.8fr;
  grid-template-rows: 210px 210px;
  gap: 12px;
}

.collage figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #10131a;
}

.collage-main {
  grid-row: span 2;
}

.collage figure:nth-child(4) {
  grid-column: span 2;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 360ms ease, opacity 360ms ease, filter 360ms ease;
}

.collage figure:hover img {
  transform: scale(1.04);
  opacity: 1;
  filter: saturate(1.1);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  background:
    linear-gradient(135deg, rgba(124, 255, 91, 0.16), rgba(0, 212, 255, 0.14), rgba(168, 85, 255, 0.1)),
    #07080d;
}

.final-cta::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.16);
  filter: blur(60px);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.final-cta img {
  width: 118px;
  height: 118px;
}

.site-footer {
  padding: 42px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #030407;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(150px, 0.5fr) minmax(220px, 0.8fr);
  gap: 28px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
}

.footer-inner p {
  max-width: 390px;
  margin: 14px 0 0;
}

.footer-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-column strong {
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.float-action,
.back-to-top {
  position: fixed;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.float-action {
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 9, 0.68);
  padding: 0 16px;
  color: #fff;
  backdrop-filter: blur(18px);
}

.float-action svg,
.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.float-map {
  left: 18px;
}

.float-whatsapp {
  right: 18px;
  border-color: rgba(124, 255, 91, 0.24);
  background: linear-gradient(135deg, rgba(124, 255, 91, 0.9), rgba(0, 212, 255, 0.9));
  color: #061007;
}

.back-to-top {
  right: 18px;
  bottom: 86px;
  width: 46px;
  min-height: 46px;
  padding: 0;
  background: #fff;
  color: #050609;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-group > * {
  opacity: 1;
  transform: none;
}

.js .reveal-group > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-group > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-group > *:nth-child(3) {
  transition-delay: 150ms;
}

.reveal-group > *:nth-child(4) {
  transition-delay: 220ms;
}

.reveal-group > *:nth-child(5) {
  transition-delay: 290ms;
}

@keyframes ambientShift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1);
  }
  to {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.03);
  }
}

@keyframes neonDrift {
  from {
    transform: translate3d(-2%, 0, 0) scale(1);
  }
  to {
    transform: translate3d(2%, -1%, 0) scale(1.04);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sheenMove {
  from {
    opacity: 0.44;
    transform: translateX(-2%);
  }
  to {
    opacity: 0.82;
    transform: translateX(2%);
  }
}

@keyframes ribbonScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 4.9rem;
  }

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

  .featured-location {
    grid-template-columns: 1fr;
  }

  .featured-location img {
    min-height: 330px;
  }

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

  .map-copy {
    min-height: auto;
  }

  .collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }

  .collage-main,
  .collage figure:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 880px) {
  :root {
    --header: 70px;
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    max-width: 150px;
  }

  .nav-links {
    position: fixed;
    top: calc(var(--header) + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 6, 9, 0.96);
    box-shadow: var(--shadow);
    padding: 12px;
    backdrop-filter: blur(22px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a {
    border-radius: 7px;
    padding: 14px;
    color: #fff;
  }

  .desktop-language {
    display: none;
  }

  .mobile-menu-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    max-height: none;
    padding: 44px 0 42px;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .section {
    padding: 56px 0;
  }

  .locations-section {
    padding-bottom: 40px;
  }

  .map-section {
    padding-top: 0;
    padding-bottom: 56px;
  }

  .section-head h2,
  .map-copy h2,
  .final-cta h2 {
    font-size: 3.15rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand span {
    display: none;
  }

  .nav-actions .btn-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero-logo {
    width: 78px;
    height: 78px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-copy p:not(.eyebrow),
  .final-cta p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .nav-actions .btn,
  .float-action,
  .back-to-top {
    width: auto;
  }

  .mobile-menu-actions .language-switcher {
    width: 112px;
  }

  .ribbon-line span {
    min-height: 60px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .badge-section {
    padding: 34px 0 4px;
  }

  .featured-location img {
    min-height: 240px;
  }

  .mini-locations {
    grid-template-columns: 1fr;
  }

  .mini-location {
    padding: 16px 16px 16px 18px;
  }

  .featured-location-copy,
  .map-copy {
    padding: 20px;
  }

  .section-head h2,
  .map-copy h2,
  .final-cta h2 {
    font-size: 2.48rem;
  }

  .map-preview {
    min-height: 250px;
  }

  .collage {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 180px 180px 180px;
  }

  .collage-main,
  .collage figure:nth-child(4) {
    grid-column: span 1;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 18px;
  }

  .final-cta img {
    width: 88px;
    height: 88px;
  }

  .final-cta {
    padding: 46px 0;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .float-action {
    width: 50px;
    padding: 0;
  }

  .float-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
  }
}
