:root {
  --night: #07111d;
  --night-2: #0b1826;
  --ink: #f7ead4;
  --muted: rgba(247, 234, 212, 0.74);
  --soft: rgba(247, 234, 212, 0.12);
  --line: rgba(218, 172, 86, 0.28);
  --gold: #d9ad57;
  --gold-2: #f1cf86;
  --black: #03070d;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

html.translated-ltr,
html.translated-rtl,
body.translated-ltr,
body.translated-rtl,
body {
  top: 0 !important;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

body.is-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 4px;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.96;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(217, 173, 87, 0.2), transparent 34%),
    linear-gradient(135deg, #02060b, #0a1524);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.page-loader.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  gap: 18px;
  justify-items: center;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.loader-ring {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(217, 173, 87, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 16px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: 72px;
  padding: 13px clamp(18px, 4vw, 62px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(2, 7, 13, 0.74), rgba(2, 7, 13, 0.24));
  border-bottom: 1px solid rgba(217, 173, 87, 0.12);
  backdrop-filter: blur(10px);
  transition: background 260ms ease, min-height 260ms ease, box-shadow 260ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(4, 10, 17, 0.92);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  min-width: clamp(148px, 13vw, 230px);
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.42));
}

.brand-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 2.65vw, 3.35rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0.035em;
  background: linear-gradient(180deg, #ffe3a4 0%, #d7a451 48%, #9e7133 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.85rem, 1.12vw, 1.38rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-shadow: 0 2px 0 rgba(255, 236, 177, 0.14), 0 8px 20px rgba(0, 0, 0, 0.46);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 30px);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.main-nav a {
  position: relative;
  color: rgba(247, 234, 212, 0.82);
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-2);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-left: 12.5%;
}

.language-switcher a,
.language-switcher button {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.language-switcher a:hover,
.language-switcher button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.language-switcher a.active,
.language-switcher button.active {
  filter: brightness(1.12);
}

.language-switcher a:not(.active),
.language-switcher button:not(.active) {
  opacity: 0.86;
}

.language-switcher a[aria-disabled="true"],
.language-switcher button[aria-disabled="true"] {
  opacity: 0.52;
}

.language-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.google-translate-host {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-tt,
.goog-te-spinner-pos,
.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-xl07Ob,
.VIpgJd-ZVi9od-xl07Ob-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-yAWNEb-hvhgNd,
.VIpgJd-suEOdc,
body > .skiptranslate,
iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.goog-text-highlight,
font {
  background: transparent !important;
  box-shadow: none !important;
}

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
}

.whatsapp-inline {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid rgba(217, 173, 87, 0.28);
  border-radius: 50%;
  background: rgba(247, 234, 212, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(217, 173, 87, 0.34);
  background: rgba(4, 10, 17, 0.66);
  color: var(--gold-2);
  cursor: pointer;
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 173, 87, 0.28);
  border-radius: 50%;
  background: rgba(247, 234, 212, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-social a::after {
  display: none;
}

.nav-social a:hover,
.whatsapp-inline:hover {
  transform: translateY(-2px);
  border-color: var(--gold-2);
  background: rgba(217, 173, 87, 0.14);
}

.nav-social img,
.whatsapp-inline img {
  width: 18px;
  height: 18px;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 17px;
  color: #07111d;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 235, 179, 0.42);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 28px rgba(217, 173, 87, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
}

.nav-action:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.scroll-section {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(82px, 8vw, 118px) clamp(18px, 6vw, 92px) clamp(34px, 5vw, 70px);
}

.section-bg,
.section-shade {
  position: absolute;
  inset: 0;
}

.section-bg {
  z-index: -3;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}

.section-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 30%, rgba(217, 173, 87, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(3, 7, 13, 0.68), rgba(3, 7, 13, 0.28) 44%, rgba(3, 7, 13, 0.02)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.68), rgba(3, 7, 13, 0.04));
}

.shade-right {
  background:
    linear-gradient(270deg, rgba(3, 7, 13, 0.72), rgba(3, 7, 13, 0.34) 50%, rgba(3, 7, 13, 0.06)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.64), rgba(3, 7, 13, 0.04));
}

.section-content {
  width: min(760px, 100%);
}

.hero-copy {
  margin-top: clamp(18px, 4vh, 54px);
}

.side-copy {
  margin-left: 0;
}

.right-copy {
  justify-self: end;
  width: min(620px, 100%);
}

