:root {
  --ink: #070707;
  --ink-soft: #0d0d0d;
  --panel: #121212;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #f2efe9;
  --white: #fff;
  --muted: #a5a29d;
  --gold: #c6a66a;
  --gold-light: #e4c789;
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1280px, calc(100vw - 96px));
  --header-h: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link:focus {
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  z-index: 1000;
  background: var(--gold);
  color: #000;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.35s ease, height 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  height: 76px;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 203, 147, 0.7);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px 18px;
  border-left: 1px solid rgba(229, 203, 147, 0.32);
  border-right: 1px solid rgba(229, 203, 147, 0.32);
  border-radius: 50%;
}

.brand-mark::after {
  inset: 18px 5px;
  border: 0;
  border-top: 1px solid rgba(229, 203, 147, 0.28);
  border-bottom: 1px solid rgba(229, 203, 147, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.18em;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.28em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-light);
}

.header-cta {
  justify-self: end;
  min-width: 126px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.header-cta span {
  margin-left: 9px;
  color: var(--gold-light);
}

.header-cta:hover {
  background: var(--white);
  color: #000;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  max-height: 1100px;
  overflow: hidden;
  background: #050505 url("assets/hero-s-class-2026.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 42px;
  padding-bottom: 136px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 14px 4px 0;
  background: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 7.5vw, 126px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.87;
}

.hero h1 em,
.display-title em,
.vehicle-body h3 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-gold {
  background: var(--gold-light);
  color: #0a0a0a;
}

.button-gold:hover {
  background: #f0d79e;
}

.text-link,
.arrow-link {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.text-link::after,
.arrow-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.text-link:hover::after,
.arrow-link:hover::after {
  transform: scaleX(0);
}

.text-link span,
.arrow-link span {
  margin-left: 16px;
  color: var(--gold-light);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-rail > div {
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-rail > div:first-child {
  padding-left: 0;
}

.hero-rail > div:last-child {
  border-right: 0;
}

.hero-rail strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-kicker span {
  color: rgba(255, 255, 255, 0.4);
}

.section-kicker::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(198, 166, 106, 0.55);
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.manifesto {
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 100px;
}

.manifesto-copy {
  padding-bottom: 5px;
}

.manifesto-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.arrow-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--white);
}

.fleet {
  background: var(--paper);
  color: #111;
}

.fleet .section-kicker {
  color: #806b45;
}

.fleet .section-kicker span {
  color: rgba(0, 0, 0, 0.38);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 68px;
}

.section-heading > p {
  max-width: 360px;
  margin: 0 0 8px;
  color: #77736d;
  font-size: 14px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.vehicle-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.13);
  background: #eae6df;
  overflow: hidden;
}

.vehicle-image {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #111;
}

.vehicle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vehicle-card:nth-child(2) .vehicle-image img {
  object-position: 68% center;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.035);
}

.vehicle-number {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.vehicle-body {
  position: relative;
  padding: 30px 100px 32px 30px;
}

.vehicle-body p {
  margin: 0 0 3px;
  color: #827b71;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vehicle-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.vehicle-body h3 em {
  color: #806a43;
}

.vehicle-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 21px;
  color: #67625b;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-specs span:not(:last-child)::after {
  content: "·";
  margin-left: 20px;
}

.circle-link {
  position: absolute;
  right: 29px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}

.circle-link:hover {
  background: #111;
  color: var(--gold-light);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  padding: 0;
  background: var(--ink-soft);
}

.experience-media {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  outline: none;
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 58%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
}

.experience-slides,
.experience-slide {
  position: absolute;
  inset: 0;
}

.experience-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.65s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 0.65s;
}

.experience-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.experience-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.media-caption {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.media-caption b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 500;
}

.media-caption b i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.experience-nav {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 25px;
  display: flex;
  gap: 9px;
}

.experience-nav-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.52);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.experience-nav-button:hover,
.experience-nav-button:focus-visible {
  border-color: var(--gold-light);
  background: rgba(187, 153, 88, 0.2);
  color: var(--gold-light);
  outline: none;
}

.experience-nav-button .ui-icon {
  width: 17px;
  height: 17px;
  margin: 0;
}

.experience-nav-button.is-prev .ui-icon {
  transform: rotate(180deg);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(48px, 7vw, 120px);
}

