:root {
  --navy: #001d61;
  --blue: #0f56a6;
  --red: #d82e29;
  --ink: #18212f;
  --muted: #5d6675;
  --line: #dbe4ef;
  --soft: #f3f7fb;
  --white: #ffffff;
  --accent: #f2b544;
  --accent-dark: #b97812;
  --shadow: 0 18px 46px rgba(15, 37, 69, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  line-height: 1.6;
}

h1,
h2,
h3,
p,
li,
a,
summary {
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 29, 97, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 22px;
}

.brand img {
  width: 132px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-book,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  padding: 12px 18px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-book,
.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(0, 29, 97, 0.22);
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 20, 55, 0.88), rgba(0, 29, 97, 0.5), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  width: min(100%, 760px);
  min-width: 0;
  max-width: 760px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 84px 24px 120px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 22px;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(220px, 420px) 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-copy > *,
.intro-grid > *,
.rv-card > *,
.steps > *,
.contact-panel > * {
  min-width: 0;
}

.section-copy h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
}

.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
}

.intro .section-copy {
  display: block;
  margin: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.intro-grid p {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-weight: 700;
}

.fleet {
  background: linear-gradient(180deg, var(--white), #f8fbff);
}

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

.rv-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 28, 54, 0.08);
  color: inherit;
  text-decoration: none;
}

.rv-card:hover {
  border-color: rgba(15, 86, 166, 0.28);
  box-shadow: var(--shadow);
}

.rv-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
}

.rv-card div {
  padding: 22px 22px 22px 0;
}

.rv-card h3,
.steps h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.rv-card p,
.steps p,
.contact p,
.faq p {
  color: var(--muted);
}

.rv-card ul {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.card-cta {
  display: inline-flex;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.steps article {
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.steps span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.steps h3,
.steps p {
  color: var(--white);
}

.faq {
  padding-top: 54px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #123c87);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  font-weight: 800;
}

.link-row a {
  color: var(--blue);
}

.footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 38px 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer img {
  width: 118px;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-book {
    margin-top: 6px;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-copy,
  .intro,
  .fleet-grid,
  .steps,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .topbar {
    display: none;
  }

  .nav {
    padding: 12px 18px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-left: 0;
    padding: 70px 22px 100px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 62px 18px;
  }

  .section-copy h2,
  .contact h2 {
    font-size: 29px;
  }

  .rv-card {
    grid-template-columns: 1fr;
  }

  .rv-card img {
    height: 220px;
    min-height: 0;
  }

  .rv-card div {
    padding: 0 20px 22px;
  }

  .contact-panel {
    padding: 28px 20px;
  }
}
