:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #65716b;
  --paper: #f8f5ee;
  --white: #ffffff;
  --moss: #334c3e;
  --moss-2: #20362b;
  --clay: #bf6545;
  --gold: #d9a441;
  --sky: #b9d5dd;
  --line: #e3ddd1;
  --shadow: 0 22px 70px rgba(23, 32, 29, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(18, 27, 24, 0.92);
  box-shadow: 0 12px 34px rgba(18, 27, 24, 0.18);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.card-title-row,
.header-tools {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 12px;
}

.language-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.header-action:hover {
  color: var(--white);
}

.header-action {
  min-width: 124px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #18231f;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 26, 22, 0.84), rgba(17, 26, 22, 0.45) 44%, rgba(17, 26, 22, 0.1)),
    linear-gradient(0deg, rgba(17, 26, 22, 0.7), rgba(17, 26, 22, 0) 40%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(84px, 14vh, 140px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  padding: 13px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(191, 101, 69, 0.3);
}

.button.secondary,
.button.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--moss);
}

.button.light {
  color: var(--moss-2);
  background: var(--white);
}

.button.wide {
  width: 100%;
}

.booking-strip {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 36px));
  margin: -58px auto 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-form,
.form-row {
  display: grid;
  gap: 14px;
}

.quick-form {
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(191, 101, 69, 0.12);
}

.section {
  scroll-margin-top: 88px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.4fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.feature-list,
.fleet-grid,
.terms-grid {
  display: grid;
  gap: 18px;
}

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

.feature-list article,
.terms-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.feature-list p,
.terms-grid p,
.camper-body p,
.reservation-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--moss);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.camper-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(23, 32, 29, 0.08);
}

.camper-card img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
  background: var(--sky);
}

.camper-body {
  padding: clamp(22px, 3vw, 34px);
}

.card-title-row {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.card-title-row h3 {
  margin: 0;
}

.card-title-row span {
  flex: 0 0 auto;
  color: var(--clay);
  font-weight: 900;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.specs li {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #f2eee5;
  color: #3d4944;
  font-size: 14px;
  font-weight: 800;
}

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

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  background: #151817;
}

.text-button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--moss);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 11px 16px;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: 96px;
}

.price-box {
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--moss-2);
  color: var(--white);
}

.price-box span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.price-box strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
}

.price-box small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  line-height: 1.4;
}

.availability-box {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.availability-box h3,
.availability-box p {
  margin-bottom: 10px;
}

.availability-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--clay);
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.extras-section {
  padding-top: 0;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.extras-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(23, 32, 29, 0.08);
}

.extras-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 28px;
}

.extras-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.package-label {
  margin-bottom: 8px;
  color: var(--moss) !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.consent input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
}

.consent a {
  color: var(--clay);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--moss);
  font-weight: 800;
  line-height: 1.45;
}

.form-status.error {
  color: #9d3429;
}

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

.pricing-table,
.fee-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(23, 32, 29, 0.08);
}

.pricing-table {
  overflow: hidden;
  margin-bottom: 18px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child {
  border-top: 0;
}

.pricing-head {
  background: var(--moss-2);
  color: var(--white);
  font-weight: 900;
}

.pricing-row strong {
  color: var(--clay);
}

.fee-panel {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.fee-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.fee-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.35;
}

.fee-list strong {
  flex: 0 0 auto;
  color: var(--ink);
  text-align: right;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 8vw, 84px) clamp(18px, 7vw, 92px);
  background: var(--moss-2);
  color: var(--white);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.company-details {
  display: grid;
  gap: 6px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.company-details p {
  margin: 0;
}

.company-details strong,
.company-details a {
  color: var(--white);
}

.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #111a17;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.legal-main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 128px 0 84px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
}

.legal-card {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card section {
  display: grid;
  gap: 10px;
}

.legal-card h2 {
  margin: 0;
  font-size: 25px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .quick-form,
  .intro-grid,
  .reservation-section,
  .terms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-form label:first-child,
  .quick-form button,
  .intro-grid > *,
  .reservation-section > * {
    grid-column: 1 / -1;
  }

  .feature-list,
  .terms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fee-list {
    grid-template-columns: 1fr;
  }

  .reservation-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-width: 104px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 26, 22, 0.86), rgba(17, 26, 22, 0.24) 68%),
      linear-gradient(90deg, rgba(17, 26, 22, 0.65), rgba(17, 26, 22, 0.08));
  }

  .hero-content {
    margin: 0 18px 92px;
    width: calc(100% - 36px);
  }

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

  .quick-form,
  .feature-list,
  .fleet-grid,
  .extras-grid,
  .form-row,
  .terms-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-section,
  .site-footer {
    display: grid;
  }

  .card-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fee-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
