:root {
  --aeterna-accent: #d7b892;
  --aeterna-ink: #090c0e;
  --aeterna-ink-soft: #111619;
  --aeterna-light: #f5f2ed;
  --aeterna-white: #ffffff;
  --aeterna-text: #17191a;
  --aeterna-muted: #717678;
  --aeterna-radius: 16px;
  --aeterna-shadow: 0 20px 60px rgba(12, 14, 15, 0.13);
  --aeterna-header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--aeterna-text);
  background: var(--aeterna-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg.icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
}

.site-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #000;
  background: #fff;
  border-radius: 8px;
}

:focus-visible {
  outline: 3px solid var(--aeterna-accent);
  outline-offset: 3px;
}

.section--dark {
  color: #fff;
  background: var(--aeterna-ink);
}

.section--light {
  color: var(--aeterna-text);
  background: var(--aeterna-light);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--aeterna-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 14px;
}

.button--accent {
  color: #17120d;
  background: var(--aeterna-accent);
  border-color: var(--aeterna-accent);
}

.button--accent:hover {
  background: #e3c8a9;
  border-color: #e3c8a9;
}

.button--dark {
  color: #fff;
  background: #0d1113;
  border-color: #0d1113;
}

.button--dark:hover {
  background: #252b2e;
  border-color: #252b2e;
}

.button--icon svg {
  width: 20px;
  height: 20px;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--aeterna-header-height);
  color: #fff;
  background: rgba(5, 8, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(5, 8, 10, 0.95);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(150px, 0.9fr) auto minmax(315px, 1.15fr);
  align-items: center;
  gap: 24px;
}

.site-logo img,
.custom-logo {
  width: auto;
  max-height: 46px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  line-height: 1;
}

.wordmark__name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.wordmark__tagline {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

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

.primary-menu a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
}

.primary-menu a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--aeterna-accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--aeterna-accent);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 600;
}

.language-switcher a {
  color: rgba(255, 255, 255, 0.68);
}

.language-switcher a.is-active,
.language-switcher a:hover {
  color: var(--aeterna-accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: inline-flex;
}

/* Hero */
.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background: #080b0d;
}

.hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #080b0d 0%, rgba(8, 11, 13, 0.88) 10%, rgba(8, 11, 13, 0.22) 46%, rgba(8, 11, 13, 0.17) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.62) 0%, transparent 43%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: brightness(0.66) saturate(0.86) contrast(1.06);
  transform: scale(1.02);
}

.hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #080b0d 0%, #080b0d 34%, rgba(8, 11, 13, 0.34) 64%, rgba(8, 11, 13, 0.04) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  align-items: center;
  padding-top: calc(var(--aeterna-header-height) + 26px);
  padding-bottom: 82px;
}

.hero__content {
  width: min(600px, 53%);
}

.hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero__title span {
  display: block;
}

.hero__title-accent {
  color: var(--aeterna-accent);
}

.hero__text {
  width: min(480px, 100%);
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

/* Compact calculator */
.calculator-section {
  position: relative;
  padding: 0 0 66px;
}

.calculator-section__inner {
  position: relative;
  z-index: 5;
}

.fare-calculator {
  position: relative;
  padding: 22px 28px 23px;
  margin-top: -48px;
  background: #fff;
  border: 1px solid rgba(18, 22, 24, 0.08);
  border-radius: var(--aeterna-radius);
  box-shadow: var(--aeterna-shadow);
}

.fare-calculator__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.fare-calculator__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.compact-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #474b4d;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.compact-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.compact-switch__track {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  background: #cfd2d3;
  border-radius: 999px;
  transition: background-color 180ms ease;
}

.compact-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.compact-switch input:checked + .compact-switch__track {
  background: var(--aeterna-accent);
}

.compact-switch input:checked + .compact-switch__track .compact-switch__thumb {
  transform: translateX(18px);
}

.fare-form__row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 30px minmax(220px, 1fr) 165px;
  align-items: end;
  gap: 14px;
}

.fare-form__row.is-hourly {
  grid-template-columns: minmax(260px, 1.4fr) minmax(170px, 0.6fr) 165px;
}

.fare-field {
  display: block;
  min-width: 0;
}