.offer-copy {
  width: min(800px, 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(247, 234, 212, 0.76);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb-nav a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.breadcrumb-nav span[aria-current="page"] {
  color: rgba(247, 234, 212, 0.86);
}

h1 {
  max-width: 840px;
  color: var(--white);
  font-size: clamp(2.9rem, 6.6vw, 6.8rem);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

.section-content p:not(.eyebrow),
.booking-panel p:not(.eyebrow),
.final-footer p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
}

.fleet-showcase {
  position: relative;
  display: grid;
  align-content: start;
  min-height: calc(100svh - 66px);
  margin-top: 66px;
  padding: clamp(44px, 6svh, 74px) 0 clamp(34px, 5svh, 66px);
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
  background: #06111c;
  color: var(--white);
}

.fleet-showcase__image,
.fleet-showcase__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fleet-showcase__image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.fleet-showcase__shade {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 14, 25, 0.94) 0%, rgba(2, 14, 25, 0.72) 24%, rgba(2, 14, 25, 0.2) 47%, rgba(2, 14, 25, 0.04) 72%),
    linear-gradient(0deg, rgba(1, 9, 17, 0.42) 0%, transparent 48%),
    linear-gradient(180deg, rgba(1, 7, 13, 0.24), transparent 32%);
}

.fleet-showcase__brand {
  position: relative;
  left: 5.5%;
  z-index: 1;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.48);
}

.fleet-showcase__brand span {
  font-size: clamp(2.2rem, 2.8cqw, 4.2rem);
  letter-spacing: 0.08em;
}

.fleet-showcase__brand strong {
  margin-top: 0.7cqw;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.15cqw, 1.72rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  transform: translateX(0.18em);
}

.fleet-showcase__intro {
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 6.2svh, 84px);
  left: 5.45%;
  width: min(520px, 32%);
  padding-left: clamp(18px, 1.8cqw, 34px);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.fleet-showcase__line {
  position: absolute;
  left: 0;
  top: 0.2cqw;
  width: 2px;
  height: clamp(100px, 10.3cqw, 164px);
  background: var(--gold);
}

.fleet-showcase__intro h1 {
  margin-top: 8px;
  font-size: clamp(3.35rem, 4.05cqw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
}

.fleet-showcase__intro p:not(.eyebrow) {
  margin-top: clamp(16px, 1.45cqw, 28px);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 1.3cqw, 1.48rem);
  line-height: 1.58;
}

.fleet-features {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 4svh, 42px);
  left: 5.65%;
  display: grid;
  gap: clamp(18px, 2.15cqw, 34px);
  width: min(460px, 28%);
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.fleet-features li {
  display: grid;
  grid-template-columns: clamp(34px, 3.2cqw, 50px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 1.1cqw, 20px);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.92rem, 1.25cqw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.82);
  text-transform: uppercase;
}

.fleet-feature-icon {
  display: grid;
  place-items: center;
  width: clamp(34px, 2.65cqw, 46px);
  height: clamp(34px, 2.65cqw, 46px);
  color: var(--gold);
}

.fleet-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet-vehicle-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(58px, 5.15cqw, 92px);
  padding: 10px clamp(14px, 1.2cqw, 24px);
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: rgba(4, 16, 26, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.78);
  text-transform: uppercase;
}

.fleet-vehicle-label strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.12rem, 1.62cqw, 2.1rem);
  line-height: 1.08;
}

.fleet-vehicle-label span {
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(0.82rem, 1.2cqw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.fleet-vehicle-label--van {
  left: 35.7%;
  top: 74.2%;
  width: 20%;
}

.fleet-vehicle-label--car {
  left: 71.1%;
  top: 76.1%;
  width: 18.55%;
}

.fleet-showcase__actions {
  position: relative;
  z-index: 1;
  left: 5.45%;
  width: min(520px, 36%);
  margin-top: clamp(26px, 4svh, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 21px;
  border: 1px solid transparent;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-2);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(247, 234, 212, 0.08);
}

.button.outline:hover {
  background: rgba(247, 234, 212, 0.16);
}

.whatsapp-button {
  gap: 9px;
  color: var(--black);
  background: #25d366;
  border-color: rgba(255, 255, 255, 0.24);
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
}

.whatsapp-button:hover {
  background: #46e17b;
}

.whatsapp-submit {
  gap: 10px;
}

.whatsapp-submit img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 173, 87, 0.46);
  color: var(--gold-2);
  background: rgba(7, 17, 29, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease;
}

.detail-link::after {
  content: "->";
  font-size: 0.9rem;
}

.detail-link:hover {
  transform: translateY(-2px);
  background: rgba(217, 173, 87, 0.15);
}

.hero-metrics {
  position: absolute;
  left: clamp(18px, 6vw, 92px);
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(22px, 5vw, 62px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(217, 173, 87, 0.28);
  background: rgba(3, 7, 13, 0.52);
  backdrop-filter: blur(16px);
}

.hero-metrics span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: rgba(247, 234, 212, 0.78);
  text-align: center;
  font-size: 0.88rem;
}

.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.05rem;
}

