:root {
  --ink: #080909;
  --ink-soft: #101111;
  --ink-raised: #171817;
  --porcelain: #f2efe7;
  --paper: #faf7f0;
  --champagne: #c7a461;
  --champagne-light: #e6cb94;
  --white: #f7f5ef;
  --muted-dark: #686863;
  --muted-light: #aaa9a4;
  --line-dark: rgba(8, 9, 9, 0.15);
  --line-light: rgba(247, 245, 239, 0.17);
  --display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1500px, calc(100vw - 96px));
  --header-h: 78px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--champagne);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ol,
fieldset {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

:focus-visible {
  outline: 2px solid var(--champagne-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease;
}

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

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

.section-dark {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.section-porcelain {
  position: relative;
  background: var(--porcelain);
  color: var(--ink);
  color-scheme: light;
}

main > section[id] {
  scroll-margin-top: 76px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label > span:first-child {
  color: var(--champagne);
}

.section-label::after {
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.35;
}

.eyebrow {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 900ms var(--ease-out), transform 1100ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(247, 245, 239, 0.08);
  background: linear-gradient(to bottom, rgba(8, 9, 9, 0.72), rgba(8, 9, 9, 0));
  isolation: isolate;
  transform: translateZ(0);
  transition: height 350ms var(--ease-out), background-color 350ms ease, border-color 350ms ease, backdrop-filter 350ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 68px;
  border-color: rgba(247, 245, 239, 0.13);
  background: rgba(8, 9, 9, 0.87);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  display: flex;
  width: min(1680px, calc(100vw - 56px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-lockup img,
.footer-brand img {
  width: auto;
  flex: 0 0 auto;
}

.brand-type,
.footer-brand > div {
  display: grid;
  line-height: 1;
}

.brand-type strong,
.footer-brand strong {
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.brand-type small,
.footer-brand small {
  margin-top: 6px;
  font-size: 0.54rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}

.desktop-nav a,
.header-actions,
.mobile-menu a {
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--champagne);
  content: "";
  transition: transform 350ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(247, 245, 239, 0.4);
}

.language-button {
  min-width: 32px;
  min-height: 44px;
  padding: 5px 2px;
  border: 0;
  background: transparent;
  color: rgba(247, 245, 239, 0.48);
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.language-button.is-active {
  color: var(--champagne-light);
}

.header-book,
.mobile-menu-book {
  display: grid;
  min-height: 44px;
  padding: 0 23px;
  place-items: center;
  background: var(--champagne);
  color: var(--ink);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.header-book:hover,
.header-book:focus-visible,
.mobile-menu-book:hover,
.mobile-menu-book:focus-visible {
  transform: translateY(-2px);
  background: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 260ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 68px;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 42px 28px max(32px, env(safe-area-inset-bottom));
  align-content: start;
  gap: 0;
  background: rgba(8, 9, 9, 0.985);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a:not(.mobile-menu-book) {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.5rem, 7vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: none;
}

.mobile-menu-book {
  margin-top: 36px;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  height: 430svh;
  background: var(--ink);
}

.hero-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-media,
.hero-video,
.hero-vignette,
.hero-grid,
.hero-exit {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.02);
  will-change: transform, opacity;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08) brightness(0.72);
}

.hero-vignette {
  background:
    radial-gradient(circle at 52% 47%, transparent 0 22%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.4), rgba(8, 9, 9, 0.03) 45%, rgba(8, 9, 9, 0.62));
}

.hero-grid {
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 8.333vw 100%, 100% 100%;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.hero-word {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -53%);
  color: transparent;
  font-family: var(--display);
  font-size: clamp(4.6rem, 14.5vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.8;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(247, 245, 239, 0.4);
  will-change: transform, opacity;
}

.hero-seed {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  transform: translate(-50%, -50%);
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  will-change: transform, opacity;
}

.hero-seed img {
  width: clamp(52px, 5vw, 86px);
  height: auto;
}

.hero-seed > div {
  display: grid;
  line-height: 1;
}

.hero-seed strong {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-seed small {
  margin-top: 11px;
  font-size: clamp(0.58rem, 0.8vw, 0.8rem);
  letter-spacing: 0.62em;
  text-transform: uppercase;
}

.hero-giant-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(1060px, 94vw, 1400px);
  max-width: none;
  height: auto;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(-50%, -45%, 0) scale(0.075);
  transform-box: border-box;
  transform-origin: 50% 48%;
  shape-rendering: geometricPrecision;
  will-change: transform, opacity;
}

.hero-paris {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 142px;
  color: var(--champagne-light);
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-meta {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  display: flex;
  gap: 18px;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.58;
}

.hero-meta-left {
  left: 32px;
}

.hero-meta-right {
  right: 32px;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(247, 245, 239, 0.3);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  48%, 55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.video-control {
  position: absolute;
  z-index: 6;
  right: 28px;
  bottom: 70px;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(247, 245, 239, 0.24);
  align-items: center;
  gap: 8px;
  background: rgba(8, 9, 9, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 220ms ease;
}

.video-control svg {
  width: 18px;
  height: 18px;
}

.video-control .play-icon,
.video-control.is-paused .pause-icon {
  display: none;
}

.video-control.is-paused .play-icon {
  display: block;
}

.hero-exit {
  --hero-exit-content-opacity: 0;
  --hero-exit-content-y: 32px;
  z-index: 5;
  display: flex;
  padding: clamp(112px, 10vw, 168px) max(32px, calc((100vw - 1680px) / 2)) clamp(34px, 4vw, 72px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--ink);
  background: var(--porcelain);
  transform: translate3d(0, 104%, 0);
  will-change: transform;
}

.hero-exit > * {
  opacity: var(--hero-exit-content-opacity);
  transform: translate3d(0, var(--hero-exit-content-y), 0);
  will-change: transform, opacity;
}

.hero-exit-meta {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 18, 18, 0.18);
  justify-content: space-between;
  gap: 24px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-exit-title {
  max-width: 1240px;
  margin: auto 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.3vw, 10rem);
  font-weight: 560;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero-exit-title span,
.hero-exit-title em {
  display: block;
}

.hero-exit-title em {
  color: var(--champagne);
  font-style: normal;
}

.hero-exit-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(16, 18, 18, 0.52);
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.hero-exit-rule i {
  display: block;
  width: 72px;
  height: 1px;
  background: var(--champagne);
}

/* Manifesto */
.manifesto {
  z-index: 3;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) 0 clamp(96px, 11vw, 175px);
}

.route-line {
  position: absolute;
  pointer-events: none;
}

.route-line-a {
  top: 2%;
  right: -8vw;
  width: min(46vw, 700px);
  height: min(46vw, 700px);
  border: 1px solid rgba(199, 164, 97, 0.32);
  border-radius: 50%;
  clip-path: inset(0 48% 0 0);
  transform: rotate(-18deg);
}

.route-line-a::before,
.route-line-a::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  background: var(--porcelain);
  content: "";
}

.route-line-a::before {
  top: 26%;
  left: 6%;
}

.route-line-a::after {
  bottom: 16%;
  left: 7%;
}

.manifesto-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 24px;
}

.manifesto-title {
  max-width: 1180px;
  font-size: clamp(3.5rem, 7.4vw, 8.5rem);
  font-weight: 500;
}

.manifesto-title span,
.manifesto-title em {
  display: block;
}

.manifesto-title em {
  margin-left: 8.5vw;
  color: var(--champagne);
  font-style: normal;
}

.manifesto-story {
  display: grid;
  margin-top: clamp(80px, 10vw, 150px);
  grid-template-columns: 2fr 5fr 3fr 2fr;
  gap: 24px;
}

.story-copy {
  grid-column: 2 / 3;
}

.story-copy .story-lead {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.55vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.story-copy > p:not(.eyebrow):not(.story-lead) {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.arrow-link {
  display: inline-flex;
  margin-top: 38px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 28px;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.arrow-link svg,
.contact-map > a svg,
.booking-submit svg {
  width: 21px;
  height: 21px;
  transition: transform 280ms var(--ease-out);
}

.arrow-link:hover svg,
.arrow-link:focus-visible svg,
.contact-map > a:hover svg,
.booking-submit:hover svg {
  transform: translateX(6px);
}

.story-date {
  display: flex;
  grid-column: 3 / 4;
  min-height: 260px;
  padding: 24px 0 0 36px;
  border-left: 1px solid var(--line-dark);
  flex-direction: column;
  justify-content: space-between;
}

.story-date span,
.story-date small {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-date strong {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.story-gallery {
  position: relative;
  display: grid;
  min-height: min(68vw, 950px);
  margin-top: clamp(90px, 12vw, 180px);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 16px;
}

.story-image {
  position: relative;
  overflow: hidden;
  background: #d6d2ca;
}

.story-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(var(--parallax-y, -4%));
  transition: transform 120ms linear;
  will-change: transform;
}

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

.story-image-main {
  grid-column: 1 / 10;
  grid-row: 1 / 9;
}

.story-image-side {
  z-index: 2;
  grid-column: 8 / 13;
  grid-row: 6 / 11;
  border: 12px solid var(--porcelain);
}

.story-image figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-mark {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: 3%;
  display: grid;
  width: clamp(115px, 14vw, 240px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 164, 97, 0.7);
  place-items: center;
  background: var(--ink);
}

.story-mark img {
  width: 38%;
}

/* Marquee */
.marquee-band {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 24px 0 21px;
  border-top: 1px solid rgba(199, 164, 97, 0.5);
  border-bottom: 1px solid rgba(199, 164, 97, 0.5);
  background: var(--champagne);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 26s linear infinite;
  will-change: transform;
}

.marquee-track span {
  padding: 0 32px;
  font-family: var(--display);
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

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

/* Shared section headings */
.section-heading {
  display: grid;
  padding-top: clamp(110px, 12vw, 190px);
  padding-bottom: clamp(62px, 7vw, 100px);
  grid-template-columns: 3fr 9fr;
  gap: 24px;
}

.section-heading > div {
  max-width: 960px;
}

.section-heading h2,
.commitments-copy > h2,
.amenities-heading h2,
.booking-intro h2,
.contact-copy h2 {
  font-size: clamp(3rem, 6.2vw, 7.2rem);
}

.section-heading > div > p {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.section-heading-light .section-label {
  color: var(--white);
}

/* Services */
.services {
  z-index: 2;
  overflow: hidden;
  padding-bottom: clamp(110px, 12vw, 190px);
}

.services::before {
  position: absolute;
  top: 12%;
  right: -18vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(199, 164, 97, 0.18);
  border-radius: 50%;
  content: "";
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(310px, 34vw, 500px);
  gap: 14px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-raised);
}

.service-card-transfer {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.service-card-meet {
  grid-column: 8 / 13;
  grid-row: 1;
}

.service-card-disposition {
  grid-column: 8 / 13;
  grid-row: 2;
}

.service-card-excursion {
  grid-column: 1 / 5;
  grid-row: 3;
}

.service-card-event {
  grid-column: 5 / 9;
  grid-row: 3;
}

.service-card-wedding {
  grid-column: 9 / 13;
  grid-row: 3;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 1.25s var(--ease-out), filter 700ms ease;
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.055);
  filter: saturate(0.95) contrast(1.03);
}

.service-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.06), rgba(8, 9, 9, 0.18) 45%, rgba(8, 9, 9, 0.9));
}

.service-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 245, 239, 0.5);
  border-radius: 50%;
  place-items: center;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.service-copy {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.service-copy h3 {
  font-size: clamp(2rem, 3.5vw, 4.7rem);
  font-weight: 500;
}

.service-card:not(.service-card-transfer) .service-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
}

.service-copy p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(247, 245, 239, 0.75);
  font-size: clamp(0.85rem, 1vw, 1rem);
}

/* Commitments */
.commitments {
  z-index: 2;
  overflow: hidden;
  padding: clamp(110px, 13vw, 210px) 0;
  border-top: 1px solid var(--line-light);
}

.commitment-watermark {
  position: absolute;
  top: -0.12em;
  right: -0.04em;
  color: transparent;
  font-family: var(--display);
  font-size: min(46vw, 760px);
  font-weight: 800;
  letter-spacing: -0.2em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(199, 164, 97, 0.16);
}

.commitments-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.commitments-media {
  position: sticky;
  top: 110px;
  min-height: min(68vw, 890px);
  overflow: hidden;
}

.commitments-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 66%;
  transform: translateY(var(--parallax-y, -4%));
  filter: saturate(0.78) contrast(1.05);
}

.commitments-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.75));
  content: "";
}

.commitments-media figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 245, 239, 0.66);
  font-size: 0.57rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.commitments-copy {
  padding-top: 8vh;
}

.commitments-copy > h2 {
  margin-top: 38px;
}

.commitment-list {
  margin-top: clamp(65px, 8vw, 120px);
  padding: 0;
  list-style: none;
}

.commitment-list li {
  display: grid;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.commitment-list li > span {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.commitment-list h3 {
  font-size: clamp(1.5rem, 2.1vw, 2.6rem);
  letter-spacing: -0.035em;
}

.commitment-list p {
  max-width: 620px;
  margin-top: 13px;
  color: var(--muted-light);
}

/* Fleet */
.fleet {
  z-index: 2;
  overflow: hidden;
  padding-bottom: clamp(110px, 11vw, 180px);
  border-top: 1px solid var(--line-light);
}

.fleet-heading {
  padding-top: clamp(110px, 12vw, 190px);
}

.fleet-console {
  display: grid;
  min-height: 730px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(360px, 4fr) minmax(0, 8fr);
}

.fleet-copy-panel {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 42px 42px 26px 0;
  border-right: 1px solid var(--line-light);
  flex-direction: column;
}

.fleet-counter {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--champagne-light);
  font-family: var(--display);
}

.fleet-counter span {
  font-size: clamp(3.4rem, 5vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.fleet-counter small {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.fleet-active-copy {
  margin-top: 50px;
}

.fleet-active-copy h3 {
  max-width: 480px;
  margin-top: 14px;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
}

.fleet-active-copy > p:not(.eyebrow) {
  max-width: 480px;
  min-height: 76px;
  margin-top: 20px;
  color: var(--muted-light);
}

.fleet-capacities {
  display: flex;
  margin-top: 34px;
  gap: 36px;
}

.fleet-capacities > span {
  display: grid;
  grid-template-columns: 24px auto;
  column-gap: 11px;
  align-items: center;
}

.fleet-capacities svg {
  width: 24px;
  height: 24px;
  color: var(--champagne);
}

.fleet-capacities strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.fleet-capacities small {
  grid-column: 2;
  color: var(--muted-light);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-tabs {
  margin-top: auto;
}

.fleet-tab {
  display: grid;
  width: 100%;
  min-height: 58px;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 50px 1fr;
  align-items: center;
  background: transparent;
  color: rgba(247, 245, 239, 0.46);
  cursor: pointer;
  text-align: left;
  transition: color 260ms ease, padding-left 360ms var(--ease-out);
}

.fleet-tab span {
  color: var(--champagne);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.fleet-tab strong {
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fleet-tab:hover,
.fleet-tab:focus-visible,
.fleet-tab.is-active {
  padding-left: 10px;
  color: var(--white);
}

.fleet-visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 48% 55%, rgba(199, 164, 97, 0.16), transparent 35%),
    linear-gradient(145deg, #171817, #090a09 62%);
}

.fleet-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 12.5% 100%, 100% 100%;
  content: "";
}

.fleet-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -58%);
  color: transparent;
  font-family: var(--display);
  font-size: min(38vw, 560px);
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(199, 164, 97, 0.34);
  transition: transform 650ms var(--ease-out), -webkit-text-stroke-color 420ms ease;
}

.fleet-road {
  position: absolute;
  right: -8%;
  bottom: 5%;
  left: -8%;
  height: 28%;
  transform: perspective(500px) rotateX(65deg);
  border-top: 1px solid rgba(199, 164, 97, 0.45);
  background: repeating-linear-gradient(90deg, transparent 0 12%, rgba(247,245,239,.08) 12.2% 12.4%, transparent 12.6% 25%);
}

.fleet-visual > img {
  position: relative;
  z-index: 2;
  width: min(82%, 920px);
  max-height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 45px 42px rgba(0, 0, 0, 0.65));
  transition: opacity 280ms ease, transform 650ms var(--ease-out);
}

.fleet-visual[data-vehicle="s"] > img {
  width: min(92%, 960px);
  transform: translate3d(8%, -1%, 0) scale(1.12);
}

.fleet-visual[data-vehicle="e"] > img {
  width: min(92%, 920px);
  transform: translate3d(-8%, 5%, 0) scale(1.15);
}

.fleet-visual[data-vehicle="s"] {
  background:
    radial-gradient(circle at 68% 48%, rgba(199, 164, 97, 0.22), transparent 34%),
    linear-gradient(145deg, #171817, #090a09 62%);
}

.fleet-visual[data-vehicle="e"] {
  background:
    radial-gradient(circle at 31% 57%, rgba(247, 245, 239, 0.12), transparent 33%),
    linear-gradient(215deg, #151616, #080909 64%);
}

.fleet-visual[data-vehicle="s"] .fleet-outline {
  transform: translate(-28%, -59%);
}

.fleet-visual[data-vehicle="e"] .fleet-outline {
  transform: translate(-82%, -56%);
  -webkit-text-stroke-color: rgba(247, 245, 239, 0.28);
}

.fleet-visual[data-vehicle="e"] .fleet-road {
  transform: perspective(500px) rotateX(65deg) translateX(-7%) skewX(-7deg);
}

.fleet-visual[data-vehicle="v"] > img {
  width: min(86%, 900px);
  transform: translate3d(2%, 0, 0) scale(1);
}

.fleet-visual[data-vehicle="sprinter"] > img {
  width: min(84%, 880px);
  transform: translate3d(1%, 1%, 0) scale(0.98);
}

.fleet-visual.is-switching > img {
  opacity: 0;
  transform: translateX(25px) scale(0.97);
}

.fleet-visual-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 23px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fleet-visual-label span {
  color: var(--muted-light);
}

.fleet-note {
  max-width: 940px;
  margin-top: 26px;
  margin-right: max(48px, calc((100vw - 1500px) / 2));
  margin-left: auto;
  color: var(--muted-light);
  font-size: 0.75rem;
  text-align: right;
}

.fleet-requested {
  display: grid;
  margin-top: 54px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 2.5fr 6.5fr 3fr;
  gap: 28px;
  align-items: start;
}

.fleet-requested > p:not(.eyebrow) {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.fleet-requested small {
  color: var(--muted-light);
  font-size: 0.69rem;
}

/* Amenities */
.amenities {
  z-index: 3;
  overflow: hidden;
  padding: clamp(110px, 11vw, 175px) 0 clamp(100px, 10vw, 155px);
}

.amenities::after {
  position: absolute;
  right: -2vw;
  bottom: -0.22em;
  color: rgba(8, 9, 9, 0.035);
  content: "11";
  font-family: var(--display);
  font-size: min(48vw, 730px);
  font-weight: 800;
  letter-spacing: -0.2em;
  line-height: 0.8;
}

.amenities-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 24px;
}

.amenities-heading h2 {
  max-width: 900px;
}

.amenities-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(6, 1fr);
}

.amenities-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px 20px 24px;
  border-left: 1px solid var(--line-dark);
}

.amenities-grid article:last-child {
  border-right: 1px solid var(--line-dark);
}

.amenities-grid svg {
  width: 46px;
  height: 46px;
  color: var(--champagne);
  stroke-width: 1.2;
}

.amenities-grid article > span {
  position: absolute;
  top: 30px;
  right: 18px;
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.amenities-grid h3 {
  position: absolute;
  right: 18px;
  bottom: 22px;
  left: 20px;
  font-size: clamp(1.15rem, 1.5vw, 1.7rem);
  line-height: 1.08;
}

/* Paris interlude */
.paris-interlude {
  position: relative;
  z-index: 2;
  height: 118svh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.paris-interlude > img:first-child {
  position: absolute;
  inset: -8%;
  width: 116%;
  max-width: none;
  height: 116%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1) brightness(0.76);
  will-change: transform;
}

.paris-interlude-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 50%, transparent 0 18%, rgba(8,9,9,.25) 55%, rgba(8,9,9,.86) 100%);
}

.paris-interlude-word {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: max-content;
  transform: translate(-50%, -55%);
  color: transparent;
  font-family: var(--display);
  font-size: min(24vw, 390px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(247, 245, 239, 0.55);
}

.paris-interlude-mark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(12vw, 180px);
  transform: translate(-50%, -50%);
}

.paris-interlude-copy {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1500px) / 2));
  bottom: 7vh;
  text-align: right;
}

.paris-interlude-copy span {
  color: var(--champagne-light);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.paris-interlude-copy p {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.7vw, 3.5rem);
  letter-spacing: -0.04em;
}

/* Booking */
.booking {
  z-index: 3;
  overflow: hidden;
  padding: clamp(110px, 13vw, 210px) 0;
}

.booking::before {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background: radial-gradient(circle at 88% 32%, rgba(199,164,97,.28), transparent 28%);
  content: "";
}

.booking-route {
  position: absolute;
  top: -28%;
  left: -22vw;
  width: 58vw;
  height: 115%;
  border: 1px solid rgba(199, 164, 97, 0.35);
  border-radius: 50%;
  clip-path: inset(0 0 0 58%);
  transform: rotate(12deg);
}

.booking-watermark {
  position: absolute;
  right: -0.1em;
  bottom: -0.09em;
  color: transparent;
  font-family: var(--display);
  font-size: min(48vw, 760px);
  font-weight: 800;
  letter-spacing: -0.2em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(199, 164, 97, 0.2);
}

.booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.booking-intro {
  position: sticky;
  top: 110px;
}

.booking-intro h2 {
  margin-top: 38px;
}

.booking-intro > p:not(.section-label) {
  max-width: 500px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.booking-future {
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.booking-future p {
  display: grid;
  min-height: 58px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
}

.booking-future span {
  color: var(--champagne);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.booking-future strong {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-future small {
  color: var(--muted-light);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form {
  padding: clamp(26px, 3vw, 48px);
  border: 1px solid rgba(247, 245, 239, 0.19);
  background: rgba(15, 16, 15, 0.72);
  backdrop-filter: blur(16px);
}

.service-choice {
  display: flex;
  padding: 0 0 34px;
  border: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.service-choice legend {
  width: 100%;
  margin-bottom: 16px;
  color: var(--muted-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-choice label {
  cursor: pointer;
}

.service-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-choice span {
  display: grid;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(247, 245, 239, 0.22);
  place-items: center;
  font-family: var(--display);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.service-choice input:checked + span {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--ink);
}

.service-choice input:focus-visible + span {
  outline: 2px solid var(--champagne-light);
  outline-offset: 3px;
}

.booking-fields {
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.form-field {
  display: flex;
  min-width: 0;
  min-height: 92px;
  padding: 16px 16px 12px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
}

.form-field-wide {
  grid-column: span 3;
}

.form-field-compact {
  grid-column: span 2;
}

.form-field-contact {
  grid-column: span 3;
}

.form-field > span {
  color: var(--champagne-light);
  font-family: var(--display);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: max(16px, 0.91rem);
}

.form-field input::placeholder {
  color: rgba(247, 245, 239, 0.4);
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted-light) 50%), linear-gradient(135deg, var(--muted-light) 50%, transparent 50%);
  background-position: calc(100% - 11px) 54%, calc(100% - 6px) 54%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-field:focus-within {
  background: rgba(247, 245, 239, 0.035);
}

input[type="date"],
input[type="time"] {
  color-scheme: dark;
}

.form-error {
  margin-top: 15px;
  color: #ffb7a7;
  font-size: 0.8rem;
}

.booking-submit {
  display: flex;
  width: 100%;
  min-height: 62px;
  margin-top: 14px;
  padding: 0 22px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  background: var(--champagne);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 250ms ease, transform 250ms var(--ease-out);
}

.booking-submit:hover,
.booking-submit:focus-visible {
  transform: translateY(-2px);
  background: var(--paper);
}

.booking-next-step {
  margin-top: 14px;
  color: var(--champagne-light);
  font-size: 0.69rem;
}

.prototype-note {
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 0.63rem;
}

.direct-actions {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
}

.direct-actions a {
  display: grid;
  min-height: 72px;
  padding: 16px 18px;
  align-content: center;
  transition: background-color 220ms ease;
}

.direct-actions a + a {
  border-left: 1px solid var(--line-light);
}

.direct-actions a:hover,
.direct-actions a:focus-visible {
  background: rgba(247, 245, 239, 0.04);
}

.direct-actions span {
  font-family: var(--display);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-actions small {
  margin-top: 5px;
  color: var(--muted-light);
}

/* Contact */
.contact {
  z-index: 3;
  padding: clamp(110px, 12vw, 190px) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: stretch;
}

.contact-copy h2 {
  max-width: 630px;
  margin-top: 40px;
}

.contact-copy > p:not(.section-label) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted-dark);
}

.contact-details {
  display: grid;
  margin-top: 60px;
  border-top: 1px solid var(--line-dark);
  font-style: normal;
}

.contact-details a {
  display: grid;
  min-height: 72px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 110px 1fr;
  align-items: center;
  transition: color 220ms ease, padding-left 280ms var(--ease-out);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  padding-left: 10px;
  color: #765d2d;
}

.contact-details span {
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.35vw, 1.3rem);
  font-weight: 500;
  line-height: 1.25;
}

.contact-map {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 42%, rgba(199, 164, 97, 0.9) 0 3px, transparent 4px),
    linear-gradient(28deg, transparent 0 44%, rgba(8, 9, 9, 0.08) 44.2% 44.5%, transparent 44.7%),
    linear-gradient(117deg, transparent 0 57%, rgba(8, 9, 9, 0.06) 57.2% 57.5%, transparent 57.7%),
    #d8d5cd;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) sepia(0.15);
}

.contact-map > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  min-height: 58px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 3;
  padding: 74px 0 32px;
  border-top: 1px solid var(--line-light);
  background: var(--ink);
}

.footer-main {
  display: grid;
  padding-bottom: 58px;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  height: 52px;
}

.footer-main > p {
  max-width: 300px;
  color: var(--muted-light);
}

.footer-main nav {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-main nav a {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr 1fr;
  color: var(--muted-light);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  justify-self: end;
  color: var(--white);
}

.mobile-book {
  display: none;
}

/* Booking dialog */
.request-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(199, 164, 97, 0.6);
  border-radius: 0;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background: var(--ink-soft);
  color: var(--white);
}

.request-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.request-dialog h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.request-dialog > p:not(.eyebrow):not(.prototype-note) {
  margin-top: 20px;
  color: var(--muted-light);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-light);
  place-items: center;
  background: transparent;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 300;
}

.request-summary {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line-light);
}

.request-summary p {
  display: grid;
  min-height: 54px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.request-summary span {
  color: var(--champagne-light);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 500;
}

.dialog-actions {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dialog-actions a {
  display: grid;
  min-height: 54px;
  place-items: center;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-primary {
  background: var(--champagne);
  color: var(--ink);
}

.dialog-secondary {
  border: 1px solid var(--line-light);
}

/* Responsive */
@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 56px, 1500px);
  }

  .desktop-nav {
    gap: 22px;
  }

  .manifesto-head,
  .section-heading,
  .amenities-heading {
    grid-template-columns: 2.5fr 9.5fr;
  }

  .manifesto-story {
    grid-template-columns: 1fr 6fr 3fr 1fr;
  }

  .fleet-console {
    grid-template-columns: minmax(310px, 4fr) 7fr;
  }

  .fleet-copy-panel {
    padding-right: 28px;
  }

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

  .amenities-grid article:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .amenities-grid article:nth-child(5),
  .amenities-grid article:nth-child(6) {
    border-top: 1px solid var(--line-dark);
  }

  .amenities-grid article:nth-child(3) {
    border-right: 1px solid var(--line-dark);
  }

  .booking-layout {
    grid-template-columns: 4fr 7fr;
    gap: 52px;
  }

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

  .form-field-wide {
    grid-column: span 2;
  }
}

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

  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    width: calc(100vw - 40px);
  }

  .hero-meta-left,
  .hero-meta-right,
  .video-control span {
    display: none;
  }

  .video-control {
    right: 20px;
    bottom: 26px;
  }

  .hero-scroll {
    left: 20px;
    transform: none;
  }

  .hero-paris {
    right: 5vw;
    bottom: 13vh;
  }

  .manifesto-head,
  .section-heading,
  .amenities-heading {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .manifesto-title em {
    margin-left: 0;
  }

  .manifesto-story {
    grid-template-columns: 1fr 3fr;
  }

  .story-copy {
    grid-column: 1 / 3;
  }

  .story-date {
    grid-column: 2 / 3;
    min-height: 200px;
    margin-top: 40px;
  }

  .story-gallery {
    min-height: 820px;
  }

  .story-image-main {
    grid-column: 1 / 13;
    grid-row: 1 / 8;
  }

  .story-image-side {
    grid-column: 5 / 13;
    grid-row: 7 / 11;
  }

  .story-mark {
    top: 3%;
    right: 3%;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 440px;
  }

  .service-card,
  .service-card-transfer,
  .service-card-meet,
  .service-card-disposition,
  .service-card-excursion,
  .service-card-event,
  .service-card-wedding {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card-transfer {
    grid-column: span 2;
  }

  .commitments-layout,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .commitments-media,
  .booking-intro {
    position: relative;
    top: auto;
  }

  .commitments-media {
    min-height: 760px;
  }

  .commitments-copy {
    padding-top: 0;
  }

  .fleet-console {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fleet-copy-panel {
    padding: 32px 0;
    border-right: 0;
  }

  .fleet-tabs {
    margin-top: 50px;
  }

  .fleet-visual {
    min-height: 560px;
    border-top: 1px solid var(--line-light);
  }

  .fleet-outline {
    font-size: min(80vw, 560px);
  }

  .fleet-note {
    width: var(--shell);
    margin-right: auto;
  }

  .fleet-requested {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .paris-interlude {
    height: 100svh;
    min-height: 650px;
  }

  .paris-interlude-word {
    font-size: 31vw;
  }

  .paris-interlude-mark {
    width: 17vw;
  }

  .booking-intro h2 {
    max-width: 760px;
  }

  .contact-map {
    min-height: 560px;
  }
}

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

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .header-inner {
    width: calc(100vw - 28px);
  }

  .brand-type strong {
    font-size: 0.78rem;
  }

  .brand-type small {
    font-size: 0.46rem;
  }

  .language-switcher {
    gap: 4px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    height: 360svh;
  }

  .hero-pin {
    min-height: 520px;
  }

  .hero-word {
    font-size: 15.5vw;
    -webkit-text-stroke-color: rgba(247, 245, 239, 0.55);
  }

  .hero-seed {
    gap: 12px;
  }

  .hero-seed strong {
    font-size: 1.5rem;
    letter-spacing: 0.17em;
  }

  .hero-seed small {
    margin-top: 8px;
    font-size: 0.5rem;
    letter-spacing: 0.48em;
  }

  .hero-scroll span {
    display: none;
  }

  .hero-scroll i {
    width: 54px;
  }

  .hero-exit {
    padding: 92px 16px calc(94px + env(safe-area-inset-bottom));
    justify-content: flex-start;
  }

  .hero-exit-meta {
    font-size: 0.5rem;
    letter-spacing: 0.13em;
  }

  .hero-exit-title {
    margin: clamp(72px, 11svh, 110px) 0 0;
    font-size: clamp(3.25rem, 15vw, 5.2rem);
    line-height: 0.88;
  }

  .hero-exit-rule {
    margin-top: auto;
  }

  .hero-exit-rule i {
    width: 48px;
  }

  .manifesto,
  .services,
  .commitments,
  .fleet,
  .amenities,
  .booking,
  .contact {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .services .section-heading,
  .fleet .section-heading {
    padding-top: 0;
  }

  .manifesto-title,
  .section-heading h2,
  .commitments-copy > h2,
  .amenities-heading h2,
  .booking-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .manifesto-story {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .story-copy,
  .story-date {
    grid-column: 1;
  }

  .story-date {
    min-height: 160px;
    padding-left: 22px;
  }

  .story-gallery {
    min-height: 690px;
    margin-top: 80px;
  }

  .story-image-main {
    grid-row: 1 / 8;
  }

  .story-image-side {
    grid-column: 3 / 13;
    grid-row: 7 / 11;
    border-width: 7px;
  }

  .story-image figcaption {
    right: 13px;
    bottom: 11px;
    left: 13px;
    font-size: 0.5rem;
  }

  .story-mark {
    width: 108px;
  }

  .section-heading {
    padding-bottom: 48px;
  }

  .services-grid {
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: 510px;
    gap: 4px;
  }

  .service-card-transfer {
    grid-column: auto;
  }

  .service-copy,
  .service-number {
    left: 18px;
  }

  .service-copy {
    right: 18px;
    bottom: 20px;
  }

  .service-copy h3,
  .service-card:not(.service-card-transfer) .service-copy h3 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .commitments-media {
    min-height: 620px;
  }

  .commitment-list li {
    grid-template-columns: 42px 1fr;
  }

  .fleet-console {
    width: 100%;
  }

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

  .fleet-active-copy > p:not(.eyebrow) {
    min-height: 0;
  }

  .fleet-capacities {
    gap: 24px;
  }

  .fleet-tab {
    min-height: 62px;
    grid-template-columns: 42px 1fr;
  }

  .fleet-visual {
    min-height: 430px;
  }

  .fleet-visual[data-vehicle="s"] > img {
    width: 104%;
    transform: translate3d(9%, -1%, 0) scale(1.12);
  }

  .fleet-visual[data-vehicle="e"] > img {
    width: 106%;
    transform: translate3d(-6%, 6%, 0) scale(1.16);
  }

  .fleet-visual-label {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

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

  .amenities-grid article {
    min-height: 210px;
  }

  .amenities-grid article:nth-child(n) {
    border-top: 0;
    border-right: 0;
  }

  .amenities-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

  .amenities-grid article:nth-child(even) {
    border-right: 1px solid var(--line-dark);
  }

  .paris-interlude {
    min-height: 620px;
  }

  .paris-interlude-word {
    font-size: 32vw;
  }

  .paris-interlude-mark {
    width: 20vw;
  }

  .paris-interlude-copy {
    right: 16px;
    bottom: 7vh;
    left: 16px;
  }

  .booking-layout {
    gap: 64px;
  }

  .booking-form {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 20px;
  }

  .service-choice {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-choice legend {
    grid-column: 1;
  }

  .service-choice span {
    justify-content: start;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field-wide,
  .form-field-compact,
  .form-field-contact {
    grid-column: 1;
  }

  .form-field {
    min-height: 84px;
  }

  .direct-actions {
    grid-template-columns: 1fr;
  }

  .direct-actions a + a {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .booking-future p {
    grid-template-columns: 35px 1fr;
  }

  .booking-future small {
    display: none;
  }

  .contact-details a {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px;
  }

  .contact-map {
    min-height: 470px;
  }

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

  .footer-main nav {
    justify-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-bottom span:nth-child(2),
  .footer-bottom a {
    justify-self: start;
    text-align: left;
  }

  .mobile-book {
    position: fixed;
    z-index: 900;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    min-height: 54px;
    place-items: center;
    background: var(--champagne);
    color: var(--ink);
    font-family: var(--display);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
    transition: transform 350ms var(--ease-out), opacity 250ms ease;
    isolation: isolate;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-book span {
    position: relative;
    z-index: 1;
    display: block;
    transform: translateZ(0);
  }

  .mobile-book.is-hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }

  .request-summary p {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-lockup img {
    width: 24px;
  }

  .brand-type strong {
    font-size: 0.7rem;
  }

  .brand-type small {
    font-size: 0.42rem;
  }

  .hero-seed img {
    width: 43px;
  }

  .hero-seed strong {
    font-size: 1.25rem;
  }

  .manifesto-title,
  .section-heading h2,
  .commitments-copy > h2,
  .amenities-heading h2,
  .booking-intro h2,
  .contact-copy h2 {
    font-size: 2.6rem;
  }

  .services-grid {
    grid-auto-rows: 455px;
  }

  .fleet-capacities {
    flex-direction: column;
    gap: 14px;
  }

  .amenities-grid h3 {
    font-size: 1rem;
  }

  .booking-form {
    padding: 16px;
  }

  .request-dialog {
    padding: 28px 20px;
  }
}

@media (orientation: landscape) and (max-height: 620px) {
  .hero {
    height: 320svh;
  }

  .hero-pin {
    min-height: 100svh;
  }

  .hero-meta,
  .hero-scroll {
    display: none;
  }

  .video-control {
    right: 18px;
    bottom: 18px;
  }
}

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

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

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

  .hero {
    height: 100svh;
  }

  .hero-media {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-word,
  .hero-seed {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-giant-mark,
  .hero-exit,
  .hero-paris {
    display: none;
  }

  .story-image img,
  .commitments-media img {
    transform: none !important;
  }
}
