:root {
  --bg: #000000;
  --bg-elevated: #111111;
  --bg-card: #161616;
  --yellow: #ffdd00;
  --yellow-hover: #ffe94d;
  --green-whatsapp: #25d366;
  --green-whatsapp-hover: #2ee676;
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --border: rgba(255, 221, 0, 0.2);
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --font-display: "Prata", "Times New Roman", serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --shadow-yellow: 0 8px 32px rgba(255, 221, 0, 0.15);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--yellow-hover);
}

address {
  font-style: normal;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Site header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__brand:hover {
  text-decoration: none;
}

.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.site-header__badge {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.site-header__nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

.site-header__nav a:hover {
  color: var(--yellow);
}

.site-header__nav a:hover::after {
  width: 100%;
}

.site-header__cta {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-header__toggle {
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--yellow);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .site-header__nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header.is-open .site-header__nav {
    display: flex;
  }

  .site-header__cta .btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.72rem;
  }

  .site-header__cta .btn__svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}

@media (max-width: 480px) {
  .site-header__logo {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .site-header__badge {
    font-size: 0.6rem;
  }

  .site-header__cta {
    display: none !important;
  }
}

/* ── Floating action buttons (narrow mobile) ── */
.fab-group {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 998;
  flex-direction: column;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .fab-group {
    display: flex;
  }
}

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fab:hover {
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

.fab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fab--whatsapp {
  background: var(--green-whatsapp);
  color: #fff;
}

.fab--whatsapp:hover {
  background: var(--green-whatsapp-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.fab--call {
  background: var(--yellow);
  color: #000;
}

.fab--call:hover {
  background: var(--yellow-hover);
  color: #000;
  box-shadow: var(--shadow-yellow);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn__svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn--whatsapp {
  background: var(--green-whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--green-whatsapp-hover);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn--call,
.btn--primary {
  background: var(--yellow);
  color: #000;
}

.btn--call:hover,
.btn--primary:hover {
  background: var(--yellow-hover);
  box-shadow: var(--shadow-yellow);
  color: #000;
}

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn--outline:hover {
  background: rgba(255, 221, 0, 0.08);
  color: var(--yellow);
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* Let hero participate in root stacking (above FABs, below header) */
main {
  display: contents;
}

.page-anchor {
  height: 0;
  scroll-margin-top: var(--header-h);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 999; /* above FABs (998), below header (1000) */
  padding: 2.5rem 1.25rem 3rem;
  scroll-margin-top: 5.5rem;
}

.hero__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  gap: 2.5rem;
  align-items: start;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 0.5rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.hero__rating-wrap {
  margin: 0 0 1.5rem;
}

.hero__google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  padding: 0.45rem 0.85rem 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e3e3e3;
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.hero__google-rating:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 221, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.hero__google-rating:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hero__google-score {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #f0f0f0;
}

.hero__google-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.hero__google-star {
  --star-fill: 1;
  --star-full: #fbbc04;
  --star-empty: rgba(255, 255, 255, 0.22);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    var(--star-full) 0%,
    var(--star-full) calc(var(--star-fill) * 100%),
    var(--star-empty) calc(var(--star-fill) * 100%),
    var(--star-empty) 100%
  );
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.hero__google-count {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: #b8b8b8;
}

.hero__google-logo-wrap {
  display: flex;
  align-items: center;
  margin-left: 0.15rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__google-logo {
  width: auto;
  height: 1.35rem;
  max-width: 8.25rem;
  opacity: 0.95;
}

.hero__contact {
  margin: 0 0 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero__contact p {
  margin: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--text);
}

.hero__contact-label {
  display: inline-block;
  min-width: 4.5rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__contact a {
  color: var(--text);
}

.hero__contact a:hover {
  color: var(--yellow);
}

.hero__actions {
  margin-top: 0.25rem;
}

.hero__visual {
  margin: 0;
  position: relative;
}

/* Tilted yellow card behind photo (Taxi-Muri-style) */
.hero__visual::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -16px;
  right: -22px;
  bottom: -10px;
  background: var(--yellow);
  transform: rotate(3.5deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1206 / 1039;
  object-fit: contain;
  background: var(--bg);
}

@media (max-width: 860px) {
  .hero {
    padding: 0;
    overflow: hidden;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    position: relative;
    min-height: max(520px, calc(100dvh - var(--header-h)));
    padding: 2.5rem 1.25rem 3rem;
    align-content: center;
  }

  .hero__main {
    position: relative;
    z-index: 2;
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    margin: 0;
    max-width: none;
    z-index: 0;
  }

  .hero__visual::before {
    display: none;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.62) 50%,
      rgba(0, 0, 0, 0.72) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.5);
  }

  .hero__subtitle {
    color: rgba(245, 245, 245, 0.92);
  }

  .hero__google-rating {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
  }

  .hero__google-star {
    --star-empty: rgba(255, 255, 255, 0.28);
  }

  .hero__contact {
    border-color: rgba(255, 255, 255, 0.14);
  }
}

/* ── Promo band ── */
.promo-band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.promo-band__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding-block: 2.5rem;
}

.promo-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--yellow);
  margin: 0;
  line-height: 1;
}

.promo-band__text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
}

@media (max-width: 640px) {
  .promo-band__inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ── Vehicle banner ── */
.vehicle-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.vehicle-banner__img {
  width: 100%;
  height: clamp(200px, 35vw, 420px);
  object-fit: cover;
  object-position: center;
  background: var(--bg-elevated);
}

/* ── Section typography ── */
.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.section-subtitle {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 55ch;
}

/* ── Calculator ── */
.calculator {
  padding: 4rem 0;
}

.fare-tariff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.fare-tariff__block {
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.fare-tariff__heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
}

.fare-tariff__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fare-tariff__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.fare-tariff__list strong {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.fare-tariff__note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fare-tariff__pauschal {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fare-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.fare-form__row {
  margin-bottom: 0;
}

.fare-form__submit {
  grid-column: 1 / -1;
  justify-self: start;
}

.fare-form__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.fare-form__input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color 0.15s ease;
}

.fare-form__input::placeholder {
  color: var(--text-muted);
}

.fare-form__input:focus {
  outline: none;
  border-color: var(--yellow);
}

.fare-form__input-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.fare-form__input-group .fare-form__input {
  flex: 1;
  min-width: 200px;
}

.fare-form__locate .btn__svg {
  transform: rotate(45deg);
}

.autocomplete-container {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.autocomplete-suggestion {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  transition: background 0.12s ease;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
  background: rgba(255, 221, 0, 0.1);
  color: var(--yellow);
}

.autocomplete-suggestion--empty {
  cursor: default;
  color: var(--text-muted);
  font-style: italic;
}

.autocomplete-suggestion--empty:hover {
  background: transparent;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .fare-tariff,
  .fare-form {
    grid-template-columns: 1fr;
  }
}

.fare-result {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--yellow);
  max-width: 540px;
}

.fare-result__distance {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}

.fare-result__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
}

.fare-result__hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.fare-result__actions {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fare-result__actions-label {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.fare-result__actions-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fare-error {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(220, 53, 69, 0.12);
  border-radius: var(--radius);
  color: #f87171;
  max-width: 540px;
}

/* ── Services grid ── */
.services {
  padding: 4rem 0;
  background: var(--bg-elevated);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

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

@media (min-width: 640px) {
  .services-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-more {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-more__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 1rem;
}

.services-more__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem 2rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.services-more__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.services-more__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a00 100%);
}

.service-card__photo-ref {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
}

.service-card__photo-ref a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-card__photo-ref a:hover {
  color: var(--yellow);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.service-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Map ── */
.map-section {
  padding: 4rem 0;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  isolation: isolate;
}

.map-card__map {
  position: relative;
  z-index: 0;
  height: 340px;
  width: 100%;
  background: var(--bg);
}

.map-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-card__info p {
  margin: 0;
}

/* ── Book CTA ── */
.book-cta {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}

.book-cta__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.book-cta__btn {
  width: 100%;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 22rem;
}

.btn--contact-action {
  width: 100%;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 1.35rem 1.6rem;
  border-radius: var(--radius-pill);
  white-space: normal;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.btn--contact-action .btn__svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.btn--contact-action .btn__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.btn--contact-action .btn__channel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
  line-height: 1.2;
}

.btn--contact-action .btn__number {
  font-size: clamp(1.45rem, 4.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.btn--contact-action.btn--whatsapp .btn__channel {
  color: rgba(255, 255, 255, 0.9);
}

.btn--contact-action.btn--call .btn__channel {
  color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 720px) {
  .hero__actions {
    max-width: none;
  }

  .hero__actions .btn--contact-action {
    justify-content: center;
    text-align: center;
  }

  .hero__actions .btn--contact-action .btn__content {
    align-items: center;
  }

  .book-cta__inner {
    max-width: none;
  }

  .book-cta__btn {
    justify-content: center;
    text-align: center;
  }

  .book-cta__btn .btn__content {
    align-items: center;
  }
}

/* ── Footer ── */
.footer__highlight {
  background: var(--bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
}

.footer__highlight-inner {
  text-align: center;
}

.footer__message {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  color: var(--yellow);
  line-height: 1.25;
}

.footer__content {
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.footer__content p {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--yellow);
}

.footer__content a {
  color: var(--yellow);
}

.footer__links {
  margin-top: 1rem !important;
}

.footer__links a {
  margin: 0 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer__links a:hover {
  opacity: 1;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .site-header__nav--static {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
  }

  .site-header__nav--static a {
    padding: 0;
    border-bottom: none;
  }
}

/* ── Local SEO / Einzugsgebiet ── */
.local-seo {
  padding: 4rem 0;
  background: var(--bg);
}

.local-seo__intro {
  margin: 0 0 1.5rem;
  max-width: 52rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.local-seo__subheading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--yellow);
  margin: 0 0 1rem;
}

.local-seo__areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.local-seo__areas li {
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.local-seo__note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── FAQ (SEO / GEO) ── */
.faq {
  padding: 4rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-list {
  margin: 2rem 0 0;
  padding: 0;
}

.faq-list__item {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list__question {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1.35;
}

.faq-list__answer {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 52rem;
}

/* ── Legal / Bildnachweise ── */
.legal-page {
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  min-height: 60vh;
}

.legal-page__inner {
  max-width: 720px;
}

.legal-page__intro {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.legal-page__back {
  margin: 2.5rem 0 0;
}

.legal-block {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block:first-of-type {
  margin-top: 1.5rem;
}

.legal-block:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 0.75rem;
}

.legal-block__text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.legal-block__text:last-child {
  margin-bottom: 0;
}

.legal-block__text a {
  color: var(--yellow);
}

.photo-credits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.photo-credits__item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-credits__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-credits__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--yellow);
  margin: 0 0 0.75rem;
}

.photo-credits__usage,
.photo-credits__attribution {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.photo-credits__attribution {
  color: var(--text);
}
