:root {
  color-scheme: light;
  --ink: #15221d;
  --muted: #52635d;
  --paper: #f6f0e5;
  --surface: #fffaf0;
  --surface-2: #ebe2d1;
  --forest: #214c3d;
  --forest-dark: #142f27;
  --lake: #487f88;
  --sky: #d9e8e6;
  --gold: #c48742;
  --clay: #a65f3c;
  --line: rgba(21, 34, 29, 0.16);
  --shadow: 0 24px 70px rgba(21, 34, 29, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

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

a {
  color: inherit;
}

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

.topbar {
  align-items: center;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}

.brand span:last-child {
  display: grid;
  gap: 1px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.brand-logo {
  height: 48px;
  width: 195px;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
}

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

.nav-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 14px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 18, 0.82), rgba(9, 22, 18, 0.48) 48%, rgba(9, 22, 18, 0.08)),
    linear-gradient(0deg, rgba(9, 22, 18, 0.45), transparent 48%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--surface);
  max-width: 820px;
  padding: clamp(142px, 18vh, 218px) clamp(20px, 7vw, 92px) 92px;
  position: relative;
}

.hero h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(44px, 6.8vw, 92px);
  margin: 0 0 24px;
}

.hero p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.46;
  margin: 0;
  max-width: 660px;
}

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

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

.hero-panel {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: var(--radius);
  bottom: clamp(24px, 5vw, 58px);
  box-shadow: var(--shadow);
  max-width: 300px;
  padding: 22px;
  position: absolute;
  right: clamp(18px, 5vw, 68px);
}

.hero-panel span,
.metric span,
.package-card span,
.route-grid span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 78%, white);
  outline-offset: 3px;
}

.primary {
  background: var(--gold);
  color: #1c140b;
}

.light {
  border-color: rgba(255, 250, 240, 0.7);
  color: var(--surface);
}

.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--forest-dark);
}

.section {
  padding: clamp(62px, 8vw, 118px) clamp(20px, 7vw, 92px);
}

.section-heading,
.section-copy {
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
  margin: 0 0 18px;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.08;
  margin: 0 0 12px;
}

p {
  margin-top: 0;
}

.section-heading p,
.section-copy p,
.feature-list p,
.package-card p,
.route-grid p,
.ops-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.command-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 0;
}

.command-strip article,
.metric,
.package-card,
.planner-card,
.recommendation,
.lead-panel,
.ops-grid article,
.feature-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.command-strip article {
  min-height: 142px;
  padding: 22px;
}

.command-strip span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.command-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  margin-bottom: 8px;
}

.command-strip p {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.split,
.inquiry {
  align-items: start;
  display: grid;
  gap: clamp(30px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
}

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

.package-card {
  display: grid;
  gap: 16px;
  min-height: 360px;
  padding: clamp(22px, 3vw, 32px);
}

.package-card.featured {
  background: var(--forest);
  color: var(--surface);
  transform: translateY(-12px);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 250, 240, 0.78);
}

.package-card strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.package-card ul,
.ops-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.package-card li {
  color: var(--muted);
  line-height: 1.45;
}

.planner {
  background: var(--surface-2);
}

.planner-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  margin-top: 34px;
}

.planner-card,
.recommendation {
  padding: clamp(22px, 3vw, 34px);
}

.planner-card {
  display: grid;
  gap: 20px;
}

label {
  color: var(--forest-dark);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
}

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

input[type="range"] {
  accent-color: var(--forest);
  padding: 0;
}

output {
  color: var(--gold);
  font-weight: 800;
}

.recommendation {
  background: var(--forest-dark);
  color: var(--surface);
}

.recommendation p,
.recommendation li {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.6;
}

.recommendation ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.routes {
  background: var(--forest-dark);
  color: var(--surface);
  display: grid;
  gap: clamp(30px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
}

.routes p {
  color: rgba(255, 250, 240, 0.75);
  line-height: 1.65;
}

.route-grid {
  display: grid;
  gap: 18px;
}

.route-grid article {
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  padding-top: 24px;
}

.route-grid span {
  color: var(--gold);
}

.inquiry {
  background: #ece4d4;
}

.inquiry-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 3vw, 34px);
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  grid-column: 1 / -1;
  line-height: 1.5;
  margin: 0;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.metric {
  min-height: 130px;
  padding: 22px;
}

.metric strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.lead-panel {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.lead-panel-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

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

.lead-card {
  background: color-mix(in srgb, var(--surface) 74%, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  padding: 16px;
}

.lead-card strong {
  font-size: 18px;
}

.lead-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.empty {
  color: var(--muted);
  margin: 0;
  padding: 12px 0;
}

.operations {
  background: var(--sky);
}

.ops-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.ops-grid article {
  min-height: 210px;
  padding: 22px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 250, 240, 0.78);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 26px clamp(20px, 7vw, 92px);
}

.footer p {
  margin: 0;
}

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

  .command-strip,
  .package-grid,
  .dashboard-grid,
  .ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .planner-shell,
  .routes,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    bottom: auto;
    left: clamp(20px, 7vw, 92px);
    position: relative;
    right: auto;
    transform: translateY(-36px);
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-cta {
    width: 100%;
  }

  .brand-logo {
    height: 44px;
    width: 178px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 156px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .command-strip,
  .package-grid,
  .dashboard-grid,
  .ops-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .button {
    width: 100%;
  }

  .lead-panel-head,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }
}

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