:root {
  --black: #050608;
  --ink: #111317;
  --soft-ink: #32343a;
  --gold: #c79036;
  --gold-light: #e2bb73;
  --cream: #f7f4ee;
  --white: #ffffff;
  --muted: #c8c9cb;
  --line-dark: rgba(17, 19, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --nav-height: 112px;
  --nav-safe-area: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(5, 6, 8, 0.96);
}

.nav-shell {
  height: var(--nav-height);
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 clamp(28px, 4vw, 76px) 0 clamp(28px, 5.7vw, 110px);
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) max-content;
  align-items: stretch;
  gap: clamp(20px, 2.2vw, 38px);
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.98), rgba(5, 6, 8, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  width: 380px;
  height: var(--nav-height);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050607;
  box-shadow: inset 0 0 28px rgba(201, 144, 54, 0.18);
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #050607;
}

.site-header .brand img {
  position: relative;
  display: block;
  width: 98%;
  height: 98%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
  gap: clamp(22px, 2vw, 44px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 45px 0 40px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn,
.outline-link,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-light), #b97b25);
  box-shadow: 0 12px 28px rgba(185, 123, 37, 0.25);
}

.nav-cta {
  min-width: 220px;
  min-height: 60px;
  padding: 0 30px;
  align-self: center;
  justify-self: end;
}

@media (max-width: 1640px) {
  .nav-shell {
    padding: 0 34px 0 92px;
    grid-template-columns: 330px minmax(0, 1fr) 210px;
    gap: 22px;
  }

  .brand {
    width: 330px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.82rem;
  }

  .nav-cta {
    min-width: 210px;
    padding: 0 24px;
  }
}

@media (max-width: 1460px) {
  .nav-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    padding: 0 42px 0 72px;
  }

  .brand {
    width: 300px;
  }

  .nav-links {
    font-size: 0.8rem;
  }

  .nav-cta {
    display: none;
  }

}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #101215;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  align-content: center;
  justify-items: center;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  padding: 128px 7.8vw 86px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-home.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 30%, rgba(0, 0, 0, 0.1) 63%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.fleet-intro h2,
.quote-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 5vw, 5.45rem);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.hero h1 span {
  color: var(--gold);
}

.ornament {
  width: 150px;
  height: 16px;
  margin: 18px 0 22px;
  background:
    linear-gradient(90deg, transparent, var(--gold), transparent) center / 100% 1px no-repeat,
    radial-gradient(circle, var(--gold-light) 0 3px, transparent 4px) center / 18px 16px no-repeat;
}

.hero-text {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  min-width: 220px;
  padding: 0 28px;
  border: 1px solid rgba(201, 144, 54, 0.55);
}

.btn-secondary {
  color: #fff;
  background: rgba(5, 6, 8, 0.54);
}

.hero-actions .btn-primary {
  color: #111317;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.14);
}

.trust-bar {
  position: relative;
  z-index: 5;
  width: min(84.5vw, 1620px);
  margin: -68px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-bar article {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
}

.trust-bar article + article {
  border-left: 1px solid rgba(17, 19, 23, 0.12);
}

.trust-bar svg {
  width: 54px;
  height: 54px;
  color: var(--gold);
}

.trust-bar h2,
.service-card h3,
.fleet-list h3,
.site-footer h2 {
  margin: 0 0 6px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-bar p {
  margin: 0;
  color: #52555b;
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 58px 5vw;
}

.section-light {
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 2px;
}

.section-heading h2 {
  margin: 0;
  color: #16181c;
  font-size: clamp(2.4rem, 3vw, 3.45rem);
}

.section-kicker {
  margin: 6px auto 0;
  color: #666970;
  font-size: 0.92rem;
  font-weight: 700;
}

.ornament-center {
  width: 100px;
  margin: 8px auto 0;
}

.services-grid {
  max-width: 1760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 236px;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 20, 24, 0.1);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

a.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 144, 54, 0.36);
  box-shadow: 0 18px 36px rgba(17, 20, 24, 0.14);
  outline: 0;
}

.service-image {
  height: 98px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)), url("assets/services.png");
  background-size: 100% 100%, 500% auto;
  background-repeat: no-repeat;
  background-position-y: center;
}

.service-airport {
  background-position: 0% center;
}

.service-corporate {
  background-position: 25% center;
}

.service-station {
  background-position: 50% center;
}

.service-events {
  background-position: 75% center;
}

.service-distance {
  background-position: 100% center;
}

.service-tours,
.service-local-taxi {
  background-size: cover;
  background-position: center;
}

.service-tours {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)), url("assets/service-tours.png");
}

.service-local-taxi {
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)), url("assets/service-local-taxi.png");
}

.service-icon {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: -24px auto 12px;
  color: var(--gold);
  background: #08090b;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  color: #272a2f;
}

.service-card p {
  min-height: 50px;
  margin: 0;
  padding: 0 18px;
  color: #5f6268;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
  color: #bb842f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas:
    "intro image"
    "intro list";
  gap: 20px 34px;
  padding: 44px 7.8vw 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.96), rgba(15, 18, 21, 0.96)),
    repeating-linear-gradient(45deg, rgba(201, 144, 54, 0.08) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-intro {
  grid-area: intro;
  align-self: center;
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fleet-intro h2,
.quote-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2.05rem, 2.8vw, 3.1rem);
}

.fleet-intro p,
.quote-copy p,
.site-footer p,
.site-footer span,
.site-footer a,
.fleet-list p {
  color: var(--muted);
}

.fleet-intro p {
  margin: 0;
  font-weight: 700;
}

.outline-link {
  margin-top: 18px;
  min-height: 44px;
  padding: 0 22px;
  color: var(--gold-light);
  border: 1px solid rgba(229, 191, 115, 0.58);
}

.fleet-showcase {
  grid-area: image;
  min-height: 162px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34)), url("assets/fleet.png");
  background-position: center 57%;
  background-size: cover;
  border-radius: 4px;
}

.fleet-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
}

.fleet-list article {
  padding: 8px 18px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
}

.fleet-list p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  font-size: 0.8rem;
}

