/* ============================================================
   Pedernales Falls Theme — Main Stylesheet
   ============================================================ */

:root {
  --stone:       #2c2416;
  --bark:        #4a3728;
  --rust:        #b85c2e;
  --gold:        #c9923a;
  --sage:        #6b7c5c;
  --water:       #4a7fa5;
  --sand:        #f5ede0;
  --cream:       #fdf8f2;
  --white:       #ffffff;
  --light-stone: #e8dfd3;
  --muted-text:  #6b5e52;
  --nav-h:       68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', 'Georgia', sans-serif;
  background: var(--cream);
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); }

/* ── ALERT BANNER ── */
.alert-banner {
  background: linear-gradient(90deg, #b85c2e, #c9923a);
  padding: 0.7rem 5%;
  display: flex; align-items: center; gap: 1rem;
}
.alert-icon { font-size: 1rem; }
.alert-text { color: var(--white); font-size: 0.85rem; font-weight: 500; flex: 1; }
.alert-learn {
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--stone);
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 2rem; gap: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--sand); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.02em; white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0; list-style: none; flex: 1; justify-content: center; }
.nav-links a {
  color: rgba(245,237,224,0.8); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.5rem 1rem; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--rust); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: 4px; text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--sand); border-radius: 2px;
}

/* ── HERO ── */
.hero {
  position: relative; height: 92vh; min-height: 580px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(30,20,10,0.82) 0%, rgba(30,20,10,0.1) 55%, transparent 100%),
    url('') center/cover no-repeat,
    linear-gradient(135deg, #4a7fa5 0%, #2c5a3a 35%, #6b7c5c 60%, #8a7a5a 100%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 1; padding: 0 5% 4.5rem; max-width: 760px; }
.hero-eyebrow {
  display: inline-block; background: var(--rust); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 2px; margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.12; margin-bottom: 1.1rem;
}
.hero-sub { color: rgba(245,237,224,0.88); font-size: 1.05rem; font-weight: 300; margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-stats { position: absolute; right: 5%; bottom: 4.5rem; display: flex; gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { color: rgba(245,237,224,0.7); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--rust); color: var(--white); padding: 0.75rem 1.6rem;
  border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(245,237,224,0.6); color: var(--sand);
  padding: 0.75rem 1.6rem; border-radius: 4px; text-decoration: none;
  font-weight: 500; font-size: 0.9rem; transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,146,58,0.12); }

/* ── QUICK NAV ── */
.quick-nav { background: var(--bark); }
.quick-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.quick-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.4rem 1rem; border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; transition: background 0.2s;
}
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(201,146,58,0.15); }
.quick-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(201,146,58,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem; font-size: 1.1rem;
}
.quick-label { color: var(--sand); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; }

/* ── SECTION LAYOUT ── */
.section { padding: 4.5rem 5%; }
.section-narrow { max-width: 1100px; margin: 0 auto; }
.section-cream { background: var(--cream); }
.section-sand  { background: var(--sand); }
.section-white { background: var(--white); }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.4rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--stone); margin-bottom: 0.5rem; line-height: 1.2; }
.section-desc { color: var(--muted-text); font-size: 1rem; max-width: 560px; margin-bottom: 2.5rem; }

/* ── PARK INFO BAR ── */
.park-info-section { background: var(--white); padding: 2.5rem 5%; }
.park-info-grid {
  background: var(--stone); border-radius: 8px; padding: 2.5rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.info-block {}
.info-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.info-val { font-size: 0.95rem; color: var(--sand); line-height: 1.5; }
.info-val strong { display: block; font-size: 1.2rem; font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 0.1rem; }

/* ── FEATURED ARTICLE ── */
.featured-article {
  background: var(--white); border-radius: 8px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 24px rgba(44,36,22,0.1); margin-bottom: 2rem;
}
.featured-img {
  background: linear-gradient(135deg, #4a7fa5 0%, #2c5a3a 60%, #8a7a5a 100%);
  min-height: 380px; position: relative; overflow: hidden;
}
.featured-img img,
.featured-photo { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-img-placeholder { position: absolute; inset: 0; }
.waterfall-deco {
  position: absolute; left: 35%; top: 10%; width: 8px; bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(74,127,165,0.4), transparent);
  border-radius: 4px;
}
.waterfall-deco::before {
  content: ''; position: absolute; left: -20px; top: 15%; width: 4px; bottom: 20%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); border-radius: 4px;
}
.waterfall-deco::after {
  content: ''; position: absolute; left: 18px; top: 8%; width: 5px; bottom: 25%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); border-radius: 4px;
}
.featured-body {
  padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
}
.article-cat {
  display: inline-block; background: var(--sand); color: var(--rust);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 2px; margin-bottom: 0.9rem;
}
.featured-body h2 {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
  color: var(--stone); line-height: 1.25; margin-bottom: 1rem;
}
.featured-body p { color: var(--muted-text); font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--sage); font-weight: 500; }
.read-more {
  color: var(--rust); text-decoration: none; font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.4rem;
  width: fit-content; border-bottom: 1.5px solid var(--rust); padding-bottom: 0.1rem; transition: color 0.2s, border-color 0.2s;
}
.read-more:hover { color: var(--gold); border-color: var(--gold); }