.mini-stats,
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-stats span,
.service-pills span {
  border: 1px solid rgba(217, 173, 87, 0.32);
  color: rgba(247, 234, 212, 0.88);
  background: rgba(3, 7, 13, 0.52);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-preview {
  width: min(820px, 100%);
  margin-top: 32px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(217, 173, 87, 0.28);
  background: rgba(4, 10, 17, 0.58);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.process-kicker {
  margin: 0 0 8px !important;
  color: var(--gold-2) !important;
  font-size: 0.7rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.process-preview h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(217, 173, 87, 0.22);
  background: rgba(217, 173, 87, 0.22);
}

.process-steps li {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 166px;
  padding: 18px 14px;
  background: rgba(7, 17, 29, 0.88);
}

.process-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(217, 173, 87, 0.68);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
}

.process-steps strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.3vw, 1.35rem);
  line-height: 1.14;
}

.process-steps small {
  color: rgba(247, 234, 212, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.popular-routes-section {
  padding: clamp(76px, 8vw, 122px) clamp(18px, 6vw, 92px);
  color: #07111d;
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 173, 87, 0.13), transparent 30%),
    linear-gradient(180deg, #fbf7ef, #f4eee4);
}

.editorial-heading {
  max-width: 1600px;
  margin: 0 auto 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(157, 114, 52, 0.38);
}

.editorial-heading h2 {
  color: #111820;
  font-size: clamp(3rem, 7vw, 7rem);
  text-shadow: none;
}

.editorial-heading h2 span,
.pricing-section h2 span {
  color: #a77735;
}

.editorial-heading p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 12px;
  color: rgba(17, 24, 32, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.route-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  max-width: 1600px;
  margin: 0 auto;
}

.offer-process-section {
  padding: clamp(76px, 8vw, 126px) clamp(18px, 6vw, 92px);
  color: #07111d;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 173, 87, 0.14), transparent 28%),
    linear-gradient(180deg, #fffaf2, #f6efe4);
}

.offer-process-heading {
  max-width: 980px;
  margin: 0 auto clamp(44px, 6vw, 76px);
  text-align: center;
}

.offer-process-heading .eyebrow {
  color: #b9853f;
}

.offer-process-heading .eyebrow::after {
  content: "";
  display: block;
  width: min(360px, 60vw);
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, rgba(185, 133, 63, 0.72), transparent);
}

.offer-process-heading h2 {
  max-width: none;
  color: #101822;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  text-shadow: none;
}

.offer-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.offer-process-grid li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 330px;
  padding: 0 clamp(18px, 2.4vw, 40px);
  text-align: center;
}

.offer-process-grid li + li {
  border-left: 1px solid rgba(185, 133, 63, 0.34);
}

.process-number {
  position: absolute;
  left: clamp(4px, 1vw, 18px);
  top: 8px;
  color: #c39143;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 1;
}

.process-icon {
  display: grid;
  width: clamp(118px, 13vw, 180px);
  height: clamp(118px, 13vw, 180px);
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(185, 133, 63, 0.62);
  border-radius: 50%;
  color: #b9853f;
  font-size: clamp(1.05rem, 1.5vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offer-process-grid h3 {
  margin: 0;
  color: #101822;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  line-height: 1.1;
}

.offer-process-grid h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 18px auto 0;
  background: #c39143;
}

.offer-process-grid p {
  max-width: 300px;
  margin-top: 18px;
  color: rgba(16, 24, 34, 0.74);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
}

.route-card {
  overflow: hidden;
  border: 1px solid rgba(157, 114, 52, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(22, 25, 30, 0.13);
}

.route-card img {
  height: clamp(270px, 22vw, 380px);
  object-fit: cover;
  object-position: center center;
}

.route-card:nth-child(2) img {
  object-position: center center;
}

.route-card:nth-child(3) img {
  object-position: center center;
}

.route-image-zakopane {
  object-position: center center;
}

.route-image-oswiecim {
  object-position: center center;
}

.route-image-wieliczka {
  object-position: center center;
}

.route-card div {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 360px;
  padding: clamp(24px, 3vw, 42px);
  text-align: center;
}

.route-card h3 {
  margin: 0;
  color: #111820;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  line-height: 1.05;
}

.route-divider {
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9853f, transparent);
}

.route-divider::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: -4px auto 0;
  transform: rotate(45deg);
  background: #c99a55;
}