.quote-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: 46px 7.8vw 54px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.98), rgba(16, 19, 22, 0.98)),
    repeating-linear-gradient(45deg, rgba(201, 144, 54, 0.06) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-copy {
  display: block;
  max-width: 760px;
}

.quote-copy p {
  max-width: 620px;
  margin: 0;
  font-weight: 600;
}

.quote-form {
  grid-column: 2;
  min-height: 300px;
  padding: 26px 28px 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.quote-form h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-form label {
  display: block;
  margin-bottom: 10px;
}

.quote-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form input {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #24272c;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form button {
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-light), #b97b25);
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 22px 0 0;
  color: #a46d20;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 1fr;
  gap: 32px;
  margin-top: 0;
  padding: 46px 7.8vw 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.98), rgba(13, 16, 19, 0.98)),
    repeating-linear-gradient(45deg, rgba(201, 144, 54, 0.07) 0 1px, transparent 1px 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .brand {
  width: 292px;
  height: 82px;
  justify-content: flex-start;
  background: transparent;
  box-shadow: none;
}

.site-footer .brand img {
  position: relative;
  display: block;
  width: 282px;
  height: 78px;
  object-fit: contain;
  object-position: center;
}

.site-footer .brand {
  width: 282px;
  height: 78px;
  box-shadow: inset 0 0 20px rgba(201, 144, 54, 0.16);
}

.site-footer h2 {
  color: var(--gold);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-brand p {
  max-width: 360px;
  margin: 10px 0 0;
  font-size: 0.86rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 144, 54, 0.48);
  border-radius: 50%;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.site-footer address .footer-contact-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 9px;
  font-style: normal;
}

.footer-contact-item svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gold);
}

.footer-contact-item span {
  display: block;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.about-copy h2,
.about-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.about-section {
  width: min(100% - 12vw, 1660px);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) 0 46px;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: start;
}

.about-copy .eyebrow {
  position: relative;
  margin-bottom: 24px;
}

.about-copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.about-copy h2 {
  margin: 0 0 28px;
  color: #15171b;
  font-size: clamp(3rem, 4vw, 4.45rem);
}

.about-copy p {
  max-width: 660px;
  margin: 0 0 20px;
  color: #3f4248;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
}

.about-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.08);
}

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

.about-values article {
  min-height: 220px;
  padding: 36px 28px 30px;
  text-align: center;
}

.about-values article + article {
  border-left: 1px solid rgba(17, 19, 23, 0.09);
}

.about-values svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.about-values h3 {
  margin: 0 0 12px;
  color: #262a30;
  font-size: 1rem;
  line-height: 1.35;
}

.about-values p {
  margin: 0 auto;
  max-width: 190px;
  color: #4f535a;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.55;
}

.about-fleet-image {
  min-height: 310px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1)), url("assets/hero-home.png");
  background-position: center 54%;
  background-size: cover;
}

.about-cta {
  width: min(100% - 12vw, 1660px);
  margin: 0 auto 58px;
  padding: 28px 38px;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  background: #fbfaf8;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.about-cta-icon {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.7);
  border-radius: 50%;
}

.about-cta-icon svg {
  width: 34px;
  height: 34px;
}

.about-cta h2 {
  margin: 0 0 4px;
  color: #15171b;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.about-cta p {
  margin: 0;
  color: #3f4248;
  font-weight: 600;
}

.about-cta-actions {
  display: flex;
  gap: 14px;
}

.about-call {
  min-width: 250px;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 144, 54, 0.75);
}

.services-hero {
  position: relative;
  min-height: 335px;
  margin-top: var(--nav-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.services-hero-media,
.services-hero-overlay {
  position: absolute;
  inset: 0;
}

.services-hero-media {
  background-image: url("assets/hero-home.png");
  background-position: center 64%;
  background-size: cover;
}

.services-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 27%, rgba(0, 0, 0, 0.08) 66%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 54px 7.8vw 48px;
}

.services-hero h1,
.journey-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.services-hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 5vw, 5rem);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.services-hero h1 span {
  color: var(--gold);
}

.services-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.8;
}

.services-page-section {
  padding: 52px 5vw 36px;
  background: linear-gradient(180deg, #fff 0%, #f9f8f5 100%);
}

.services-page-grid {
  max-width: 1660px;
  gap: 18px;
}

.services-page-grid .service-card {
  min-height: 292px;
}

.services-page-grid .service-image {
  height: 132px;
}

.services-page-grid .service-icon {
  width: 58px;
  margin-top: -31px;
  margin-bottom: 20px;
}

.services-page-grid .service-icon svg {
  width: 29px;
  height: 29px;
}

.services-page-grid .service-card h2 {
  margin: 0 0 10px;
  color: #272a2f;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-page-grid .service-card p {
  min-height: 60px;
  padding: 0 28px;
  font-size: 0.86rem;
  line-height: 1.65;
}

.services-page-grid .service-card a {
  margin-top: 18px;
}

.services-trust {
  width: min(100%, 1660px);
  margin: 42px auto 0;
  box-shadow: 0 12px 28px rgba(17, 20, 24, 0.08);
}

.services-trust article {
  grid-template-columns: 64px 1fr;
  padding: 28px 42px;
}

.services-trust svg {
  width: 58px;
  height: 58px;
  padding: 10px;
  border: 2px solid rgba(201, 144, 54, 0.7);
  border-radius: 50%;
}

.tours-hero {
  position: relative;
  min-height: 342px;
  margin-top: var(--nav-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #050608;
}

.tours-hero-media,
.tours-hero-overlay {
  position: absolute;
  inset: 0;
}

.tours-hero-media {
  background-image: url("assets/tours-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.tours-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.78) 0%, rgba(3, 5, 8, 0.5) 27%, rgba(3, 5, 8, 0.12) 62%, rgba(3, 5, 8, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.2));
}

.tours-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 12vw, 1560px);
  margin: 0 auto;
  padding: 48px 0 28px;
}

.tours-hero h1,
.tours-section h2,
.tour-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.tours-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(3.4rem, 5vw, 5.5rem);
  line-height: 0.95;
}

.tours-hero p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.65;
}

.tours-highlights {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(22px, 6vw, 96px);
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.tours-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
}

.tours-highlights svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 5px;
}

.tours-section {
  padding: 26px 6vw 52px;
  background: linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
}

.tours-section .section-heading {
  margin-bottom: 22px;
}

.tours-section .section-heading h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.4rem);
}

.tour-grid {
  width: min(100%, 1580px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tour-card {
  min-height: 258px;
  overflow: hidden;
  position: relative;
  padding-bottom: 18px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(17, 20, 24, 0.1);
}

.tour-image {
  position: relative;
  height: 108px;
  background-size: cover;
  background-position: center;
}

.tour-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.16));
}

.tour-image span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  color: #fff;
  background: rgba(5, 6, 8, 0.9);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-icon {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: -31px auto 12px;
  position: relative;
  z-index: 2;
  color: var(--gold);
  background: #050608;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.tour-icon svg {
  width: 30px;
  height: 30px;
}

.tour-card h3 {
  min-height: 52px;
  margin: 0 14px 10px;
  color: #19202b;
  font-size: 1.12rem;
  line-height: 1.1;
}

