:root {
  color-scheme: light;
  --ink: #101010;
  --ink-soft: #2d3033;
  --muted: #6b7178;
  --line: #dedbd4;
  --surface: #f7f5f0;
  --surface-strong: #ffffff;
  --dark: #101318;
  --dark-2: #171b21;
  --gold: #c9a24a;
  --gold-strong: #e0bd63;
  --burgundy: #84283a;
  --green: #304842;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --container: 1180px;
  --header-height: 84px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1.05;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #000;
  border-radius: 6px;
}

.brand span {
  font-size: 0.86rem;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 48px));
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #08090b;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.88) 0%, rgba(5, 6, 8, 0.72) 42%, rgba(5, 6, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.78) 0%, rgba(5, 6, 8, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 96px 0 54px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.booking-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 8vw, 7.5rem);
  line-height: 0.92;
  font-weight: 500;
}

.hero-kicker {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.22;
  font-weight: 600;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button-primary {
  color: #111;
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

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

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.button-footer {
  min-height: 48px;
  color: #111;
  background: var(--gold-strong);
  border-color: var(--gold-strong);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 18px;
  max-width: 560px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts dt {
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.section {
  padding: 88px 0;
}

.section-intro {
  padding-top: 74px;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-quiet {
  background: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}

.split-layout h2,
.section-head h2,
.quality-copy h2,
.contact-band h2,
.form-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 500;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  min-height: 310px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.service-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.service-label {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1;
  font-weight: 500;
}

.service-card p:not(.service-label) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-card a {
  align-self: flex-start;
  margin-top: 26px;
  color: var(--gold-strong);
  font-weight: 800;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #fff;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.fleet-large {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-large figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-left: 3px solid var(--gold-strong);
  font-weight: 800;
}

.fleet-details {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.fleet-details article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fleet-details h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.fleet-details p {
  margin: 0;
  color: var(--muted);
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 0.76fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.image-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: start;
}

.quality-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.quality-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 210px) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.quality-list span {
  color: var(--gold);
  font-weight: 800;
}

.quality-list strong {
  color: var(--ink);
}

.contact-band {
  padding: 72px 0;
  color: #fff;
  background: var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) auto;
  gap: 34px;
  align-items: center;
}

.contact-layout p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.contact-list a {
  color: #fff;
  font-weight: 700;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold-strong);
}

.site-footer {
  color: #fff;
  background: #08090b;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 70px;
  padding: 58px 0;
}

.footer-layout-compact {
  padding-top: 48px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.footer-layout p,
.newsletter-form p {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-form h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.newsletter-form label {
  display: block;
  margin: 14px 0 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-row input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.newsletter-row input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.22);
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

.newsletter-form .check-line {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.check-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.check-line span {
  flex: 1;
}

.check-line a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gold-strong);
  font-weight: 800;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold-strong);
}

.booking-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.booking-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.34));
}

.booking-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 80px 0 58px;
}

.booking-hero h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.booking-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.booking-section {
  background: #fff;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.booking-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
}

.booking-aside ol {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.booking-aside li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.booking-aside li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #111;
  background: var(--gold-strong);
  border-radius: 50%;
  font-weight: 900;
}

.booking-aside strong,
.booking-aside span {
  display: block;
}

.booking-aside li strong,
.booking-aside li span {
  grid-column: 2;
}

.booking-aside span {
  color: rgba(255, 255, 255, 0.7);
}

.aside-contact {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.aside-contact span {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aside-contact a {
  font-weight: 800;
}

.booking-form {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.form-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.form-head p {
  margin: 0;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  font-weight: 800;
  color: var(--ink-soft);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #b51e2e;
  font-size: 0.86rem;
  font-weight: 700;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b51e2e;
  box-shadow: 0 0 0 3px rgba(181, 30, 46, 0.12);
}

.consent-group {
  margin-top: 8px;
  padding-top: 10px;
}

.consent-group .field-error {
  margin-top: 8px;
}

.booking-form .form-status {
  color: var(--green);
}

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

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .service-card,
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 260px;
    min-height: 260px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .header-cta {
    order: 2;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.16);
  }

  .main-nav a {
    padding: 12px;
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-overlay {
    background: rgba(5, 6, 8, 0.72);
  }

  .hero-content {
    padding: 84px 0 42px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
  }

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

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
  }

  .hero-facts dt {
    font-size: 1rem;
  }

  .hero-facts dd {
    font-size: 0.78rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-intro {
    padding-top: 36px;
  }

  .split-layout,
  .quality-grid,
  .booking-layout,
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-grid,
  .fleet-showcase,
  .image-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .service-body,
  .booking-form,
  .booking-aside {
    padding: 24px;
  }

  .fleet-large {
    min-height: 420px;
  }

  .image-strip img {
    height: 240px;
  }

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

  .quality-list li strong {
    grid-column: 2;
  }

  .quality-list li {
    color: var(--muted);
  }

  .booking-aside {
    position: static;
    order: 2;
  }

  .booking-form {
    order: 1;
  }

  .form-head {
    display: block;
  }

  .field-wide {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 660px;
  }

  .hero h1,
  .booking-hero h1 {
    font-size: clamp(2.7rem, 15vw, 3.9rem);
  }

  .hero-kicker {
    font-size: 1.25rem;
  }

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

  .booking-hero-content {
    padding-bottom: 42px;
  }

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

  .button-footer {
    width: 100%;
  }
}