.fare-field__label {
  display: block;
  margin: 0 0 6px 2px;
  color: #6f7476;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.fare-field__control {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  background: #fbfbfa;
  border: 1px solid #d8dada;
  border-radius: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.fare-field__control:focus-within {
  background: #fff;
  border-color: var(--aeterna-accent);
  box-shadow: 0 0 0 3px rgba(215, 184, 146, 0.18);
}

.fare-field__control svg {
  width: 18px;
  height: 18px;
  color: #383c3e;
}

.fare-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #17191a;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
}

.fare-field input::placeholder {
  color: #a0a4a6;
}

.fare-form__arrow {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--aeterna-accent);
}

.fare-field--hours[hidden],
.fare-field--destination[hidden],
.fare-form__arrow[hidden] {
  display: none !important;
}

.hours-stepper {
  display: grid;
  height: 50px;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid #d8dada;
  border-radius: 9px;
}

.hours-stepper__button {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #202426;
  background: transparent;
  border: 0;
}

.hours-stepper__button:hover {
  background: #efefed;
}

.hours-stepper input {
  height: 100%;
  text-align: center;
  background: transparent;
  border: 0;
  border-right: 1px solid #e0e1e1;
  border-left: 1px solid #e0e1e1;
  outline: 0;
  appearance: textfield;
}

.hours-stepper input::-webkit-outer-spin-button,
.hours-stepper input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.fare-form__submit {
  position: relative;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding-inline: 15px;
  font-size: 14px;
}

.fare-form__spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: aeterna-spin 0.7s linear infinite;
}

.fare-form.is-loading .fare-form__submit-text {
  display: none;
}

.fare-form.is-loading .fare-form__spinner {
  display: block;
}

@keyframes aeterna-spin {
  to { transform: rotate(360deg); }
}

.fare-result {
  display: grid;
  grid-template-columns: minmax(170px, auto) 1fr auto;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #e7e7e5;
}

.fare-result[hidden] {
  display: none;
}

.fare-result__price small,
.fare-result__meta small {
  display: block;
  margin-bottom: 3px;
  color: #777b7d;
  font-size: 11px;
  font-weight: 600;
}

.fare-result__price strong {
  display: block;
  color: #111416;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.fare-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  color: #313638;
  font-size: 13px;
}

.fare-result__meta span {
  display: block;
}

.fare-result__note {
  grid-column: 1 / -1;
  margin: -7px 0 0;
  color: #868a8c;
  font-size: 11px;
}

.fare-result--error {
  display: flex;
  justify-content: space-between;
  color: #6b3930;
  background: #fff8f5;
  border-top-color: #eedbd5;
}

.fare-result--error p {
  margin: 0;
  font-size: 13px;
}

.fare-result .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.calculator-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 27px 20px 0;
}

.calculator-feature {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 0 28px;
  border-right: 1px solid rgba(20, 23, 24, 0.12);
}

.calculator-feature:first-child {
  padding-left: 0;
}

.calculator-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.calculator-feature__icon {
  display: flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  color: #9b744d;
  background: #eee5da;
  border-radius: 50%;
}

.calculator-feature strong,
.calculator-feature small {
  display: block;
}

.calculator-feature strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.calculator-feature small {
  color: #818587;
  font-size: 11px;
  line-height: 1.35;
}