.tour-vehicle {
  margin: 0 0 8px;
  color: #3d4148;
  font-size: 0.72rem;
  font-weight: 700;
}

.tour-vehicle::before {
  content: "✓";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  vertical-align: -1px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 11px;
  text-align: center;
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.tour-price {
  margin: 0 0 10px;
  color: #3f4248;
  font-size: 0.78rem;
  font-weight: 700;
}

.tour-price strong {
  color: var(--gold);
  font-size: 1.12rem;
}

.tour-price span {
  display: block;
  margin-top: 1px;
  color: #676b72;
  font-size: 0.7rem;
}

.tour-card a,
.tour-enquiry a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  min-width: 128px;
  min-height: 31px;
  padding: 0 18px;
  color: #fff;
  background: #050608;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-card a::after,
.tour-enquiry a::after {
  content: none;
}

.tour-windsor { background-image: url("assets/tour-windsor.png"); }
.tour-bath { background-image: url("assets/tour-bath-stonehenge.png"); }
.tour-stonehenge { background-image: url("assets/tour-stonehenge.png"); }
.tour-stonehenge-salisbury { background-image: url("assets/tour-stonehenge-salisbury.png"); }
.tour-cotswolds { background-image: url("assets/tour-cotswolds.png"); }
.tour-heathrow { background-image: url("assets/tour-heathrow.png"); }
.tour-jane-austen { background-image: url("assets/tour-jane-austen.png"); }
.tour-half-day { background-image: url("assets/tour-half-day.png"); }
.tour-full-day { background-image: url("assets/tour-full-day.png"); }
.tour-stonehenge-windsor { background-image: url("assets/tour-stonehenge-windsor.png"); }
.tour-hampton-court { background-image: url("assets/tour-hampton-court.png"); }
.tour-isle-of-wight { background-image: url("assets/tour-isle-of-wight.png"); }
.tour-new-forest { background-image: url("assets/tour-new-forest.png"); }

.tour-enquiry {
  min-height: 88px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: #f4ede4;
  border: 1px solid rgba(201, 144, 54, 0.14);
  border-radius: 8px;
}

.tour-enquiry-icon {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: #050608;
  border-radius: 8px;
}

.tour-enquiry-icon svg {
  width: 30px;
  height: 30px;
}

.tour-enquiry h3 {
  margin: 0 0 4px;
  color: #15171b;
  font-size: 0.98rem;
  font-weight: 900;
}

.tour-enquiry p {
  margin: 0;
  color: #3f4248;
  font-size: 0.8rem;
  font-weight: 700;
}

.tour-detail-page {
  padding-top: var(--nav-height);
  background: #fff;
}

.tour-detail-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.tour-detail-hero--windsor {
  background-image: url("assets/tour-detail-windsor-hero.png");
}

.tour-detail-hero--bath {
  background-image: url("assets/tour-detail-bath-hero.png");
}

.tour-detail-hero--stonehenge {
  background-image: url("assets/tour-detail-stonehenge-hero.png");
}

.tour-detail-hero--salisbury {
  background-image: url("assets/tour-detail-salisbury-hero.png");
}

.tour-detail-hero--heathrow {
  background-image: url("assets/tour-detail-heathrow-hero.png");
}

.tour-detail-hero--jane-austen {
  background-image: url("assets/tour-detail-jane-austen-hero.png");
}

.tour-detail-hero--cotswolds {
  background-image: url("assets/tour-detail-cotswolds-hero.png");
}

.tour-detail-hero--half-day {
  background-image: url("assets/tour-detail-half-day-hero.png");
}

.tour-detail-hero--full-day {
  background-image: url("assets/tour-detail-full-day-hero.png");
}

.tour-detail-hero--stonehenge-windsor {
  background-image: url("assets/tour-detail-stonehenge-windsor-hero.png");
}

.tour-detail-hero--hampton-court {
  background-image: url("assets/tour-detail-hampton-court-hero.png");
}

.tour-detail-hero--isle-of-wight {
  background-image: url("assets/tour-detail-isle-of-wight-hero.png");
}

.tour-detail-hero--new-forest {
  background-image: url("assets/tour-detail-new-forest-hero.jpg");
}

.tour-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.78) 0%, rgba(5, 6, 8, 0.44) 46%, rgba(5, 6, 8, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.04), rgba(5, 6, 8, 0.3));
}

.tour-detail-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 10vw, 1640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 690px) 300px;
  gap: clamp(34px, 7vw, 140px);
  align-items: center;
}

.tour-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
}

.tour-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.tour-detail-copy .eyebrow {
  color: var(--gold);
}

.tour-detail-copy h1 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.95;
}

.tour-detail-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
}

.tour-detail-highlights {
  list-style: none;
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(24px, 3vw, 58px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

.tour-detail-highlights li {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.tour-detail-highlights svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.tour-price-card {
  padding: 28px 26px;
  color: #fff;
  background: rgba(5, 6, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.tour-price-card span,
.tour-price-card b {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-price-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 0.92;
}

.tour-price-card small {
  display: block;
  margin-top: 5px;
  font-size: 0.74rem;
  font-weight: 700;
}

.tour-price-card hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-price-card p {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-price-card p:first-of-type {
  border-top: 0;
}

.tour-price-card svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.tour-price-card b {
  display: inline;
  margin-right: 6px;
  white-space: nowrap;
}

.tour-price-card a,
.tour-help-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  color: #111317;
  background: linear-gradient(180deg, var(--gold-light), #c88d32);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(185, 123, 37, 0.24);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-price-card a {
  width: 100%;
  margin-top: 16px;
}

.tour-feature-row,
.tour-overview,
.tour-info-grid,
.tour-expect,
.tour-help-cta {
  width: min(100% - 10vw, 1500px);
  margin-left: auto;
  margin-right: auto;
}

.tour-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 44px 0 48px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.1);
}

.tour-feature-row article {
  padding: 0 44px;
  text-align: center;
  border-left: 1px solid rgba(17, 19, 23, 0.1);
}

.tour-feature-row article:first-child {
  border-left: 0;
}

.tour-feature-row span,
.tour-help-icon {
  width: 58px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #050608;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.tour-feature-row svg,
.tour-help-icon svg {
  width: 29px;
  height: 29px;
}

.tour-feature-row h2 {
  margin: 0 0 10px;
  color: #15171b;
  font-size: 1rem;
  font-weight: 900;
}

.tour-feature-row p {
  max-width: 290px;
  margin: 0 auto;
  color: #4c5057;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.7;
}

.tour-overview,
.tour-expect {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  padding: 54px 0;
}

.tour-overview h2,
.tour-expect h2,
.tour-help-cta h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.tour-overview p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 20px;
  color: #30343a;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.85;
}

.tour-overview img,
.tour-expect img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.12);
}

.tour-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 230px));
  gap: 16px;
  margin-top: 28px;
}