.route-card p {
  max-width: 520px;
  color: rgba(17, 24, 32, 0.76);
}

.route-card .button {
  min-width: 210px;
}

.route-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
  color: #111820;
}

.route-benefits li {
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 10px 18px;
  border-left: 1px solid rgba(157, 114, 52, 0.32);
  text-align: center;
}

.route-benefits li:first-child {
  border-left: 0;
}

.route-benefits strong {
  color: #9c6d2d;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-benefits span {
  font-size: 0.86rem;
}

.pricing-section {
  padding: clamp(76px, 8vw, 122px) clamp(18px, 6vw, 92px);
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 173, 87, 0.12), transparent 34%),
    linear-gradient(135deg, #02070d, #071421 45%, #02060b);
}

.pricing-inner {
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
}

.pricing-brand {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(217, 173, 87, 0.42);
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
}

.pricing-section h2 {
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 52px);
  font-size: clamp(3rem, 6.4vw, 7rem);
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 44px);
  text-align: left;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(190px, 0.34fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 87, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 173, 87, 0.2), rgba(217, 173, 87, 0.08)),
    rgba(247, 234, 212, 0.05);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.pricing-route-name,
.pricing-price {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(3, 8, 14, 0.72);
}

.pricing-route-name span,
.pricing-price span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pricing-route-name h3 {
  margin: 0;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2.4rem);
  line-height: 1.1;
}

.pricing-route-name p {
  margin-top: 8px;
  color: rgba(247, 234, 212, 0.68);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
}

.pricing-price {
  display: grid;
  align-content: center;
  text-align: right;
}

.pricing-price strong {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.pricing-note {
  margin: 26px auto 0;
  color: rgba(247, 234, 212, 0.62);
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
}

.pricing-section .button {
  margin-top: 24px;
}

.offer-section {
  align-items: center;
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 173, 87, 0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(82, 128, 154, 0.16), transparent 34%),
    linear-gradient(145deg, #02070d, #071421 48%, #03070d);
}

.offer-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.62), transparent 34%, rgba(3, 7, 13, 0.5)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.7), transparent 42%, rgba(3, 7, 13, 0.72));
}

.offer-layout {
  width: min(1720px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.offer-intro {
  max-width: 520px;
}

.offer-intro h2 {
  font-size: clamp(2rem, 3.6vw, 4.2rem);
}

.offer-intro p {
  max-width: 460px;
  margin-top: 18px;
  color: rgba(247, 234, 212, 0.78);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
}

.offer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.offer-quick-actions .button {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 0.72rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  height: clamp(500px, 66vh, 760px);
  min-width: 0;
}

.offer-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(217, 173, 87, 0.72);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(5, 13, 23, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(2, 8, 14, 0.12) 58%, rgba(2, 8, 14, 0.48)),
    linear-gradient(0deg, rgba(217, 173, 87, 0.12), transparent 24%);
  pointer-events: none;
}

.offer-card img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.01);
  transition: transform 300ms ease, filter 300ms ease;
}

.offer-card span {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  min-height: 34px;
  width: max-content;
  max-width: calc(100% - 24px);
  padding: 0 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 173, 87, 0.46);
  color: rgba(247, 234, 212, 0.9);
  background: rgba(4, 10, 17, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.offer-card-copy {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 22px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(247, 234, 212, 0.92);
  text-align: center;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.offer-card-copy small {
  color: var(--gold-2);
  font-size: clamp(0.56rem, 0.55vw, 0.68rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.offer-card-copy strong {
  max-width: 11ch;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 2.8vw, 3.35rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.offer-card-copy strong::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--gold-2);
}

.offer-card-copy em {
  max-width: 18ch;
  color: rgba(247, 234, 212, 0.86);
  font-size: clamp(0.86rem, 1vw, 1.12rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold-2);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52);
  filter: brightness(1.05);
}

.offer-card:hover img,
.offer-card:focus-visible img {
  transform: scale(1.045);
}

.offer-modal[hidden] {
  display: none;
}

.offer-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 10, 0.78);
  backdrop-filter: blur(12px);
}

.offer-modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(86dvh, 720px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(217, 173, 87, 0.52);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 17, 29, 0.96), rgba(3, 7, 13, 0.98)),
    radial-gradient(circle at 86% 12%, rgba(217, 173, 87, 0.18), transparent 32%);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.64);
}

.offer-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 173, 87, 0.42);
  color: var(--gold-2);
  background: rgba(247, 234, 212, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.offer-modal-panel h2 {
  padding-right: 82px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.offer-modal-panel p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(247, 234, 212, 0.82);
  font-size: 1.05rem;
}

.offer-modal-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-modal-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 234, 212, 0.86);
}

