/* Britannia Cars homepage — native-app mobile/tablet experience.
   Every layout rule is capped at 1024px so the approved desktop view remains intact. */

.mobile-bottom-nav {
  display: none;
}

.footer-location-link {
  display: none;
}

body.page-home #mainContent:focus {
  outline: none;
}

body.page-home #navbar .nav-logo-icon picture {
  display: contents;
}

body.page-home nav#navbar .nav-logo-text .nav-company-suffix {
  color: inherit;
  font-weight: inherit;
}

body.page-home nav#navbar .nav-logo-text .nav-company-suffix::after {
  display: none;
}

body.page-home #fleet .fleet-card > picture,
body.page-home #about .about-image-wrap > picture {
  display: contents;
}

@media (min-width: 1025px) {
  /* Wrapping the homepage in its main landmark must not change sticky-header anchor spacing. */
  body.page-home #mainContent > section[id] {
    scroll-margin-top: 0;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 12px 16px;
  color: #0a0a0a;
  font-family: var(--sans, "Jost", sans-serif);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #e8c97a;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-140%);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

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

/* Footer headings remain semantic on desktop; only their inner controls become accordions on mobile. */
body.page-home footer .footer-accordion-trigger {
  display: inline;
  width: auto;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  appearance: none;
  cursor: default;
}

body.page-home footer .footer-accordion-trigger i {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --mobile-header-height: 64px;
    --mobile-bottom-nav-height: 70px;
  }

  html {
    scroll-padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 12px);
  }

  body.page-home {
    --home-display-font: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --home-readable-text: #d2cdc5;
    --home-readable-muted: #bdb6aa;
    --mobile-gutter: clamp(20px, 5.4vw, 40px);
    --mobile-card-radius: 20px;
    --mobile-control-radius: 14px;
    --mobile-surface: #181818;
    --mobile-surface-raised: #202020;
    --mobile-border: rgba(201, 168, 76, 0.18);
    --mobile-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    overflow-x: clip;
    color: var(--home-readable-text);
    font-family: var(--sans, "Jost", sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  body.page-home.mobile-menu-open {
    overflow: hidden;
  }

  body.page-home::before {
    opacity: 0.18;
  }

  body.page-home section[id] {
    scroll-margin-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 12px);
  }

  /* Mobile app bar */
  body.page-home nav#navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1400;
    width: 100%;
    height: calc(var(--mobile-header-height) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color 220ms ease-out, border-color 220ms ease-out,
      box-shadow 220ms ease-out;
  }

  body.page-home nav#navbar.scrolled {
    background: rgba(10, 10, 10, 0.985);
    border-bottom-color: rgba(201, 168, 76, 0.32);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  }

  body.page-home nav#navbar .nav-logo {
    min-width: 0;
    min-height: 48px;
    gap: 0;
  }

  body.page-home nav#navbar .nav-logo-icon {
    display: grid;
    flex: 0 0 120px;
    width: 120px;
    height: 47px;
    overflow: visible;
    place-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.page-home nav#navbar .nav-logo-text {
    display: none;
    align-items: center;
    min-width: 0;
    font-family: var(--home-body-font);
    line-height: 1;
    white-space: nowrap;
  }

  body.page-home nav#navbar .nav-logo-text .nav-company-name {
    display: none;
  }

  body.page-home nav#navbar .nav-logo-text .nav-company-suffix {
    display: inline-flex;
    margin: 0;
    padding-left: 0;
    color: #e8c97a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    border-left: 0;
  }

  body.page-home nav#navbar .nav-logo-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: left center;
    border-radius: 0 !important;
    filter: drop-shadow(0 2px 6px rgba(232, 201, 122, 0.08));
    transform: none;
  }

  body.page-home nav#navbar .hamburger {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    gap: 5px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(201, 168, 76, 0.24);
    border-radius: 14px;
    transition: background-color 160ms ease-out, border-color 160ms ease-out,
      transform 120ms ease-out;
  }

  body.page-home nav#navbar .hamburger span {
    width: 22px;
    height: 1.5px;
    background: #e8c97a;
    border-radius: 999px;
    transition: transform 220ms ease-out, opacity 180ms ease-out;
  }

  body.page-home nav#navbar .hamburger:active {
    transform: scale(0.96);
  }

  /* Animated mobile drawer */
  body.page-home .mobile-menu,
  body.page-home .mobile-menu.open {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: block;
    width: 100%;
    height: 100dvh;
    background: transparent;
    visibility: hidden;
    pointer-events: none;
  }

  body.page-home .mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
  }

  body.page-home .mobile-menu-scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(0, 0, 0, 0.68);
    border: 0;
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 240ms ease-out;
  }

  body.page-home .mobile-menu.open .mobile-menu-scrim {
    opacity: 1;
  }

  body.page-home .mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(88vw, 380px);
    height: 100dvh;
    padding: calc(16px + env(safe-area-inset-top)) max(18px, env(safe-area-inset-right))
      calc(22px + env(safe-area-inset-bottom)) 18px;
    overflow-y: auto;
    color: #faf8f3;
    background: #111111;
    border-left: 1px solid rgba(201, 168, 76, 0.24);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
    outline: 0;
    overscroll-behavior: contain;
    transform: translate3d(104%, 0, 0);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.page-home .mobile-menu.open .mobile-drawer {
    transform: translate3d(0, 0, 0);
  }

  body.page-home .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    gap: 14px;
  }

  body.page-home .mobile-drawer-brand {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    gap: 0;
  }

  body.page-home .mobile-drawer-brand img {
    display: block;
    flex: 0 0 100px;
    width: 100px;
    height: 39px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border: 0;
    border-radius: 0;
    filter: drop-shadow(0 2px 7px rgba(232, 201, 122, 0.08));
  }

  body.page-home .mobile-drawer-brand > div {
    min-width: 0;
  }

  body.page-home .mobile-menu-title-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body.page-home .mobile-drawer-brand strong,
  body.page-home .mobile-drawer-brand span {
    display: block;
    line-height: 1.15;
  }

  body.page-home .mobile-drawer-brand strong {
    color: #e8c97a;
    font-family: var(--sans, "Jost", sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  body.page-home .mobile-drawer-brand span {
    margin-top: 4px;
    color: #c9a84c;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
  }

  body.page-home .mobile-close {
    position: static;
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    color: #e8c97a;
    font-size: 21px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 14px;
    transition: background-color 160ms ease-out, transform 120ms ease-out;
  }

  body.page-home .mobile-close:active {
    transform: scale(0.96);
  }

  body.page-home .mobile-menu-kicker {
    margin: 28px 4px 12px;
    color: #9f988e;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  body.page-home .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  body.page-home .mobile-menu .mobile-nav-links a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 14px;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    gap: 12px;
    color: #d7d1c8;
    font-family: var(--sans, "Jost", sans-serif);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 14px;
    transition: color 160ms ease-out, background-color 160ms ease-out,
      border-color 160ms ease-out, transform 120ms ease-out;
  }

  body.page-home .mobile-menu .mobile-nav-links a > i:first-child {
    color: #c9a84c;
    font-size: 16px;
    text-align: center;
  }

  body.page-home .mobile-menu .mobile-nav-links a > i:last-child {
    color: #766f65;
    font-size: 10px;
    text-align: right;
  }

  body.page-home .mobile-menu .mobile-nav-links a.active {
    color: #faf8f3;
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.32);
  }

  body.page-home .mobile-menu .mobile-nav-links a.mobile-menu-cta {
    color: #0a0a0a;
    background: #c9a84c;
    border-color: #c9a84c;
  }

  body.page-home .mobile-menu .mobile-nav-links a.mobile-menu-cta > i {
    color: #0a0a0a;
  }

  body.page-home .mobile-menu .mobile-nav-links a:active {
    transform: scale(0.985);
  }

  body.page-home .mobile-drawer-contact {
    display: grid;
    margin-top: auto;
    padding: 24px 4px 0;
    gap: 8px;
  }

  body.page-home .mobile-drawer-contact > span {
    color: #a9a297;
    font-size: 12px;
  }

  body.page-home .mobile-menu .mobile-drawer-contact a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    gap: 10px;
    color: #e8c97a;
    font-family: var(--home-display-font);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
  }

  /* Mobile hero: content is readable first, imagery remains atmospheric. */
  body.page-home #hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    min-height: clamp(720px, 100svh, 860px);
    padding: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 38px) 0
      calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom) + 12px);
    overflow: hidden;
    background: #090909;
    isolation: isolate;
  }

  body.page-home #hero .hero-bg-image {
    background-image: url("images/hero-home-clean-v1.jpg");
    background-position: 68% center;
    background-size: cover;
    transform: none;
    animation: none;
  }

  body.page-home #hero .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.16) 0%, rgba(7, 7, 7, 0.36) 35%, rgba(7, 7, 7, 0.93) 73%, #090909 100%),
      linear-gradient(90deg, rgba(7, 7, 7, 0.58) 0%, rgba(7, 7, 7, 0.08) 72%);
  }

  body.page-home #hero .hero-gold-line {
    top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 22px);
    bottom: 22px;
    left: max(8px, env(safe-area-inset-left));
    width: 1px;
    height: auto;
    opacity: 0.38;
  }

  body.page-home #hero .hero-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 0;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-bottom: 0;
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    text-align: center;
  }

  body.page-home #hero .hero-eyebrow,
  body.page-home .section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 10px;
    text-align: center;
  }

  body.page-home #hero .hero-eyebrow {
    margin-bottom: 18px;
  }

  body.page-home #hero .hero-eyebrow-line,
  body.page-home .section-eyebrow-line,
  body.page-home #hero .hero-eyebrow::after,
  body.page-home .section-eyebrow::after {
    flex: 0 1 34px;
    width: clamp(24px, 8vw, 34px);
    height: 1px;
  }

  body.page-home #hero .hero-eyebrow-line,
  body.page-home .section-eyebrow-line {
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.18), #c9a84c);
  }

  body.page-home #hero .hero-eyebrow::after,
  body.page-home .section-eyebrow::after {
    background: linear-gradient(90deg, #c9a84c, rgba(201, 168, 76, 0.18));
    content: "";
  }

  body.page-home #hero .hero-eyebrow span,
  body.page-home .section-eyebrow span {
    color: #e8c97a;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  body.page-home #hero .hero-title,
  body.page-home .section-title,
  body.page-home #services .service-name,
  body.page-home #booking .form-title,
  body.page-home #fleet .fleet-model,
  body.page-home #fleet .fleet-spec-val,
  body.page-home #about .about-image-badge-num,
  body.page-home #about .why-item-title,
  body.page-home #testimonials .testimonial-text,
  body.page-home #testimonials .testimonial-avatar,
  body.page-home #cta-banner .cta-title,
  body.page-home #cta-banner::before {
    font-family: var(--home-display-font);
    font-synthesis: none;
  }

  body.page-home #hero .hero-title {
    max-width: 13ch;
    margin: 0 auto 20px;
    color: #faf8f3;
    font-size: clamp(44px, 12.3vw, 66px);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.038em;
    text-wrap: balance;
  }

  body.page-home #hero .hero-title em,
  body.page-home .section-title em {
    color: #e8c97a;
    font-family: inherit;
    font-style: normal;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  body.page-home #hero .hero-subtitle {
    max-width: 38ch;
    margin: 0 auto 26px;
    color: #e2ddd5;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.64;
    letter-spacing: 0.002em;
    text-wrap: pretty;
  }

  body.page-home #hero .hero-actions {
    display: flex;
    width: min(100%, 620px);
    margin: 0 auto;
    gap: 12px;
  }

  body.page-home #hero .hero-actions a,
  body.page-home #services .services-header > .btn-secondary,
  body.page-home #cta-banner .cta-buttons a,
  body.page-home #booking .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: var(--mobile-control-radius);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-align: center;
    transition: color 160ms ease-out, background-color 160ms ease-out,
      border-color 160ms ease-out, transform 120ms ease-out;
  }

  body.page-home #hero .hero-actions a {
    flex: 1 1 0;
  }

  body.page-home #hero .hero-actions a:active,
  body.page-home #services .services-header > .btn-secondary:active,
  body.page-home #cta-banner .cta-buttons a:active,
  body.page-home #booking .btn-submit:active {
    transform: scale(0.985);
  }

  body.page-home #hero .hero-stats {
    position: static;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(720px, calc(100% - 40px));
    max-width: 720px;
    margin: 26px auto 0;
    padding: 14px 8px;
    gap: 0;
    background: rgba(16, 16, 16, 0.76);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  body.page-home #hero .hero-stat {
    min-width: 0;
    padding: 0 8px;
    margin: 0;
    text-align: center;
    border-right: 1px solid rgba(250, 248, 243, 0.11);
  }

  body.page-home #hero .hero-stat:last-child {
    border-right: 0;
  }

  body.page-home #hero .hero-stat-number {
    color: #faf8f3;
    font-family: var(--home-display-font);
    font-size: clamp(12px, 3.4vw, 15px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
  }

  body.page-home #hero .hero-stat-label {
    margin-top: 5px;
    color: #bdb6aa;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  body.page-home #hero .hero-scroll {
    display: none;
  }

  /* Shared section rhythm and typography */
  body.page-home .section-pad {
    padding-top: 68px;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-bottom: 68px;
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  body.page-home .section-eyebrow {
    margin-bottom: 16px;
  }

  body.page-home .section-title {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 18px;
    color: #faf8f3;
    font-size: clamp(34px, 8vw, 48px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.034em;
    text-align: center;
    text-wrap: balance;
  }

  body.page-home .desktop-auto-break {
    display: none;
  }

  body.page-home .section-body {
    max-width: 66ch;
    margin-right: auto;
    margin-left: auto;
    color: var(--home-readable-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0.002em;
    text-align: center;
    text-wrap: pretty;
  }

  /* Service cards */
  body.page-home #services.section-pad {
    padding-top: 32px;
  }

  body.page-home #services .services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 32px;
    gap: 16px;
    text-align: center;
  }

  body.page-home #services .services-header > div:first-child {
    width: 100%;
  }

  body.page-home #services .services-header .section-title {
    margin-bottom: 0;
  }

  body.page-home #services .services-header > .btn-secondary {
    width: min(100%, 360px);
  }

  body.page-home #services .services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body.page-home #services .service-link {
    height: 100%;
    border-radius: var(--mobile-card-radius);
    outline: 0;
  }

  body.page-home #services .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: var(--mobile-surface);
    border: 1px solid var(--mobile-border);
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-shadow);
    cursor: pointer;
    transition: background-color 180ms ease-out, border-color 180ms ease-out,
      transform 140ms ease-out;
  }

  body.page-home #services .service-card::before {
    height: 2px;
    opacity: 0.68;
    transform: none;
  }

  body.page-home #services .service-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #10100f;
  }

  body.page-home #services .service-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.02) 45%, rgba(8, 8, 8, 0.6) 100%);
    content: "";
    pointer-events: none;
  }

  body.page-home #services .service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.84) saturate(0.8) contrast(1.04);
  }

  body.page-home #services .service-number {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    margin: 0;
    color: #e8c97a;
    font-family: var(--home-display-font);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.14em;
    background: rgba(9, 9, 8, 0.78);
    border: 1px solid rgba(201, 168, 76, 0.42);
    border-radius: 10px;
    backdrop-filter: blur(8px);
  }

  body.page-home #services .service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    width: 46px;
    height: 46px;
    margin: -23px 20px 14px;
    background: #1b1b1b;
    border-color: rgba(201, 168, 76, 0.34);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
  }

  body.page-home #services .service-name {
    margin: 0 20px 10px;
    color: #faf8f3;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.018em;
  }

  body.page-home #services .service-desc {
    flex: 1 1 auto;
    margin: 0;
    padding: 0 20px 24px;
    color: var(--home-readable-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.68;
    text-wrap: pretty;
  }

  body.page-home #services .service-link:active .service-card {
    background: var(--mobile-surface-raised);
    border-color: rgba(201, 168, 76, 0.38);
    transform: scale(0.992);
  }

  /* Reservation section and form */
  body.page-home #booking .booking-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  body.page-home #booking .booking-info {
    padding-top: 0;
    text-align: center;
  }

  body.page-home #booking .booking-info > .section-body {
    max-width: 64ch;
  }

  body.page-home #booking .booking-contact-items {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
    gap: 12px;
  }

  body.page-home #booking .booking-contact-item {
    align-items: center;
    min-width: 0;
    min-height: 68px;
    padding: 10px 12px;
    gap: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 15px;
  }

  body.page-home #booking .booking-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  body.page-home #booking .booking-contact-text {
    min-width: 0;
    color: var(--home-readable-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  body.page-home #booking .booking-contact-text strong {
    margin-bottom: 1px;
    color: #faf8f3;
    font-size: 13px;
    font-weight: 500;
  }

  body.page-home #booking .booking-contact-text a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin: -8px 0;
    color: #e8c97a;
    font-size: 15px;
  }

  body.page-home #booking .booking-form {
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
    background: var(--mobile-surface-raised);
    border-color: rgba(201, 168, 76, 0.22);
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-shadow);
  }

  body.page-home #booking .form-title {
    margin-bottom: 8px;
    color: #faf8f3;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
  }

  body.page-home #booking .form-subtitle {
    max-width: 46ch;
    margin: 0 auto 26px;
    color: var(--home-readable-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
  }

  body.page-home #booking .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 17px;
  }

  body.page-home #booking .form-group,
  body.page-home #booking .form-group.full,
  body.page-home #booking #return-fields.visible > * {
    min-width: 0;
    grid-column: 1;
  }

  body.page-home #booking .form-group {
    gap: 7px;
  }

  body.page-home #booking .form-group label,
  body.page-home #booking .form-row-label {
    color: #c3bcaf;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  body.page-home #booking .form-row-label {
    grid-column: 1;
    margin-top: 4px;
    padding-top: 18px;
    color: #e8c97a;
  }

  body.page-home #booking .form-group input,
  body.page-home #booking .form-group select,
  body.page-home #booking .form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    color: #f1ede7;
    font-family: var(--sans, "Jost", sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    background-color: rgba(255, 255, 255, 0.045);
    border-color: rgba(201, 168, 76, 0.24);
    border-radius: 12px;
    outline: 0;
    color-scheme: dark;
    transition: background-color 160ms ease-out, border-color 160ms ease-out,
      box-shadow 160ms ease-out;
  }

  body.page-home #booking .form-group select {
    background-position: calc(100% - 16px) center;
    padding-right: 42px;
  }

  body.page-home #booking .form-group textarea {
    min-height: 120px;
  }

  body.page-home #booking .form-group input::placeholder,
  body.page-home #booking .form-group textarea::placeholder {
    color: #aaa399;
    opacity: 1;
  }

  body.page-home #booking .form-group input:focus,
  body.page-home #booking .form-group select:focus,
  body.page-home #booking .form-group textarea:focus {
    background-color: rgba(201, 168, 76, 0.065);
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  }

  body.page-home #booking .form-check {
    grid-column: 1;
    min-height: 52px;
    margin-top: 0;
    padding: 10px 12px;
    gap: 12px;
    color: #d0cac1;
    font-size: 15px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 12px;
  }

  body.page-home #booking .form-check input[type="checkbox"] {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
  }

  body.page-home #booking .form-submit {
    grid-column: 1;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
    gap: 12px;
  }

  body.page-home #booking .btn-submit {
    width: 100%;
  }

  body.page-home #booking .btn-submit:disabled {
    opacity: 0.68;
    cursor: wait;
  }

  body.page-home #booking .form-note {
    color: var(--home-readable-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
  }

  body.page-home #booking .form-success,
  body.page-home #booking .form-error {
    grid-column: 1;
    margin-top: 0;
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 12px;
  }

  /* Fleet cards */
  body.page-home #fleet .fleet-header,
  body.page-home #testimonials .testimonials-header {
    margin: 0 auto 32px;
    text-align: center;
  }

  body.page-home #fleet .fleet-header .section-body {
    margin-right: auto;
    margin-left: auto;
  }

  body.page-home #fleet .fleet-grid,
  body.page-home #testimonials .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body.page-home #fleet .fleet-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--mobile-surface);
    border-color: var(--mobile-border);
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-shadow);
  }

  body.page-home #fleet .fleet-image {
    aspect-ratio: 16 / 9;
    border-radius: var(--mobile-card-radius) var(--mobile-card-radius) 0 0;
    filter: brightness(0.88) saturate(0.82);
  }

  body.page-home #fleet .fleet-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px 20px 24px;
  }

  body.page-home #fleet .fleet-model {
    margin-bottom: 6px;
    color: #faf8f3;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.24;
    letter-spacing: -0.018em;
  }

  body.page-home #fleet .fleet-class {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }

  body.page-home #fleet .fleet-desc {
    flex: 1 1 auto;
    margin-bottom: 18px;
    color: var(--home-readable-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.68;
    text-wrap: pretty;
  }

  body.page-home #fleet .fleet-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    padding-top: 16px;
    gap: 0;
  }

  body.page-home #fleet .fleet-spec {
    min-width: 0;
    padding: 0 6px;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }

  body.page-home #fleet .fleet-spec:last-child {
    border-right: 0;
  }

  body.page-home #fleet .fleet-spec-val {
    color: #e8c97a;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  body.page-home #fleet .fleet-spec-key {
    margin-top: 5px;
    color: var(--home-readable-muted);
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
  }

  /* About section */
  body.page-home #about .about-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  body.page-home #about .about-image-wrap {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  body.page-home #about .about-image {
    aspect-ratio: 4 / 3;
    object-position: center 32%;
    border-radius: var(--mobile-card-radius);
    filter: brightness(0.86) saturate(0.76);
  }

  body.page-home #about .about-image-badge {
    bottom: -22px;
    left: 16px;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  }

  body.page-home #about .about-image-badge-num {
    font-size: 30px;
    font-weight: 500;
  }

  body.page-home #about .about-image-badge-text {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  body.page-home #about .why-list {
    margin-top: 28px;
    gap: 12px;
  }

  body.page-home #about .why-item {
    align-items: flex-start;
    min-width: 0;
    padding: 16px;
    gap: 13px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(201, 168, 76, 0.13);
    border-radius: 15px;
  }

  body.page-home #about .why-item:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.13);
  }

  body.page-home #about .why-item-icon {
    width: 44px;
    height: 44px;
    margin-top: 0;
    border-radius: 13px;
  }

  body.page-home #about .why-item-title {
    margin-bottom: 5px;
    color: #faf8f3;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.008em;
  }

  body.page-home #about .why-item-text {
    color: var(--home-readable-muted);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.65;
    text-wrap: pretty;
  }

  /* Testimonials */
  body.page-home #testimonials .testimonial-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px 20px;
    background: var(--mobile-surface);
    border-color: var(--mobile-border);
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-shadow);
  }

  body.page-home #testimonials .testimonial-quote-mark {
    top: 14px;
    right: 18px;
    font-family: var(--home-display-font);
    font-size: 68px;
    font-weight: 300;
  }

  body.page-home #testimonials .testimonial-text {
    flex: 1 1 auto;
    margin-bottom: 20px;
    color: #d9d4cc;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0.002em;
    text-wrap: pretty;
  }

  body.page-home #testimonials .testimonial-author {
    padding-top: 16px;
  }

  body.page-home #testimonials .testimonial-avatar {
    width: 44px;
    height: 44px;
    font-weight: 500;
  }

  body.page-home #testimonials .testimonial-name {
    color: #faf8f3;
    font-size: 14px;
    font-weight: 500;
  }

  body.page-home #testimonials .testimonial-role {
    color: var(--home-readable-muted);
    font-size: 12px;
    font-weight: 400;
  }

  /* Airport and local coverage */
  body.page-home #coverage .coverage-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  body.page-home #coverage .coverage-inner > div {
    min-width: 0;
  }

  body.page-home #coverage .airport-list {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 26px;
    gap: 10px;
  }

  body.page-home #coverage .airport-item {
    min-height: 52px;
    padding: 12px 15px;
    color: #ded9d1;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(201, 168, 76, 0.17);
    border-radius: 13px;
  }

  body.page-home #coverage .airport-item svg {
    width: 17px;
    height: 17px;
  }

  body.page-home #coverage .coverage-intro {
    margin-bottom: 24px;
  }

  body.page-home #coverage .local-areas {
    justify-content: center;
    margin-top: 0;
    gap: 8px;
  }

  body.page-home #coverage .local-tag {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 13px;
    color: #c9c2b8;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(201, 168, 76, 0.2);
    border-radius: 999px;
  }

  /* Conversion banner */
  body.page-home #cta-banner {
    padding-top: 58px;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-bottom: 64px;
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  body.page-home #cta-banner::before {
    font-size: clamp(86px, 28vw, 150px);
    font-weight: 300;
  }

  body.page-home #cta-banner .cta-title {
    max-width: 16ch;
    margin: 0 auto 12px;
    font-size: clamp(36px, 9vw, 48px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.034em;
    text-wrap: balance;
  }

  body.page-home #cta-banner .cta-sub {
    max-width: 42ch;
    margin: 0 auto 26px;
    color: rgba(10, 10, 10, 0.82);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
  }

  body.page-home #cta-banner .cta-buttons {
    display: flex;
    width: min(100%, 600px);
    margin: 0 auto;
    gap: 12px;
  }

  body.page-home #cta-banner .cta-buttons a {
    flex: 1 1 0;
  }

  /* Compact, app-style footer with accessible accordions. */
  body.page-home footer {
    padding-top: 48px;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-bottom: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom) + 34px);
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  body.page-home footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto 28px;
    gap: 0;
  }

  body.page-home footer .footer-grid > div {
    min-width: 0;
  }

  body.page-home footer .footer-grid > div:first-child {
    padding-bottom: 26px;
    text-align: center;
  }

  body.page-home footer .footer-brand-name {
    margin-bottom: 10px;
    color: #faf8f3;
    font-size: 25px;
    line-height: 1.2;
  }

  body.page-home footer .footer-tagline {
    max-width: 42ch;
    margin: 0 auto 16px;
    color: var(--home-readable-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
  }

  body.page-home footer .footer-phone,
  body.page-home footer .footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0 auto;
  }

  body.page-home footer .footer-phone {
    color: #e8c97a;
    font-size: 22px;
    font-weight: 500;
  }

  body.page-home footer .footer-email {
    color: #c7c0b6;
    font-size: 14px;
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  body.page-home footer .footer-location-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    min-height: 50px;
    margin: 12px auto 0;
    padding: 0 16px;
    gap: 9px;
    color: #e8c97a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    background: rgba(201, 168, 76, 0.065);
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 13px;
  }

  body.page-home footer iframe {
    display: none;
    width: 100%;
    max-width: 560px;
    height: 154px;
    margin: 16px auto 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
  }

  body.page-home footer .footer-grid > div:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.065);
  }

  body.page-home footer .footer-col-title {
    margin: 0;
  }

  body.page-home footer .footer-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    margin: 0;
    color: #e8c97a;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.17em;
    cursor: pointer;
  }

  body.page-home footer .footer-accordion-trigger i {
    display: block;
    color: #a68a3d;
    font-size: 11px;
    transition: transform 200ms ease-out;
  }

  body.page-home footer .footer-accordion-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  body.page-home footer .footer-links {
    display: flex;
    max-height: 360px;
    padding-bottom: 12px;
    gap: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 240ms ease-out, opacity 180ms ease-out,
      padding-bottom 240ms ease-out, visibility 0s linear 0s;
  }

  body.page-home footer .footer-links[aria-hidden="true"] {
    max-height: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 220ms ease-out, opacity 150ms ease-out,
      padding-bottom 220ms ease-out, visibility 0s linear 220ms;
  }

  body.page-home footer .footer-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: #bdb6aa;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
  }

  body.page-home footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 22px;
    gap: 10px;
    text-align: center;
  }

  body.page-home footer .footer-copy {
    max-width: 48ch;
    color: #aaa399;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
  }

  body.page-home footer .footer-credit-label,
  body.page-home footer .footer-credit-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 13px;
    font-weight: 600;
  }

  /* Persistent, thumb-friendly app navigation. */
  body.page-home .mobile-bottom-nav {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1500;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    height: calc(var(--mobile-bottom-nav-height) + env(safe-area-inset-bottom));
    padding: 7px max(8px, env(safe-area-inset-right)) env(safe-area-inset-bottom)
      max(8px, env(safe-area-inset-left));
    background: rgba(14, 14, 14, 0.96);
    border-top: 1px solid rgba(201, 168, 76, 0.24);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 180ms ease-out, transform 220ms ease-out;
  }

  body.page-home .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 56px;
    gap: 4px;
    color: #a9a297;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 12px;
    transition: color 150ms ease-out, background-color 150ms ease-out,
      transform 120ms ease-out;
  }

  body.page-home .mobile-bottom-nav a i {
    font-size: 18px;
    line-height: 1;
  }

  body.page-home .mobile-bottom-nav a.active {
    color: #e8c97a;
  }

  body.page-home .mobile-bottom-nav a.mobile-bottom-primary {
    justify-self: center;
    width: min(100%, 96px);
    color: #0a0a0a;
    background: #c9a84c;
    box-shadow: 0 8px 22px rgba(201, 168, 76, 0.22);
  }

  body.page-home .mobile-bottom-nav a:active {
    transform: scale(0.94);
  }

  body.page-home.mobile-menu-open .mobile-bottom-nav,
  body.page-home.mobile-menu-open .whatsapp-float {
    opacity: 0;
    transform: translateY(120%);
    pointer-events: none;
  }

  body.page-home .whatsapp-float {
    display: none;
  }

  /* Always keep content available; the short animation is enhancement only. */
  body.page-home .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.page-home .reveal.visible {
    animation: mobile-reveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes mobile-reveal {
    from {
      opacity: 0.72;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.page-home a:focus-visible,
  body.page-home button:focus-visible,
  body.page-home input:focus-visible,
  body.page-home select:focus-visible,
  body.page-home textarea:focus-visible {
    outline: 2px solid #e8c97a;
    outline-offset: 3px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body.page-home #services .services-grid,
  body.page-home #fleet .fleet-grid,
  body.page-home #testimonials .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home #fleet .fleet-card:last-child,
  body.page-home #testimonials .testimonial-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 9px);
  }

  body.page-home #booking .booking-contact-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.page-home #booking .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home #booking .form-group.full,
  body.page-home #booking .form-row-label,
  body.page-home #booking .form-check,
  body.page-home #booking .form-submit,
  body.page-home #booking .form-success,
  body.page-home #booking .form-error {
    grid-column: 1 / -1;
  }

  body.page-home #booking #return-fields.visible > .form-row-label,
  body.page-home #booking #return-fields.visible > .form-group.full {
    grid-column: 1 / -1;
  }

  body.page-home #booking #return-fields.visible > .form-group:not(.full) {
    grid-column: auto;
  }

  body.page-home #coverage .airport-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 1024px) and (orientation: portrait) {
  body.page-home #hero {
    min-height: 100svh;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  body.page-home #services.section-pad {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  body.page-home #hero .hero-actions,
  body.page-home #cta-banner .cta-buttons {
    flex-direction: column;
  }

  body.page-home #hero .hero-actions a,
  body.page-home #cta-banner .cta-buttons a {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) and (max-height: 680px) {
  body.page-home #hero {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 22px);
    padding-bottom: 32px;
  }

  body.page-home #hero .hero-stats {
    display: none;
  }

  body.page-home #hero .hero-eyebrow {
    margin-bottom: 14px;
  }

  body.page-home #hero .hero-title {
    margin-bottom: 14px;
    font-size: 40px;
  }

  body.page-home #hero .hero-subtitle {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  body.page-home #hero .hero-actions {
    flex-direction: column;
    gap: 8px;
  }

  body.page-home #hero .hero-actions a {
    width: 100%;
    min-height: 50px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 380px) {
  body.page-home {
    --mobile-gutter: 18px;
  }

  body.page-home nav#navbar .nav-logo {
    max-width: calc(100vw - 92px);
    gap: 0;
  }

  body.page-home nav#navbar .nav-logo-icon {
    flex-basis: 116px;
    width: 116px;
    height: 45px;
  }

  body.page-home nav#navbar .nav-logo-text .nav-company-suffix {
    padding-left: 7px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  body.page-home .mobile-drawer-brand img {
    flex-basis: 94px;
    width: 94px;
    height: 37px;
  }

  body.page-home .mobile-drawer-brand strong {
    font-size: 12px;
    letter-spacing: 0.09em;
  }

  body.page-home #hero .hero-title {
    font-size: clamp(40px, 12vw, 46px);
  }

  body.page-home #hero .hero-eyebrow span,
  body.page-home .section-eyebrow span {
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  body.page-home #hero .hero-stat {
    padding-right: 5px;
    padding-left: 5px;
  }

  body.page-home #booking .booking-form {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 1024px) and (max-height: 719px) and (orientation: landscape) {
  body.page-home #hero {
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top) + 18px);
    padding-bottom: 24px;
  }

  body.page-home #hero .hero-stats {
    display: none;
  }

  body.page-home #hero .hero-eyebrow {
    margin-bottom: 12px;
  }

  body.page-home #hero .hero-title {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(46px, 7.2vw, 56px);
  }

  body.page-home #hero .hero-subtitle {
    max-width: 58ch;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  body.page-home #hero .hero-actions {
    flex-direction: row;
    max-width: 620px;
  }

  body.page-home .mobile-bottom-nav {
    display: none;
  }

  body.page-home footer {
    padding-bottom: 36px;
  }

  body.page-home .mobile-drawer-contact {
    margin-top: 20px;
  }
}

@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.page-home *,
  body.page-home *::before,
  body.page-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.page-home .reveal.visible {
    animation: none;
  }
}
