:root {
  --bg-950: #090d12;
  --bg-900: #101723;
  --bg-860: #172335;
  --ink-100: #f1ede4;
  --ink-200: #d2cbbe;
  --ink-300: #9f998e;
  --gold-300: #dfc48f;
  --gold-500: #ad8650;
  --teal-300: #86a7b7;
  --line-soft: rgba(255, 255, 255, 0.15);
  --line-gold: rgba(223, 196, 143, 0.45);
  --shadow-deep: 0 28px 70px rgba(0, 0, 0, 0.5);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 13px;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-100);
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 8% 8%, #2a2f42 0%, transparent 28%),
    radial-gradient(circle at 88% 14%, #31271f 0%, transparent 25%),
    linear-gradient(155deg, var(--bg-950), var(--bg-900) 55%, var(--bg-860));
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-decoration: none;
}

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

.bg-layer {
  position: fixed;
  pointer-events: none;
  z-index: -4;
  filter: blur(78px);
  opacity: 0.5;
  border-radius: 999px;
}

.layer-a {
  width: 29rem;
  height: 29rem;
  left: -10rem;
  top: -9rem;
  background: radial-gradient(circle, rgba(223, 196, 143, 0.75), transparent 73%);
  transform: translate(calc(var(--hero-shift-x) * -0.2), calc(var(--hero-shift-y) * -0.2));
  transition: transform 220ms ease-out;
}

.layer-b {
  width: 30rem;
  height: 30rem;
  right: -11rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(134, 167, 183, 0.75), transparent 73%);
  transform: translate(calc(var(--hero-shift-x) * 0.2), calc(var(--hero-shift-y) * 0.2));
  transition: transform 220ms ease-out;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(#ffffff 0.45px, transparent 0.45px);
  background-size: 3px 3px;
}

.container {
  width: min(1160px, calc(100% - 2.8rem));
  margin-inline: auto;
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p {
  margin: 0 0 1rem;
}

.micro {
  margin: 0 0 0.75rem;
  color: var(--gold-300);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(8, 11, 16, 0.88), rgba(8, 11, 16, 0.4));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: inherit;
  text-decoration: none;
}

.brand-monogram {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 7px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  background: linear-gradient(
    145deg,
    rgba(223, 196, 143, 0.2),
    rgba(17, 24, 36, 0.42)
  );
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
}

.brand-copy small {
  font-size: 0.63rem;
  color: var(--ink-300);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--ink-300);
  text-decoration: none;
  font-size: 0.84rem;
  text-transform: lowercase;
}

.site-nav a:hover {
  color: var(--ink-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

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

.btn-gold {
  color: #22170a;
  border-color: rgba(255, 229, 186, 0.52);
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
}

.btn-outline {
  color: var(--ink-200);
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.02);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 4.6rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  margin-bottom: 1.05rem;
  text-transform: lowercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:nth-child(2) {
  color: var(--gold-300);
  transform: translateX(0.5rem);
}

.hero-lead {
  color: var(--ink-200);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
  margin: 1.2rem 0 1.4rem;
}

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

.hero-notes li {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  color: var(--ink-200);
  font-size: 0.76rem;
}

.booking-shell {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-gold);
  background: linear-gradient(
    155deg,
    rgba(16, 22, 33, 0.94),
    rgba(11, 16, 24, 0.88)
  );
  box-shadow: var(--shadow-deep);
  padding: 1.2rem;
  position: relative;
  transform: translate(calc(var(--hero-shift-x) * 0.2), calc(var(--hero-shift-y) * 0.2));
  transition: transform 240ms ease-out;
}

.booking-shell::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 196, 143, 0.3), transparent 72%);
  pointer-events: none;
}

.booking-shell h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  margin-bottom: 0.78rem;
}

.booking-form {
  display: grid;
  gap: 0.7rem;
}

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

label {
  display: grid;
  gap: 0.36rem;
  color: var(--ink-300);
  font-size: 0.74rem;
  text-transform: lowercase;
}

