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

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/manrope-500.woff2') format('woff2');
}

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

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/manrope-700.woff2') format('woff2');
}

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

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/cormorant-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/cormorant-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cormorant-600.woff2') format('woff2');
}

:root {
  --bg: #f7f4ee;
  --bg-soft: #f0e9dc;
  --surface: #fffdfa;
  --surface-strong: #f5efe4;
  --text: #1f2421;
  --text-soft: #5f655f;
  --line: #d9d0c3;
  --green: #2f5d50;
  --green-deep: #1f3f36;
  --orange: #d9862a;
  --orange-soft: #f0bb77;
  --black: #171717;
  --shadow: 0 18px 50px rgba(31, 63, 54, 0.10);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --pad: clamp(1.1rem, 2vw, 1.6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 134, 42, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(47, 93, 80, 0.16), transparent 32%),
    radial-gradient(circle at 30% 55%, rgba(47, 93, 80, 0.06), transparent 26%),
    linear-gradient(180deg, #fcfbf8 0%, var(--bg) 100%);
  line-height: 1.65;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 93, 80, 0.14);
  box-shadow: 0 8px 30px rgba(31, 63, 54, 0.05);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(47, 93, 80, 0.08);
  display: grid;
  place-items: center;
  padding: 0.35rem;
  box-shadow: 0 10px 24px rgba(47, 93, 80, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-brand-image {
  width: min(180px, 42vw);
  margin: 0 auto 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 0.95;
  color: var(--black);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.menu-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(47, 93, 80, 0.16);
  background: rgba(255, 253, 250, 0.92);
  color: var(--green-deep);
  box-shadow: 0 12px 28px rgba(31, 63, 54, 0.08);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-actions-persistent {
  margin-left: auto;
  min-width: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-deep);
}

.main-nav a.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange) 0%, #b96d1c 100%);
  border: 1px solid rgba(185, 109, 28, 0.42);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 22px rgba(217, 134, 42, 0.22);
}

.main-nav a.lang-switch:hover,
.main-nav a.lang-switch.active {
  color: #fff;
  box-shadow: 0 12px 24px rgba(217, 134, 42, 0.28);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #b96d1c 100%);
  box-shadow: 0 14px 28px rgba(217, 134, 42, 0.24);
}

.btn-secondary {
  color: var(--green-deep);
  background: transparent;
  border-color: rgba(47, 93, 80, 0.18);
}

.header-actions [data-phone-link].btn {
  color: #f7f4ee;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  border-color: rgba(31, 63, 54, 0.2);
  box-shadow: 0 16px 30px rgba(47, 93, 80, 0.22);
  animation: callPulse 1.9s ease-in-out infinite;
}

.header-actions [data-phone-link].btn:hover {
  box-shadow: 0 18px 34px rgba(47, 93, 80, 0.28);
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(47, 93, 80, 0.06) 0%, rgba(47, 93, 80, 0.02) 48%, transparent 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.08);
  border: 1px solid rgba(47, 93, 80, 0.14);
  color: var(--green-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-copy h1,
.section-title,
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--black);
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
  margin: 1rem 0 1rem;
  color: var(--green-deep);
}

.hero-copy p,
.section-intro,
.page-intro,
.card p,
.policy-prose p,
.policy-prose li,
.faq-item p {
  color: var(--text-soft);
}

.hero-copy p {
  max-width: 56ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(247, 252, 250, 0.95) 0%, rgba(236, 244, 239, 0.98) 100%);
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.vehicle-showcase {
  display: grid;
  gap: 1rem;
}

.vehicle-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 63, 54, 0.09) 0%, rgba(47, 93, 80, 0.08) 42%, rgba(217, 134, 42, 0.08) 100%);
  border: 1px solid rgba(47, 93, 80, 0.12);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.vehicle-frame img {
  width: 100%;
  height: clamp(240px, 36vw, 360px);
  object-fit: cover;
  border-radius: 20px;
}

.vehicle-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.vehicle-meta {
  display: grid;
  gap: 0.7rem;
}

.vehicle-meta h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--black);
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.vehicle-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.callout-card {
  display: grid;
  gap: 0.9rem;
}

.callout-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.app-install {
  display: none;
}

.app-install.is-visible {
  display: inline-flex;
}