.tour-stat-grid--three {
  grid-template-columns: repeat(3, minmax(0, 230px));
}

.tour-stat-grid article {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 6px;
}

.tour-stat-grid svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.tour-stat-grid b {
  color: #20242a;
  font-size: 0.72rem;
  font-weight: 900;
}

.tour-stat-grid span {
  display: block;
  color: #5a5e65;
  font-size: 0.68rem;
  font-weight: 700;
}

.tour-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 0 0 54px;
}

.tour-info-grid article {
  min-height: 250px;
  padding: 34px;
  background: linear-gradient(135deg, #f8f4ee, #fff);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
}

.tour-info-grid h2 {
  margin: 0 0 22px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-info-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #30343a;
  font-size: 0.78rem;
  font-weight: 700;
}

.tour-info-grid li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 9px;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 900;
}

.tour-info-grid .not-included li::before {
  content: "×";
}

.tour-expect {
  padding-top: 0;
  border-top: 1px solid rgba(17, 19, 23, 0.1);
}

.tour-expect > .tour-info-grid {
  width: 100%;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr;
}

.tour-expect > .tour-info-grid article {
  min-height: 0;
}

.tour-expect ol {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
  counter-reset: tour-steps;
}

.tour-expect ol > li {
  position: relative;
  min-height: 54px;
  padding-left: 76px;
  counter-increment: tour-steps;
}

.tour-expect ol > li::before {
  content: counter(tour-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #050608;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.tour-expect b,
.tour-expect span {
  display: block;
}

.tour-expect b {
  margin-bottom: 5px;
  color: #15171b;
  font-size: 0.88rem;
  font-weight: 900;
}

.tour-expect span {
  max-width: 620px;
  color: #4c5057;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.65;
}

.tour-help-cta {
  margin-bottom: 64px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 26px;
  align-items: center;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.tour-help-icon {
  margin: 0;
}

.tour-help-cta h2 {
  margin: 0 0 4px;
  color: #15171b;
  font-size: 1.55rem;
}

.tour-help-cta p {
  margin: 0;
  color: #3f4248;
  font-size: 0.82rem;
  font-weight: 700;
}

.journey-cta {
  width: min(100% - 10vw, 1660px);
  margin: 0 auto 58px;
  padding: 26px 54px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.98), rgba(17, 20, 23, 0.98)),
    repeating-linear-gradient(45deg, rgba(201, 144, 54, 0.08) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(201, 144, 54, 0.22);
  border-radius: 4px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.journey-cta-icon {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.85);
  border-radius: 50%;
}

.journey-cta-icon svg {
  width: 34px;
  height: 34px;
}

.journey-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
}

.journey-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.journey-cta-actions {
  display: flex;
  gap: 18px;
}

.journey-call {
  min-width: 250px;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 144, 54, 0.75);
}

.airport-hero {
  position: relative;
  min-height: 360px;
  margin-top: var(--nav-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f8f5ef;
}

.airport-hero-media,
.airport-hero-overlay {
  position: absolute;
  inset: 0;
}

.airport-hero-media {
  background-image: url("assets/airport-hero.png");
  background-position: center 58%;
  background-size: cover;
}

.airport-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0.1) 64%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.1));
}

.airport-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 42px 7.8vw 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #7e838a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb a,
.breadcrumb span:last-child {
  color: var(--gold);
}

.airport-hero h1,
.airport-copy h2,
.airport-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.airport-hero h1 {
  margin: 0;
  color: #111317;
  font-size: clamp(3.2rem, 4.6vw, 4.9rem);
}

.airport-hero p {
  max-width: 650px;
  margin: 0;
  color: #2f3238;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.airport-highlights {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.airport-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  color: #34373d;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.airport-highlights li:first-child {
  padding-left: 0;
}

.airport-highlights li + li {
  border-left: 1px solid rgba(17, 19, 23, 0.18);
}

.airport-highlights svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.airport-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
}

.airport-actions .btn-primary {
  min-width: 300px;
}

.airport-call {
  min-width: 250px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 144, 54, 0.75);
}

.airport-benefits {
  position: relative;
  z-index: 4;
  width: min(100% - 10vw, 1660px);
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.airport-benefits article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
}

.airport-benefits article + article {
  border-left: 1px solid rgba(17, 19, 23, 0.1);
}

.airport-benefits svg {
  width: 58px;
  height: 58px;
  padding: 12px;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.7);
  border-radius: 50%;
}

.airport-benefits h2,
.airport-vehicles h2,
.airport-vehicle-grid h3 {
  margin: 0 0 8px;
  color: #272a2f;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.airport-benefits p {
  margin: 0;
  color: #555961;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.55;
}

.airport-detail {
  width: min(100% - 12vw, 1660px);
  margin: 36px auto 40px;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(42px, 6vw, 94px);
  align-items: start;
}

.airport-copy {
  position: relative;
  min-height: 410px;
  padding-top: 8px;
}

.airport-copy::after {
  content: none;
}

.airport-copy .eyebrow {
  position: relative;
  margin-bottom: 24px;
}

.airport-copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.airport-copy h2 {
  margin: 0 0 22px;
  color: #15171b;
  font-size: clamp(2.4rem, 3.4vw, 3.55rem);
}

.airport-copy p {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0 0 22px;
  color: #3f4248;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
}

.airport-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #34373d;
  font-weight: 700;
}

.airport-list li {
  position: relative;
  padding-left: 28px;
}

.airport-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(201, 144, 54, 0.75);
  border-radius: 50%;
}

.airport-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.55em;
  width: 5px;
  height: 8px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.airport-vehicles {
  padding: 24px 28px 26px;
  background: #fbfaf8;
  border: 1px solid rgba(17, 19, 23, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.07);
}

.airport-vehicles h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.92rem;
}

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

.airport-vehicle-grid article {
  min-width: 0;
  padding: 18px 18px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(17, 20, 24, 0.05);
}

.airport-vehicle-image {
  height: 124px;
  margin-bottom: 12px;
  background-size: cover;
  background-repeat: no-repeat;
}

.airport-saloon {
  background-image: url("assets/fleet-saloon.png");
  background-position: center;
}

.airport-mpv {
  background-image: url("assets/fleet-mpv.png");
  background-position: center;
}

.airport-minibus {
  background-image: url("assets/fleet-minibus.png");
  background-position: center;
}

.airport-vehicle-grid p {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 18px 0 20px;
  color: #4f535a;
  font-size: 0.76rem;
  font-weight: 800;
}

