/* ================================================================
   LAKE McDONALD — main.css
   Design system + all components | Mobile-first
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Gloock&family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500&display=swap');

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES — Design Tokens
   ---------------------------------------------------------------- */
:root {
  /* Colors */
  --c-primary:       #1B3535;
  --c-primary-800:   #2C5454;
  --c-accent:        #3ECFCC;
  --c-accent-dark:   #2BAA9E;
  --c-bg:            #F4F7F6;
  --c-surface:       #FFFFFF;
  --c-surface-teal:  #E5F5F3;
  --c-text:          #111827;
  --c-text-2:        #4B5563;
  --c-text-muted:    #9CA3AF;
  --c-border:        #E5E7EB;

  /* Badge / category colors */
  --c-badge-trail:   #3ECFCC;
  --c-badge-lodge:   #F59E0B;
  --c-badge-park:    #10B981;
  --c-badge-road:    #6366F1;
  --c-badge-photo:   #EC4899;

  /* Typography */
  --font-script:   'Dancing Script', cursive;
  --font-display:  'Gloock', Georgia, serif;
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 28px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  /* Layout */
  --header-h:  68px;
  --bn-h:      64px;
  --page-x:    16px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100%;
  padding-bottom: calc(var(--bn-h) + env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
}

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(18, 38, 38, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
  z-index: 200;
  -webkit-tap-highlight-color: transparent;
}

/* Desktop nav + utils — hidden on mobile, shown via media query */
.desktop-nav { display: none; }
.header-utils { display: none; }

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.header-title {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 2s ease, transform 2s ease;
}

.header-title--hidden {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.header-eyebrow {
  font-family: var(--font-script);
  font-size: 1.14rem;
  color: var(--c-accent);
  line-height: 1.2;
}

.header-name {
  font-family: var(--font-display);
  font-size: 1.31rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}

.header-tld {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  margin-left: 1px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s;
  flex-shrink: 0;
}
.menu-btn:hover,
.menu-btn:focus-visible { background: rgba(255,255,255,0.22); }

/* ----------------------------------------------------------------
   MOBILE NAV OVERLAY
   ---------------------------------------------------------------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--c-primary);
  padding-top: var(--header-h);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 11px; right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-close:hover { background: rgba(255,255,255,0.1); }

.nav-links {
  padding: 16px 0 32px;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.nav-links a.active {
  color: var(--c-accent);
  background: rgba(62,207,204,0.1);
}
.nav-links a svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 22px;
}

/* ── Mobile nav accordion ──────────────────────────────────────── */
.nav-accordion { list-style: none; }

.nav-accordion-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-accordion-btn svg:first-child {
  width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7;
}
.nav-accordion-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-accordion.is-open > .nav-accordion-btn { color: var(--c-accent); }
.nav-accordion.is-open > .nav-accordion-btn svg:first-child { opacity: 1; }

.nav-accordion-chevron {
  width: 16px; height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-accordion-btn[aria-expanded="true"] .nav-accordion-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-accordion-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
}
.nav-accordion-items.open { max-height: 680px; }
.nav-accordion-items li a { padding-left: 52px; }

.nav-sub-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 24px 4px 52px;
}
.nav-sub-label {
  height: auto;
  background: none;
  margin: 6px 0 2px;
  padding: 0 24px 0 52px;
}
.nav-sub-label span {
  display: block;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  opacity: 0.85;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(62,207,204,0.2);
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  /* min-height garantiza que el texto siempre cabe */
  min-height: 270px;
}

.hero-img {
  display: block;
  width: 100%;
  height: clamp(240px, 50vw, 340px);
  object-fit: cover;
  object-position: center 45%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,53,53,0.35) 0%,
    rgba(0,0,0,0.22) 35%,
    rgba(0,0,0,0.60) 68%,
    rgba(0,0,0,0.82) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 var(--page-x) 22px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: -2px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-top: 9px;
  max-width: 265px;
  line-height: 1.48;
}

/* ----------------------------------------------------------------
   SEARCH BAR
   ---------------------------------------------------------------- */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--r-full);
  padding: 7px 7px 7px 14px;
  gap: 8px;
  margin-top: 16px;
  box-shadow: var(--shadow-lg);
}

.search-bar > svg {
  flex-shrink: 0;
  color: var(--c-text-muted);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--c-text-2);
  background: transparent;
  font-family: var(--font-body);
  min-width: 0;
}
.search-bar input::placeholder { color: var(--c-text-muted); }

.search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--c-primary-800); }

/* ----------------------------------------------------------------
   SEARCH WRAPPER & DROPDOWN
   ---------------------------------------------------------------- */
.search-wrapper {
  position: relative;
  margin-top: 16px;
}
.search-wrapper .search-bar {
  margin-top: 0;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,.20), 0 4px 12px rgba(0,0,0,.10);
  overflow: hidden;
  z-index: 1000;
  border: 2px solid var(--c-accent);
  max-height: 400px;
  overflow-y: auto;
}
.search-dropdown[hidden] { display: none; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover,
.search-result-item.is-active {
  background: var(--c-surface-teal);
}

.search-result-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--c-bg);
}

.search-result-title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-head);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.search-result-title mark {
  background: none;
  color: var(--c-accent-dark);
  font-weight: 700;
}

