/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2e1a;
  background: #f8faf7;
}

a { color: #2d6a2d; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,30,10,0.55) 0%, rgba(5,20,5,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-dates {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-block;
  background: #4a9e4a;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: #3a7e3a; transform: translateY(-2px); text-decoration: none; }

/* ===========================
   STICKY NAV
=========================== */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 0;
  background: #1a2e1a;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sticky-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.sticky-nav a:hover,
.sticky-nav a.active {
  color: #fff;
  border-bottom-color: #6abf6a;
  text-decoration: none;
}

/* ===========================
   SECTIONS
=========================== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: #edf4eb; }

.container {
  max-width: 1080px;
  margin: 0 auto;
}

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a2e1a;
  margin-bottom: 0.5rem;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #4a9e4a;
  margin-top: 0.6rem;
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

h3 { font-size: 1.15rem; color: #1a3a1a; margin-bottom: 0.6rem; }

.lead {
  font-size: 1.15rem;
  color: #3a5a3a;
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ===========================
   STATS
=========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #fff;
  border: 1px solid #d4e8d4;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2d6a2d;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a9a7a;
  font-weight: 500;
}

/* ===========================
   INFO ROW
=========================== */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-box {
  background: #fff;
  border-left: 4px solid #4a9e4a;
  border-radius: 0 10px 10px 0;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.info-box p { font-size: 0.92rem; color: #4a5e4a; }

/* ===========================
   TIMELINE
=========================== */
.timeline { position: relative; padding-left: 2rem; margin-bottom: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #4a9e4a, #c8e8c8);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.timeline-marker {
  position: relative;
  flex-shrink: 0;
  background: #2d6a2d;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 0.2rem;
  margin-left: -2rem;
  box-shadow: 0 0 0 3px #edf4eb;
}

.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  flex: 1;
  border: 1px solid #d4e8d4;
}

.timeline-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.92rem; color: #4a5e4a; margin-bottom: 0.8rem; }
.timeline-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.timeline-content ul li { font-size: 0.9rem; color: #4a5e4a; margin-bottom: 0.3rem; }

.tag {
  display: inline-block;
  background: #e8f4e8;
  color: #2d6a2d;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-hard {
  background: #fef3e2;
  color: #b45309;
}

.distance-badge {
  display: inline-block;
  background: #f0f8f0;
  border: 1px solid #b4d8b4;
  color: #2d6a2d;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  margin-right: 0.5rem;
}

/* ===========================
   TABLE
=========================== */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
thead { background: #2d6a2d; color: #fff; }
th { padding: 0.85rem 1rem; text-align: left; font-size: 0.85rem; font-weight: 600; }
td { padding: 0.75rem 1rem; font-size: 0.9rem; border-bottom: 1px solid #e8f0e8; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #f4faf4; }
td:first-child { font-weight: 600; color: #4a9e4a; }

/* ===========================
   GEAR
=========================== */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gear-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-top: 4px solid #4a9e4a;
}

.gear-card h3 { font-size: 1rem; margin-bottom: 0.8rem; }
.gear-card ul { padding-left: 1.3rem; }
.gear-card ul li { font-size: 0.9rem; color: #4a5e4a; margin-bottom: 0.35rem; }

.note {
  background: #fff8e1;
  border-left: 4px solid #f5c518;
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #5a4a00;
}

.note-inline {
  font-size: 0.85rem;
  color: #b45309;
  margin-top: 0.5rem;
}

/* ===========================
   GETTING THERE
=========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

.two-col ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.two-col ol li { font-size: 0.92rem; color: #4a5e4a; margin-bottom: 0.5rem; }

.hotel-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid #d4e8d4;
}

.hotel-card strong { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; color: #1a2e1a; }
.hotel-card ul { padding-left: 1.3rem; }
.hotel-card ul li { font-size: 0.88rem; color: #4a5e4a; margin-bottom: 0.25rem; }

/* ===========================
   SAFETY
=========================== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.safety-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #4a9e4a;
}

.safety-warn { border-left-color: #e06c2a; }

.safety-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.safety-card p { font-size: 0.88rem; color: #4a5e4a; line-height: 1.6; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #1a2e1a;
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
}

.footer a { color: rgba(255,255,255,0.8); }
.footer p + p { margin-top: 0.4rem; }

/* ===========================
   MAP
=========================== */
#route-map {
  width: 100%;
  height: 520px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 2px solid #d4e8d4;
}

/* ===========================
   CIDERS
=========================== */
.cider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cider-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #e8d8c8;
  border-top: 4px solid #c8824a;
  position: relative;
}

.cider-local { border-top-color: #2d6a2d; border-color: #d4e8d4; }

.cider-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: #2d6a2d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
}

.cider-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  margin-top: 0.4rem;
  color: #1a2e1a;
}

.cider-location {
  font-size: 0.8rem;
  color: #8a6a4a;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.cider-card p {
  font-size: 0.88rem;
  color: #4a5e4a;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.cider-style {
  display: inline-block;
  background: #fef8f0;
  border: 1px solid #e8c89a;
  color: #8a5a1a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .section { padding: 3rem 1rem; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item { flex-direction: column; gap: 0.8rem; }
  .timeline-marker { margin-left: -1.5rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
