/*
Theme Name: Departure Transfers
Theme URI: https://departure.pl/
Author: Departure.pl
Author URI: https://departure.pl/
Description: Motyw WordPress odtwarzający projekt Lovable dla premium transferów Kraków - Zakopane.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: departure-transfers
*/

:root {
  --paper: #ffffff;
  --paper-2: #f5f4f0;
  --paper-3: #ebe9e3;
  --ink: #0d0d0d;
  --ink-2: #1a1a1a;
  --ink-muted: #6b6a64;
  --line: #d8d5cd;
  --brand: #8a6d1e;
  --brand-soft: #b8932f;
  --success: #10b981;
  --max: 1400px;
  --font-sans: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", "Barlow", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  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 {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  clip: auto;
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .08rem;
  min-width: max-content;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: .04em;
  line-height: 1;
}

.brand__accent,
.accent {
  color: var(--brand);
}

.accent-soft {
  color: var(--brand-soft);
}

.site-nav {
  display: none;
  align-items: center;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  color: rgba(13, 13, 13, .7);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 2.75rem;
  padding: .78rem 1.25rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--brand-soft);
  background: var(--brand-soft);
  color: var(--ink);
}

.button--outline {
  border-color: rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--brand-soft);
  background: transparent;
  color: var(--brand-soft);
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button .icon {
  width: 1rem;
  height: 1rem;
  transition: transform .2s ease;
}

.button:hover .icon,
.button:focus-visible .icon {
  transform: rotate(45deg);
}

.main {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding-top: 5rem;
  background: var(--paper);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem 1.5rem;
  gap: 3rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  color: var(--brand);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--center {
  justify-content: center;
  color: var(--brand-soft);
}

.hero__title,
.section-title,
.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .9;
}

.hero__title {
  color: var(--ink);
  font-size: clamp(4.4rem, 10vw, 9.6rem);
  letter-spacing: .01em;
  line-height: .88;
}

.hero__lead {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

.hero__badges span {
  border: 1px solid var(--line);
  background: #fff;
  padding: .7rem .9rem;
  color: rgba(13, 13, 13, .76);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.booking {
  max-width: 44rem;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
  padding: 1.75rem;
  box-shadow: 0 24px 70px rgba(13, 13, 13, .08);
}

.booking__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.booking__title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: .06em;
  line-height: 1;
}

.booking__step,
.booking__notice,
.field span,
.stat__label,
.route-card__label,
.route-card__duration,
.footer__label,
.site-footer__bottom,
.travel-time__label {
  color: var(--ink-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.booking__notice {
  margin: 0 0 1.2rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.booking__notice--success {
  border-color: var(--success);
}

.booking__notice--error {
  border-color: #c2410c;
}

.field {
  display: block;
}

.field span {
  display: block;
  margin-bottom: .5rem;
}

.field input {
  width: 100%;
  min-height: 2.5rem;
  border: 0;
  border-bottom: 1px solid rgba(13, 13, 13, .25);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .04em;
}

.field input:focus {
  border-bottom-color: var(--brand);
}

.booking__button {
  justify-content: space-between;
  width: 100%;
  margin-top: 1.75rem;
  padding: 1rem 1.5rem;
  letter-spacing: .28em;
}

.hero__media {
  position: relative;
  min-height: 60vh;
  background: var(--paper-2);
  overflow: hidden;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .35), transparent 42%);
}

.travel-time {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(13, 13, 13, .85);
  color: #fff;
  text-align: right;
  backdrop-filter: blur(8px);
}

.route-line {
  position: absolute;
  inset: 12% 9% auto auto;
  z-index: 1;
  width: min(22rem, 44vw);
  height: min(22rem, 44vw);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  opacity: .9;
  animation: routePulse 5s ease-in-out infinite;
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.route-line::before {
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, .38);
}

.route-line::after {
  width: .8rem;
  height: .8rem;
  top: 14%;
  left: 22%;
  background: var(--brand-soft);
  box-shadow: 0 0 0 .55rem rgba(184, 147, 47, .22);
}

.route-line span {
  position: absolute;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #fff;
}

.route-line span:first-child {
  right: 20%;
  bottom: 18%;
}

.route-line span:last-child {
  right: 40%;
  top: 6%;
}

.travel-time__value {
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-size: 4.8rem;
  letter-spacing: -.02em;
  line-height: .9;
}

.travel-time__label {
  margin-top: .35rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .32em;
}

.stats {
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.stat {
  background: var(--ink);
  padding: 2.5rem 1rem;
  text-align: center;
}

.stat__value {
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 7vw, 5.2rem);
  letter-spacing: -.02em;
  line-height: 1;
}

.stat__label {
  margin-top: .75rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .28em;
}

.section {
  padding: 7rem 1.5rem;
}

.section--compact {
  padding-top: 4rem;
}

.section--paper {
  background: var(--paper);
}

.section--muted {
  background: var(--paper-2);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: end;
}

.section-title {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  letter-spacing: -.01em;
}

.section__text {
  max-width: 32rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.has-js [data-reveal] {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.benefit {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper), var(--paper-2));
  padding: 2rem;
}

.benefit::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(138, 109, 30, .22);
  border-radius: 50%;
}

.benefit__icon {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
}

.benefit__icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.benefit h2,
.process__item h3 {
  margin: 3.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: .98;
}

.benefit p,
.process__item p,
.faq p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 27rem;
  background: var(--paper);
  padding: 2rem;
  transition: background .2s ease;
}