.airport-vehicle-grid p span {
  position: relative;
  padding-left: 22px;
}

.airport-vehicle-grid p span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02em;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.airport-vehicle-grid a {
  color: #bb842f;
  font-size: 0.78rem;
  font-weight: 900;
}

.airport-cta {
  width: min(100% - 12vw, 1660px);
  margin: 0 auto 58px;
  padding: 28px 54px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #fbfaf8;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.airport-cta-icon {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.7);
  border-radius: 50%;
}

.airport-cta-icon svg {
  width: 34px;
  height: 34px;
}

.airport-cta h2 {
  margin: 0 0 4px;
  color: #15171b;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.airport-cta p {
  margin: 0;
  color: #3f4248;
  font-weight: 600;
}

.airport-cta-actions {
  display: flex;
  gap: 18px;
}

.contact-hero {
  position: relative;
  min-height: 360px;
  margin-top: var(--nav-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f8f5ef;
}

.contact-hero-media,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
}

.contact-hero-media {
  background-image: url("assets/contact-hero.png");
  background-position: center 44%;
  background-size: cover;
}

.contact-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.22) 62%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.06));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 58px 7.8vw;
}

.contact-hero h1,
.contact-details h2,
.contact-form-wrap h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-hero h1 {
  margin: 0;
  color: #111317;
  font-size: clamp(3.4rem, 5vw, 5rem);
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #2f3238;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
}

.contact-panel {
  width: min(100% - 12vw, 1480px);
  margin: calc(var(--nav-height) + 34px) auto 28px;
  display: grid;
  grid-template-columns: minmax(330px, 0.55fr) minmax(520px, 1fr);
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.07);
  overflow: hidden;
}

.contact-details {
  padding: 38px 42px;
  background: #fbfaf8;
  border-right: 1px solid rgba(17, 19, 23, 0.08);
}

.contact-details .eyebrow {
  position: relative;
  margin-bottom: 22px;
}

.contact-details .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.contact-details h2 {
  margin: 0 0 28px;
  color: #15171b;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.contact-details article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 19, 23, 0.09);
}

.contact-details article:first-of-type {
  border-top: 0;
}

.contact-details svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.55);
  border-radius: 50%;
}

.contact-details h3 {
  margin: 0 0 4px;
  color: #2d3036;
  font-size: 0.95rem;
}

.contact-details a,
.contact-details span {
  display: block;
  color: #34373d;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form-wrap {
  padding: 34px 42px 32px;
}

.contact-form-wrap h2 {
  margin: 0 0 8px;
  color: #15171b;
  font-size: clamp(2rem, 2.5vw, 2.7rem);
}

.contact-form-wrap > p {
  margin: 0 0 24px;
  color: #4b4f56;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2f3238;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form strong {
  color: #c2503b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  color: #30343a;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.14);
  border-radius: 5px;
  outline: 0;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form textarea {
  min-height: 104px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a3a6ac;
}

.contact-form button {
  width: fit-content;
  min-width: 196px;
  min-height: 48px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-light), #b97b25);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(185, 123, 37, 0.22);
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-message {
  min-height: 20px;
  margin: -6px 0 0;
  color: #986415;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-message.is-error {
  color: #a33b2a;
}

.contact-benefits {
  width: min(100% - 12vw, 1480px);
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf8;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.contact-benefits article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px 42px;
}

.contact-benefits article + article {
  border-left: 1px solid rgba(17, 19, 23, 0.1);
}

.contact-benefits svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.65);
  border-radius: 50%;
}

.contact-benefits h2 {
  margin: 0 0 6px;
  color: #272a2f;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-benefits p {
  margin: 0;
  color: #555961;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.corporate-hero {
  position: relative;
  min-height: 390px;
  margin-top: var(--nav-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #050608;
}

.corporate-hero-media,
.corporate-hero-overlay {
  position: absolute;
  inset: 0;
}

.corporate-hero-media {
  background-image: url("assets/corporate-hero.png");
  background-position: center 48%;
  background-size: cover;
  filter: saturate(1.08) contrast(1.08) brightness(1.06);
}

.corporate-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.5) 34%, rgba(0, 0, 0, 0.06) 68%, rgba(0, 0, 0, 0.01) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.14));
}

.corporate-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 42px 7.8vw 48px;
}

.corporate-hero h1,
.corporate-copy h2,
.corporate-cta h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.corporate-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 4.4vw, 4.6rem);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.business-line {
  display: inline-block;
  color: #fff;
  white-space: nowrap;
}

.business-line em {
  color: var(--gold);
  font-style: normal;
}

.corporate-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.corporate-highlights {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.corporate-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.corporate-highlights li:first-child {
  padding-left: 0;
}

.corporate-highlights li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.corporate-highlights svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.corporate-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
}

.corporate-actions .btn-primary {
  min-width: 250px;
  color: #111317;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.14);
}

.corporate-call {
  min-width: 250px;
  color: #fff;
  background: rgba(5, 6, 8, 0.46);
  border: 1px solid rgba(201, 144, 54, 0.75);
}

.corporate-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf8;
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
}

.corporate-benefits article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  padding: 42px 7.2vw 42px 0;
}

.corporate-benefits article:first-child {
  padding-left: 7.2vw;
}

.corporate-benefits article + article {
  border-left: 1px solid rgba(17, 19, 23, 0.1);
  padding-left: 44px;
}

.corporate-benefits svg {
  width: 64px;
  height: 64px;
  padding: 14px;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.65);
  border-radius: 50%;
}

.corporate-benefits h2,
.corporate-ideal h2 {
  margin: 0 0 8px;
  color: #272a2f;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.corporate-benefits p {
  margin: 0;
  color: #555961;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.6;
}

.corporate-detail {
  width: min(100% - 12vw, 1660px);
  margin: 36px auto 34px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr) minmax(250px, 0.45fr);
  gap: 46px;
  align-items: stretch;
}