/* Vehicle */
.vehicle-section {
  padding: 90px 0 94px;
  background:
    radial-gradient(circle at 78% 40%, rgba(215, 184, 146, 0.07), transparent 27%),
    linear-gradient(135deg, #0b0f11 0%, #080b0d 100%);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.45fr;
  align-items: center;
  gap: 54px;
}

.vehicle-copy h2,
.section-heading h2,
.why-block h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.vehicle-copy__text {
  max-width: 430px;
  margin: 23px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
}

.vehicle-spec {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vehicle-spec > svg {
  width: 23px;
  height: 23px;
  color: var(--aeterna-accent);
}

.vehicle-spec strong,
.vehicle-spec small {
  display: block;
}

.vehicle-spec strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.vehicle-spec small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.35;
}

.vehicle-gallery {
  display: grid;
  height: 510px;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 9px;
}

.vehicle-gallery figure {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background: #161a1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.vehicle-gallery__main {
  grid-row: 1 / -1;
}

.vehicle-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.vehicle-gallery figure:hover img {
  transform: scale(1.025);
}

/* Light services */
.services-section {
  padding: 88px 0 92px;
  background: #f6f3ee;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  color: #17191a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.service-card {
  min-height: 225px;
  padding: 26px 23px;
  background: #fff;
  border: 1px solid rgba(17, 20, 21, 0.09);
  border-radius: 13px;
  box-shadow: 0 9px 28px rgba(21, 23, 24, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(176, 135, 92, 0.45);
  box-shadow: 0 16px 35px rgba(21, 23, 24, 0.08);
  transform: translateY(-3px);
}

.service-card__icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #9e744a;
  background: #eee5da;
  border-radius: 50%;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.service-card p {
  margin: 0;
  color: #6c7173;
  font-size: 13px;
  line-height: 1.6;
}

.why-block {
  padding-top: 76px;
  margin-top: 78px;
  border-top: 1px solid rgba(18, 21, 22, 0.12);
}

.why-block h2 {
  margin-bottom: 42px;
  color: #17191a;
  text-align: center;
  font-size: clamp(32px, 3.5vw, 44px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(18, 21, 22, 0.12);
}

.why-item:first-child {
  padding-left: 0;
}

.why-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.why-item > span {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  color: #9f7852;
  background: #eee7de;
  border-radius: 50%;
}

.why-item strong {
  display: block;
  margin: 2px 0 6px;
  font-size: 14px;
}

.why-item p {
  margin: 0;
  color: #6e7375;
  font-size: 12px;
  line-height: 1.55;
}

/* Contact */
.contact-section {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 90px 0;
  background: #0a0e10;
}

.contact-section__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 53%;
  background-position: center;
  background-size: cover;
  filter: brightness(0.46) saturate(0.75);
}

.contact-section__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0e10 0%, #0a0e10 44%, rgba(10, 14, 16, 0.76) 61%, rgba(10, 14, 16, 0.18) 100%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 70px;
}

.contact-copy h2 span {
  color: var(--aeterna-accent);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 22px 0 29px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
}

.contact-details {
  display: grid;
  gap: 13px;
  padding: 24px;
  background: rgba(11, 15, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(12px);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 9px;
}

.contact-detail__icon {
  display: flex;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  color: var(--aeterna-accent);
  border: 1px solid rgba(215, 184, 146, 0.4);
  border-radius: 50%;
}

.contact-detail small,
.contact-detail strong {
  display: block;
}

.contact-detail small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.contact-detail strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.58);
  background: #080b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__inner {
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr auto 1fr 42px;
  align-items: center;
  gap: 34px;
}

.wordmark--footer .wordmark__name {
  color: var(--aeterna-accent);
  font-size: 21px;
}

.footer-navigation {
  display: flex;
  gap: 24px;
  font-size: 12px;
}

.footer-navigation a:hover {
  color: #fff;
}

.site-footer__copyright {
  margin: 0;
  text-align: right;
  font-size: 11px;
}

.back-to-top {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--aeterna-accent);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.back-to-top .icon--up {
  transform: rotate(-90deg);
}

/* Generic pages */
.content-shell {
  min-height: 70vh;
  padding: 140px 0 80px;
  color: #202426;
  background: var(--aeterna-light);
}

.content-card {
  max-width: 860px;
  padding: 48px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--aeterna-shadow);
}

.content-card h1 {
  margin-top: 0;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.content-card a:not(.button) {
  color: #8a603b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Tablet */
@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: minmax(140px, 0.8fr) auto minmax(245px, 0.95fr);
    gap: 16px;
  }

  .primary-menu {
    gap: 20px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 40px;
    height: 40px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
  }

  .fare-form__row {
    grid-template-columns: minmax(190px, 1fr) 26px minmax(190px, 1fr) 150px;
    gap: 11px;
  }

  .vehicle-grid {
    grid-template-columns: 0.85fr 1.2fr;
    gap: 38px;
  }
}