.search-result-badge {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  color: #fff;
  background: var(--c-primary);
}
.search-result-badge.badge-trail  { background: var(--c-badge-trail); color: #0a3a3a; }
.search-result-badge.badge-lodge  { background: var(--c-badge-lodge); color: #fff; }
.search-result-badge.badge-park   { background: var(--c-badge-park);  color: #fff; }
.search-result-badge.badge-road   { background: var(--c-badge-road);  color: #fff; }
.search-result-badge.badge-guide  { background: var(--c-primary);     color: #fff; }
.search-result-badge.badge-dir    { background: #6B7280;               color: #fff; }
.search-result-badge.badge-photo  { background: var(--c-badge-photo); color: #fff; }

.search-footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--c-primary-800);
  cursor: pointer;
  background: var(--c-bg);
  text-decoration: none;
  transition: background 0.15s;
}
.search-footer-link:hover,
.search-footer-link.is-active { background: var(--c-surface-teal); color: var(--c-primary); }
.search-footer-link svg { width: 14px; height: 14px; }

.search-no-results {
  padding: 18px 14px;
  text-align: center;
  font-size: 0.825rem;
  color: var(--c-text-muted);
  font-family: var(--font-body);
}

/* ----------------------------------------------------------------
   PAGE BODY CARD
   ---------------------------------------------------------------- */
.page-body {
  background: var(--c-surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: -22px;
  position: relative;
  z-index: 5;
  padding-top: 6px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

/* ----------------------------------------------------------------
   QUICK ACCESS GRID
   ---------------------------------------------------------------- */
.quick-access {
  padding: 20px var(--page-x) 16px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s;
}
.quick-item:active { transform: scale(0.93); }

.quick-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--c-surface-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  transition: background 0.2s;
}
.quick-item:hover .quick-icon { background: #cef0ee; }

.quick-icon svg { width: 22px; height: 22px; }

.quick-label {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--c-text-2);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

/* ----------------------------------------------------------------
   SECTION DIVIDER & HEADER
   ---------------------------------------------------------------- */
.divider {
  height: 1px;
  background: var(--c-border);
  margin: 4px var(--page-x);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--page-x) 12px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.section-title svg { width: 18px; height: 18px; color: var(--c-accent-dark); }

.section-link {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent-dark);
  transition: color 0.2s;
}
.section-link:hover { color: var(--c-primary); }
.section-link svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------------
   FEATURED CARD CAROUSEL
   ---------------------------------------------------------------- */
.featured-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 4px var(--page-x) 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.featured-track::-webkit-scrollbar { display: none; }

.featured-card {
  flex: 0 0 calc(100% - 28px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}
.featured-card:active { transform: scale(0.99); }

.featured-card-media {
  height: 172px;
  overflow: hidden;
  position: relative;
}
.featured-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.featured-card:hover .featured-card-media img { transform: scale(1.03); }

.featured-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--c-badge-trail);
  color: #fff;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.featured-arrow {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.featured-arrow svg { width: 15px; height: 15px; }

.featured-card-body {
  padding: 13px 14px 14px;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.featured-card-desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--c-text-2);
  line-height: 1.5;
  margin-bottom: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.meta-item svg { width: 13px; height: 13px; }

/* ----------------------------------------------------------------
   CAROUSEL DOTS
   ---------------------------------------------------------------- */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 0 4px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--c-border);
  transition: width 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.dot.active {
  width: 18px;
  background: var(--c-primary);
}

/* ----------------------------------------------------------------
   CATEGORY GRID
   ---------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 var(--page-x) 24px;
}

.category-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 0.85;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s;
}
.category-card:active { transform: scale(0.97); }

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.category-card:hover img { transform: scale(1.04); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0.62) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 12px;
}

.category-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 6px;
}
.category-icon svg { width: 18px; height: 18px; }

.category-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------------------
   HOME: LAKE INTRO + STATS STRIP
   ---------------------------------------------------------------- */
.lake-intro-body {
  padding: 0 var(--page-x) 20px;
}

.lake-stats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 calc(-1 * var(--page-x));
  padding: 2px var(--page-x) 16px;
}
.lake-stats::-webkit-scrollbar { display: none; }

.stat-chip {
  flex: 1 1 auto;
  background: var(--c-surface-teal);
  border-radius: var(--r-full);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 68px;
  gap: 2px;
}
.stat-chip-value {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.2;
}
.stat-chip-label {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-muted);
}

.lake-intro-text {
  font-size: 0.9rem;
  color: var(--c-text-2);
  line-height: 1.72;
  margin-top: 14px;
}

.lake-intro-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 14px;
  background: var(--c-surface-teal);
  border-radius: var(--r-md);
  font-size: 0.8125rem;
  color: var(--c-text-2);
  line-height: 1.5;
}
.lake-intro-tip svg { flex-shrink: 0; width: 15px; height: 15px; color: var(--c-accent-dark); margin-top: 1px; }

.lake-intro-cols {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lake-intro-map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--r-lg);
  display: block;
}

/* ----------------------------------------------------------------
   HOME: PHOTO STRIP
   ---------------------------------------------------------------- */
.photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 16px calc(-1 * var(--page-x)) 0;
  padding: 0 var(--page-x) 4px;
  -webkit-overflow-scrolling: touch;
}
.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip-item {
  flex: 0 0 auto;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  width: 160px;
  height: 118px;
  margin: 0;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s;
}
.photo-strip-item:hover img { transform: scale(1.06); }

.photo-strip-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.68));
  color: #fff;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 8px 6px;
  line-height: 1.2;
}

/* ----------------------------------------------------------------
   HOME: ACTIVITIES GRID + ACTIVITY CARDS
   ---------------------------------------------------------------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 var(--page-x) 8px;
}

.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 16px 12px 18px;
  background: var(--c-surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.activity-card:active { transform: scale(0.97); }

.activity-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--c-surface-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.activity-card-icon svg { width: 22px; height: 22px; color: var(--c-accent-dark); }

.activity-card-title {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}

.activity-card-desc {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

/* ----------------------------------------------------------------
   HOME: HOW TO GET HERE
   ---------------------------------------------------------------- */
.gth-intro {
  font-size: 0.9rem;
  color: var(--c-text-2);
  margin: 0 var(--page-x) 18px;
  line-height: 1.6;
}

.gth-city-list {
  list-style: none;
  margin: 0 var(--page-x) 20px;
  padding: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.gth-city-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.gth-city-row:last-child { border-bottom: none; }
.gth-city-row:nth-child(even) { background: var(--c-bg); }

.gth-city-row-name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
}
.gth-city-row-detail {
  font-size: 0.8125rem;
  color: var(--c-text-2);
  white-space: nowrap;
}
.gth-city-row-detail strong {
  color: var(--c-accent-dark);
  font-weight: 700;
}

.gth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 var(--page-x) 18px;
}