.hero-panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  font-weight: 800;
}

.hero-panel h2 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--black);
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--text-soft);
}

.hero-panel li + li {
  margin-top: 0.45rem;
}

.section {
  padding: clamp(2.6rem, 5vw, 4.5rem) 0;
}

.section-title,
.page-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 0.6rem;
}

.section-intro,
.page-intro {
  max-width: 62ch;
  font-size: 1rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.15rem;
}

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

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

.card {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.94) 0%, rgba(248, 250, 247, 0.96) 100%);
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 32px rgba(31, 63, 54, 0.06);
  min-width: 0;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  color: var(--black);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-pill {
  background: linear-gradient(180deg, rgba(47, 93, 80, 0.08) 0%, rgba(47, 93, 80, 0.05) 100%);
  border: 1px solid rgba(31, 63, 54, 0.12);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.trust-pill strong {
  display: block;
  color: var(--green-deep);
  margin-bottom: 0.2rem;
}

.accent-line {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(217, 134, 42, 0.32);
  box-shadow: 0 18px 34px rgba(217, 134, 42, 0.12);
}

.pricing-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-deep);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.pricing-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.pricing-meta {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.pricing-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.pricing-list li + li {
  margin-top: 0.45rem;
}

.highlight-box {
  background: linear-gradient(180deg, rgba(47, 93, 80, 0.96) 0%, rgba(31, 63, 54, 0.96) 100%);
  color: #f6f3ee;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(31, 63, 54, 0.22);
}

@keyframes callPulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 16px 30px rgba(47, 93, 80, 0.22);
  }

  50% {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 0 0 8px rgba(47, 93, 80, 0.08), 0 16px 30px rgba(47, 93, 80, 0.24);
  }
}

.highlight-box h3,
.highlight-box p,
.highlight-box li {
  color: inherit;
}

.contact-card {
  display: grid;
  gap: 0.95rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-row strong {
  color: var(--black);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(47, 93, 80, 0.10);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(31, 63, 54, 0.05);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--black);
}

.policy-prose {
  display: grid;
  gap: 1.35rem;
}

.policy-prose section {
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(47, 93, 80, 0.10);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.policy-prose h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: var(--black);
}

.site-footer {
  padding: 2.3rem 0 3rem;
  border-top: 1px solid rgba(47, 93, 80, 0.10);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-title {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--green-deep);
}

.footer-note {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-bottom {
  width: min(calc(100% - 2rem), var(--max));
  margin: 1.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(47, 93, 80, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: start;
}

.route-hero {
  display: grid;
  justify-items: center;
  text-align: center;
}

.route-hero .page-intro {
  margin-inline: auto;
}

.route-card,
.route-map-card {
  display: grid;
  gap: 1rem;
}

.route-card-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.route-card-intro {
  margin-bottom: 0.2rem;
}

.route-form,
.field-group {
  display: grid;
  gap: 0.55rem;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.field-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.field-input {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(47, 93, 80, 0.16);
  background: rgba(255, 253, 250, 0.94);
  color: var(--black);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.field-input:focus {
  outline: none;
  border-color: rgba(47, 93, 80, 0.34);
  box-shadow: 0 0 0 4px rgba(47, 93, 80, 0.08);
}

.field-action {
  min-width: 132px;
}

.field-error {
  margin: 0.2rem 0 0;
  color: #8f2c1d;
  font-size: 0.83rem;
  line-height: 1.4;
  font-weight: 700;
}

.route-popular {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.route-popular h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--green-deep);
}

.route-popular-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(31, 63, 54, 0.9) 50%),
    linear-gradient(135deg, rgba(31, 63, 54, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}

.route-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.route-chip {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(47, 93, 80, 0.2);
  background: rgba(47, 93, 80, 0.06);
  color: var(--green-deep);
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.route-chip:hover,
.route-chip:focus-visible {
  background: rgba(47, 93, 80, 0.12);
  border-color: rgba(47, 93, 80, 0.32);
  transform: translateY(-1px);
}

.suggestions {
  display: grid;
  gap: 0.35rem;
}

.suggestion-item {
  width: 100%;
  text-align: left;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(47, 93, 80, 0.10);
  background: rgba(47, 93, 80, 0.04);
  color: var(--text);
  font: inherit;
}

.suggestion-item:hover {
  background: rgba(47, 93, 80, 0.08);
}

.route-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.route-form-actions {
  margin-top: 0.2rem;
}

.route-result {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.92) 0%, rgba(240, 245, 242, 0.96) 100%);
  border: 1px solid rgba(47, 93, 80, 0.12);
}

.route-result-head {
  display: grid;
  gap: 0.45rem;
}

.route-points {
  display: grid;
  gap: 0.65rem;
}

.route-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(47, 93, 80, 0.05);
  border: 1px solid rgba(47, 93, 80, 0.08);
}

.route-point-dot {
  width: 12px;
  height: 12px;
  margin-top: 0.28rem;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(31, 63, 54, 0.16);
}

.route-point-dot.origin {
  background: #2f5d50;
}

.route-point-dot.destination {
  background: #d9862a;
}

.route-point-body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.route-point-body span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--text-soft);
}