.route-card:hover {
  background: var(--paper-2);
}

.route-card__top,
.route-card__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.route-card__number {
  color: var(--ink-muted);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: .08em;
}

.route-card__icon {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--brand);
}

.route-card__icon .icon {
  width: 100%;
  height: 100%;
}

.route-card h3 {
  margin: 3rem 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.05rem);
  font-weight: 400;
  letter-spacing: .025em;
  line-height: 1.12;
}

.route-card p {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.route-card__bottom {
  align-items: flex-end;
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.route-card__price {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 3.2rem;
  letter-spacing: -.02em;
  line-height: 1;
}

.route-card__price span {
  font-size: 1.25rem;
}

.route-card__duration {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  letter-spacing: .2em;
}

.route-card__duration .icon {
  width: .9rem;
  height: .9rem;
}

.fleet {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.fleet__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
}

.fleet__content p {
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.feature-list {
  padding: 0;
  margin: 2.5rem 0 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: rgba(13, 13, 13, .85);
  font-size: 1.02rem;
}

.panorama {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 7rem 1.5rem;
  background: var(--ink);
  color: #fff;
}

.panorama__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.panorama__image img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  opacity: .64;
  filter: saturate(.9) contrast(1.06);
}

.panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, .9), rgba(13, 13, 13, .55) 55%, rgba(13, 13, 13, .16)),
    linear-gradient(0deg, rgba(13, 13, 13, .72), transparent 45%);
}

.panorama__content {
  position: relative;
  z-index: 1;
  max-width: 64rem;
}

.panorama__content .section-title {
  max-width: 11ch;
  color: #fff;
}

.panorama__content p {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.18rem;
  line-height: 1.75;
}

.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.process__item {
  min-height: 24rem;
  background: var(--paper);
  padding: 2rem;
}

.process__item > span {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: .9;
}

.split-proof,
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

.audience-grid span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.1rem 1.2rem;
  color: rgba(13, 13, 13, .86);
  font-weight: 700;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--brand);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  max-width: 48rem;
  padding-top: 1rem;
}

.feature-list li:first-child {
  border-top: 0;
}

.feature-list .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand);
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 9rem 1.5rem;
}

.cta::before {
  content: "DEPARTURE";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, .04);
  font-family: var(--font-display);
  font-size: 24vw;
  line-height: 1;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  color: #fff;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: .95;
}

.cta p {
  max-width: 38rem;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, .65);
  font-size: 1.12rem;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 4rem 1.5rem 2rem;
}

.site-footer__grid,
.site-footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.site-footer p {
  max-width: 26rem;
  color: var(--ink-muted);
  font-size: 1rem;
}

.footer__label {
  margin-bottom: 1.25rem;
  color: var(--brand);
  letter-spacing: .28em;
}

.footer__list {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(13, 13, 13, .8);
  font-size: 1rem;
}