.offer-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.offer-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.modal-open {
  overflow: hidden;
}

.back-to-top {
  display: none;
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.booking-contact-grid {
  width: min(1220px, 100%);
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
}

.contact-panel,
.booking-panel {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(217, 173, 87, 0.34);
  background: rgba(5, 12, 21, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-panel {
  display: grid;
  align-content: center;
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
}

.contact-panel p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.booking-panel {
  width: 100%;
}

.booking-panel h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 234, 212, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(217, 173, 87, 0.28);
  color: var(--ink);
  background: rgba(247, 234, 212, 0.08);
  padding: 11px 12px;
}

.booking-form input:user-invalid,
.booking-form select:user-invalid,
.booking-form textarea:user-invalid {
  border-color: #ffb4a8;
  box-shadow: 0 0 0 1px rgba(255, 180, 168, 0.3);
}

.booking-form textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.consent-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
}

.consent-label input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--gold);
}

.consent-label a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin-top: 0 !important;
  color: var(--gold-2) !important;
  font-size: 0.9rem !important;
  font-weight: 900;
}

.form-status.is-error {
  color: #ffcabf !important;
}

.panel-link {
  margin-top: 16px;
}

.contact-lines {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  color: var(--gold-2);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
}

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #75f1a0 !important;
}

.whatsapp-contact img {
  width: 22px;
  height: 22px;
}

.pricing-whatsapp {
  justify-content: center;
  margin-top: 18px;
  font-weight: 900;
}

.final-footer {
  position: relative;
  min-height: clamp(520px, 37vw, 720px);
  overflow: hidden;
  background: var(--night);
  isolation: isolate;
  padding: clamp(64px, 7vw, 112px) clamp(24px, 4vw, 72px) 42px;
}

.final-footer > img,
.footer-vignette {
  position: absolute;
  inset: 0;
}

.final-footer > img {
  z-index: -3;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 7, 13, 0.92), rgba(3, 7, 13, 0.72) 42%, rgba(3, 7, 13, 0.16)),
    linear-gradient(0deg, rgba(3, 7, 13, 0.88), rgba(3, 7, 13, 0.08) 52%, rgba(3, 7, 13, 0.44));
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(300px, 1.55fr) minmax(150px, 0.8fr) minmax(150px, 0.75fr) minmax(230px, 1.05fr) minmax(150px, 0.7fr);
  gap: clamp(22px, 3vw, 54px);
  max-width: 1820px;
  margin: 0 auto;
}

.footer-brand-block,
.footer-column,
.footer-social {
  min-width: 0;
}

.footer-column,
.footer-social {
  border-left: 1px solid rgba(217, 173, 87, 0.38);
  padding-left: clamp(18px, 2vw, 34px);
}

.footer-brand-block h2 {
  margin: 0;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 4.8vw, 5.7rem);
  font-weight: 700;
  line-height: 0.78;
  text-transform: uppercase;
}

.footer-brand-block h2 span {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.42em;
  letter-spacing: 0.22em;
}

.footer-rule {
  position: relative;
  width: min(340px, 84%);
  height: 1px;
  margin: 34px 0 30px;
  background: linear-gradient(90deg, transparent, rgba(217, 173, 87, 0.68), transparent);
}

.footer-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(7, 17, 29, 0.92);
}