.corporate-image {
  min-height: 340px;
  border-radius: 6px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    url("assets/corporate-interior.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.12);
}

.corporate-copy {
  padding: 6px 0;
}

.corporate-copy .eyebrow,
.corporate-ideal .eyebrow {
  position: relative;
  margin-bottom: 22px;
}

.corporate-copy .eyebrow::after,
.corporate-ideal .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.corporate-copy h2 {
  margin: 0 0 18px;
  color: #15171b;
  font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.corporate-copy p {
  margin: 0 0 22px;
  color: #3f4248;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.75;
}

.corporate-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-list li {
  position: relative;
  padding-left: 34px;
}

.corporate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(201, 144, 54, 0.72);
  border-radius: 50%;
}

.corporate-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.5em;
  width: 5px;
  height: 8px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.corporate-list strong,
.corporate-list span {
  display: block;
}

.corporate-list strong {
  color: #2d3036;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.corporate-list span {
  color: #4f535a;
  font-size: 0.86rem;
  font-weight: 600;
}

.corporate-ideal {
  padding: 34px 32px;
  background: #f4eee6;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.06);
}

.corporate-ideal ul {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-ideal li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
  color: #33363d;
  font-size: 0.95rem;
  font-weight: 800;
}

.corporate-ideal svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.corporate-cta {
  width: min(100% - 12vw, 1660px);
  margin: 0 auto 58px;
  padding: 26px 54px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--ink);
  background: #fbfaf8;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.corporate-cta-icon {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 2px solid rgba(201, 144, 54, 0.85);
  border-radius: 50%;
}

.corporate-cta-icon svg {
  width: 34px;
  height: 34px;
}

.corporate-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
}

.corporate-cta p {
  margin: 0;
  color: #3f4248;
  font-weight: 600;
}

.corporate-cta-actions {
  display: flex;
  gap: 18px;
}

body.modal-open {
  overflow: hidden;
}

.booking-modal,
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open,
.enquiry-modal.is-open {
  display: flex;
}

.booking-modal__backdrop,
.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(3px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.enquiry-dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.booking-close,
.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #5d6066;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.booking-close:hover,
.booking-close:focus-visible,
.enquiry-close:hover,
.enquiry-close:focus-visible {
  color: #202328;
  outline: 0;
}

.booking-close svg,
.enquiry-close svg {
  width: 25px;
  height: 25px;
}

.enquiry-close {
  z-index: 4;
  color: #fff;
  background: rgba(5, 6, 8, 0.38);
  border-radius: 50%;
}

.enquiry-hero {
  position: relative;
  min-height: 230px;
  display: grid;
  align-items: end;
  padding: 34px 34px 30px;
  overflow: hidden;
  color: #fff;
  background-image: url("assets/tour-detail-new-forest-hero.jpg");
  background-position: center 48%;
  background-size: cover;
}

.enquiry-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.25)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.35));
}

.enquiry-hero > * {
  position: relative;
  z-index: 1;
}

.enquiry-hero h2 {
  max-width: 430px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 0.96;
}

.enquiry-hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.enquiry-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  padding: 28px;
}

.enquiry-form-card,
.enquiry-side-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.06);
}

.enquiry-form-card h3,
.enquiry-side-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.enquiry-form-card > p {
  margin: 0 0 22px;
  color: #4d5158;
  font-size: 0.9rem;
  font-weight: 600;
}

.enquiry-form {
  display: grid;
  gap: 18px;
}

.enquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #2f3238;
  font-size: 0.84rem;
  font-weight: 900;
}

.enquiry-form strong {
  color: #c0392b;
}

.enquiry-field {
  min-height: 46px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 0 12px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.16);
  border-radius: 5px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
}

.enquiry-field svg {
  width: 17px;
  height: 17px;
  color: #22262c;
}

.enquiry-field input,
.enquiry-field select {
  width: 100%;
  min-width: 0;
  height: 44px;
  color: #30343a;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.enquiry-field select {
  appearance: auto;
}

.enquiry-form textarea {
  width: 100%;
  min-height: 98px;
  padding: 14px;
  color: #30343a;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.16);
  border-radius: 5px;
  outline: 0;
  resize: vertical;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  font-weight: 600;
}

.enquiry-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: #4d5158;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
}

.enquiry-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.enquiry-form button[type="submit"] {
  min-height: 54px;
  color: #111317;
  background: linear-gradient(180deg, var(--gold-light), #c88d32);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(185, 123, 37, 0.22);
  text-transform: uppercase;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
}

.enquiry-message {
  min-height: 18px;
  margin: -4px 0 0;
  color: #986415;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.enquiry-message.is-error {
  color: #a33b2a;
}

.enquiry-side-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 7, 10, 0.98), rgba(8, 20, 30, 0.98)),
    repeating-linear-gradient(45deg, rgba(201, 144, 54, 0.06) 0 1px, transparent 1px 18px);
}

.enquiry-benefits {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.enquiry-benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}

.enquiry-benefit svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.enquiry-benefit h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.enquiry-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.booking-heading {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: center;
  padding-right: 28px;
  margin-bottom: 28px;
}

.booking-heading-icon {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 144, 54, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
}

.booking-heading-icon svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.7;
}

.booking-heading h2 {
  margin: 0 0 6px;
  color: #16181c;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
}

.booking-heading p {
  margin: 0;
  color: #44474d;
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-form {
  display: grid;
  gap: 22px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #2f3238;
  font-size: 0.92rem;
  font-weight: 800;
}

.booking-form label > em {
  color: #858990;
  font-style: normal;
  font-size: 0.87rem;
  font-weight: 500;
}

.booking-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px !important;
  padding: 14px 16px;
  color: #2f3238;
  background: rgba(194, 134, 46, 0.08);
  border: 1px solid rgba(194, 134, 46, 0.22);
  border-radius: 5px;
  cursor: pointer;
}

.booking-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.flight-fields {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(250, 250, 248, 0.88);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 5px;
}

.flight-fields[hidden] {
  display: none;
}

.flight-note {
  margin: 0;
  color: #7a7d83;
  font-size: 0.84rem;
  font-weight: 600;
}

.booking-field {
  position: relative;
  min-height: 45px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 0 12px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.16);
  border-radius: 5px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
}

.booking-field svg {
  width: 18px;
  height: 18px;
  color: #7c8088;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-width: 0;
  height: 43px;
  color: #30343a;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-field input[readonly] {
  cursor: pointer;
}

.booking-field input[type="hidden"] {
  display: none;
}

.booking-field input::placeholder,
.booking-form textarea::placeholder {
  color: #a5a8ad;
}

.booking-select {
  grid-template-columns: 34px 1fr;
}

.booking-select select {
  appearance: auto;
  cursor: pointer;
}

.booking-calendar {
  position: absolute;
  z-index: 4;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  padding: 14px;
  color: #202328;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.booking-calendar.is-open {
  display: block;
}

.booking-calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.booking-calendar-head strong {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
}

.booking-calendar-head button,
.booking-calendar-days button {
  display: grid;
  place-items: center;
  color: #202328;
  background: #f7f4ee;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 5px;
  cursor: pointer;
}

.booking-calendar-head button {
  width: 34px;
  height: 34px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
}