select,
input {
  min-height: 2.6rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 12, 18, 0.58);
  color: var(--ink-100);
  padding: 0.65rem 0.66rem;
  font: inherit;
}

input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
}

select:focus,
input:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(223, 196, 143, 0.82);
  outline-offset: 2px;
}

.quote-result {
  margin-top: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-gold);
  padding: 0.76rem 0.84rem;
  background: linear-gradient(
    135deg,
    rgba(223, 196, 143, 0.21),
    rgba(134, 167, 183, 0.1)
  );
}

.quote-result p {
  margin-bottom: 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink-300);
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-result strong {
  display: block;
  margin-bottom: 0.14rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.18rem;
}

.quote-result small {
  color: var(--teal-300);
}

.quote-note {
  display: block;
  margin-top: 0.3rem;
  color: var(--ink-300);
  font-style: normal;
  font-size: 0.72rem;
}

.rail {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  background: linear-gradient(to right, rgba(223, 196, 143, 0.08), rgba(134, 167, 183, 0.06));
}

.rail-track {
  display: flex;
  gap: 2.1rem;
  width: max-content;
  animation: ticker 22s linear infinite;
  padding: 0.85rem 0;
}

.rail-track span {
  white-space: nowrap;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  color: var(--ink-200);
  letter-spacing: 0.15em;
}

.section {
  padding: 5.2rem 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  align-items: start;
}

.services-main {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 1rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

.services-main h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  max-width: 13ch;
}

.services-main p {
  color: var(--ink-200);
  max-width: 52ch;
}

.services-list {
  display: grid;
  gap: 0.62rem;
}

.services-list article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
}

.services-list p {
  margin-bottom: 0;
  color: var(--ink-300);
}

.cities {
  padding-top: 3.8rem;
}

.city-shell {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(16, 22, 32, 0.94),
    rgba(12, 17, 25, 0.88)
  );
}

.city-oversized {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  align-content: center;
  opacity: 0.08;
}

.city-oversized span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 12vw, 10rem);
  line-height: 0.8;
  padding-left: 1rem;
}

.city-content {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
}

.city-content h2 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  max-width: 14ch;
}

.city-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.city-columns article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.82rem;
  background: rgba(0, 0, 0, 0.22);
}

.city-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.24rem;
  color: var(--ink-200);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5.4vw, 4rem);
}

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

.fleet-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  transition: transform 170ms ease, border-color 170ms ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
}

.fleet-card small {
  color: var(--gold-300);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.fleet-card p {
  color: var(--ink-300);
}

.fleet-card span {
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink-100);
}

.fleet-card.featured {
  border-color: var(--line-gold);
  background: linear-gradient(
    155deg,
    rgba(223, 196, 143, 0.24),
    rgba(15, 21, 31, 0.86)
  );
}

.partner-shell {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  background: linear-gradient(
    155deg,
    rgba(20, 26, 37, 0.93),
    rgba(14, 19, 28, 0.86)
  );
  box-shadow: var(--shadow-deep);
}

.partner-shell h2 {
  font-size: clamp(2.2rem, 5.7vw, 4.1rem);
  max-width: 13ch;
}

.partner-shell p {
  color: var(--ink-200);
  max-width: 60ch;
}

.partner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.faq-grid details {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 0.86rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 0.62rem 0 0;
  color: var(--ink-300);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
  padding: 1.3rem 0 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-wrap p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.footer-links a {
  color: var(--ink-300);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--ink-100);
}

.legal {
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 0.55rem;
  color: var(--ink-300);
}

.mobile-book {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 229, 186, 0.54);
  background: linear-gradient(140deg, var(--gold-300), var(--gold-500));
  color: #211609;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.79rem;
  display: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .services-layout {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 1.4rem));
  }

  .hero {
    padding-top: 3.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-notes,
  .partner-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row,
  .city-columns {
    grid-template-columns: 1fr;
  }

  .site-header .btn {
    display: none;
  }

  .mobile-book {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