@media (max-width: 930px) {
  :root {
    --aeterna-header-height: 68px;
  }

  .site-container {
    width: min(100% - 34px, 760px);
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .primary-navigation {
    position: fixed;
    z-index: 60;
    top: var(--aeterna-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 28px 22px;
    background: rgba(7, 10, 12, 0.99);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-menu a {
    padding: 17px 4px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-menu a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-phone,
  .header-cta {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 600px;
  }

  .hero__media {
    width: 100%;
  }

  .hero__media::after {
    background: linear-gradient(90deg, rgba(8, 11, 13, 0.98) 0%, rgba(8, 11, 13, 0.84) 48%, rgba(8, 11, 13, 0.42) 100%);
  }

  .hero__veil {
    background: linear-gradient(0deg, #080b0d 0%, rgba(8, 11, 13, 0.16) 60%, rgba(8, 11, 13, 0.38) 100%);
  }

  .hero__content {
    width: min(590px, 78%);
  }

  .fare-form__row {
    grid-template-columns: 1fr 24px 1fr;
  }

  .fare-form__submit {
    grid-column: 1 / -1;
    width: 180px;
    justify-self: end;
  }

  .fare-form__row.is-hourly {
    grid-template-columns: minmax(250px, 1fr) minmax(170px, 0.55fr) 160px;
  }

  .fare-form__row.is-hourly .fare-form__submit,
  .fare-form__row.is-hourly .fare-field--hours {
    grid-column: auto;
  }

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

  .vehicle-copy {
    max-width: 660px;
  }

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

  .why-grid {
    gap: 30px 0;
  }

  .why-item:nth-child(2) {
    border-right: 0;
  }

  .why-item:nth-child(3) {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto 42px;
  }

  .footer-navigation {
    display: none;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .site-container {
    width: min(100% - 28px, 560px);
  }

  .wordmark__name {
    font-size: 20px;
  }

  .wordmark__tagline {
    font-size: 9px;
  }

  .hero,
  .hero__inner {
    min-height: 620px;
  }

  .hero__media img {
    object-position: 57% center;
  }

  .hero__media::after {
    background:
      linear-gradient(0deg, #080b0d 3%, rgba(8, 11, 13, 0.75) 48%, rgba(8, 11, 13, 0.48) 100%),
      linear-gradient(90deg, rgba(8, 11, 13, 0.92) 0%, rgba(8, 11, 13, 0.46) 100%);
  }

  .hero__inner {
    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 94px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__title {
    font-size: clamp(37px, 11vw, 52px);
    line-height: 1.07;
  }

  .hero__text {
    max-width: 420px;
    margin: 20px 0 25px;
    font-size: 16px;
  }

  .fare-calculator {
    padding: 20px 17px;
    margin-top: -52px;
    border-radius: 14px;
  }

  .fare-calculator__header h2 {
    max-width: 225px;
    font-size: 18px;
    line-height: 1.2;
  }

  .compact-switch {
    gap: 7px;
    font-size: 11px;
  }

  .compact-switch__track {
    width: 38px;
    height: 22px;
  }

  .compact-switch__thumb {
    width: 16px;
    height: 16px;
  }

  .compact-switch input:checked + .compact-switch__track .compact-switch__thumb {
    transform: translateX(16px);
  }

  .fare-form__row,
  .fare-form__row.is-hourly {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .fare-form__arrow {
    display: none;
  }

  .fare-form__submit {
    grid-column: auto;
    width: 100%;
  }

  .fare-field__control,
  .hours-stepper,
  .fare-form__submit {
    height: 48px;
    min-height: 48px;
  }

  .fare-result,
  .fare-result--error {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fare-result .button {
    width: 100%;
  }

  .calculator-features {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 23px 3px 0;
  }

  .calculator-feature,
  .calculator-feature:first-child,
  .calculator-feature:last-child {
    padding: 0;
    border-right: 0;
  }

  .vehicle-section,
  .services-section,
  .contact-section {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .vehicle-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .vehicle-specs {
    gap: 22px 14px;
  }

  .vehicle-gallery {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 145px 145px;
  }

  .vehicle-gallery__main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .vehicle-gallery figure:last-child {
    grid-column: 1 / -1;
  }

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

  .service-card {
    min-height: 0;
  }

  .why-block {
    padding-top: 58px;
    margin-top: 58px;
  }

  .why-block h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .why-grid {
    gap: 0;
  }

  .why-item,
  .why-item:first-child,
  .why-item:nth-child(3),
  .why-item:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 21, 22, 0.1);
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .contact-section__image {
    width: 100%;
    opacity: 0.48;
  }

  .contact-section__shade {
    background: linear-gradient(0deg, #0a0e10 10%, rgba(10, 14, 16, 0.82) 65%, rgba(10, 14, 16, 0.62) 100%);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-details {
    padding: 14px;
  }

  .site-footer__inner {
    min-height: 150px;
    grid-template-columns: 1fr 42px;
    gap: 18px;
    padding-block: 25px;
  }

  .site-footer__copyright {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .back-to-top {
    justify-self: end;
  }

  .content-card {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