.route-point-body strong {
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.09);
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.route-stat {
  display: grid;
  gap: 0.22rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(47, 93, 80, 0.05);
}

.route-stat span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.route-stat strong {
  color: var(--black);
  font-size: 1rem;
}

.route-price-box {
  display: grid;
  gap: 0.32rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 93, 80, 0.10) 0%, rgba(217, 134, 42, 0.08) 100%);
  border: 1px solid rgba(47, 93, 80, 0.12);
}

.route-price-label,
.route-price-note {
  color: var(--text-soft);
}

.route-price-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.route-price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--green-deep);
}

.route-urgency-note {
  margin: 0.2rem 0 0;
  font-size: 0.84rem;
  color: #2d6a4f;
  font-style: italic;
}

.route-map {
  position: relative;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 80, 0.14);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #2a2d3a 0%, #232633 100%);
}

.route-map.leaflet-container {
  background: #252836;
}

.route-map-note {
  margin: 0;
  color: var(--text-soft);
  text-align: center;
}

.route-map .leaflet-control-zoom a {
  color: #f4f5fa;
  background: rgba(20, 22, 31, 0.94);
  border-bottom-color: rgba(244, 245, 250, 0.16);
  width: 34px;
  height: 34px;
  line-height: 32px;
  font-weight: 800;
}

.route-map .leaflet-control-attribution {
  background: rgba(20, 22, 31, 0.86);
  color: #c8cddd;
  font-size: 0.72rem;
}

.route-map .leaflet-tile-pane {
  filter: saturate(0.58) contrast(1.18) brightness(0.57) hue-rotate(178deg);
}

.route-map .leaflet-control-container {
  z-index: 800;
}

.map-fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--green-deep);
  font-weight: 700;
  background: linear-gradient(180deg, #ece8e0 0%, #e1dbcf 100%);
}

.map-wrap {
  position: relative;
}

.map-locate-btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 700;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(122, 133, 176, 0.38);
  border-radius: 50%;
  background: rgba(18, 20, 28, 0.94);
  color: #eef1ff;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(9, 10, 16, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-locate-btn::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #5d8dff;
  border-radius: 50%;
  background:
    linear-gradient(#5d8dff, #5d8dff) center / 2px 12px no-repeat,
    linear-gradient(#5d8dff, #5d8dff) center / 12px 2px no-repeat;
}

.map-locate-btn::after {
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 30, 25, 0.92);
  color: #f7f4ee;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.32rem 0.6rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.map-locate-btn:hover {
  background: rgba(30, 35, 52, 0.96);
}

.map-locate-btn:hover::after,
.map-locate-btn:focus-visible::after {
  opacity: 1;
}

@media (hover: none) {
  .map-locate-btn::after {
    display: none;
  }
}

.map-locate-btn:disabled {
  opacity: 0.62;
  cursor: default;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(calc(100% - 1.5rem), 880px);
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(21, 36, 30, 0.96);
  color: #f3efe7;
  border: 1px solid rgba(217, 134, 42, 0.35);
  box-shadow: 0 22px 44px rgba(13, 22, 18, 0.38);
  z-index: 6000;
}

.cookie-banner p {
  margin: 0;
  color: inherit;
}

.cookie-banner a {
  color: #f4c17f;
  text-underline-offset: 0.16em;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  min-height: 40px;
  padding: 0.58rem 1rem;
}