.footer-brand-block p {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.55vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 470px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.footer-pillars li {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
}

.pillar-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.footer-pillars strong {
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.footer-pillars small {
  color: rgba(247, 234, 212, 0.76);
  font-size: 0.68rem;
  line-height: 1.25;
}

.footer-column h3,
.footer-social h3 {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 15px;
  font-style: normal;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(247, 234, 212, 0.9);
  font-size: clamp(0.98rem, 1vw, 1.18rem);
  font-weight: 600;
}

.footer-column a:hover {
  color: var(--gold-2);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact span {
  display: grid;
  min-width: 38px;
  min-height: 28px;
  place-items: center;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-social div {
  display: flex;
  gap: 18px;
}

.footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--black);
  background: var(--gold);
}

.footer-copy {
  max-width: 1820px;
  margin: clamp(44px, 5vw, 70px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 173, 87, 0.48);
  color: rgba(247, 234, 212, 0.56);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}

.simple-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(260px, 2fr) minmax(220px, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 92px);
  border-top: 1px solid rgba(217, 173, 87, 0.28);
  color: rgba(247, 234, 212, 0.86);
  background: #03070d;
}

.simple-footer strong {
  display: block;
  color: var(--gold-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.simple-footer span,
.simple-footer a {
  font-size: 0.95rem;
  font-weight: 650;
}

.simple-footer nav,
.simple-footer address {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px 16px;
  font-style: normal;
}

.simple-footer a {
  color: rgba(247, 234, 212, 0.88);
}

.simple-footer a:hover {
  color: var(--gold-2);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-bg.parallax {
  transition: transform 160ms linear;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .final-footer {
    min-height: auto;
    padding-inline: clamp(26px, 5vw, 52px);
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 34px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 680px;
  }

  .footer-column,
  .footer-social {
    border-left: 0;
    border-top: 1px solid rgba(217, 173, 87, 0.32);
    padding: 24px 0 0;
  }

  .footer-column h3,
  .footer-social h3 {
    margin-bottom: 14px;
  }

  .footer-contact a,
  .footer-contact p {
    align-items: flex-start;
  }

  .footer-social div {
    flex-wrap: wrap;
  }
}

@media (max-width: 1060px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    grid-template-columns: minmax(132px, auto) minmax(0, 1fr) auto;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-action {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(217, 173, 87, 0.32);
    background: rgba(3, 8, 15, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(217, 173, 87, 0.12);
  }

  .language-switcher {
    justify-content: center;
    margin-left: 0;
    padding: 15px 0 13px;
    border-bottom: 1px solid rgba(217, 173, 87, 0.12);
  }

  .nav-social {
    justify-content: center;
    padding-top: 14px;
  }

  .nav-social a {
    min-height: 34px;
  }

  .main-nav a::after {
    display: none;
  }

  .fleet-showcase {
    display: grid;
    align-content: start;
    min-height: calc(100svh - 66px);
    padding: clamp(76px, 10vw, 112px) 18px 30px;
  }

  .fleet-showcase__image {
    object-position: 62% center;
  }

  .fleet-showcase__shade {
    background:
      linear-gradient(90deg, rgba(2, 14, 25, 0.96), rgba(2, 14, 25, 0.76) 48%, rgba(2, 14, 25, 0.18)),
      linear-gradient(0deg, rgba(1, 9, 17, 0.78), rgba(1, 9, 17, 0.08) 58%);
  }

  .fleet-showcase__brand,
  .fleet-showcase__intro,
  .fleet-features,
  .fleet-vehicle-label,
  .fleet-showcase__actions {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(540px, 100%);
  }

  .fleet-showcase__brand {
    align-items: flex-start;
  }

  .fleet-showcase__brand span {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .fleet-showcase__brand strong {
    font-size: clamp(0.9rem, 3vw, 1.22rem);
  }

  .fleet-showcase__intro {
    margin-top: 30px;
  }

  .fleet-showcase__intro h1 {
    font-size: clamp(3rem, 12vw, 5.4rem);
  }

  .fleet-features {
    margin-top: 28px;
    gap: 14px;
  }

  .fleet-features li {
    grid-template-columns: 40px minmax(0, 1fr);
    font-size: clamp(0.86rem, 2.9vw, 1.05rem);
  }

  .fleet-feature-icon {
    width: 36px;
    height: 36px;
  }

  .fleet-vehicle-label {
    width: min(310px, 100%);
    min-height: 68px;
    margin-top: 18px;
  }

  .fleet-vehicle-label--car {
    margin-top: 12px;
  }

  .fleet-showcase__actions {
    margin-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .offer-intro {
    max-width: 760px;
  }

  .offer-grid {
    height: clamp(460px, 54vh, 640px);
  }

  .booking-contact-grid {
    justify-self: stretch;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-panel {
    align-content: start;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card-grid {
    grid-template-columns: 1fr;
  }

  .offer-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 1px;
  }

  .offer-process-grid li:nth-child(odd) {
    border-left: 0;
  }

  .route-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-benefits li:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 128px;
    justify-self: start;
  }

  .main-nav {
    left: 10px;
    right: 10px;
  }

  .brand-title {
    font-size: 1.72rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
    letter-spacing: 0.29em;
    text-indent: 0.29em;
  }

  .fleet-showcase {
    min-height: calc(100svh - 66px);
    padding: 72px 14px 24px;
  }

  .fleet-showcase__image {
    object-position: 68% center;
  }

  .fleet-showcase__brand {
    display: none;
  }

  .fleet-showcase__intro {
    margin-top: 0;
    padding-left: 15px;
  }

  .fleet-showcase__line {
    height: 112px;
  }

  .fleet-showcase__intro h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .fleet-showcase__intro p:not(.eyebrow) {
    max-width: 330px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .fleet-features {
    width: 100%;
    max-width: 330px;
    margin-top: 22px;
    gap: 10px;
  }

  .fleet-features li {
    grid-template-columns: 34px minmax(0, 1fr);
    font-size: 0.84rem;
  }

  .fleet-feature-icon {
    width: 30px;
    height: 30px;
  }

  .fleet-vehicle-label {
    max-width: 280px;
    min-height: 58px;
    margin-top: 12px;
  }

  .fleet-vehicle-label strong {
    font-size: 1.05rem;
  }

  .fleet-vehicle-label span {
    font-size: 0.76rem;
  }

  .fleet-showcase__actions {
    width: 100%;
    max-width: 330px;
    display: grid;
    gap: 10px;
  }

  .fleet-showcase__actions .button {
    width: 100%;
  }

  .scroll-section {
    min-height: auto;
    align-items: center;
    padding: 78px 16px 22px;
  }

  .hero-section {
    min-height: 100svh;
  }

  .section-bg {
    opacity: 0.92;
    object-position: center;
  }

  .section-shade,
  .shade-right {
    background:
      linear-gradient(180deg, rgba(3, 7, 13, 0.36), rgba(3, 7, 13, 0.88) 62%, rgba(3, 7, 13, 0.96)),
      linear-gradient(90deg, rgba(3, 7, 13, 0.75), rgba(3, 7, 13, 0.2));
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.86rem, 9vw, 3.1rem);
  }

  .section-content p:not(.eyebrow),
  .booking-panel p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button,
  .detail-link {
    width: 100%;
  }

  .hero-metrics {
    position: static;
    margin-top: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .booking-panel {
    justify-self: stretch;
    padding: 18px 16px;
  }

  .contact-panel {
    padding: 18px 16px;
  }

  .contact-panel h2 {
    font-size: clamp(1.86rem, 8.6vw, 3rem);
  }

  .contact-panel p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .contact-lines {
    gap: 8px;
    margin-top: 16px;
    font-size: 1rem;
  }

  .booking-form {
    gap: 10px;
    margin-top: 16px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    min-height: 40px;
    padding: 9px 10px;
  }

  .offer-section {
    padding: 76px 12px 22px;
  }

  .offer-layout {
    gap: 18px;
  }

  .offer-intro h2 {
    font-size: clamp(1.82rem, 8.8vw, 2.7rem);
  }

  .offer-intro p {
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .offer-intro .detail-link {
    width: auto;
    min-height: 38px;
    margin-top: 16px;
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .offer-quick-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .offer-quick-actions .button {
    width: 100%;
    min-height: 42px;
  }

  .offer-grid {
    display: flex;
    height: auto;
    min-height: 0;
    overflow-x: auto;
    gap: 12px;
    padding: 0 4px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .offer-card {
    flex: 0 0 clamp(176px, 50vw, 220px);
    aspect-ratio: 724 / 2172;
    scroll-snap-align: center;
  }

  .offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .offer-card[data-offer="airport"] img,
  .offer-card[data-offer="city"] img,
  .offer-card[data-offer="zakopane"] img,
  .offer-card[data-offer="wieliczka"] img {
    object-fit: contain;
    object-position: center center;
    background: #020b13;
  }

  .offer-card-copy {
    left: 12px;
    right: 12px;
    bottom: 16px;
    gap: 7px;
  }

  .offer-card-copy small {
    font-size: 0.54rem;
  }

  .offer-card-copy strong {
    font-size: clamp(1.48rem, 8vw, 2.2rem);
  }

  .offer-card-copy strong::after {
    width: 42px;
    margin-top: 11px;
  }

  .offer-card-copy em {
    font-size: 0.78rem;
  }

  .offer-card span {
    left: 50%;
    right: auto;
    max-width: calc(100% - 24px);
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.64rem;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .offer-modal {
    padding: 14px;
  }

  .offer-modal-panel {
    max-height: 88dvh;
    padding: 50px 18px 22px;
  }

  .offer-modal-panel h2 {
    padding-right: 0;
  }

  .offer-modal-actions {
    display: grid;
  }

  .process-preview {
    margin-top: 22px;
    padding: 16px;
  }

  .process-steps {
    margin-top: 16px;
  }

  .process-steps li {
    min-height: 142px;
    padding: 14px 12px;
  }

  .process-steps span {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .process-steps small {
    font-size: 0.76rem;
  }

  .popular-routes-section,
  .offer-process-section,
  .pricing-section {
    padding: 62px 16px;
  }

  .editorial-heading {
    margin-bottom: 24px;
    padding-top: 16px;
  }

  .editorial-heading h2,
  .pricing-section h2 {
    font-size: clamp(2.65rem, 14vw, 4.6rem);
  }

  .route-card img {
    height: 245px;
  }

  .offer-process-heading {
    margin-bottom: 34px;
  }

  .offer-process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-process-grid li,
  .offer-process-grid li + li {
    min-height: auto;
    padding: 0 10px 28px;
    border-left: 0;
    border-bottom: 1px solid rgba(185, 133, 63, 0.24);
  }

  .process-number {
    left: 4px;
    top: 4px;
    font-size: 3.1rem;
  }

  .process-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
  }

  .route-card div {
    min-height: auto;
    padding: 24px 18px 28px;
  }

  .route-benefits {
    gap: 0;
    margin-top: 22px;
  }

  .route-benefits li {
    border-top: 1px solid rgba(157, 114, 52, 0.22);
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-route-name,
  .pricing-price {
    padding: 18px;
  }

  .pricing-price {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .pricing-price span {
    margin-bottom: 0;
  }

  .pricing-price strong {
    font-size: clamp(1.6rem, 8vw, 2.35rem);
  }

  .back-to-top {
    position: fixed;
    z-index: 150;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(217, 173, 87, 0.72);
    border-radius: 50%;
    color: var(--gold-2);
    background: rgba(4, 10, 17, 0.78);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
    cursor: pointer;
  }

  .back-to-top span {
    transform: translateY(-1px);
    font-size: 1.25rem;
    line-height: 1;
  }

  .final-footer {
    min-height: auto;
    padding: 38px 16px 78px;
  }

  .final-footer > img {
    object-position: 70% center;
    opacity: 0.72;
  }

  .footer-vignette {
    background:
      linear-gradient(180deg, rgba(3, 7, 13, 0.94), rgba(3, 7, 13, 0.9) 50%, rgba(3, 7, 13, 0.96)),
      linear-gradient(90deg, rgba(3, 7, 13, 0.92), rgba(3, 7, 13, 0.62));
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 520px;
  }

  .footer-brand-block {
    text-align: center;
  }

  .footer-brand-block h2 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
    line-height: 0.82;
  }

  .footer-brand-block h2 span {
    margin-top: 9px;
    letter-spacing: 0.18em;
  }

  .footer-rule {
    width: min(280px, 100%);
    margin: 24px auto 22px;
  }

  .footer-brand-block p {
    max-width: none;
    margin-top: 0;
    font-size: clamp(1.1rem, 5.6vw, 1.45rem);
    line-height: 1.22;
  }

  .footer-pillars {
    display: none;
  }

  .pillar-icon {
    width: 38px;
    height: 38px;
    font-size: 0.66rem;
  }

  .footer-pillars strong,
  .footer-pillars small {
    font-size: 0.64rem;
  }

  .footer-column,
  .footer-social {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(217, 173, 87, 0.32);
    padding: 22px 0 0;
    text-align: center;
  }

  .footer-column[aria-label="Usługi"],
  .footer-column[aria-label="Informacje"] {
    display: none;
  }

  .footer-column {
    justify-items: center;
    gap: 11px;
  }

  .simple-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 16px 74px;
    text-align: center;
  }

  .simple-footer nav,
  .simple-footer address {
    justify-content: center;
  }

  .footer-contact {
    width: min(260px, 100%);
    justify-self: center;
    justify-items: stretch;
    text-align: left;
  }

  .footer-column h3,
  .footer-social h3 {
    margin-bottom: 8px;
    font-size: 0.92rem;
  }

  .footer-column a,
  .footer-column p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .footer-contact a,
  .footer-contact p {
    width: 100%;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 10px;
    text-align: left;
  }

  .footer-contact span {
    min-width: 0;
    min-height: 24px;
    justify-self: end;
    font-size: 0.62rem;
  }

  .footer-social div {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 0.72rem;
  }

  .footer-copy {
    max-width: 520px;
    margin-top: 30px;
    padding-top: 18px;
    font-size: 0.82rem;
    line-height: 1.45;
  }
}

@media (max-width: 430px) {
  .brand-title {
    font-size: 1.44rem;
  }

  .brand-subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }

  .scroll-section {
    padding-inline: 13px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .mini-stats,
  .service-pills {
    display: grid;
  }

  .offer-grid {
    height: auto;
    min-height: 0;
  }

  .offer-card {
    flex-basis: clamp(168px, 52vw, 210px);
  }

  .footer-pillars {
    gap: 12px 8px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.9rem;
  }
}

@media (max-width: 760px) {
  .footer-column[aria-label="Usługi"] {
    display: none;
  }
}

@media (max-width: 760px) {
  .footer-column[aria-label="Usługi"] {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
