:root {
  --ink: #080706;
  --graphite: #14120f;
  --charcoal: #2b241d;
  --ivory: #fbf6ec;
  --paper: #f6efe3;
  --champagne: #caa464;
  --champagne-soft: #ecd59a;
  --silver: #c9c2b7;
  --green: #4f5d49;
  --oxblood: #5a1714;
  --stone: #ded4c6;
  --line-dark: rgba(251, 246, 236, 0.14);
  --line-light: rgba(8, 7, 6, 0.13);
  --shadow: 0 28px 86px rgba(8, 7, 6, 0.32);
  --radius: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--champagne-soft);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 14px 44px;
  color: var(--ivory);
  background: rgba(8, 7, 6, 0.5);
  border-bottom: 1px solid rgba(251, 246, 236, 0.1);
  backdrop-filter: blur(16px);
  transition:
    background 220ms ease,
    min-height 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(8, 7, 6, 0.92);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 224px;
}

.brand-logo {
  width: 206px;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.42));
}

.hero-logo {
  width: min(360px, 74vw);
  height: auto;
  margin-bottom: 22px;
  filter:
    drop-shadow(0 14px 42px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 28px rgba(202, 164, 100, 0.14));
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 10px 14px;
  color: rgba(247, 243, 234, 0.82);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.08);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-action {
  color: var(--ink);
  background: var(--champagne);
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--champagne-soft);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.08);
  border-color: rgba(247, 243, 234, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(247, 243, 234, 0.14);
  border-color: rgba(247, 243, 234, 0.36);
}

.button svg,
.header-action svg,
.nav-toggle svg,
.service-icon svg,
.contact-stack svg,
.mobile-contact svg,
.lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ivory);
  background: rgba(247, 243, 234, 0.08);
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 90vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media video,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  background: var(--ink);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
}

.hero-media video {
  z-index: 1;
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media video.is-active {
  z-index: 2;
  opacity: 1;
}

.hero-media video.is-changing {
  opacity: 0.16;
  transform: scale(1.04);
}

.hero-media img {
  z-index: 0;
}

.hero-media video + img {
  opacity: 0;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.84) 0%, rgba(8, 7, 6, 0.58) 42%, rgba(8, 7, 6, 0.16) 78%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 44px));
  margin: 0 0 120px 44px;
  padding-top: 160px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--champagne-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 5.8rem;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4rem;
}

h3 {
  margin-bottom: 12px;
  color: inherit;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(247, 243, 234, 0.9);
  font-size: 1.18rem;
}

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

.hero-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, calc(100% - 88px));
  margin: 0 44px 28px auto;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(251, 246, 236, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  background: rgba(8, 7, 6, 0.56);
  color: rgba(247, 243, 234, 0.9);
  font-weight: 800;
}

.intro-strip {
  color: var(--ink);
  background: linear-gradient(90deg, var(--champagne), #d9bc78 55%, var(--champagne-soft));
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0;
}

.intro-strip p {
  margin: 0;
  font-weight: 800;
}

.intro-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 900;
}

.section {
  padding: 108px 44px;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.services-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(202, 164, 100, 0.2), transparent 34%),
    var(--paper);
}

.services-section .eyebrow,
.vehicle-section .eyebrow,
.gallery-section .eyebrow {
  color: var(--green);
}

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

.service-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 54px rgba(17, 17, 17, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 180, 106, 0.7);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--champagne-soft);
  border-radius: 50%;
}

.service-card p,
.vehicle-copy p,
.route-item p,
.booking-copy p,
.site-footer p {
  color: rgba(36, 35, 33, 0.72);
}

.vehicle-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(79, 93, 73, 0.12), transparent 34%),
    var(--stone);
}

.vehicle-image {
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.vehicle-copy {
  max-width: 620px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.12);
}

.spec-list div {
  min-height: 104px;
  padding: 20px;
  background: rgba(255, 252, 245, 0.72);
}

