/* ===== Design tokens ===== */
:root {
  --red: #e2231a;
  --red-dark: #b31217;
  --ink: #14161a;
  --charcoal: #1a1d21;
  --cream: #f5f5f5;
  --muted: #9aa0a6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .18);
  --maxw: 1160px;
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
.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;
}
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .logo-mark {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn i { margin-right: 7px; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(226, 35, 26, .35);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .22); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 17, 20, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { color: #fff; font-size: 1.4rem; font-weight: 700; }
.logo-accent { color: var(--red); }
.logo-tag { color: var(--muted); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #e7ece9; font-weight: 500; font-size: .95rem; transition: color .2s; }
.main-nav a:hover { color: var(--red); }
.main-nav .nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 20px;
  border-radius: 30px;
}
.main-nav .nav-cta:hover { color: #fff; background: var(--red-dark); }

.social { display: flex; gap: 10px; }
.social a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .8rem; font-weight: 600;
  transition: background .2s;
}
.social a:hover { background: var(--red); }

.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ===== Hero (real banner) ===== */
.hero {
  position: relative;
  background: #0c0d0f;
}
.hero-banner { width: 100%; height: auto; display: block; }
.hero-cta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  background: #14161a;
}

/* ===== Book CTA band ===== */
.book {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 17, 20, .82), rgba(179, 18, 23, .72)),
    radial-gradient(circle at 70% 30%, #3a3d42, #0c0d0f 70%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, .85), transparent 60%);
}
.hero-content { position: relative; max-width: 720px; padding-top: 60px; padding-bottom: 60px; }
.hero-kicker, .section-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 700; }
.hero-sub { font-size: 1.15rem; margin: 20px 0 32px; max-width: 560px; color: #eef2ef; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Feature strip ===== */
.feature-strip { background: #14161a; color: #fff; padding: 34px 0 40px; text-align: center; }
.feature-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .9rem;
}
.feature-ico {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  font-size: 1.15rem;
}
.feature-tagline {
  margin-top: 26px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  letter-spacing: 1px;
}
.feature-tagline span { color: var(--red); }

/* ===== Section headers ===== */
section { padding: 90px 0; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 42px;
}
.section-kicker { margin-bottom: 10px; }

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 6px 24px rgba(20, 40, 25, .06);
  border: 1px solid #eceae3;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--red);
  background: rgba(226, 35, 26, .1);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--ink); }
.service-card p { color: #5c665f; font-size: .95rem; }

/* ===== Trails ===== */
.trails { background: #fff; }
.trail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.trail-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid #ecebe4;
  transition: transform .2s, box-shadow .2s;
}
.trail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trail-img {
  height: 190px;
  background: var(--img, #b31217);
  background-size: cover;
  background-position: center;
}
.trail-body { padding: 22px 22px 26px; }
.trail-body h3 { font-size: 1.3rem; margin: 12px 0 8px; }
.trail-body p { color: #5c665f; font-size: .95rem; }
.btn-book {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
  padding: 12px 20px;
  font-size: .92rem;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
}
.badge-easy { background: #43a047; }
.badge-medium { background: #fb8c00; }
.badge-hard { background: #e53935; }
.badge-time { background: var(--ink); margin-left: 6px; }
.badge-time i { margin-right: 4px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--g, #b31217);
  background-size: cover;
  background-position: center;
  transition: transform .25s, filter .25s;
  filter: saturate(.9);
}
.gallery-item:hover { transform: scale(1.03); filter: saturate(1.1); }
.gallery-cta { text-align: center; margin-top: 40px; }
.gallery-cta p { font-size: 1.2rem; font-weight: 600; margin-bottom: 18px; color: var(--ink); }

/* ===== Reviews ===== */
.reviews { background: #fff; }
.reviews .section-title { margin-bottom: 32px; }

/* Rating summary badge */
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid #ecebe4;
  box-shadow: 0 6px 24px rgba(20, 40, 25, .06);
  margin-bottom: 40px;
  transition: transform .2s, box-shadow .2s;
}
.rating-summary:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rating-score {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.rating-detail { display: flex; flex-direction: column; gap: 8px; }
.rating-stars { color: #fbbc04; font-size: 1.25rem; letter-spacing: 2px; }
.rating-count { color: #5c665f; font-size: .95rem; font-weight: 500; }
.rating-count strong { color: var(--ink); }
.rating-count .fa-google { color: var(--red); margin-right: 4px; }

@media (max-width: 480px) {
  .rating-summary { width: 100%; justify-content: center; }
}
.reviews-fallback { text-align: center; margin-top: 28px; }
.reviews-fallback p { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 18px; }

/* ===== About ===== */
.about { background: var(--ink); color: #eef2ef; }
.about .section-title { color: #fff; }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { color: #c7d0ca; margin-bottom: 16px; }
.about-text .btn { margin-top: 12px; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
}
.stat-label { font-size: .85rem; color: #b8c2bc; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Book CTA ===== */
.book { min-height: 60vh; text-align: center; }
.book-content { position: relative; margin: 0 auto; }
.book-content h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.book-content p { font-size: 1.2rem; margin: 16px 0 30px; }
.book .hero-actions { justify-content: center; }

/* ===== Footer ===== */
.site-footer { background: #0f1713; color: #cdd6d0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}
.footer-brand .logo-mark { font-size: 1.5rem; }
.footer-brand p { margin-top: 10px; }
.footer-nav h4, .footer-social h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.footer-nav a, .footer-social a { display: block; padding: 5px 0; color: #a9b4ad; transition: color .2s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--red); }
.muted { color: var(--muted); font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .85rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .social { display: none; }
  .menu-toggle { display: block; margin-left: auto; order: 3; }
  .header-inner { gap: 14px; flex-wrap: wrap; }

  /* Mobile dropdown menu */
  .main-nav {
    order: 4;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 420px; padding-bottom: 12px; }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 1.05rem;
  }
  .main-nav .nav-cta {
    text-align: center;
    margin-top: 12px;
    padding: 12px 20px;
    border-bottom: none;
  }

  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-social a, .footer-nav a { justify-content: center; }
  section { padding: 64px 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  section { padding: 48px 0; }

  /* Full-width tappable CTAs */
  .hero-cta-bar { flex-direction: column; padding: 18px; gap: 10px; }
  .hero-cta-bar .btn { width: 100%; text-align: center; }
  .book .hero-actions { flex-direction: column; }
  .book .hero-actions .btn { width: 100%; text-align: center; }

  /* Feature strip stacks cleanly */
  .feature-inner { flex-direction: column; align-items: center; gap: 16px; }
  .feature { width: 100%; max-width: 260px; }

  .section-title { margin-bottom: 28px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 20px 12px; }
  .stat-num { font-size: 1.9rem; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
  .feature-tagline { line-height: 1.4; }
}
