:root {
  --ink: #070708;
  --ink-2: #101012;
  --ink-3: #18181c;
  --panel: #121216;
  --gold: #c5a059;
  --gold-2: #e8d4a4;
  --gold-dim: rgba(197, 160, 89, 0.18);
  --ivory: #f3eee4;
  --paper: #ebe4d6;
  --muted: #9a9488;
  --line: rgba(243, 238, 228, 0.12);
  --line-strong: rgba(197, 160, 89, 0.45);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header-h: 78px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --brand: "Cinzel", "Cormorant Garamond", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.section-shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6.5rem 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head.light,
.section-lead {
  color: var(--ivory);
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.gold-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  margin: 0 0 1.3rem;
}

h1 em {
  font-style: italic;
  color: var(--gold-2);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  margin: 0 0 1.2rem;
}

h3 {
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
}

.lede,
.about-copy p,
.service-body p,
.fleet-card p,
.book-copy > p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

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

.btn-gold {
  background: linear-gradient(180deg, #e4c98a 0%, var(--gold) 55%, #a4843e 100%);
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--gold-dim);
}

.btn.full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 8, 0.86);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--brand);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-city {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ivory);
  margin-top: 0.22rem;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a:not(.nav-cta) {
  color: rgba(243, 238, 228, 0.78);
}

.nav a:not(.nav-cta):hover {
  color: var(--gold-2);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
}

.header-phone {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 0;
  overflow: hidden;
}

.hero-bg,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  transform: scale(1.08);
  animation: kenburns 28s var(--ease) infinite alternate;
  filter: saturate(0.85) contrast(1.05);
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.92) 0%, rgba(7, 7, 8, 0.72) 42%, rgba(7, 7, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.35) 0%, rgba(7, 7, 8, 0.15) 40%, rgba(7, 7, 8, 0.88) 100%);
}

.hero-veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 2.2rem;
}

.hero-copy .lede {
  max-width: 36rem;
  font-size: 1.08rem;
  color: rgba(243, 238, 228, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.4rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-pills li {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero-portrait {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-portrait img {
  width: 100%;
  height: min(62vh, 620px);
  animation: floaty 8s ease-in-out infinite;
}

.hero-portrait figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 8, 0.88));
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-portrait figcaption span:last-child {
  color: var(--muted);
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 8, 0.55);
  backdrop-filter: blur(12px);
}

.stat {
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-2);
}

.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 8.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-cue i {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 1.8s ease-in-out infinite;
}

/* About */
.about {
  background: var(--ivory);
  color: var(--ink);
}

.about .eyebrow,
.services .eyebrow,
.steps .eyebrow,
.testimonials .eyebrow,
.book .eyebrow {
  color: #8d6d2f;
}

.about h2,
.services h2,
.steps h2,
.testimonials h2,
.book h2,
.about h3,
.services h3,
.fleet-card h3,
.steps h3 {
  color: var(--ink);
}

.about .lede,
.about p,
.about-copy p {
  color: #5d584f;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

blockquote {
  margin: 1.6rem 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-facts strong,
.feature-list strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-facts span {
  color: #6f6a62;
  font-size: 0.88rem;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 620px;
}

.about-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.about-gallery .tall {
  grid-row: 1 / span 2;
}

.about-gallery img {
  width: 100%;
  height: 100%;
  min-height: 180px;
}

/* Services */
.services {
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.08), transparent 28%),
    var(--paper);
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(240px, auto);
  gap: 1.1rem;
}

.service-card {
  background: #fffdf8;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(16, 16, 18, 0.06);
  box-shadow: 0 16px 40px rgba(16, 16, 18, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  grid-row: span 2;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card.featured img {
  height: 280px;
}

.service-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.service-body p,
.service-body li {
  color: #5f5a52;
  font-size: 0.96rem;
}

.kicker {
  margin: 0 0 0.4rem;
  color: #8d6d2f;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-body ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.service-extras {
  margin-top: 2.8rem;
}

.service-extras h3 {
  margin-bottom: 1rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chip-list li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.05);
  border: 1px solid rgba(7, 7, 8, 0.08);
  font-size: 0.82rem;
}

/* Fleet */
.fleet {
  background: var(--ink-2);
}

.fleet .section-head h2,
.coverage .section-head h2 {
  color: var(--ivory);
}

.fleet .section-lead,
.coverage .section-lead {
  color: rgba(243, 238, 228, 0.72);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.fleet-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ivory);
}