.experience-copy > p {
  max-width: 520px;
  margin: 31px 0 42px;
  color: var(--muted);
  font-size: 15px;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.feature-list strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.feature-list small {
  color: #787672;
  font-size: 11px;
}

.services .section-heading > p {
  color: var(--muted);
}

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

.service-item {
  display: grid;
  grid-template-columns: 54px 76px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 30px;
  min-height: 158px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding 0.3s ease;
}

.service-item:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.service-index {
  align-self: start;
  margin-top: 30px;
  color: #555;
  font-size: 9px;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198, 166, 106, 0.3);
  border-radius: 50%;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.service-item > a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background 0.25s ease;
}

.service-item > a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.heritage {
  padding-top: 0;
}

.heritage-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #111;
}

.heritage-image {
  overflow: hidden;
}

.heritage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  background:
    radial-gradient(circle at 90% 15%, rgba(198, 166, 106, 0.12), transparent 35%),
    #121212;
}

.quote-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 70px;
  line-height: 0.6;
}

.heritage blockquote {
  margin: 27px 0 32px;
  font-family: var(--serif);
  font-size: clamp(29px, 2.9vw, 43px);
  line-height: 1.2;
}

.heritage-copy p {
  margin: 0;
  color: #6e6b66;
  font-size: 9px;
  letter-spacing: 0.24em;
}

.booking {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: url("assets/service-airport.webp") center / cover no-repeat;
  filter: grayscale(1);
}

.booking::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 6, 6, 0.2), #080808 58%);
}

.booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(520px, 1fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.booking-intro > p {
  max-width: 490px;
  margin: 30px 0 40px;
  color: var(--muted);
}

.phone-link {
  display: inline-flex;
  flex-direction: column;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--gold);
}