.gth-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  border-top-width: 3px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Per-card accent colors */
.gth-card:nth-child(1) { border-top-color: #10B981; }
.gth-card:nth-child(2) { border-top-color: #6366F1; }
.gth-card:nth-child(3) { border-top-color: #F59E0B; }
.gth-card:nth-child(4) { border-top-color: #3ECFCC; }

.gth-card:nth-child(1) .gth-card-icon { background: #D1FAE5; }
.gth-card:nth-child(1) .gth-card-icon svg { color: #059669; }
.gth-card:nth-child(2) .gth-card-icon { background: #E0E7FF; }
.gth-card:nth-child(2) .gth-card-icon svg { color: #4F46E5; }
.gth-card:nth-child(3) .gth-card-icon { background: #FEF3C7; }
.gth-card:nth-child(3) .gth-card-icon svg { color: #D97706; }
.gth-card:nth-child(4) .gth-card-icon { background: var(--c-surface-teal); }
.gth-card:nth-child(4) .gth-card-icon svg { color: var(--c-accent-dark); }

.gth-card:nth-child(1) .gth-tag { background: #D1FAE5; color: #059669; }
.gth-card:nth-child(2) .gth-tag { background: #E0E7FF; color: #4F46E5; }
.gth-card:nth-child(3) .gth-tag { background: #FEF3C7; color: #D97706; }
.gth-card:nth-child(4) .gth-tag { background: var(--c-surface-teal); color: var(--c-accent-dark); }

.gth-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--c-surface-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gth-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent-dark);
}

.gth-card-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary);
}

.gth-card-body {
  font-size: 0.78rem;
  color: var(--c-text-2);
  line-height: 1.62;
  flex: 1;
}

.gth-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.gth-tag {
  font-size: 0.65rem;
  font-family: var(--font-head);
  font-weight: 600;
  background: var(--c-surface-teal);
  color: var(--c-accent-dark);
  border-radius: var(--r-full);
  padding: 3px 9px;
  white-space: nowrap;
}

.gth-tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--r-md);
  margin: 0 var(--page-x) 28px;
  padding: 14px 16px;
}
.gth-tip svg {
  width: 18px;
  height: 18px;
  color: #D97706;
  flex-shrink: 0;
  margin-top: 1px;
}
.gth-tip p {
  font-size: 0.8rem;
  color: #78350F;
  line-height: 1.6;
}


/* ----------------------------------------------------------------
   HOME: GUIDES GRID (2-col article cards)
   ---------------------------------------------------------------- */
.guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 var(--page-x) 24px;
}

.guide-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  display: block;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.guide-card:active { transform: scale(0.98); }
.guide-card:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.guide-card-media {
  height: 110px;
  overflow: hidden;
  position: relative;
}
.guide-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.guide-card:hover .guide-card-media img { transform: scale(1.04); }

.guide-card-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  font-family: var(--font-head);
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--r-full);
}

.guide-card-body { padding: 10px 11px 12px; }

.guide-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

.guide-card-excerpt {
  font-size: 0.725rem;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----------------------------------------------------------------
   HOME: GEOLOGY CALLOUT
   ---------------------------------------------------------------- */
.geo-callout {
  margin: 0 var(--page-x) 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface-teal);
}

.geo-callout-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.geo-callout-body { padding: 16px 18px 20px; }

.geo-callout-eyebrow {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-dark);
  margin-bottom: 6px;
}

.geo-callout-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.geo-callout-text {
  font-size: 0.875rem;
  color: var(--c-text-2);
  line-height: 1.68;
}

.geo-callout-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent-dark);
}
.geo-callout-link svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------------
   HOME: PLAN YOUR VISIT (tab cards + full-width panel)
   ---------------------------------------------------------------- */
.plan-section-body { padding: 0 var(--page-x) 24px; }

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Card = button reset */
.plan-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
  display: block;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow 0.2s, transform 0.15s;
}
.plan-card:hover  { box-shadow: var(--shadow-md); }
.plan-card:active { transform: scale(0.98); }
.plan-card.is-active { box-shadow: var(--shadow-md); }