.spec-list dt {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.route-section {
  background:
    radial-gradient(circle at 76% 8%, rgba(90, 23, 20, 0.2), transparent 32%),
    var(--graphite);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.route-map {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.route-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-list {
  display: grid;
  gap: 14px;
}

.route-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(251, 246, 236, 0.05);
}

.route-item span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 50%;
  font-weight: 900;
}

.route-item p {
  margin-bottom: 0;
  color: rgba(247, 243, 234, 0.72);
}

.gallery-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper), #eee3d4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--ivory);
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(8, 7, 6, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 450ms ease,
    opacity 450ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 6, 0.76), rgba(8, 7, 6, 0.04) 58%);
}

.gallery-feature {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-tall {
  grid-column: span 3;
  grid-row: span 5;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  opacity: 0.9;
}

.booking-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #050504;
}

.booking-media {
  position: absolute;
  inset: 0;
}

.booking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.booking-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.72) 50%, rgba(8, 7, 6, 0.86)),
    linear-gradient(0deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.12));
}

.booking-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 88px));
  min-height: 760px;
  margin: 0 auto;
  padding: 110px 0;
}

.booking-copy p {
  max-width: 610px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 1.08rem;
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-stack a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 15px;
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 234, 0.2);
  border-radius: var(--radius);
  background: rgba(247, 243, 234, 0.08);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: var(--radius);
  background: rgba(247, 243, 234, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ivory);
  background: rgba(11, 11, 11, 0.52);
  border: 1px solid rgba(247, 243, 234, 0.18);
  border-radius: var(--radius);
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(215, 180, 106, 0.18);
}

.booking-form input::placeholder {
  color: rgba(247, 243, 234, 0.42);
}

.booking-form select option {
  color: var(--ink);
}

.form-submit {
  margin-top: 6px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 44px 86px;
  color: var(--ivory);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(247, 243, 234, 0.66);
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.36));
}

.footer-links {
  display: flex;
  gap: 8px;
}

.footer-links a {
  padding: 10px 12px;
  color: rgba(247, 243, 234, 0.78);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-weight: 800;
}

.lightbox {
  width: min(980px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
  border: 1px solid rgba(247, 243, 234, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #050505;
}

.lightbox p {
  margin: 0;
  padding: 16px 18px;
  color: rgba(247, 243, 234, 0.82);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ivory);
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(247, 243, 234, 0.22);
  border-radius: var(--radius);
}

.mobile-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  gap: 8px;
}

.mobile-contact a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  background: var(--champagne);
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.js .reveal {
  opacity: 0;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 22px;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(11, 11, 11, 0.96);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: min(720px, calc(100% - 36px));
    margin: 0 18px 94px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 36px);
    margin: 0 18px 18px;
  }

  .section {
    padding: 86px 22px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 108px;
  }

  .gallery-item {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-feature {
    grid-column: span 6;
    grid-row: span 4;
  }

  .gallery-tall {
    grid-column: span 3;
    grid-row: span 5;
  }

  .vehicle-section,
  .route-layout,
  .booking-content {
    grid-template-columns: 1fr;
  }

  .vehicle-copy {
    max-width: none;
  }

  .booking-content {
    width: min(760px, calc(100% - 44px));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 156px;
  }

  .hero-logo {
    width: min(260px, 68vw);
    margin-bottom: 18px;
  }

  .primary-nav {
    top: 68px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media img {
    object-position: 54% center;
    filter: brightness(1.16) contrast(1.02);
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.46) 68%, rgba(8, 8, 8, 0.16)),
      linear-gradient(0deg, rgba(8, 8, 8, 0.68) 0%, rgba(8, 8, 8, 0.1) 48%);
  }

  .hero .eyebrow,
  .hero h1,
  .hero-copy {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.72);
  }

  .hero-content {
    margin-bottom: 112px;
    padding-top: 132px;
  }

  h1 {
    max-width: 360px;
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.42rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-stack {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-stack a {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel span {
    min-height: 54px;
    padding: 14px 16px;
  }

  .intro-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 36px);
  }

  .service-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

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

  .gallery-item,
  .gallery-feature,
  .gallery-tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 292px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .vehicle-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vehicle-image,
  .vehicle-image img,
  .route-map {
    min-height: 380px;
  }

  .route-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-tall {
    min-height: 440px;
  }

  .gallery-item img {
    min-height: 0;
  }

  .booking-content {
    width: calc(100% - 36px);
    padding: 80px 0;
  }

  .booking-form {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 18px 92px;
  }

  .mobile-contact {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
  }
}