.phone-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.phone-link small {
  color: #706f6b;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phone-link strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
  padding: 45px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(16px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.wide {
  grid-column: 1 / -1;
}

.field label {
  color: #aaa6a0;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.25s ease;
}

.field textarea {
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #555;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.form-submit:disabled {
  cursor: wait;
  filter: saturate(0.45);
  opacity: 0.72;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -8px 0 0;
  color: var(--gold-light);
  font-size: 12px;
}

.form-status.is-success {
  color: #b9d7b3;
}

.form-status.is-error {
  color: #f0a69d;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
  gap: 50px;
  padding-top: 85px;
  padding-bottom: 72px;
}

.footer-brand p {
  margin: 28px 0 0;
  color: #686764;
  font-size: 12px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #85827e;
  font-size: 12px;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column strong {
  color: var(--white);
  font-weight: 400;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 25px;
  border-top: 1px solid var(--line);
  color: #555;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.floating-call {
  position: fixed;
  z-index: 70;
  right: 26px;
  bottom: 24px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border-radius: 40px;
  background: var(--gold-light);
  color: #090909;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-call svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-pulse {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-light);
  border-radius: inherit;
  animation: call-pulse 2.5s ease-out infinite;
}

@keyframes call-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  75%, 100% { opacity: 0; transform: scale(1.15, 1.45); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal:nth-child(2) { transition-delay: 0.08s; }
.hero .reveal:nth-child(3) { transition-delay: 0.16s; }
.hero .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 1000px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 28px;
  }

  .primary-nav {
    gap: 22px;
  }

  .header-cta {
    display: none;
  }

  .manifesto-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;
  }

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

  .experience-copy {
    padding-inline: 50px;
  }

  .experience-media {
    min-height: 730px;
  }

  .booking-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 0.8fr;
  }

  .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 74px;
    --shell: calc(100% - 40px);
  }

  .site-header,
  .site-header.scrolled {
    height: var(--header-h);
    padding-inline: 20px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 23px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    right: 4px;
    width: 26px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease, top 0.3s ease;
  }

  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 25px; width: 18px; }

  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; width: 26px; transform: rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 90px 38px;
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: var(--serif);
    font-size: 36px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .hero {
    min-height: 740px;
    max-height: none;
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 86px);
  }

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

  .hero-rail > div {
    min-height: 72px;
    padding: 0 18px;
  }

  .hero-rail > div:first-child {
    padding-left: 0;
  }

  .hero-rail > div:nth-child(2) {
    border-right: 0;
  }

  .hero-rail > div:nth-child(n + 3) {
    display: none;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .manifesto-grid,
  .section-heading,
  .experience,
  .heritage-card,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 45px;
  }

  .section-heading {
    display: grid;
    gap: 25px;
    margin-bottom: 48px;
  }

  .section-heading > p {
    max-width: 500px;
  }

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

  .experience-media {
    min-height: 580px;
  }

  .experience-copy {
    padding: 100px max(20px, calc((100vw - 740px) / 2));
  }

  .heritage-image {
    min-height: 400px;
  }

  .booking-layout {
    gap: 60px;
  }

  .booking::after {
    background: rgba(6, 6, 6, 0.82);
  }

  .booking-form {
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    background-position: 68% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.88));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 126px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .eyebrow::before {
    width: 22px;
    margin-right: 9px;
  }

  .hero-rail strong {
    font-size: 17px;
  }

  .hero-rail span {
    font-size: 8px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .display-title {
    font-size: clamp(43px, 12vw, 58px);
  }

  .manifesto-grid {
    gap: 32px;
  }

  .fleet-grid {
    gap: 18px;
  }

  .vehicle-image {
    aspect-ratio: 1.18;
  }

  .vehicle-body {
    padding: 25px 25px 88px;
  }

  .vehicle-body h3 {
    font-size: 27px;
  }

  .circle-link {
    right: 25px;
    bottom: 22px;
  }

  .experience-media {
    min-height: 460px;
  }

  .media-caption {
    left: 18px;
    bottom: 24px;
    gap: 12px;
  }

  .media-caption b i {
    width: 16px;
  }

  .experience-nav {
    right: 18px;
    bottom: 16px;
  }

  .experience-nav-button {
    width: 42px;
    height: 42px;
  }

  .experience-copy {
    padding: 78px 16px;
  }

  .service-item {
    grid-template-columns: 55px minmax(0, 1fr) 38px;
    gap: 15px;
    padding-block: 25px;
  }

  .service-index {
    display: none;
  }

  .service-icon {
    width: 53px;
    height: 53px;
  }

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

  .service-item h3 {
    font-size: 22px;
  }

  .service-item p {
    font-size: 11px;
  }

  .service-item:hover {
    padding-inline: 0;
  }

  .heritage-image {
    min-height: 300px;
  }

  .heritage-copy {
    padding: 50px 28px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .field.wide,
  .form-submit,
  .form-status {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 15px;
    flex-wrap: wrap;
  }

  .footer-bottom > span:nth-child(2) {
    display: none;
  }

  .floating-call {
    right: 16px;
    bottom: 15px;
    width: 48px;
    padding: 0;
    justify-content: center;
  }

  .floating-call > span:last-child {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V2 — all-black collection, language controls and motion system */
body {
  background: #050505;
}

body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #030303;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(228, 199, 137, 0.6);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 44px;
  animation: loader-mark 1.8s ease-in-out infinite;
}

.loader-line {
  width: 140px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loader-line 1.25s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.page-loader small {
  color: #77736d;
  font-size: 8px;
  letter-spacing: 0.32em;
}

@keyframes loader-line {
  50%, 100% { transform: translateX(100%); }
}

@keyframes loader-mark {
  50% { transform: scale(0.94); box-shadow: 0 0 50px rgba(198, 166, 106, 0.12); }
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #81683c, var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(198, 166, 106, 0.075), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

body.has-pointer .cursor-glow {
  opacity: 1;
}

.section-kicker i {
  font-style: normal;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  color: #65635f;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.language-switch i {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.lang-option {
  color: #8b8882;
  transition: color 0.25s ease;
}

.lang-option.is-active {
  color: var(--gold-light);
}

.header-cta {
  justify-self: auto;
}

.header-cta b,
.button b,
.text-link b,
.arrow-link b {
  color: var(--gold-light);
  font-weight: 400;
}

.button-gold b {
  color: #111;
}

.hero {
  background-position: center calc(50% + var(--hero-shift, 0px));
  isolation: isolate;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(228, 199, 137, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 17%;
  right: 7%;
  width: 510px;
  height: 510px;
  animation: orbit-float 10s ease-in-out infinite;
}

.orbit-two {
  top: 32%;
  right: 15%;
  width: 270px;
  height: 270px;
  animation: orbit-float 8s ease-in-out -3s infinite reverse;
}

@keyframes orbit-float {
  50% { transform: translate3d(18px, -18px, 0) scale(1.04); opacity: 0.45; }
}

.line-reveal > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.line-reveal > span > i {
  display: block;
  font-style: normal;
  transform: translateY(115%);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .line-reveal > span:first-child > i {
  transform: translateY(0);
  transition-delay: 0.15s;
}

body.is-loaded .line-reveal > span:nth-child(2) > i {
  transform: translateY(0);
  transition-delay: 0.27s;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 38px;
  min-height: 72px;
  animation: marquee-run 30s linear infinite;
}

.marquee-track span {
  color: #77736e;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.marquee-track b {
  color: var(--gold);
  font-size: 8px;
}

@keyframes marquee-run {
  to { transform: translateX(-50%); }
}

.manifesto,
.fleet,
.services,
.heritage {
  background: #050505;
  color: var(--white);
}

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

.fleet .section-kicker,
.fleet .section-kicker span {
  color: var(--gold-light);
}

.fleet .section-kicker span {
  opacity: 0.5;
}

.fleet .section-heading > p,
.fleet .vehicle-body p,
.fleet .vehicle-specs {
  color: var(--muted);
}

.fleet-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -20px 0 46px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.fleet-toolbar::-webkit-scrollbar {
  display: none;
}

.fleet-filter {
  flex: 0 0 auto;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: transparent;
  color: #77736e;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.fleet-filter:hover,
.fleet-filter.is-active {
  border-color: var(--gold);
  background: rgba(198, 166, 106, 0.08);
  color: var(--gold-light);
}

.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
}

.vehicle-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
  color: var(--white);
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: opacity 0.35s ease, transform 0.25s ease, border-color 0.35s ease;
}

.vehicle-card:hover {
  border-color: rgba(198, 166, 106, 0.48);
}

.vehicle-card.is-filtered-out {
  display: none;
}

.vehicle-image {
  aspect-ratio: 1.31;
}

.vehicle-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -30%;
  left: -90%;
  width: 55%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  transform: rotate(14deg);
  transition: left 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.vehicle-card:hover .vehicle-image::before {
  left: 145%;
}

.vehicle-image img {
  filter: saturate(0.78) contrast(1.04);
}

.vehicle-card:nth-child(2) .vehicle-image img {
  object-position: 67% center;
}

.new-badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 15px;
  padding: 6px 9px;
  border: 1px solid rgba(228, 199, 137, 0.4);
  background: rgba(5, 5, 5, 0.68);
  color: var(--gold-light);
  backdrop-filter: blur(8px);
  font-size: 7px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vehicle-body {
  min-height: 190px;
  padding: 25px 74px 27px 24px;
}

.vehicle-body h3 {
  font-size: clamp(23px, 2vw, 30px);
}

.vehicle-body h3 em {
  color: var(--gold-light);
}

.vehicle-specs {
  gap: 10px;
  margin-top: 17px;
}

.vehicle-specs span:not(:last-child)::after {
  margin-left: 10px;
}

.circle-link {
  right: 22px;
  bottom: 24px;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
}

.circle-link:hover {
  background: var(--gold-light);
  color: #050505;
}

.service-item {
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(198, 166, 106, 0.06), transparent 45%);
  transform: translateX(-105%);
  transition: transform 0.5s ease;
}

.service-item:hover::before {
  transform: translateX(0);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.magnetic {
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.2s ease, background 0.25s ease;
}

.magnetic:hover {
  transform: translate(var(--mx, 0), calc(var(--my, 0) - 2px));
}

@media (max-width: 1120px) {
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-actions {
    gap: 5px;
  }

  .orbit-one {
    right: -10%;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.scrolled {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .header-actions {
    justify-self: end;
  }

  .language-switch {
    padding-inline: 8px;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .primary-nav {
    z-index: 1;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    display: none;
  }

  .fleet-toolbar {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .language-switch {
    gap: 5px;
  }

  .language-switch i {
    width: 12px;
  }

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

  .vehicle-image {
    aspect-ratio: 1.2;
  }

  .vehicle-body {
    min-height: 180px;
  }

  .marquee-track {
    min-height: 58px;
    gap: 25px;
    animation-duration: 22s;
  }

  .marquee-track span {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .media-caption > span:first-child {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .vehicle-card {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .line-reveal > span > i {
    transition: none;
  }

  .marquee-track,
  .hero-orbit,
  .loader-mark,
  .loader-line span {
    animation: none !important;
  }

  .line-reveal > span > i {
    transform: none;
  }
}

/* V3 — leadership, service team and vehicle detail experience */
.vehicle-card[data-vehicle] {
  cursor: pointer;
}

.vehicle-card[data-vehicle]:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 5px;
}

.circle-link {
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.people {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(198, 166, 106, 0.09), transparent 23%),
    #050505;
}

.people::before {
  content: "BALI";
  position: absolute;
  top: 80px;
  right: -2vw;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--serif);
  font-size: min(28vw, 420px);
  line-height: 0.7;
  pointer-events: none;
}

.people-heading {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
  margin-bottom: 64px;
}

.people-heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.leadership {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.72fr);
  min-height: 650px;
  border: 1px solid var(--line);
  background: #090909;
}

.leadership-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #050505;
}

.leadership-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 64%, rgba(7, 7, 7, 0.65)),
    linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.leadership-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.03);
  transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.leadership-media > img.is-changing {
  opacity: 0;
  transform: scale(1.02);
}

.leadership-count {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.leadership-count i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

    .leadership-nav {
        position: absolute;
        z-index: 3;
        right: 18px;
        bottom: 16px;
        display: flex;
        gap: 9px;
    }

.leadership-nav-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.58);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.leadership-nav-button:hover,
.leadership-nav-button:focus-visible {
  border-color: var(--gold-light);
  background: rgba(187, 153, 88, 0.2);
  color: var(--gold-light);
  outline: none;
}

.leadership-nav-button .ui-icon {
  width: 17px;
  height: 17px;
  margin: 0;
}

.leadership-nav-button.is-prev .ui-icon {
  transform: rotate(180deg);
}

.leadership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 78px);
  background:
    radial-gradient(circle at 100% 0, rgba(198, 166, 106, 0.12), transparent 32%),
    #0a0a0a;
}

.leadership-role,
.people-card span {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.leadership-copy h3 {
  max-width: 440px;
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.leadership-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.leadership-copy blockquote {
  margin: 32px 0 38px;
  padding-left: 19px;
  border-left: 1px solid var(--gold);
  color: #d8d3ca;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.ceo-thumbs {
  display: flex;
  gap: 10px;
}

.ceo-thumb {
  position: relative;
  width: 86px;
  aspect-ratio: 1.35;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050505;
  cursor: pointer;
  opacity: 0.48;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ceo-thumb:hover,
.ceo-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-3px);
}

.ceo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, minmax(290px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.people-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.people-card-wide {
  grid-row: 1 / 3;
}

.people-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.9) 100%);
}

.people-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.people-card-wide img {
  object-position: center;
}

.people-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.02);
}

.people-card > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.people-card h3 {
  margin: 10px 0 5px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 39px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.people-card p {
  max-width: 520px;
  margin: 0;
  color: #aaa7a1;
  font-size: 11px;
}

body.modal-open {
  overflow: hidden;
}

.vehicle-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vehicle-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  cursor: zoom-out;
}

.vehicle-dialog {
  position: relative;
  width: min(1420px, 96vw);
  height: min(860px, calc(100dvh - 56px));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  overflow: hidden;
  border: 1px solid rgba(198, 166, 106, 0.3);
  outline: none;
  background: #080808;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.vehicle-modal.is-open .vehicle-dialog {
  transform: translateY(0) scale(1);
}

.vehicle-modal-close {
  position: absolute;
  z-index: 5;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.vehicle-modal-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

.vehicle-modal-close span {
  position: absolute;
  top: 21px;
  left: 12px;
  width: 19px;
  height: 1px;
  background: #fff;
}

.vehicle-modal-close span:first-child { transform: rotate(45deg); }
.vehicle-modal-close span:last-child { transform: rotate(-45deg); }

.modal-gallery {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 104px;
  border-right: 1px solid var(--line);
}

.modal-main-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #050505;
}

.modal-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: opacity 0.28s ease, transform 0.5s ease;
}