@keyframes routePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: .75;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.footer__list li,
.footer__link {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer__list .icon {
  width: .9rem;
  height: .9rem;
}

.socials {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.socials a {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  transition: border-color .2s ease, color .2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.socials .icon {
  width: 1rem;
  height: 1rem;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  letter-spacing: .24em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.status::before {
  content: "";
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--success);
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 1rem 4rem;
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 400;
  line-height: .95;
}

.content-page :where(p, li) {
  color: var(--ink-muted);
}

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

  .cta__actions {
    flex-direction: row;
  }

  .site-footer__bottom {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .site-footer__grid {
    grid-template-columns: 5fr 3fr 4fr;
  }

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

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

@media (min-width: 1024px) {
  .site-header__inner {
    padding-inline: 2.5rem;
  }

  .hero {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-top: 5.6rem;
  }

  .hero__content {
    grid-column: span 6;
    padding: 5rem 3rem;
  }

  .hero__media {
    grid-column: span 6;
    min-height: auto;
  }

  .hero__media::after {
    background: linear-gradient(90deg, var(--paper), transparent 35%);
  }

  .booking {
    padding: 2rem;
  }

  .travel-time {
    display: block;
  }

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

  .stat {
    padding-block: 3.5rem;
  }

  .section {
    padding: 9rem 2.5rem;
  }

  .section--compact {
    padding-top: 6rem;
  }

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

  .section__heading > div {
    grid-column: span 7;
  }

  .section__text {
    grid-column: 9 / span 4;
  }

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

  .route-card {
    padding: 2.5rem;
  }

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

  .fleet__media {
    grid-column: span 7;
  }

  .fleet__content {
    grid-column: span 5;
  }

  .panorama {
    padding: 9rem 2.5rem;
  }

  .panorama__content {
    margin-left: calc((100vw - min(var(--max), calc(100vw - 5rem))) / 2);
  }

  .split-proof,
  .faq {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .split-proof > div:first-child,
  .faq > div:first-child {
    grid-column: span 5;
  }

  .audience-grid,
  .faq__list {
    grid-column: 7 / span 6;
  }

  .cta {
    padding: 11rem 2.5rem;
  }

  .site-footer {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1280px) {
  .hero__content {
    padding-inline: 5rem;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .route-line {
    animation: none;
  }
}

/* Desktop scale pass: keep the page premium, but stop it looking like a narrow centered mockup. */
:root {
  --max: 1760px;
}

body {
  font-size: 19px;
}

.site-header__inner,
.section__inner,
.stats__inner,
.site-footer__grid,
.site-footer__bottom {
  width: min(calc(100% - 3rem), var(--max));
}

.site-header__inner {
  max-width: none;
  padding-block: 1.45rem;
}

.brand {
  font-size: clamp(2rem, 2.2vw, 2.6rem);
}

.site-nav ul {
  gap: clamp(2rem, 4vw, 4.5rem);
}

.site-nav a,
.button {
  font-size: .84rem;
}

.button {
  min-height: 3.15rem;
  padding: .95rem 1.45rem;
}

.hero__title {
  font-size: clamp(5.2rem, 10.5vw, 12rem);
}

.hero__lead {
  max-width: 42rem;
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
}

.booking {
  max-width: 52rem;
}

.booking__title {
  font-size: 2.25rem;
}

.field input {
  font-size: 1.9rem;
}

.stat {
  padding-block: clamp(3.3rem, 5vw, 5rem);
}

.stat__value {
  font-size: clamp(4.5rem, 7.2vw, 6.4rem);
}

.section {
  padding-block: clamp(6rem, 8vw, 8.5rem);
  padding-inline: clamp(1.5rem, 3vw, 3.5rem);
}

.section--compact {
  padding-top: clamp(3rem, 4vw, 4.5rem);
}

.section__heading {
  margin-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.section-title {
  font-size: clamp(5rem, 8.7vw, 9.3rem);
}

.section__text {
  max-width: 38rem;
  font-size: 1.25rem;
}

.benefit,
.process__item,
.route-card {
  padding: clamp(2.4rem, 3vw, 3.5rem);
}

.benefit {
  min-height: 25rem;
}

.benefit h2,
.process__item h3 {
  font-size: clamp(3rem, 4vw, 4.2rem);
}

.benefit p,
.process__item p,
.faq p,
.route-card p,
.fleet__content p,
.feature-list li {
  font-size: 1.18rem;
}

.route-card {
  min-height: 32rem;
}

.route-card__number {
  font-size: 2.25rem;
}

.route-card__icon {
  width: 2.15rem;
  height: 2.15rem;
}

.route-card h3 {
  font-size: clamp(3rem, 4.4vw, 4.45rem);
}

.route-card__price {
  font-size: 4.2rem;
}

.panorama {
  min-height: 92vh;
}

.panorama__content {
  max-width: 78rem;
}

.panorama__content p {
  max-width: 56rem;
  font-size: 1.35rem;
}

.fleet {
  gap: clamp(4rem, 6vw, 7rem);
}

.faq summary {
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
}

.cta__inner {
  max-width: 70rem;
}

.cta p {
  max-width: 48rem;
  font-size: 1.28rem;
}

.site-footer p,
.footer__list {
  font-size: 1.12rem;
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding-inline: clamp(2rem, 4vw, 4.5rem);
  }

  .hero {
    padding-top: 6.1rem;
  }

  .hero__content {
    padding: clamp(4rem, 5vw, 6.5rem) clamp(2rem, 4.6vw, 5.5rem);
  }

  .section__heading > div {
    grid-column: span 8;
  }

  .section__text {
    grid-column: 9 / span 4;
  }

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

  .panorama {
    padding-inline: clamp(2rem, 4vw, 4.5rem);
  }

  .panorama__content {
    margin-left: calc((100vw - min(var(--max), calc(100vw - 3rem))) / 2);
  }
}

@media (min-width: 1600px) {
  .site-header__inner,
  .section__inner,
  .stats__inner,
  .site-footer__grid,
  .site-footer__bottom {
    width: min(calc(100% - 5rem), var(--max));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 17px;
  }

  .site-header__inner,
  .section__inner,
  .stats__inner,
  .site-footer__grid,
  .site-footer__bottom {
    width: min(calc(100% - 2rem), var(--max));
  }

  .hero__title {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .section-title {
    font-size: clamp(3.5rem, 16vw, 5.6rem);
  }
}