/* ── ARTICLE GRID ── */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.article-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,36,22,0.07); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: flex; flex-direction: column; color: inherit;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(44,36,22,0.14); }
.card-img { height: 185px; position: relative; overflow: hidden; }
.card-photo, .card-img-inner, .card-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-img-placeholder { background: linear-gradient(135deg, #6b7c5c 0%, #4a3728 100%); }
.card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.4rem; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--stone); line-height: 1.35; margin-bottom: 0.6rem; flex: 1; }
.card-body p { font-size: 0.85rem; color: #7a6a5e; line-height: 1.6; margin-bottom: 1rem; }
.card-link { font-size: 0.8rem; font-weight: 600; color: var(--rust); text-decoration: none; }
.grid-more { text-align: center; margin-top: 2.5rem; }
.no-posts { color: var(--muted-text); grid-column: 1/-1; }

/* ── WHERE TO STAY ── */
.stays-section { background: var(--sand); }
.stays-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stay-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(44,36,22,0.07); text-decoration: none;
  display: flex; flex-direction: column; transition: transform 0.2s; color: inherit;
}
.stay-card:hover { transform: translateY(-2px); }
.stay-img { height: 140px; position: relative; }
.si-glamping { background: linear-gradient(135deg, #8a7a5a 0%, #c9923a 80%); }
.si-hotel    { background: linear-gradient(135deg, #6b7c5c 0%, #4a3728 100%); }
.si-cabin    { background: linear-gradient(135deg, #4a7fa5 0%, #2c5a3a 100%); }
.si-camping  { background: linear-gradient(135deg, #b85c2e 0%, #8a7a5a 100%); }
.stay-body { padding: 1rem; flex: 1; }
.stay-type { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.25rem; }
.stay-body h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--stone); margin-bottom: 0.25rem; }
.stay-dist { font-size: 0.78rem; color: var(--sage); }
.stay-cta { padding: 0.7rem 1rem; border-top: 1px solid var(--light-stone); font-size: 0.78rem; font-weight: 600; color: var(--rust); text-align: center; }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--sage); padding: 3.5rem 5%; text-align: center;
}
.newsletter-section h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); margin-bottom: 0.5rem;
}
.newsletter-section p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.nl-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.nl-input {
  flex: 1; padding: 0.75rem 1rem; border: none; border-radius: 4px;
  font-size: 0.9rem; font-family: inherit;
}
.nl-btn {
  background: var(--rust); color: var(--white); border: none;
  padding: 0.75rem 1.4rem; border-radius: 4px; font-weight: 600;
  font-size: 0.88rem; cursor: pointer; font-family: inherit;
  white-space: nowrap; transition: background 0.2s;
}
.nl-btn:hover { background: var(--stone); }
.nl-note { margin-top: 0.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
.site-footer { background: var(--stone); color: rgba(245,237,224,0.7); padding: 3rem 5% 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand-name { font-family: 'Playfair Display', serif; color: var(--sand); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; color: rgba(245,237,224,0.6); }
.footer-col h5 { color: var(--sand); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(245,237,224,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.78rem; color: rgba(245,237,224,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(245,237,224,0.4); text-decoration: none; font-size: 0.78rem; }
.footer-legal a:hover { color: var(--gold); }

/* ── SINGLE ARTICLE ── */
.single-main { background: var(--cream); }
.article-hero { position: relative; height: 55vh; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero-img { position: absolute; inset: 0; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, #4a7fa5, #2c5a3a); }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,8,0.85) 0%, transparent 60%); }
.article-hero-content { position: relative; z-index: 1; padding: 0 5% 3rem; max-width: 900px; }
.article-cat-link { display: inline-block; background: var(--rust); color: var(--white); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 2px; margin-bottom: 0.75rem; text-decoration: none; }
.article-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.75rem; }
.article-meta-bar { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.breadcrumb-wrap { background: var(--white); border-bottom: 1px solid var(--light-stone); }
.breadcrumb { padding: 0.7rem 0; }
.breadcrumb ol { list-style: none; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.8rem; color: var(--muted-text); }
.breadcrumb li::after { content: '→'; margin-left: 0.5rem; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--rust); text-decoration: none; }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3rem 0; margin: 0 5%; max-width: 1100px; }

/* ARTICLE CONTENT */
.article-content { min-width: 0; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--stone); margin: 2rem 0 0.75rem; line-height: 1.25; }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--stone); margin: 1.5rem 0 0.5rem; }
.article-content p { margin-bottom: 1.2rem; color: #3d3428; font-size: 1.02rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 0 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: 0.4rem; color: #3d3428; font-size: 1.02rem; }
.article-content img { border-radius: 6px; margin: 1.5rem 0; box-shadow: 0 4px 16px rgba(44,36,22,0.1); }
.article-content a { color: var(--rust); }
.article-content blockquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; background: var(--sand); border-radius: 0 6px 6px 0; margin: 1.5rem 0; font-style: italic; color: var(--muted-text); }

/* AFFILIATE CTA BOX */
.affiliate-cta-box { background: var(--sand); border: 1px solid var(--light-stone); border-radius: 8px; padding: 1.75rem; margin: 2.5rem 0; }
.aff-cta-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--stone); margin-bottom: 1rem; }
.aff-cta-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.aff-btn { background: var(--rust); color: var(--white); padding: 0.65rem 1.2rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: background 0.2s; }
.aff-btn:hover { background: var(--gold); color: var(--white); }
.aff-btn-outline { background: transparent; color: var(--rust); border: 1.5px solid var(--rust); }
.aff-btn-outline:hover { background: var(--rust); color: var(--white); }
.aff-disclosure { font-size: 0.75rem; color: var(--muted-text); }

/* TAGS */
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.tag-pill { background: var(--light-stone); color: var(--muted-text); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.78rem; text-decoration: none; transition: background 0.2s; }
.tag-pill:hover { background: var(--sand); color: var(--rust); }

/* RELATED POSTS */
.related-posts { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--light-stone); }
.related-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--stone); margin-bottom: 1.25rem; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.related-card { text-decoration: none; color: inherit; border-radius: 6px; overflow: hidden; background: var(--white); box-shadow: 0 2px 8px rgba(44,36,22,0.07); transition: transform 0.2s; }
.related-card:hover { transform: translateY(-2px); }
.related-img { height: 120px; position: relative; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-img-ph { width: 100%; height: 100%; background: linear-gradient(135deg, #6b7c5c, #4a3728); }
.related-body { padding: 0.75rem; }
.related-body h4 { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--stone); line-height: 1.3; }

/* SIDEBAR */
.article-sidebar {}
.sidebar-box { background: var(--white); border: 1px solid var(--light-stone); border-radius: 8px; padding: 1.25rem; margin-bottom: 1.25rem; }
.sidebar-box-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--stone); margin-bottom: 0.9rem; }
.sidebar-facts { list-style: none; }
.sidebar-facts li { font-size: 0.88rem; padding: 0.4rem 0; border-bottom: 1px solid var(--light-stone); color: var(--muted-text); }
.sidebar-facts li:last-child { border-bottom: none; }
.sidebar-facts strong { color: var(--stone); }
.sidebar-cta { display: block; margin-top: 1rem; background: var(--rust); color: var(--white); text-align: center; padding: 0.65rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: background 0.2s; }
.sidebar-cta:hover { background: var(--gold); color: var(--white); }
.sidebar-aff { background: var(--sand); }
.sidebar-aff-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rust); margin-bottom: 0.5rem; }
.sidebar-aff p { font-size: 0.88rem; color: var(--muted-text); margin-bottom: 0; }

/* ARCHIVE / PAGINATION */
.archive-header { margin-bottom: 2rem; }
.archive-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--stone); }
.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.page-numbers { padding: 0.5rem 0.9rem; border-radius: 4px; text-decoration: none; font-size: 0.9rem; color: var(--muted-text); border: 1px solid var(--light-stone); }
.page-numbers.current { background: var(--rust); color: var(--white); border-color: var(--rust); }
.page-numbers:hover { border-color: var(--rust); color: var(--rust); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .stays-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .park-info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-img { min-height: 260px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--stone); padding: 1rem 2rem 1.5rem; z-index: 200; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 3rem 4%; }
  .article-grid { grid-template-columns: 1fr; }
  .stays-grid { grid-template-columns: 1fr 1fr; }
  .park-info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quick-grid { grid-template-columns: repeat(3,1fr); }
  .nl-form { flex-direction: column; }
  .aff-cta-links { flex-direction: column; }
  .related-grid { grid-template-columns: 1fr; }
  .article-sidebar { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