.fleet-card h3 {
  color: var(--ivory);
}

.fleet-card img {
  width: 100%;
  height: 230px;
}

.fleet-card > div {
  padding: 1.25rem 1.3rem 1.5rem;
}

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

/* Experience */
.experience {
  background: var(--ivory);
  color: var(--ink);
}

.experience-visuals {
  display: grid;
  gap: 0.9rem;
}

.experience-visuals figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.experience-visuals .wide img {
  height: 380px;
  width: 100%;
}

.experience-visuals figure:last-child img {
  height: 240px;
  width: 100%;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(7, 7, 8, 0.08);
  color: #5d584f;
}

/* Steps */
.steps {
  background: var(--paper);
  color: var(--ink);
}

.step-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.step-row li {
  padding: 1.5rem 1.3rem;
  background: #fffdf8;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 8, 0.06);
}

.step-row span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.step-row p {
  margin: 0;
  color: #5f5a52;
}

/* Coverage */
.coverage {
  position: relative;
  overflow: hidden;
}

.coverage-bg {
  position: absolute;
  inset: 0;
}

.coverage-bg img {
  width: 100%;
  height: 100%;
  filter: grayscale(0.15) contrast(1.05);
}

.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.72), rgba(7, 7, 8, 0.88));
  z-index: 1;
}

.coverage .section-shell {
  position: relative;
  z-index: 2;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.coverage-grid h3 {
  color: var(--gold-2);
  font-size: 1.3rem;
}

.coverage-grid p {
  color: rgba(243, 238, 228, 0.78);
}

/* Testimonials */
.testimonials {
  background: var(--ivory);
  color: var(--ink);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.quote {
  margin: 0;
  padding: 1.8rem 1.5rem;
  background: #fffdf8;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 8, 0.06);
}

.quote blockquote {
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
  font-size: 1.22rem;
  color: var(--ink);
}

.quote figcaption span {
  display: block;
  color: #6f6a62;
  font-size: 0.88rem;
}

/* Booking */
.book {
  background:
    linear-gradient(180deg, var(--paper), #d9d0c0);
  color: var(--ink);
}

.book-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 1.6rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d6d2f;
}

.contact-list a,
.contact-list strong {
  font-size: 1.12rem;
}

.book-photo {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  margin-top: 0.4rem;
}

.booking-form {
  position: relative;
  background: #fffdf8;
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(7, 7, 8, 0.08);
  box-shadow: 0 24px 60px rgba(16, 16, 18, 0.08);
}

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

.booking-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

.captcha-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.captcha-image-wrap img {
  width: 228px;
  height: 76px;
  border-radius: 10px;
  border: 1px solid rgba(7, 7, 8, 0.14);
  background: #101012;
}

.captcha-refresh {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: none;
  color: #8d6d2f;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.captcha-refresh:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  .captcha-row {
    grid-template-columns: 1fr;
  }
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a655c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(7, 7, 8, 0.14);
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-row.three {
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
}

.form-fine,
.form-status {
  font-size: 0.82rem;
  color: #6f6a62;
  text-transform: none;
  letter-spacing: 0;
}

.form-status.ok {
  color: #2f6b3a;
}

.form-status.err {
  color: #8a2a2a;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
}

.footer-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.4rem 0 2.6rem;
  display: grid;
  gap: 1rem;
}

.footer-inner .brand-name {
  color: var(--gold);
  font-family: var(--brand);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
}

.footer-inner .brand-name span {
  color: var(--ivory);
}

.footer-inner nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes kenburns {
  to {
    transform: scale(1.18) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes floaty {
  50% {
    transform: scale(1.03);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.25;
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img,
  .hero-portrait img,
  .reveal,
  .scroll-cue i {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-stage,
  .split,
  .split.reverse,
  .service-grid,
  .fleet-grid,
  .step-row,
  .coverage-grid,
  .quote-grid,
  .book-layout,
  .form-row,
  .form-row.three,
  .about-facts {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    grid-row: auto;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    margin: 0;
    padding: 1.2rem 1.4rem 1.6rem;
    background: rgba(7, 7, 8, 0.96);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .scroll-cue {
    display: none;
  }

  .about-gallery {
    min-height: 520px;
  }

  .hero-portrait img {
    height: 42vh;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(1180px, calc(100% - 1.4rem));
    padding: 4.2rem 0;
  }

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

  h1 {
    font-size: 3rem;
  }
}