.cookie-banner .btn-secondary {
  color: #f3efe7;
  border-color: rgba(243, 239, 231, 0.32);
  background: rgba(243, 239, 231, 0.06);
}

.cookie-banner .btn-secondary:hover {
  background: rgba(243, 239, 231, 0.12);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 6100;
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 17, 0.58);
}

.cookie-modal-panel {
  position: relative;
  width: min(calc(100% - 1.5rem), 540px);
  margin: min(12vh, 80px) auto 0;
  background: linear-gradient(180deg, #fffdf9 0%, #f3ecde 100%);
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 52px rgba(13, 22, 18, 0.28);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.cookie-modal-panel h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--black);
}

.cookie-modal-panel p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(47, 93, 80, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 250, 0.8);
  color: var(--text);
  font-weight: 600;
}

.cookie-row-locked {
  background: rgba(47, 93, 80, 0.08);
}

.cookie-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .pricing-grid,
  .footer-inner,
  .trust-strip,
  .route-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .header-inner {
    min-height: auto;
    padding: 0.75rem 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.7rem 0.55rem;
    text-align: left;
  }

  .brand {
    justify-content: flex-start;
  }

  .brand-text {
    align-items: flex-start;
  }

  .brand-title {
    font-size: 1.42rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions-persistent {
    margin-left: 0;
    justify-self: end;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
  }

  .header-actions-persistent .btn {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 38px;
    padding: 0.62rem 0.82rem;
    font-size: 0.8rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(47, 93, 80, 0.12);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(244, 248, 244, 0.98) 100%);
    box-shadow: 0 20px 40px rgba(31, 63, 54, 0.10);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .main-nav > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0.75rem;
    border-radius: 14px;
    background: rgba(47, 93, 80, 0.04);
  }

  .main-nav > a.lang-switch {
    background: linear-gradient(135deg, var(--orange) 0%, #b96d1c 100%);
    color: #fff;
    border: 1px solid rgba(185, 109, 28, 0.42);
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.3rem;
  }

  .header-actions .btn {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .page-hero {
    padding: 2.8rem 0 2rem;
  }

  .hero-grid {
    gap: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 0.95;
  }

  .hero-copy p {
    font-size: 1rem;
  }

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

  .route-form .field-inline {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .page-hero .section-inner,
  .hero-copy,
  .section-intro,
  .page-intro,
  .vehicle-showcase,
  .vehicle-meta,
  .callout-card,
  .contact-card,
  .faq-item,
  .policy-prose section,
  .footer-inner,
  .footer-bottom {
    text-align: center;
  }

  .hero-copy p,
  .section-intro,
  .page-intro {
    margin-inline: auto;
  }

  .vehicle-tags,
  .footer-links,
  .callout-actions {
    justify-content: center;
  }

  .contact-row {
    align-items: center;
  }

  .card,
  .faq-item,
  .policy-prose section,
  .hero-panel,
  .vehicle-frame {
    padding: 1.15rem;
  }

  .section {
    padding: 2.35rem 0;
  }

  .footer-inner > div {
    display: grid;
    justify-items: center;
  }

  .footer-links {
    justify-items: center;
  }

  .footer-bottom {
    justify-content: center;
  }

  .accent-line {
    margin-inline: auto;
  }

  .pricing-grid[style] {
    grid-template-columns: 1fr !important;
  }

  .pricing-list,
  .hero-panel ul {
    text-align: left;
  }

  .route-badge {
    margin-inline: auto;
  }

  .route-result-actions {
    justify-content: center;
  }

  .route-card,
  .route-map-card {
    justify-items: stretch;
    text-align: left;
  }

  .route-form,
  .field-group,
  .route-result {
    width: 100%;
  }

  .route-map {
    min-height: 420px;
  }

  .map-locate-btn {
    width: 40px;
    height: 40px;
    left: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    width: min(calc(100% - 1rem), 680px);
    left: 0.5rem;
    right: 0.5rem;
    transform: none;
  }

  .vehicle-frame img {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .route-form .field-inline,
  .route-meta-grid,
  .route-stats {
    grid-template-columns: 1fr;
  }

  .field-action {
    min-width: 100%;
  }

  .route-chip-row {
    gap: 0.45rem;
  }

  .route-chip {
    width: 100%;
    justify-content: center;
  }
}
