:root {
  --ink: #141514;
  --soft-ink: #41443f;
  --mist: #f6f3ed;
  --paper: #fffaf0;
  --line: rgba(20, 21, 20, 0.14);
  --white: #ffffff;
  --champagne: #c8a660;
  --champagne-dark: #8b6b2f;
  --jade: #214c49;
  --claret: #6f2632;
  --charcoal: #20221f;
  --shadow: 0 24px 70px rgba(16, 17, 15, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(20, 21, 20, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(200, 166, 96, 0.72);
  background: linear-gradient(135deg, rgba(200, 166, 96, 0.24), rgba(255, 255, 255, 0.06));
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  min-height: clamp(620px, 78vh, 780px);
  padding: 118px clamp(18px, 4vw, 48px) 54px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

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

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

.hero-overlay {
  background:
    radial-gradient(circle at 50% 54%, rgba(10, 12, 11, 0.22) 0%, rgba(10, 12, 11, 0.58) 58%, rgba(10, 12, 11, 0.76) 100%),
    linear-gradient(0deg, rgba(10, 12, 11, 0.82) 0%, rgba(10, 12, 11, 0.16) 52%, rgba(10, 12, 11, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 920px;
  padding-bottom: 0;
  justify-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 500;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 11vw, 9.2rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--champagne);
  color: #19160e;
}

.button-primary:hover {
  background: #d8ba76;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.request-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 11px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(200, 166, 96, 0.22);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 118px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--paper);
}

.signal-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.signal-strip span {
  color: var(--soft-ink);
  font-size: 0.88rem;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 48px);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading p:not(.eyebrow),
.image-copy > p:not(.eyebrow),
.request-copy p {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: 1.04rem;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(22px, 4vw, 46px);
  max-width: var(--max);
  margin: 0 auto;
}

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

.fleet-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.fleet-card:hover,
.fleet-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(200, 166, 96, 0.7);
  box-shadow: 0 20px 40px rgba(20, 21, 20, 0.08);
}

.fleet-kicker {
  color: var(--claret);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.fleet-card strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 500;
}

.fleet-card small {
  color: var(--soft-ink);
}

.fleet-popover {
  position: absolute;
  z-index: 8;
  inset: 12px;
  display: grid;
  gap: 10px;
  padding: 10px;
  color: var(--white);
  background: rgba(20, 21, 20, 0.96);
  border: 1px solid rgba(200, 166, 96, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.fleet-popover img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.fleet-popover b {
  display: block;
  margin-bottom: 4px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.fleet-popover em {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.35;
}

.fleet-card.is-previewed {
  z-index: 9;
}

.fleet-card.is-previewed .fleet-popover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fleet-detail {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: var(--jade);
  border-radius: var(--radius);
  min-height: 392px;
  text-align: center;
}

.gauge {
  display: grid;
  place-items: center;
}

.gauge-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 176px;
  height: 176px;
  border: 2px solid rgba(200, 166, 96, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.gauge-ring span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.6vw, 2.85rem);
  line-height: 0.92;
}

.gauge-ring small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.fleet-detail p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.image-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 48px);
  background: var(--charcoal);
  color: var(--white);
}

.image-copy {
  max-width: 620px;
  justify-self: end;
}

.image-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-grid span {
  color: var(--champagne);
  font-weight: 800;
}

.service-grid h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  line-height: 1.1;
}

.service-grid p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.cabin-figure {
  margin: 0;
}

.cabin-figure img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safety-section {
  background: var(--paper);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.safety-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.safety-grid h3 {
  font-size: 1.55rem;
}

.safety-grid p {
  color: var(--soft-ink);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 48px);
  background:
    linear-gradient(120deg, rgba(33, 76, 73, 0.94), rgba(20, 21, 20, 0.96)),
    var(--jade);
  color: var(--white);
}

.request-copy {
  justify-self: end;
  max-width: 520px;
}

.request-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.request-form {
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.request-form .full,
.request-form button {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: #121310;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .footer-links {
  margin-top: 0;
  color: var(--champagne);
}

.toast {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  color: var(--white);
  background: var(--jade);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 960px) {
  .hero,
  .fleet-layout,
  .image-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .image-copy,
  .request-copy {
    justify-self: start;
  }

  .cabin-figure img {
    min-height: 360px;
  }

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

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

@media (max-width: 740px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

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

  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.42)),
      linear-gradient(0deg, rgba(10, 12, 11, 0.84), rgba(10, 12, 11, 0.12));
  }

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

  .button {
    width: 100%;
  }

  .signal-strip,
  .fleet-cards,
  .safety-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .fleet-card,
  .fleet-detail,
  .safety-grid article {
    min-height: auto;
  }

  dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  h1 {
    font-size: 3.4rem;
  }

  .request-form {
    padding: 14px;
  }
}