.modal-main-image img.is-changing {
  opacity: 0;
  transform: scale(1.02);
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: #080808;
}

.modal-thumb {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #111;
  cursor: pointer;
  opacity: 0.48;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.modal-thumb:hover,
.modal-thumb.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  min-width: 0;
  overflow-y: auto;
  padding: clamp(58px, 5vw, 84px) clamp(36px, 4vw, 64px) 46px;
  background:
    radial-gradient(circle at 100% 0, rgba(198, 166, 106, 0.12), transparent 27%),
    #090909;
  scrollbar-color: rgba(198, 166, 106, 0.4) transparent;
}

.modal-kicker,
.modal-service > span {
  display: block;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 19px 0 25px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.modal-description {
  margin: 0;
  color: #aaa7a1;
  font-size: 13px;
  line-height: 1.8;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 33px 0 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.modal-specs span {
  min-height: 59px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #c5c0b8;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-service {
  padding-top: 3px;
}

.modal-service > p {
  margin: 14px 0 21px;
  color: #aaa7a1;
  font-size: 12px;
  line-height: 1.75;
}

.modal-service ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.modal-service li {
  position: relative;
  padding: 12px 0 12px 19px;
  border-bottom: 1px solid var(--line);
  color: #d0ccc4;
  font-size: 10px;
}

.modal-service li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.modal-book {
  width: 100%;
}

@media (max-width: 1120px) {
  .people-heading {
    gap: 40px;
  }

  .leadership {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  }

  .vehicle-dialog {
    grid-template-columns: minmax(0, 1.1fr) minmax(370px, 0.9fr);
  }
}

@media (max-width: 820px) {
  .people-heading {
    display: grid;
    gap: 25px;
  }

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

  .leadership-media {
    min-height: auto;
    aspect-ratio: 1.35;
  }

  .leadership-media::after {
    background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, 0.62));
  }

  .leadership-nav {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 16px;
    display: flex;
    gap: 9px;
  }

  .service-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .people-card-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1.55;
  }

  .vehicle-modal {
    padding: 12px;
  }

  .vehicle-dialog {
    width: 100%;
    height: calc(100dvh - 24px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(390px, 47vh) auto;
    overflow-y: auto;
  }

  .modal-gallery {
    grid-template-rows: minmax(0, 1fr) 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .modal-copy {
    overflow: visible;
    padding: 50px 34px 40px;
  }
}

@media (max-width: 560px) {
  .people-heading {
    margin-bottom: 38px;
  }

  .leadership {
    border-inline: 0;
  }

  .leadership-media {
    aspect-ratio: 1.05;
  }

  .leadership-media > img {
    object-position: 54% center;
  }

  .leadership-count {
    left: 18px;
    bottom: 29px;
  }

  .leadership-nav {
    right: 16px;
    bottom: 15px;
  }

  .leadership-nav-button {
    width: 44px;
    height: 44px;
  }

  .leadership-copy {
    padding: 43px 24px 47px;
  }

  .leadership-copy h3 {
    font-size: 42px;
  }

  .leadership-copy blockquote {
    margin-bottom: 30px;
  }

  .service-gallery {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .people-card-wide {
    grid-column: auto;
    aspect-ratio: 0.95;
  }

  .people-card {
    min-height: 390px;
    border-inline: 0;
  }

  .people-card p {
    max-width: 90%;
  }

  .vehicle-modal {
    padding: 0;
  }

  .vehicle-dialog {
    height: 100dvh;
    grid-template-rows: 44vh auto;
    border: 0;
  }

  .vehicle-modal-close {
    position: fixed;
    top: 14px;
    right: 14px;
  }

  .modal-gallery {
    grid-template-rows: minmax(0, 1fr) 68px;
  }

  .modal-copy {
    padding: 40px 20px 34px;
  }

  .modal-copy h2 {
    font-size: 45px;
  }

  .modal-specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-media > img,
  .people-card img,
  .vehicle-dialog,
  .modal-main-image img {
    transition: none;
  }
}

/* V4 — official Bali logo and single-image vehicle modals */
.brand-mark {
  width: 62px;
  height: 62px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark img,
.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.scrolled .brand-mark {
  width: 52px;
  height: 52px;
}

.loader-mark {
  width: 118px;
  height: 118px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.modal-gallery {
  grid-template-rows: minmax(0, 1fr);
}

@media (max-width: 640px) {
  .hero {
    background-image: url("assets/hero-s-class-2026-mobile.webp");
  }

  .booking-backdrop {
    background-image: none;
  }

  .brand-mark,
  .site-header.scrolled .brand-mark {
    width: 48px;
    height: 48px;
  }

  .loader-mark {
    width: 104px;
    height: 104px;
  }
}

.people-card-wide::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 38%, rgba(0, 0, 0, 0.86) 100%);
}

.people-card-wide img {
  filter: saturate(0.86) contrast(1.02) brightness(1.05);
}

/* V5 — mobile image performance and platform-consistent interface icons */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon.icon-diamond {
  width: 8px;
  height: 8px;
  fill: currentColor;
  stroke: none;
}

.header-cta b,
.button b,
.text-link b,
.arrow-link b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.circle-link,
.service-item > a {
  font-size: 0;
}

.circle-link .ui-icon,
.service-item > a .ui-icon {
  width: 16px;
  height: 16px;
  margin: auto;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
