:root {
  --bg: #f5efe6;
  --surface: rgba(255, 248, 240, 0.76);
  --surface-strong: #fff8f1;
  --text: #1f1a16;
  --muted: #665a52;
  --accent: #8c5a31;
  --accent-dark: #5c3518;
  --line: rgba(60, 36, 19, 0.12);
  --shadow: 0 24px 60px rgba(51, 30, 13, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(215, 171, 123, 0.18), transparent 34%),
    linear-gradient(180deg, #f8f2ea 0%, #f5efe6 40%, #efe3d5 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 234, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #a56b3f, #6b4323);
  box-shadow: 0 10px 20px rgba(106, 67, 35, 0.28);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a:hover,
.footer-links a:hover {
  color: var(--accent-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #9b6439, #6a3f20);
  box-shadow: 0 16px 30px rgba(106, 63, 32, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(106, 63, 32, 0.12);
}

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

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(30, 20, 14, 0.24) 0%, rgba(30, 20, 14, 0.45) 42%, rgba(30, 20, 14, 0.72) 100%),
    linear-gradient(90deg, rgba(18, 12, 8, 0.54) 0%, rgba(18, 12, 8, 0.18) 58%, rgba(18, 12, 8, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 9rem 0 5rem;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #d6c0aa;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  max-width: 10ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.hero-text,
.section-heading p,
.route-copy > p,
.card-body p,
.price-note,
.price-card li,
.faq-list p,
.site-footer p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-text {
  max-width: 56ch;
  font-size: 1.1rem;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.7rem;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.hero-features li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.section {
  padding: 5.5rem 0;
}

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

.section-heading p,
.route-copy p,
.card-body p,
.price-note,
.price-card li,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.4rem;
}

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

.card,
.price-card,
.route-media,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.scenic-card {
  overflow: hidden;
}

.scenic-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.route-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  align-items: center;
}

.route-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.route-steps div {
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(140, 90, 49, 0.45);
  background: rgba(255, 250, 244, 0.6);
  border-radius: 0 16px 16px 0;
}

.route-steps p {
  margin: 0.4rem 0 0;
}

.scenic-tall img {
  aspect-ratio: 5 / 6;
}

.prices-section {
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.75), rgba(239, 227, 213, 0.45));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 1.6rem;
}

.price-card ul {
  margin: 1rem 0 1.4rem;
  padding-left: 1.1rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.35rem 0 0;
}

.badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(140, 90, 49, 0.12);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.featured {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(245, 233, 220, 0.95));
  transform: translateY(-6px);
}

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

.faq-list details {
  padding: 1.15rem 1.2rem;
}

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

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

.faq-list p {
  margin: 0.8rem 0 0;
}

.site-footer {
  padding: 2.3rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .nav,
  .route-grid,
  .faq-grid,
  .pricing-grid,
  .three-up,
  .footer-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    min-height: auto;
    padding: 0.9rem 0;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 84vh;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero-content {
    padding: 7.5rem 0 3.4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-features li,
  .button,
  .price-card .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price-card,
  .card-body,
  .faq-list details {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    max-width: 12ch;
  }

  .site-header {
    position: static;
  }

  .brand {
    width: 100%;
  }

  .menu {
    gap: 0.85rem;
    font-size: 0.92rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .eyebrow {
    letter-spacing: 0.14em;
  }
}