.booking-calendar-weekdays,
.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.booking-calendar-weekdays {
  margin-bottom: 6px;
  color: #7a7d83;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-calendar-days button {
  min-height: 34px;
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-calendar-days button:hover,
.booking-calendar-days button:focus-visible,
.booking-calendar-days button.is-selected {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  outline: 0;
}

.booking-calendar-days button:disabled {
  color: #b6b8bc;
  background: #f1f1f1;
  cursor: not-allowed;
}

.vehicle-hint {
  min-height: 18px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.booking-form textarea {
  width: 100%;
  min-height: 82px;
  resize: vertical;
  padding: 14px;
  color: #30343a;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.16);
  border-radius: 5px;
  outline: 0;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-form button[type="submit"] {
  min-height: 60px;
  margin-top: 6px;
  color: #fff;
  background: linear-gradient(180deg, var(--gold-light), #b97b25);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(185, 123, 37, 0.22);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.booking-message {
  min-height: 20px;
  margin: -8px 0 0;
  color: #986415;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-message.is-error {
  color: #a33b2a;
}

@media (max-width: 1360px) {
  .nav-shell {
    grid-template-columns: 280px 1fr;
    gap: 22px;
    padding: 0 36px 0 56px;
  }

  .brand {
    width: 280px;
  }

  .site-header .brand img {
    width: 98%;
    height: 98%;
  }

  .nav-links {
    gap: 20px;
    font-size: 0.82rem;
  }

  .nav-cta {
    min-width: 190px;
    padding: 0 24px;
  }

}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding: 0 5vw;
  }

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

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: #fff;
    background: rgba(8, 10, 13, 0.98);
    border: 1px solid var(--line-light);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .nav-links a::after {
    bottom: 8px;
  }

  .nav-cta {
    display: none;
  }

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

  .trust-bar article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.12);
  }

  .trust-bar article:nth-child(4) {
    border-top: 1px solid rgba(17, 19, 23, 0.12);
  }

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

  .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

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

  .tours-highlights {
    grid-template-columns: repeat(2, max-content);
    gap: 20px 54px;
  }

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

  .tour-enquiry {
    grid-column: 1 / -1;
  }

  .tour-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0;
  }

  .tour-price-card {
    max-width: 420px;
  }

  .tour-detail-highlights {
    grid-template-columns: repeat(2, max-content);
  }

  .tour-overview,
  .tour-expect {
    grid-template-columns: 1fr;
  }

  .tour-info-grid {
    grid-template-columns: 1fr;
  }

  .tour-help-cta {
    grid-template-columns: 68px 1fr;
  }

  .tour-help-cta a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .journey-cta {
    grid-template-columns: 72px 1fr;
    padding: 28px 34px;
  }

  .journey-cta-actions {
    grid-column: 1 / -1;
  }

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

  .airport-benefits article,
  .airport-benefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .airport-benefits article:first-child,
  .airport-benefits article:nth-child(2) {
    border-top: 0;
  }

  .airport-benefits article:nth-child(2n) {
    border-left: 1px solid rgba(17, 19, 23, 0.1);
  }

  .airport-detail {
    width: min(100% - 10vw, 960px);
    grid-template-columns: 1fr;
  }

  .airport-cta {
    width: min(100% - 10vw, 960px);
    grid-template-columns: 72px 1fr;
    padding: 28px 34px;
  }

  .airport-cta-actions {
    grid-column: 1 / -1;
  }

  .contact-panel {
    width: min(100% - 10vw, 980px);
    grid-template-columns: 1fr;
  }

  .contact-details {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  }

  .contact-benefits {
    width: min(100% - 10vw, 980px);
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .contact-benefits article:nth-child(4) {
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .quote-band {
    padding: 38px 5vw 44px;
    background: linear-gradient(135deg, #0a0c0f, #171a1f);
  }

  .quote-form {
    grid-column: 1;
  }

  .about-section {
    width: min(100% - 10vw, 900px);
    grid-template-columns: 1fr;
  }

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

  .about-values article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.09);
  }

  .about-values article:nth-child(4) {
    border-top: 1px solid rgba(17, 19, 23, 0.09);
  }

  .about-cta {
    width: min(100% - 10vw, 900px);
    grid-template-columns: 72px 1fr;
  }

  .about-cta-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  :root {
    --nav-safe-area: max(14px, env(safe-area-inset-top));
    --nav-height: calc(82px + var(--nav-safe-area));
  }

  .nav-shell {
    height: var(--nav-height);
    padding-top: var(--nav-safe-area);
  }

  .brand {
    width: 205px;
    height: calc(var(--nav-height) - var(--nav-safe-area));
  }

  .site-header .brand img {
    width: 98%;
    height: 98%;
  }

  .nav-links {
    top: var(--nav-height);
  }

  .hero {
    min-height: 735px;
    align-items: start;
    padding: 122px 5vw 104px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
  }

  .trust-bar,
  .services-grid,
  .fleet-section,
  .quote-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-bar article,
  .trust-bar article + article,
  .trust-bar article:nth-child(3),
  .trust-bar article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.12);
  }

  .trust-bar article:first-child {
    border-top: 0;
  }

  .services-grid {
    max-width: 520px;
  }

  .service-image,
  .services-page-grid .service-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .services-hero {
    min-height: 360px;
  }

  .services-hero-content {
    padding: 44px 5vw;
  }

  .services-hero h1 {
    font-size: 3.1rem;
  }

  .services-page-grid {
    max-width: 520px;
  }

  .services-trust {
    width: min(100%, 520px);
  }

  .tours-hero {
    min-height: 460px;
  }

  .tours-hero-content {
    width: min(100% - 40px, 520px);
    padding: 46px 0 38px;
  }

  .tours-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

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

  .tour-enquiry {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tour-enquiry-icon {
    margin: 0 auto;
  }

  .tour-detail-hero {
    min-height: 620px;
  }

  .tour-detail-copy h1 {
    font-size: 3.2rem;
  }

  .tour-breadcrumb {
    margin-bottom: 32px;
  }

  .tour-feature-row {
    grid-template-columns: 1fr;
  }

  .tour-feature-row article,
  .tour-feature-row article + article {
    padding: 28px 20px;
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .tour-feature-row article:first-child {
    border-top: 0;
  }

  .journey-cta {
    grid-template-columns: 1fr;
    width: min(100% - 10vw, 520px);
    text-align: center;
  }

  .journey-cta-icon {
    margin: 0 auto;
  }

  .journey-cta-actions {
    flex-direction: column;
  }

  .airport-hero {
    min-height: 430px;
  }

  .airport-hero-content {
    padding: 44px 5vw 82px;
  }

  .airport-hero h1 {
    font-size: 3.35rem;
  }

  .airport-highlights {
    display: grid;
    gap: 12px;
  }

  .airport-highlights li,
  .airport-highlights li:first-child {
    padding: 0;
  }

  .airport-highlights li + li {
    border-left: 0;
  }

  .airport-actions,
  .airport-actions .btn,
  .airport-actions .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .airport-benefits {
    width: min(100% - 10vw, 560px);
    grid-template-columns: 1fr;
    margin-top: -48px;
  }

  .airport-benefits article,
  .airport-benefits article + article,
  .airport-benefits article:nth-child(2n),
  .airport-benefits article:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .airport-benefits article:first-child {
    border-top: 0;
  }

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

  .airport-vehicle-image {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .airport-cta {
    grid-template-columns: 1fr;
    width: min(100% - 10vw, 560px);
    text-align: center;
  }

  .airport-cta-icon {
    margin: 0 auto;
  }

  .airport-cta-actions {
    flex-direction: column;
  }

  .contact-hero {
    min-height: 430px;
  }

  .contact-hero-content {
    padding: 44px 5vw;
  }

  .contact-hero h1 {
    font-size: 3rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-benefits {
    grid-template-columns: 1fr;
  }

  .contact-benefits article,
  .contact-benefits article + article,
  .contact-benefits article:nth-child(3),
  .contact-benefits article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .contact-benefits article:first-child {
    border-top: 0;
  }

  .fleet-section {
    grid-template-areas:
      "intro"
      "image"
      "list";
    padding-top: 42px;
  }

  .fleet-intro {
    padding-right: 0;
    border-right: 0;
  }

  .fleet-list {
    grid-template-columns: 1fr;
  }

  .quote-band {
    gap: 0;
  }

  .about-section {
    padding-top: calc(var(--nav-height) + 48px);
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding: var(--nav-safe-area) 18px 0;
  }

  .brand {
    width: 188px;
  }

  .site-header .brand img {
    width: 98%;
    height: 98%;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-bar {
    width: 90vw;
    margin-top: -52px;
  }

  .trust-bar article {
    grid-template-columns: 44px 1fr;
    padding: 21px;
  }

  .trust-bar svg {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 54px 5vw;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 22px;
  }

  .about-section,
  .about-cta,
  .contact-panel,
  .contact-benefits {
    width: min(100% - 40px, 520px);
  }

  .about-copy h2 {
    font-size: 2.65rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-values article,
  .about-values article + article,
  .about-values article:nth-child(3),
  .about-values article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.09);
  }

  .about-values article:first-child {
    border-top: 0;
  }

  .about-fleet-image {
    min-height: 220px;
  }

  .about-cta {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }

  .about-cta-icon {
    margin: 0 auto;
  }

  .about-cta-actions {
    flex-direction: column;
  }

  .about-call,
  .about-cta .btn,
  .journey-call,
  .journey-cta .btn,
  .airport-call,
  .airport-cta .btn,
  .contact-form button {
    width: 100%;
    min-width: 0;
  }

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

  .tour-card {
    min-height: 250px;
  }

  .tour-detail-hero-inner,
  .tour-feature-row,
  .tour-overview,
  .tour-info-grid,
  .tour-expect,
  .tour-help-cta {
    width: min(100% - 40px, 520px);
  }

  .tour-detail-highlights {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .tour-detail-highlights li {
    grid-template-columns: 34px 1fr;
    align-items: center;
    justify-items: start;
  }

  .tour-stat-grid,
  .tour-help-cta {
    grid-template-columns: 1fr;
  }

  .tour-help-icon {
    margin: 0 auto;
  }

  .tour-help-cta {
    padding: 28px 22px;
    text-align: center;
  }

  .tour-help-cta a {
    justify-self: stretch;
  }

  .contact-details,
  .contact-form-wrap {
    padding: 28px 24px;
  }

  .contact-details article,
  .contact-benefits article {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px 0;
  }

  .contact-benefits article {
    padding: 22px 24px;
  }

  .contact-details svg,
  .contact-benefits svg {
    width: 50px;
    height: 50px;
    padding: 12px;
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 20px;
  }

  .booking-heading {
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding-right: 28px;
  }

  .booking-heading-icon {
    width: 58px;
  }

  .booking-heading-icon svg {
    width: 30px;
    height: 30px;
  }

  .booking-heading h2 {
    font-size: 2rem;
  }

  .booking-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .enquiry-dialog {
    max-height: calc(100vh - 28px);
  }

  .enquiry-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .enquiry-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form-card,
  .enquiry-side-card {
    padding: 22px;
  }
}

@media (max-width: 1180px) {
  .corporate-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-benefits article,
  .corporate-benefits article:first-child,
  .corporate-benefits article + article {
    padding: 30px 5vw;
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .corporate-benefits article:first-child,
  .corporate-benefits article:nth-child(2) {
    border-top: 0;
  }

  .corporate-benefits article:nth-child(2n) {
    border-left: 1px solid rgba(17, 19, 23, 0.1);
  }

  .corporate-detail {
    width: min(100% - 10vw, 980px);
    grid-template-columns: 1fr;
  }

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

  .corporate-cta {
    width: min(100% - 10vw, 980px);
    grid-template-columns: 72px 1fr;
    padding: 28px 34px;
  }

  .corporate-cta-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .corporate-hero {
    min-height: 520px;
  }

  .corporate-hero-content {
    padding: 42px 5vw 58px;
  }

  .corporate-hero h1 {
    font-size: 3rem;
  }

  .corporate-highlights {
    display: grid;
    gap: 12px;
  }

  .corporate-highlights li,
  .corporate-highlights li:first-child {
    padding: 0;
  }

  .corporate-highlights li + li {
    border-left: 0;
  }

  .corporate-actions,
  .corporate-actions .btn,
  .corporate-actions .btn-primary {
    width: 100%;
    min-width: 0;
  }

  .corporate-benefits {
    grid-template-columns: 1fr;
  }

  .corporate-benefits article,
  .corporate-benefits article:first-child,
  .corporate-benefits article + article,
  .corporate-benefits article:nth-child(2n),
  .corporate-benefits article:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(17, 19, 23, 0.1);
  }

  .corporate-benefits article:first-child {
    border-top: 0;
  }

  .corporate-ideal ul {
    grid-template-columns: 1fr;
  }

  .corporate-cta {
    grid-template-columns: 1fr;
    width: min(100% - 10vw, 560px);
    text-align: center;
  }

  .corporate-cta-icon {
    margin: 0 auto;
  }

  .corporate-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .services-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .service-image,
  .services-page-grid .service-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .corporate-detail,
  .corporate-cta {
    width: min(100% - 40px, 520px);
  }

  .corporate-image {
    min-height: 240px;
  }

  .corporate-call,
  .corporate-cta .btn {
    width: 100%;
    min-width: 0;
  }
}
