:root {
  --bg: #e7ebe4;
  --surface: #f4f5f0;
  --surface-2: #dde2da;
  --ink: #181b19;
  --muted: #5f685f;
  --line: #9fa99f;
  --steel: #2d3438;
  --steel-soft: #455056;
  --accent: #6c7f70;
  --accent-deep: #4d5b50;
  --shadow: 0 18px 50px rgba(24, 27, 25, 0.1);
  --radius: 6px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  background: linear-gradient(180deg, #edf0ea 0%, var(--bg) 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

p {
  margin: 0;
  max-width: 72ch;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(231, 235, 228, 0.88);
  border-bottom: 1px solid rgba(95, 104, 95, 0.15);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark img {
  width: 52px;
  height: 52px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a:not(.nav-cta) {
  font-size: 0.95rem;
  color: var(--steel);
}

.nav-cta,
.widget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.3rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f8faf7;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.widget-button:hover,
.fleet-card:hover,
.review-card:hover,
.info-card:hover,
.step-card:hover,
.fact-card:hover {
  transform: translateY(-2px);
}

.hero {
  width: 100%;
  min-height: calc(100svh - 84px);
  background:
    linear-gradient(90deg, var(--steel) 0%, var(--steel) 50%, transparent 50%),
    linear-gradient(180deg, rgba(45, 52, 56, 0.95) 0%, rgba(45, 52, 56, 0.87) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "copy visual"
    "widget widget";
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: calc(100svh - 84px);
  padding-bottom: 2.5rem;
}

.hero-copy {
  grid-area: copy;
  padding: 4rem clamp(1rem, 4vw, 3.5rem) 3rem 0;
  color: #f3f5f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -4vw;
  top: 10%;
  width: 18vw;
  height: 80%;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewX(-12deg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin-top: 1.4rem;
  max-width: 32rem;
  color: rgba(243, 245, 240, 0.85);
  font-size: 1.05rem;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 2rem 0 2rem 2rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 2rem;
  right: 0;
  top: 2rem;
  bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(360px, 58vh, 620px);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 27, 25, 0.18), rgba(24, 27, 25, 0.42)),
    linear-gradient(135deg, rgba(231, 235, 228, 0.16) 0%, rgba(231, 235, 228, 0) 38%),
    linear-gradient(180deg, rgba(45, 52, 56, 0.18) 0%, rgba(45, 52, 56, 0.56) 100%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(0.95);
}

.booking-widget {
  grid-area: widget;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(14rem, 1.1fr) minmax(0, 2.8fr) auto;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  margin: -0.9rem 0 0;
  padding: 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45, 52, 56, 0.96) 0%, rgba(45, 52, 56, 0.96) 23%, rgba(244, 245, 240, 0.97) 23%, rgba(244, 245, 240, 0.97) 100%);
  border: 1px solid rgba(24, 27, 25, 0.22);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.booking-widget::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 22%;
  width: 2.5rem;
  background: linear-gradient(180deg, rgba(108, 127, 112, 0.7), rgba(108, 127, 112, 0));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  pointer-events: none;
}

.widget-lead {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem 0.5rem 0.4rem 0.2rem;
  color: #f3f5f0;
}

.widget-lead strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.widget-lead span {
  color: rgba(243, 245, 240, 0.7);
  font-size: 0.8rem;
}

.widget-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.fake-field {
  position: relative;
  min-height: 4rem;
  padding: 0.65rem 0.8rem 0.55rem 1rem;
  border-top: 1px solid rgba(24, 27, 25, 0.08);
  border-right: 1px solid rgba(24, 27, 25, 0.08);
  border-bottom: 1px solid rgba(24, 27, 25, 0.18);
  border-left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(221, 226, 218, 0.55));
}

.fake-field::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 2px;
  background: var(--accent-deep);
}

.fake-field small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fake-field strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.15;
}

.widget-button {
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 13.5rem;
  min-height: 4rem;
  padding: 0.95rem 1.2rem;
  white-space: nowrap;
  background: linear-gradient(180deg, #1b1f1d 0%, #2d3438 100%);
  border-color: #1b1f1d;
  box-shadow: inset 0 0 0 1px rgba(243, 245, 240, 0.08);
}

.section {
  padding: 5rem 0;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 27, 25, 0.34), rgba(24, 27, 25, 0));
}

.fleet-grid,
.info-grid,
.steps-grid,
.facts-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

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

.fleet-card,
.info-card,
.step-card,
.fact-card,
.review-card {
  background: rgba(244, 245, 240, 0.78);
  border: 1px solid rgba(24, 27, 25, 0.12);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

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

.fleet-body,
.info-body,
.step-body,
.fact-body,
.review-body {
  padding: 1.2rem;
}

.fleet-topline,
.card-meta,
.source-note,
.review-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.fleet-title,
.info-title,
.step-title,
.fact-title,
.review-name {
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.fleet-points {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.fleet-points li {
  position: relative;
  padding-left: 1rem;
}

.fleet-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--accent-deep);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(24, 27, 25, 0.1);
}

.price-row strong {
  font-size: 1.5rem;
  line-height: 1;
}

.card-arrow {
  font-size: 1.25rem;
  color: var(--accent-deep);
}

.fleet-note,
.table-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.info-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.info-card.featured {
  min-height: 100%;
  overflow: hidden;
}

.info-card.featured img,
.step-card.visual img,
.fact-card.visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.icon-line {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(24, 27, 25, 0.14);
  color: var(--accent-deep);
}

.steps-grid {
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
}

.step-card {
  min-height: 100%;
}

.step-index {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(24, 27, 25, 0.12);
  background: rgba(244, 245, 240, 0.78);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(24, 27, 25, 0.09);
}

th {
  background: rgba(221, 226, 218, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.review-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.review-head img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-score {
  margin-top: 1rem;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: rgba(244, 245, 240, 0.78);
  border: 1px solid rgba(24, 27, 25, 0.12);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
}

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

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--steel);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(24, 27, 25, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}

.legal-main {
  padding: 4rem 0 5rem;
}

.legal-wrap {
  width: min(calc(100% - 2rem), 840px);
  margin: 0 auto;
}

.legal-wrap h1 {
  margin: 0 0 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(24, 27, 25, 0.12);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

@media (max-width: 1080px) {
  .fleet-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid,
  .steps-grid,
  .facts-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    background: var(--steel);
  }

  .hero-grid,
  .info-grid,
  .steps-grid,
  .facts-grid,
  .review-grid,
  .fleet-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "widget";
    grid-template-rows: auto;
    padding-bottom: 2rem;
  }

  .hero-copy {
    padding: 3rem 0 2rem;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 0 2rem;
  }

  .hero-image-wrap {
    clip-path: none;
    min-height: 18rem;
  }

  .booking-widget {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
    padding: 0.9rem;
    background:
      linear-gradient(180deg, rgba(45, 52, 56, 0.96) 0%, rgba(45, 52, 56, 0.96) 22%, rgba(244, 245, 240, 0.97) 22%, rgba(244, 245, 240, 0.97) 100%);
  }

  .booking-widget::before {
    left: 0;
    top: 22%;
    width: 100%;
    height: 2.5rem;
    inset: 22% 0 auto 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .widget-grid {
    grid-template-columns: 1fr;
  }

  .widget-button {
    width: 100%;
  }

  .site-nav {
    gap: 0.85rem 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  table {
    min-width: 640px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