.plan-card--spring { border-top-color: #6dbf8c; }
.plan-card--summer { border-top-color: var(--c-accent); }
.plan-card--fall   { border-top-color: #e8934a; }
.plan-card--winter { border-top-color: #8ab4d4; }

.plan-card-thumb {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
  object-position: center 60%;
}
.plan-card:hover .plan-card-thumb,
.plan-card.is-active .plan-card-thumb { transform: scale(1.04); }

.plan-card--summer .plan-card-thumb { object-position: center 30%; }
.plan-card--spring .plan-card-thumb { object-position: center 35%; }
.plan-card--fall   .plan-card-thumb { object-position: center 40%; }
.plan-card--winter .plan-card-thumb { object-position: center 40%; }

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 13px 12px;
  transition: background 0.15s;
}
.plan-card:hover .plan-card-header,
.plan-card.is-active .plan-card-header { background: var(--c-bg); }

.plan-card-season {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.plan-card--spring .plan-card-season { color: #4a9966; }
.plan-card--summer .plan-card-season { color: var(--c-accent-dark); }
.plan-card--fall   .plan-card-season { color: #c4722a; }
.plan-card--winter .plan-card-season { color: #5a8aad; }

.plan-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
}

.plan-card-cta {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--c-accent-dark);
  margin-top: 4px;
}
.plan-card-cta::after { content: ' ↓'; }
.plan-card.is-active .plan-card-cta::after { content: ' ↑'; }
.plan-card.is-active .plan-card-cta { color: var(--c-text-muted); }

.plan-card-chevron {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--c-text-muted);
  transition: transform 0.22s ease, color 0.15s;
}
.plan-card.is-active .plan-card-chevron {
  transform: rotate(180deg);
  color: var(--c-accent-dark);
}

/* Full-width panel below the grid */
.plan-panel {
  margin-top: 10px;
  border-radius: var(--r-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  border-top: 3px solid;
  overflow: hidden;
  animation: faq-in 0.2s ease;
}
.plan-panel--summer { border-top-color: var(--c-accent); }
.plan-panel--spring { border-top-color: #6dbf8c; }
.plan-panel--fall   { border-top-color: #e8934a; }
.plan-panel--winter { border-top-color: #8ab4d4; }

.plan-panel-label {
  margin: 0;
  padding: 10px 16px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.plan-panel--summer .plan-panel-label { color: var(--c-accent-dark); }
.plan-panel--spring .plan-panel-label { color: #4da06e; }
.plan-panel--fall   .plan-panel-label { color: #c97430; }
.plan-panel--winter .plan-panel-label { color: #5a8eb8; }

.plan-panel-list {
  list-style: none;
  padding: 14px 16px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-panel-list li {
  font-size: 0.82rem;
  color: var(--c-text-2);
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}
.plan-panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-border);
}
.plan-panel--summer .plan-panel-list li::before { background: var(--c-accent); }
.plan-panel--spring .plan-panel-list li::before { background: #6dbf8c; }
.plan-panel--fall   .plan-panel-list li::before { background: #e8934a; }
.plan-panel--winter .plan-panel-list li::before { background: #8ab4d4; }

/* HOME: KNOW BEFORE YOU GO */
.kbyg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 var(--page-x) 28px;
}
.kbyg-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  border-left: 4px solid;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kbyg-card--bear  { border-left-color: #e05757; }
.kbyg-card--lnt   { border-left-color: #6dbf8c; }
.kbyg-card--water { border-left-color: #8ab4d4; }
.kbyg-card--fire  { border-left-color: #e8934a; }
.kbyg-card--gear  { border-left-color: var(--c-accent-dark); }
.kbyg-card--fish  { border-left-color: #7b8fc4; }
.kbyg-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kbyg-icon svg { width: 16px; height: 16px; }
.kbyg-card--bear  .kbyg-icon { background: #fde8e8; color: #e05757; }
.kbyg-card--lnt   .kbyg-icon { background: #e8f5ee; color: #4da06e; }
.kbyg-card--water .kbyg-icon { background: #e8f0f8; color: #5a8eb8; }
.kbyg-card--fire  .kbyg-icon { background: #fdf0e6; color: #c97430; }
.kbyg-card--gear  .kbyg-icon { background: #e5f5f3; color: var(--c-accent-dark); }
.kbyg-card--fish  .kbyg-icon { background: #eeeeff; color: #5a6db4; }
.kbyg-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}
.kbyg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kbyg-list li {
  font-size: 0.8rem;
  color: var(--c-text-2);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.kbyg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.kbyg-card--bear  .kbyg-list li::before { background: #e05757; }
.kbyg-card--lnt   .kbyg-list li::before { background: #6dbf8c; }
.kbyg-card--water .kbyg-list li::before { background: #8ab4d4; }
.kbyg-card--fire  .kbyg-list li::before { background: #e8934a; }
.kbyg-card--gear  .kbyg-list li::before { background: var(--c-accent-dark); }
.kbyg-card--fish  .kbyg-list li::before { background: #7b8fc4; }

/* ----------------------------------------------------------------
   SITE FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-body);
}

.footer-inner {
  padding: 40px var(--page-x) 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  color: #fff;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 12px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px var(--page-x);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 6px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ----------------------------------------------------------------
   COOKIE NOTICE
   ---------------------------------------------------------------- */
.cookie-notice {
  position: fixed;
  bottom: calc(var(--bn-h) + env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  z-index: 600;
  background: #0f2828;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  padding: 12px var(--page-x);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  transform: translateY(100%);
  transition: transform 0.38s ease;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.25);
}
.cookie-notice.is-visible { transform: translateY(0); }

.cookie-notice p {
  flex: 1 1 200px;
  line-height: 1.55;
  margin: 0;
}
.cookie-notice a { color: var(--c-accent); text-decoration: underline; }
.cookie-notice a:hover { color: #fff; }

.cookie-notice-btn {
  flex-shrink: 0;
  background: var(--c-accent);
  color: var(--c-primary);
  border: none;
  border-radius: var(--r-full);
  padding: 7px 18px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-notice-btn:hover { background: var(--c-accent-dark); color: #fff; }

/* Breadcrumb */
.breadcrumb { padding: 10px 16px 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { font-family: var(--font-body); font-size: 0.8125rem; color: var(--c-text-muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--c-text-muted); }
.breadcrumb a { color: var(--c-accent-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

@media (min-width: 1024px) {
  .cookie-notice {
    bottom: 0;
    flex-wrap: nowrap;
    padding: 12px 48px;
  }
}

/* ----------------------------------------------------------------
   BOTTOM NAVIGATION
   ---------------------------------------------------------------- */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bn-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  z-index: 200;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}

.bn-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 4px;
  color: var(--c-text-muted);
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.bn-item svg { width: 22px; height: 22px; }

.bn-item:hover { color: var(--c-primary); }
.bn-item.active { color: var(--c-primary); }

.bn-badge {
  position: absolute;
  top: 4px; right: calc(50% - 18px);
  background: var(--c-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ----------------------------------------------------------------
   ARTICLE PAGES
   ---------------------------------------------------------------- */
.article-hero {
  position: relative;
  height: clamp(240px, 36vh, 310px);
  margin-top: 0; /* header floats transparently over image */
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.article-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,40,40,0.55) 0%,
    rgba(0,0,0,0.02) 38%,
    rgba(0,0,0,0.50) 68%,
    rgba(0,0,0,0.82) 100%
  );
}

.article-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--page-x) 28px;
  z-index: 2;
}

.article-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-badge-trail);
  color: #fff;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}

.article-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.article-hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  margin-top: 9px;
  line-height: 1.5;
  max-width: 300px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.article-body {
  background: var(--c-surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: -22px;
  position: relative;
  z-index: 5;
  padding: 28px var(--page-x) 32px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

/* Coming Soon placeholder */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  text-align: center;
  min-height: 40vh;
}

.coming-soon-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--c-surface-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
}
.coming-soon-icon svg { width: 32px; height: 32px; }

.coming-soon-label {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: var(--c-bg);
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-text);
}

.coming-soon-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--c-text-2);
  max-width: 280px;
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   ARTICLE CONTENT (body text inside .article-body)
   ---------------------------------------------------------------- */
.article-content > * + * {
  margin-top: 18px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.25;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}

.article-content h3 {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 28px;
}

.article-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.72;
  color: var(--c-text-2);
}

.article-content p.article-lead {
  font-size: 1.0625rem;
  color: var(--c-text);
}

.legal-notice {
  background: rgba(43, 170, 158, 0.08);
  border-left: 3px solid var(--c-accent);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--c-text-2);
  line-height: 1.6;
}

.article-content ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.article-content li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-text-2);
  padding-left: 18px;
  position: relative;
}

.article-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}

.article-content strong {
  font-weight: 600;
  color: var(--c-text);
}

.article-figure {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 24px;
}

.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 320px;
}

.article-figure figcaption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--c-text-muted);
  padding: 7px 12px;
  background: var(--c-bg);
  line-height: 1.45;
  text-align: center;
}

.article-figure--lead {
  border-radius: var(--r-lg);
}

.article-figure--lead img {
  max-height: 280px;
}

.article-info-box {
  background: var(--c-surface-teal);
  border-radius: var(--r-md);
  padding: 16px 18px;
  border-left: 3px solid var(--c-accent);
}

.article-info-box-title {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 10px;
}

.article-tip {
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: 14px 16px;
  border: 1px solid var(--c-border);
}

/* ----------------------------------------------------------------
   MODULE PAGES (directory, map, blog, saved)
   ---------------------------------------------------------------- */
.module-hero {
  padding: calc(var(--header-h) + 32px) var(--page-x) 42px;
  position: relative;
  overflow: hidden;
}

.module-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.module-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,38,38,0.84) 0%, rgba(27,53,53,0.58) 100%);
  z-index: 1;
}

.module-hero-content {
  position: relative;
  z-index: 2;
}

.module-eyebrow {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
  display: block;
}

.module-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.module-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

.module-body {
  background: var(--c-surface);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: -22px;
  position: relative;
  z-index: 5;
  padding: 28px var(--page-x);
  min-height: 55vh;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.placeholder-card {
  border: 2px dashed var(--c-border);
  border-radius: var(--r-lg);
  padding: 40px var(--page-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.placeholder-badge {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: var(--c-bg);
  padding: 4px 14px;
  border-radius: var(--r-full);
}

.placeholder-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--c-text);
}

.placeholder-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--c-text-2);
  max-width: 280px;
  line-height: 1.55;
}

/* ----------------------------------------------------------------
   RELATED ARTICLES (used in article pages)
   ---------------------------------------------------------------- */
.related-section {
  margin-top: 32px;
}

.related-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text);
  margin-bottom: 14px;
}

.related-track {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 calc(-1 * var(--page-x));
  padding: 0 var(--page-x) 4px;
}
.related-track::-webkit-scrollbar { display: none; }

.related-card {
  flex: 0 0 230px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--c-surface);
  transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-card-media {
  height: 148px;
  overflow: hidden;
  position: relative;
}
.related-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-card:hover .related-card-media img { transform: scale(1.04); }

.related-card-badge {
  position: absolute;
  top: 8px; left: 8px;
  color: #fff;
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
}

.related-card-body {
  padding: 12px 13px 14px;
}

.related-card-label {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 3px;
}

.related-card-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

.related-card-excerpt {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--c-text-muted);
  line-height: 1.45;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----------------------------------------------------------------
   UTILITY CLASSES
   ---------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.page-spacer { height: 24px; }

/* ----------------------------------------------------------------
   BACK TO TOP
   ---------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: calc(var(--bn-h) + env(safe-area-inset-bottom) + 12px);
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 150;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.btt-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover  { background: var(--c-primary-800); }
.back-to-top:active { transform: scale(0.92); }
.back-to-top svg    { width: 18px; height: 18px; flex-shrink: 0; }

/* ----------------------------------------------------------------
   LIGHTBOX
   ---------------------------------------------------------------- */
.article-figure img { cursor: zoom-in; }

.lmc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lmc-lightbox--open {
  opacity: 1;
  pointer-events: auto;
}

.lmc-lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  touch-action: none;
  user-select: none;
  will-change: transform;
}

.lmc-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 901;
}

.lmc-lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
.lmc-lightbox-close svg   { width: 22px; height: 22px; }

.lmc-lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 26, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 14px 20px 16px;
  max-width: min(480px, 88vw);
  z-index: 902;
  pointer-events: none;
  display: none;
}

.lmc-lightbox-caption-title {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.lmc-lightbox-caption-text {
  font-size: 0.775rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ----------------------------------------------------------------
   HOME: FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-list {
  padding: 0 var(--page-x) 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--c-bg); }

.faq-item[open] .faq-question {
  border-bottom: 1px solid var(--c-border);
  color: var(--c-accent-dark);
}

.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--c-accent-dark);
  transition: transform 0.22s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 14px 16px 16px;
  animation: faq-in 0.18s ease;
}
.faq-answer p {
  font-size: 0.83rem;
  color: var(--c-text-2);
  line-height: 1.68;
}
.faq-answer strong { color: var(--c-text); }

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   TABLET SHELL (480 px phone frame on mid screens)
   ---------------------------------------------------------------- */
@media (min-width: 540px) and (max-width: 1023px) {
  body {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px rgba(0,0,0,0.08);
    min-height: 100vh;
  }

  .site-header,
  .bottom-nav,
  .mobile-nav-overlay {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 480px;
  }

  .mobile-nav-overlay.open {
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------------------
   MOBILE LANDSCAPE — nav lateral izquierda
   ---------------------------------------------------------------- */
@media (max-width: 1023px) and (orientation: landscape) {
  :root { --bn-side-w: 56px; }

  /* Anula el frame de tablet y elimina espacio inferior */
  body {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: calc(var(--bn-side-w) + env(safe-area-inset-left));
    box-shadow: none;
  }

  /* Bottom-nav → side-nav izquierda */
  .bottom-nav {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: calc(var(--bn-side-w) + env(safe-area-inset-left));
    height: 100dvh;
    padding-left: env(safe-area-inset-left);
    padding-bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-top: none;
    border-right: 1px solid var(--c-border);
    box-shadow: 2px 0 16px rgba(0,0,0,0.06);
    max-width: none;
    transform: none;
  }

  .bn-item {
    flex: none;
    width: 48px;
    padding: 10px 4px;
    font-size: 8px;
    gap: 2px;
  }

  .bn-item svg { width: 20px; height: 20px; }

  .bn-badge {
    top: 6px;
    right: 4px;
  }

  /* Header: anular centering del tablet shell */
  .site-header {
    left: calc(var(--bn-side-w) + env(safe-area-inset-left));
    right: 0;
    max-width: none;
    transform: none;
    width: auto;
  }

  /* Overlay: empieza a la derecha del side-nav */
  .mobile-nav-overlay,
  .mobile-nav-overlay.open {
    left: calc(var(--bn-side-w) + env(safe-area-inset-left));
    right: 0;
    max-width: none;
    transform: none;
    width: auto;
  }

  /* Cookie notice */
  .cookie-notice {
    bottom: 0;
    left: calc(var(--bn-side-w) + env(safe-area-inset-left));
  }

  /* Back to top: sin margen inferior extra */
  .back-to-top {
    bottom: 16px;
  }
}

/* ----------------------------------------------------------------
   WEATHER PANEL  (base — mobile-first)
   ---------------------------------------------------------------- */

/* Mobile weather button (visible < 1024px, hidden on desktop) */
.wx-btn-mobile {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 5px 10px 5px 7px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.wx-btn-mobile:hover,
.wx-btn-mobile[aria-expanded="true"] {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
}
.wx-btn-mobile .wx-btn-icon { width: 20px; height: 20px; flex-shrink: 0; overflow: visible; }
.wx-btn-temp-mobile {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* Weather panel */
.wx-panel {
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 12px;
  right: 12px;
  max-height: calc(100vh - var(--header-h) - 20px);
  overflow-y: auto;
  background: rgba(12,28,28,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  z-index: 300;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wx-panel[hidden] { display: none; }

@keyframes wxSpin { to { transform: rotate(360deg); } }
.wx-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 20px 0;
  justify-content: center;
}
.wx-loading svg { width: 20px; height: 20px; animation: wxSpin 1.2s linear infinite; }

/* Current conditions */
.wx-panel-current {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.wx-panel-icon { width: 48px; height: 48px; flex-shrink: 0; overflow: visible; }
.wx-panel-temp-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.wx-panel-temp { font-family: var(--font-body); font-size: 22px; }
.wx-panel-temp strong { color: #fff; font-weight: 700; }
.wx-panel-temp .wx-c  { color: rgba(255,255,255,0.4); font-size: 14px; }
.wx-panel-time { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; white-space: nowrap; }
.wx-panel-cond { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* Rows: min/max, sun, precip */
.wx-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  gap: 8px;
}
.wx-panel-row span { display: flex; align-items: center; gap: 5px; }
.wx-panel-row svg  { width: 15px; height: 15px; flex-shrink: 0; }
.wx-panel-row strong { color: #fff; }
.wx-panel-row .wx-c { color: rgba(255,255,255,0.38); font-size: 11px; }

/* Sections */
.wx-panel-section { margin-top: 14px; }
.wx-section-title {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wx-alert-badge {
  background: #EAB308;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  border-radius: 99px;
  padding: 1px 5px;
}

/* Access status card */
.wx-access-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
}
.wx-access-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}
.wx-access-road {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.wx-access-status {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.road-open   .wx-access-status { color: #4ADE80; }
.road-closed .wx-access-status { color: #F87171; }
.road-restricted .wx-access-status { color: #FB923C; }

/* Alerts */
.wx-no-incidents {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #4ADE80;
  padding: 8px 0;
}
.wx-no-incidents svg { width: 16px; height: 16px; flex-shrink: 0; }
.wx-alert-item {
  border-left: 3px solid #EAB308;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 0 8px 8px 0;
  margin-bottom: 6px;
  cursor: pointer;
}
.wx-alert-item summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  list-style: none;
  user-select: none;
}
.wx-alert-item summary::-webkit-details-marker { display: none; }
.wx-alert-event { font-family: var(--font-head); font-size: 12px; font-weight: 700; }
.wx-alert-sev {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.wx-alert-dates {
  font-family: var(--font-body); font-size: 10.5px; color: rgba(255,255,255,0.4);
  margin: 5px 0 3px;
}
.wx-alert-desc {
  font-family: var(--font-body); font-size: 11.5px; color: rgba(255,255,255,0.65);
  line-height: 1.5; margin: 0;
}

/* Webcam CTA */
.wx-webcam-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(62,207,204,0.10);
  border: 1px solid rgba(62,207,204,0.22);
  color: #3ECFCC;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.wx-webcam-cta:hover { background: rgba(62,207,204,0.18); border-color: rgba(62,207,204,0.4); }
.wx-webcam-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.wx-webcam-cta span { flex: 1; }
.wx-webcam-arrow { opacity: 0.6; }

/* Disclaimer */
.wx-disclaimer {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.wx-disclaimer a { color: rgba(255,255,255,0.4); text-decoration: underline; }

/* ----------------------------------------------------------------
   DESKTOP LAYOUT  (≥ 1024 px)
   ---------------------------------------------------------------- */
@media (min-width: 1024px) {

  /* Design-token overrides */
  :root {
    --header-h: 70px;
    --page-x:   48px;
  }

  /* Remove the mobile phone-shell constraint */
  body {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
    padding-bottom: 0;
  }

  /* ── Header ──────────────────────────────────────────────────── */
  .site-header {
    max-width: none;
    left: 0; right: 0;
    width: 100%;
    transform: none;
    background: rgba(15, 34, 34, 0.52);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* Hide hamburger button */
  .menu-btn { display: none; }

  /* Mobile nav overlay: completely hidden */
  .mobile-nav-overlay,
  .mobile-nav-overlay.open {
    display: none !important;
  }

  /* ── Desktop inline navigation — centered absolutely ─────────── */
  .desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .desktop-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: var(--r-full);
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .desktop-nav a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .desktop-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .desktop-nav a:hover svg { opacity: 1; }
  .desktop-nav a.active {
    color: var(--c-accent);
    background: rgba(62,207,204,0.12);
  }
  .desktop-nav a.active svg { opacity: 1; }

  /* ── Explore dropdown ─────────────────────────────────────────── */
  .nav-dropdown { position: relative; }

  .nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    padding: 7px 14px;
    border-radius: var(--r-full);
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-dropdown-btn svg:first-child {
    width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7;
  }
  .nav-dropdown-btn:hover,
  .nav-dropdown-btn[aria-expanded="true"] {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
  .nav-dropdown-btn:hover svg:first-child,
  .nav-dropdown-btn[aria-expanded="true"] svg:first-child { opacity: 1; }
  .nav-dropdown-btn.active {
    color: var(--c-accent);
    background: rgba(62,207,204,0.12);
  }
  .nav-dropdown-btn.active svg:first-child { opacity: 1; }

  .nav-dropdown-chevron {
    width: 11px; height: 11px;
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--c-primary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.42);
    display: flex;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
    z-index: 400;
  }
  .nav-dropdown-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-col {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    min-width: 190px;
  }
  .nav-dropdown-col + .nav-dropdown-col {
    border-left: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.15);
    min-width: 340px;
  }

  .nav-col-title {
    display: block;
    font-family: var(--font-head);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    padding: 2px 24px 10px;
  }
  .nav-col--featured .nav-col-title {
    color: var(--c-accent);
    opacity: 0.8;
  }

  .nav-col-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 2px 22px 6px;
  }

  /* Explore column links */
  .nav-dropdown-col:first-child a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .nav-dropdown-col:first-child a svg {
    width: 14px; height: 14px; flex-shrink: 0; opacity: 0.55;
    transition: opacity 0.15s;
  }
  .nav-dropdown-col:first-child a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  .nav-dropdown-col:first-child a:hover svg { opacity: 1; }
  .nav-dropdown-col:first-child a.active { color: var(--c-accent); background: rgba(62,207,204,0.1); }
  .nav-dropdown-col:first-child a.active svg { opacity: 1; }

  /* Don't Miss — horizontal cards */
  .nav-featured-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 24px;
    transition: background 0.15s;
  }
  .nav-featured-item:hover { background: rgba(255,255,255,0.07); }
  .nav-featured-item.active { background: rgba(62,207,204,0.08); }

  .nav-featured-thumb {
    width: 76px;
    height: 52px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.88;
    transition: opacity 0.2s;
  }
  .nav-featured-item:hover .nav-featured-thumb { opacity: 1; }

  .nav-featured-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.82);
    line-height: 1.35;
    transition: color 0.15s;
  }
  .nav-featured-item:hover .nav-featured-label { color: #fff; }
  .nav-featured-item.active .nav-featured-label { color: var(--c-accent); }

  /* Blog CTA at foot of Don't Miss */
  .nav-blog-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px;
    padding: 10px 0 6px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-display);
    font-size: 12.5px;
    color: var(--c-accent);
    opacity: 0.85;
    transition: opacity 0.15s, color 0.15s;
  }
  .nav-blog-cta svg { width: 13px; height: 13px; flex-shrink: 0; }
  .nav-blog-arrow { margin-left: auto; width: 12px !important; height: 12px !important; transition: transform 0.2s; }
  .nav-blog-cta:hover { opacity: 1; color: #fff; }
  .nav-blog-cta:hover .nav-blog-arrow { transform: translateX(3px); }

  /* ── Header utilities (right side) ───────────────────────────── */
  .header-utils {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
  }

  .header-info { display: contents; }

  /* Weather toggle button */
  .wx-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r-full);
    padding: 5px 10px 5px 7px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .wx-btn:hover, .wx-btn[aria-expanded="true"] {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.3);
  }

  .wx-btn-icon { width:24px; height:24px; flex-shrink:0; overflow:visible; }

  .wx-btn-temp {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.85);
  }
  .wx-btn-temp strong { color: #fff; font-weight: 600; }
  .wx-btn-temp .wx-c  { color: rgba(255,255,255,0.45); font-size: 11px; }

  .wx-btn-chevron {
    width: 12px; height: 12px;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
    transition: transform 0.2s;
  }
  .wx-btn[aria-expanded="true"] .wx-btn-chevron { transform: rotate(180deg); }

  /* Weather panel — desktop: right-aligned, fixed width */
  .wx-panel { left: auto; right: 12px; width: 340px; }

  /* Hide mobile weather button on desktop */
  .wx-btn-mobile { display: none; }

  .lang-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--r-full);
    padding: 5px 12px 5px 10px;
    transition: border-color 0.2s;
  }
  .lang-wrap:hover { border-color: rgba(255,255,255,0.5); }

  .lang-icon {
    width: 15px;
    height: 15px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
  }

  .lang-select {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
  }
  .lang-select option { background: #1B3535; color: #fff; }

  /* ── Bottom navigation: hidden on desktop ────────────────────── */
  .bottom-nav { display: none; }

  /* ── Back to top: reposition for desktop (no bottom-nav) ─────── */
  .back-to-top {
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg { width: 20px; height: 20px; }

  /* ── Hero: wide horizontal strip, header floats over it ─────── */
  .hero {
    margin-top: 0;
    min-height: 0;
  }

  .hero-img {
    height: clamp(380px, 46vh, 500px);
    object-position: center 62%;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding: 0 72px 64px;
  }

  .hero-eyebrow {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 3.8rem;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 0.925rem;
    max-width: 480px;
    margin-top: 10px;
  }

  .search-wrapper {
    width: 500px;
    max-width: 100%;
    margin-top: 20px;
  }

  /* ── Page body: full width, content centered ─────────────────── */
  .page-body {
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
    padding-top: 0;
  }

  /* Constrain & center all inner sections */
  .quick-access {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 48px 24px;
  }

  .quick-grid {
    max-width: 680px;
    margin: 0 auto;
    gap: 20px;
  }

  .quick-icon {
    width: 64px;
    height: 64px;
  }
  .quick-icon svg { width: 28px; height: 28px; }
  .quick-label { font-size: 10px; }

  .divider {
    max-width: 1104px;
    margin: 8px auto;
  }

  .section-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 48px 18px;
  }
  .section-title { font-size: 1.25rem; }
  .section-title svg { width: 22px; height: 22px; }

  /* ── Featured: 4-column grid (no carousel) ───────────────────── */
  .featured-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 48px 16px;
    gap: 24px;
  }

  .featured-card {
    flex: none;
    width: auto;
    scroll-snap-align: none;
  }

  .featured-card-media { height: 220px; }

  .carousel-dots { display: none; }

  /* ── Category grid: 3 columns for 6 items ────────────────────── */
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 32px;
    gap: 18px;
  }

  .category-card {
    aspect-ratio: 1 / 0.72;
  }

  .category-label { font-size: 14px; }
  .category-icon { width: 38px; height: 38px; }
  .category-icon svg { width: 20px; height: 20px; }

  .page-spacer { height: 52px; }

  /* ── Lake intro ───────────────────────────────────────────────── */
  .lake-intro-body {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 32px;
  }
  .photo-strip {
    overflow: visible;
    margin: 20px 0 0;
    padding: 0;
    gap: 10px;
  }
  .photo-strip-item {
    flex: 1 1 0;
    width: 0;
    height: 155px;
  }

  .lake-stats { margin: 0; flex-wrap: wrap; overflow: visible; gap: 12px; }
  .stat-chip { min-width: 90px; padding: 10px 20px; }
  .stat-chip-value { font-size: 1rem; }
  .lake-intro-text { font-size: 0.9375rem; }
  .lake-intro-cols {
    flex-direction: row;
    align-items: flex-start;
    gap: 44px;
    margin-top: 20px;
  }
  .lake-intro-text-col { flex: 0 0 54%; }
  .lake-intro-map-col  { flex: 1; position: sticky; top: 80px; }
  .lake-intro-map      { height: 440px; }

  /* ── Activities grid: 3-column (activity cards with descriptions) */
  .activities-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 16px;
    gap: 16px;
  }
  .activity-card { padding: 20px 16px 22px; gap: 6px; }
  .activity-card-desc { font-size: 0.775rem; }

  /* ── How to Get Here ─────────────────────────────────────────── */
  .gth-intro {
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 0 48px;
  }
  .gth-city-list {
    max-width: 480px;
    margin: 0 0 20px;
  }
  .gth-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 18px;
    gap: 16px;
  }
  .gth-tip {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 14px 20px;
  }

  /* ── Guides grid: 4-column ────────────────────────────────────── */
  .guides-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 40px;
    gap: 20px;
  }
  .guide-card-media { height: 160px; }
  .guide-card-title { font-size: 0.875rem; }
  .guide-card-excerpt { font-size: 0.8rem; -webkit-line-clamp: 3; }

  /* ── Geology callout: side by side ───────────────────────────── */
  .geo-callout {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: flex;
    align-items: stretch;
  }
  .geo-callout-img { width: 42%; height: auto; flex-shrink: 0; }
  .geo-callout-body { padding: 36px 44px; display: flex; flex-direction: column; justify-content: center; }
  .geo-callout-title { font-size: 1.5rem; margin-bottom: 14px; }
  .geo-callout-text { font-size: 0.9375rem; }

  /* ── Plan Your Visit: 4-column ────────────────────────────────── */
  .plan-section-body {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 40px;
  }
  .plan-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
  .plan-card-thumb { height: 145px; object-position: center 30%; }
  .plan-card-header { padding: 13px 16px 14px; }
  .plan-card-season { font-size: 9px; }
  .plan-card-title { font-size: 0.875rem; }
  .plan-card-cta { font-size: 0.72rem; }
  .plan-panel { margin-top: 14px; }
  .plan-panel-list { padding: 16px 24px 20px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .plan-panel-list li { font-size: 0.875rem; width: 50%; padding: 6px 16px 6px 22px; white-space: normal; }
  .plan-panel-list li::before { top: 13px; }

  /* ── Know Before You Go: 3-column ─────────────────────────────── */
  .kbyg-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 48px 36px;
  }
  .kbyg-card { padding: 20px; gap: 10px; }
  .kbyg-icon { width: 38px; height: 38px; }
  .kbyg-icon svg { width: 18px; height: 18px; }
  .kbyg-heading { font-size: 0.9375rem; }
  .kbyg-list li { font-size: 0.835rem; }

  /* ── FAQ ─────────────────────────────────────────────────────── */
  .faq-list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 32px;
    gap: 10px;
  }
  .faq-question { font-size: 0.9375rem; padding: 18px 22px; }
  .faq-chevron { width: 18px; height: 18px; }
  .faq-answer { padding: 16px 22px 20px; }
  .faq-answer p { font-size: 0.875rem; }

  /* ── Article pages ──────────────────────────────────────────── */
  .article-hero {
    height: clamp(280px, 32vh, 370px);
  }

  .article-hero-content {
    padding: 0 72px 56px;
  }

  .article-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
  }

  .article-hero-subtitle {
    font-size: 1rem;
    max-width: 540px;
    margin-top: 12px;
  }

  .article-body {
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
    padding: 52px 72px 64px;
  }

  .article-content {
    max-width: 960px;
    margin: 0 auto;
  }

  .module-body .article-body {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  .article-figure--lead img {
    max-height: 520px;
  }

  .article-content h2 {
    font-size: 1.75rem;
  }

  .article-content h3 {
    font-size: 1.0625rem;
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .article-figure img {
    max-height: 460px;
  }

  /* ── Related articles: desktop grid ─────────────────────────── */
  .related-section {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 56px;
  }

  .related-title {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .related-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 24px;
    margin: 0;
    padding: 0;
    scrollbar-width: auto;
  }

  .related-card {
    flex: none;
    width: auto;
  }

  .related-card-media {
    height: 200px;
  }

  .related-card-title {
    font-size: 14.5px;
  }

  .related-card-excerpt {
    font-size: 12.5px;
    -webkit-line-clamp: 3;
  }

  /* ── Module pages ───────────────────────────────────────────── */
  .module-hero {
    padding: calc(var(--header-h) + 40px) 72px 52px;
  }

  .module-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }

  .module-title {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
  }

  .module-subtitle {
    font-size: 1rem;
    max-width: 580px;
    color: rgba(255,255,255,0.75);
  }

  .module-body {
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
    padding: 52px 72px 64px;
  }

  /* ── Footer ──────────────────────────────────────────────────── */
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 48px 44px;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .footer-brand {
    flex: 0 0 260px;
  }

  .footer-nav {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 48px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
  }

  .footer-legal {
    margin-top: 0;
  }
}

/* ================================================================
   HOME: NEW COMPONENTS (v2.1 restructure)
   ================================================================ */

/* ── Quick Planning (dashboard tiles) ─────────────────────────── */
.quick-plan-section {
  padding: 4px var(--page-x) 20px;
}

.quick-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.quick-plan-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  background: var(--c-surface-teal);
  border-radius: var(--r-md);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, transform 0.15s;
}
.quick-plan-item:hover  { background: #c5ecea; }
.quick-plan-item:active { transform: scale(0.97); }

.quick-plan-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
  flex-shrink: 0;
}
.quick-plan-icon svg { width: 16px; height: 16px; }

.quick-plan-text { flex: 1; min-width: 0; }

.quick-plan-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.25;
  margin-bottom: 2px;
}

.quick-plan-copy {
  font-size: 0.675rem;
  color: var(--c-text-2);
  line-height: 1.42;
}

/* ── Lake: Best For + Nearby links ─────────────────────────────── */
.lake-best-for {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-accent);
}

.lake-best-for-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 7px;
}

.lake-best-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.lake-best-for-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--c-surface-teal);
  color: var(--c-primary);
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 11px 4px 7px;
  border-radius: var(--r-full);
}
.lake-best-for-tag svg { width: 12px; height: 12px; color: var(--c-accent-dark); flex-shrink: 0; }

.lake-nearby {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin-top: 10px;
  padding: 9px 12px;
  background: rgba(229,245,243,0.55);
  border-radius: var(--r-md);
  border: 1px solid rgba(62,207,204,0.2);
}

.lake-nearby-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}

.lake-nearby a {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.lake-nearby a:hover { color: var(--c-primary); }

/* ── Editorial Guides (1 featured + 2 compact) ─────────────────── */
.guides-editorial {
  padding: 0 var(--page-x) 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-featured {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.guide-featured:hover  { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.guide-featured:active { transform: scale(0.99); }

.guide-featured-media {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.guide-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.guide-featured:hover .guide-featured-media img { transform: scale(1.03); }

.guide-featured-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 9px;
  border-radius: var(--r-full);
}

.guide-seasonal-pill {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 600;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  padding: 3px 9px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.guide-featured-body {
  padding: 15px 16px 18px;
}

.guide-featured-eyebrow {
  font-family: var(--font-head);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 4px;
}

.guide-featured-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.3;
  margin-bottom: 6px;
}

.guide-featured-excerpt {
  font-size: 0.8125rem;
  color: var(--c-text-2);
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.guide-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--c-accent-dark);
}
.guide-featured-cta svg { width: 13px; height: 13px; }

.guides-compact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.guide-compact {
  display: flex;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.guide-compact:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.guide-compact:active { transform: scale(0.98); }

.guide-compact-media {
  width: 80px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.guide-compact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.guide-compact:hover .guide-compact-media img { transform: scale(1.06); }

.guide-compact-badge {
  position: absolute;
  top: 5px; left: 5px;
  font-family: var(--font-head);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 6px;
  border-radius: var(--r-full);
}

.guide-compact-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.guide-compact-tag {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.guide-compact-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
}

/* ── FAQ: show/hide more ────────────────────────────────────────── */
.faq-item--hidden {
  display: none;
}
.faq-item--hidden.faq-is-visible {
  display: block;
}

.faq-see-more {
  display: flex;
  justify-content: center;
  padding: 4px var(--page-x) 16px;
}

.faq-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-accent-dark);
  padding: 9px 24px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-accent-dark);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.faq-see-more-btn:hover {
  background: var(--c-accent-dark);
  color: #fff;
}
.faq-see-more-btn svg { width: 15px; height: 15px; transition: transform 0.22s ease; }
.faq-see-more-btn.is-open svg { transform: rotate(180deg); }

/* ── Desktop overrides for v2.1 components ──────────────────────── */
@media (min-width: 1024px) {

  .quick-plan-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 48px 32px;
  }
  .quick-plan-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .quick-plan-item { padding: 18px 20px; gap: 14px; }
  .quick-plan-icon { width: 42px; height: 42px; }
  .quick-plan-icon svg { width: 18px; height: 18px; }
  .quick-plan-title { font-size: 0.875rem; }
  .quick-plan-copy { font-size: 0.75rem; }

  .lake-best-for { margin-top: 20px; }

  .guides-editorial {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
  .guide-featured {
    grid-column: 1;
    grid-row: 1;
  }
  .guide-featured-media { height: 260px; }
  .guide-featured-body { padding: 20px 24px 24px; }
  .guide-featured-title { font-size: 1.3rem; }
  .guide-featured-excerpt { font-size: 0.875rem; -webkit-line-clamp: 3; }

  .guides-compact-row {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .guide-compact { flex: 1; }
  .guide-compact-media { width: 120px; }
  .guide-compact-body { padding: 14px 16px; }
  .guide-compact-title { font-size: 0.875rem; }

  /* How to Get Here: 3 cards on desktop */
  .gth-grid--three { grid-template-columns: repeat(3, 1fr); }

  .faq-see-more {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 48px 32px;
    justify-content: flex-start;
  }
}
