/* ============================================================
   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: #ffffff !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('https://pedernalesfalls.com/wp-content/uploads/2026/04/7.-Texas-Hill-Country-Milky-Way-in-April-1new.jpg') 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: #ffffff; 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: #ffffff; 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; }
.stay-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.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: #ffffff; 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); }

/* ── Newsletter CTA button ── */
.nl-cta-btn {
    display: inline-block;
    background: var(--rust);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s;
}
.nl-cta-btn:hover {
    background: var(--stone);
    color: #ffffff;
}
/* ── 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 280px; gap: 2rem; 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:not(.aff-btn):not(.sidebar-cta):not(.btn-primary) { 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 — definitive fix using all link pseudo-states ── */
.aff-btn,
a.aff-btn,
a.aff-btn:link,
a.aff-btn:visited {
  background: #b85c2e;
  color: #ffffff !important;
  padding: 0.65rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
  display: inline-block;
}
a.aff-btn:hover,
a.aff-btn:focus,
.aff-btn:hover {
  background: #c9923a;
  color: #ffffff !important;
}
.aff-btn-outline,
a.aff-btn.aff-btn-outline,
a.aff-btn.aff-btn-outline:link,
a.aff-btn.aff-btn-outline:visited {
  background: transparent;
  color: #b85c2e !important;
  border: 1.5px solid #b85c2e;
}
a.aff-btn.aff-btn-outline:hover,
a.aff-btn.aff-btn-outline:focus,
.aff-btn-outline:hover {
  background: #b85c2e;
  color: #ffffff !important;
}
.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: #ffffff !important; 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: #ffffff !important; }
.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; }
}

/* ================================================================
   FEATURE ADDITIONS — v3
   ================================================================ */

/* ── NAV SEARCH ── */
.nav-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-search:focus-within {
  background: rgba(255,255,255,0.16);
  border-color: rgba(201,146,58,0.6);
}
.nav-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--sand);
  font-size: 0.82rem;
  font-family: inherit;
  padding: 0.4rem 0.75rem;
  width: 150px;
  transition: width 0.25s;
}
.nav-search-input::placeholder { color: rgba(245,237,224,0.45); }
.nav-search-input:focus { width: 200px; }
.nav-search-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(245,237,224,0.6);
  padding: 0.4rem 0.7rem 0.4rem 0.2rem;
  display: flex; align-items: center;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--gold); }

.search-header { margin-bottom: 2rem; }
.search-header h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--stone); }
.search-header p { color: var(--muted-text); margin-top: 0.3rem; }
.no-results { text-align: center; padding: 3rem 1rem; }
.no-results p { color: var(--muted-text); margin-bottom: 1rem; }

/* ── PARK STATUS WIDGET ── */
.park-status-bar { background: var(--white); border-bottom: 1px solid var(--light-stone); }
.park-status-inner {
  max-width: 1100px; margin: 0 auto; padding: 0.85rem 5%;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.ps-live { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.ps-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3cb06e;
  box-shadow: 0 0 0 3px rgba(60,176,110,0.2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(60,176,110,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(60,176,110,0.08); }
}
.ps-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-text); }
.ps-items { display: flex; gap: 1.25rem; flex: 1; flex-wrap: wrap; }
.ps-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; }
.ps-icon { font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.ps-item strong { display: block; font-weight: 600; color: var(--stone); line-height: 1.3; }
.ps-item span { color: var(--muted-text); font-size: 0.78rem; }
.ps-warn strong { color: #854F0B; }
.ps-ok strong { color: #3B6D11; }
.ps-link {
  color: var(--rust); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  border-bottom: 1px solid var(--rust);
}
.ps-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── CHECKLIST EMAIL CTA ── */
.checklist-section { background: var(--stone); }
.checklist-box { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.checklist-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; line-height: 1.2; }
.checklist-text p { color: rgba(245,237,224,0.75); font-size: 0.95rem; margin-bottom: 1rem; }
.checklist-preview { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.checklist-preview li { color: rgba(245,237,224,0.85); font-size: 0.88rem; }
.checklist-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.75rem; }
.checklist-form-label { color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.85rem; }
.cl-form { display: flex; flex-direction: column; gap: 0.6rem; }
.cl-input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; padding: 0.75rem 1rem; color: var(--white); font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color 0.2s; }
.cl-input::placeholder { color: rgba(245,237,224,0.4); }
.cl-input:focus { border-color: var(--gold); }
.cl-btn { background: var(--rust); color: #ffffff; border: none; padding: 0.8rem 1rem; border-radius: 4px; font-weight: 600; font-size: 0.9rem; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.cl-btn:hover { background: var(--gold); }
.cl-note { font-size: 0.75rem; color: rgba(245,237,224,0.45); margin-top: 0.5rem; }

/* ── PARK INFO PAGE TEMPLATE ── */
.article-hero-short { height: 36vh; min-height: 260px; }
.parkinfo-strip { background: var(--stone); padding: 0; }
.parkinfo-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.pf-fact { background: var(--stone); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.pf-fact-icon { font-size: 1.4rem; flex-shrink: 0; }
.pf-fact strong { display: block; font-size: 0.88rem; color: var(--gold); font-weight: 600; margin-bottom: 0.1rem; }
.pf-fact span { font-size: 0.82rem; color: rgba(245,237,224,0.7); }
.pf-fact a { color: rgba(245,237,224,0.7); text-decoration: none; }
.pf-fact a:hover { color: var(--gold); }
.parkinfo-layout { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; padding: 3rem 0; margin: 0 5%; max-width: 1100px; }
.parkinfo-map-col { display: flex; flex-direction: column; gap: 1rem; }
.map-card { background: var(--white); border: 1px solid var(--light-stone); border-radius: 8px; overflow: hidden; }
.map-label { background: var(--stone); color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.6rem 1rem; }
.map-embed { line-height: 0; }
.map-address { padding: 0.9rem 1rem 0.5rem; font-size: 0.88rem; color: var(--stone); line-height: 1.5; }
.map-directions-btn { display: block; margin: 0 1rem 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; }
.map-directions-btn:hover { background: var(--gold); color: #ffffff; }
.directions-card, .contact-card { background: var(--white); border: 1px solid var(--light-stone); border-radius: 8px; padding: 1.25rem; }
.directions-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--stone); margin-bottom: 0.85rem; font-weight: 600; }
.directions-from { margin-bottom: 0.75rem; }
.directions-from strong { display: block; font-size: 0.85rem; color: var(--stone); margin-bottom: 0.2rem; }
.directions-from p { font-size: 0.83rem; color: var(--muted-text); line-height: 1.5; }
.directions-note { font-size: 0.78rem; color: #854F0B; background: #FAEEDA; border-radius: 4px; padding: 0.5rem 0.7rem; margin-top: 0.5rem; line-height: 1.4; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }
.contact-list a { color: var(--rust); text-decoration: none; }
.contact-list a:hover { color: var(--gold); }
.parkinfo-content-col { min-width: 0; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
  .parkinfo-layout { grid-template-columns: 1fr; }
  .parkinfo-map-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .map-card { grid-column: 1 / -1; }
  .parkinfo-facts { grid-template-columns: 1fr 1fr; }
  .checklist-box { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav-search { display: none; }
  .ps-items { gap: 0.85rem; }
}
@media (max-width: 600px) {
  .park-status-inner { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .ps-items { flex-direction: column; gap: 0.6rem; }
  .parkinfo-map-col { grid-template-columns: 1fr; }
  .parkinfo-facts { grid-template-columns: 1fr 1fr; }
}

/* ── Article meta bar — white text over hero images ── */
.article-meta-bar .meta-item {
    color: rgba(255, 255, 255, 0.85);
}

/* ── Hero title — allow full width, don't cap at 900px ── */
.article-hero-content {
    max-width: 70%;
    padding-bottom: 2.5rem;
}

/* ── Article layout — centered with balanced margins ── */
.article-layout {
    margin: 0 auto;
    max-width: 1100px;
    padding: 2.5rem 5%;
    width: 100%;
}

/* ── Article content — comfortable reading width ── */
.article-content {
    padding-left: 0;
    max-width: 100%;
}

/* ── Sidebar — stickier, more visual weight ── */
.article-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    align-self: start;
    max-height: calc(100vh - var(--nav-h) - 3rem);
    overflow-y: auto;
}

/* ── Sidebar boxes — warmer, more inviting ── */
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--light-stone);
    border-radius: 10px;
    padding: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(44,36,22,0.06);
}

.sidebar-box-title {
    font-size: 1.05rem;
    border-bottom: 2px solid var(--sand);
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}

.sidebar-facts li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* ── Sidebar CTA button — more prominent ── */
.sidebar-cta {
    margin-top: 1.2rem;
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(184,92,46,0.3);
}

/* ── Affiliate sidebar box — richer background ── */
.sidebar-aff {
    background: var(--sand);
    border: 1px solid var(--light-stone);
    border-left: 3px solid var(--rust);
    border-radius: 10px;
    padding: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(44,36,22,0.06);
}

.sidebar-aff-label {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
}

.sidebar-aff p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 0.75rem !important;
}

/* ── Article content typography — more comfortable reading ── */
.article-content p {
    font-size: 1.05rem;
    line-height: 1.85;
}

.article-content h2 {
    margin-top: 2.5rem;
    font-size: 1.45rem;
}

.article-content ul li,
.article-content ol li {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

/* ── Affiliate CTA box — warmer, more family-friendly ── */
.affiliate-cta-box {
    background: linear-gradient(135deg, var(--sand) 0%, #ede4d4 100%);
    border: 1px solid var(--light-stone);
    border-left: 4px solid var(--rust);
    border-radius: 10px;
    padding: 1.75rem 2rem;
    margin: 2.5rem 0;
}

.aff-cta-title {
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
}

/* ── Breadcrumb — more breathing room ── */
.breadcrumb {
    padding: 0.9rem 4%;
}

.breadcrumb ol {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Related posts — warmer cards ── */
.related-posts {
    margin-top: 3rem;
    padding-top: 2.5rem;
}

.related-body h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.25rem 0;
}

/* ── Mobile: sidebar goes full width cleanly ── */
@media (max-width: 1024px) {
    .article-sidebar {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    .article-layout {
        margin: 0 auto;
        padding: 2rem 4%;
    }
}

/* ── Recent Posts widget — more readable ── */
.widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.widget_recent_entries ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--light-stone);
    line-height: 1.4;
}

.widget_recent_entries ul li:last-child {
    border-bottom: none;
}

.widget_recent_entries ul li a {
    font-size: 0.88rem;
    color: var(--stone);
    text-decoration: none;
    display: block;
    padding-left: 0.9rem;
    position: relative;
}

.widget_recent_entries ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--rust);
    font-size: 0.8rem;
}

.widget_recent_entries ul li a:hover {
    color: var(--rust);
}

/* ── Widget titles — consistent with sidebar style ── */
.widget-title,
.widgettitle {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone);
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--sand);
}

/* ── Widget area inside sidebar — styled as sidebar box ── */
.article-sidebar .widget {
    background: var(--white);
    border: 1px solid var(--light-stone);
    border-radius: 10px;
    padding: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(44,36,22,0.06);
}

.article-sidebar .widget-title,
.article-sidebar .widgettitle {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--stone);
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--sand);
}

.article-sidebar .widget_recent_entries ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-sidebar .widget_recent_entries li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--light-stone);
    line-height: 1.4;
}

.article-sidebar .widget_recent_entries li:last-child {
    border-bottom: none;
}

.article-sidebar .widget_recent_entries li a {
    font-size: 0.88rem;
    color: var(--stone) !important;
    text-decoration: none;
    display: block;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.article-sidebar .widget_recent_entries li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rust);
    font-size: 0.8rem;
    line-height: 1.6;
}

.article-sidebar .widget_recent_entries li a:hover {
    color: var(--rust) !important;
}

/* ── Recent Posts widget — force override ── */
.article-sidebar .widget_recent_entries ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.article-sidebar .widget_recent_entries ul li {
    padding: 0.65rem 0 !important;
    border-bottom: 1px solid var(--light-stone) !important;
    list-style: none !important;
    margin: 0 !important;
}

.article-sidebar .widget_recent_entries ul li:last-child {
    border-bottom: none !important;
}

.article-sidebar .widget_recent_entries ul li a,
.article-sidebar .widget_recent_entries ul li a:link,
.article-sidebar .widget_recent_entries ul li a:visited {
    font-size: 0.87rem !important;
    color: var(--stone) !important;
    text-decoration: none !important;
    display: block !important;
    padding-left: 1.1rem !important;
    position: relative !important;
    line-height: 1.45 !important;
}

.article-sidebar .widget_recent_entries ul li a::before {
    content: '→' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: var(--rust) !important;
    font-size: 0.78rem !important;
    line-height: 1.7 !important;
}

.article-sidebar .widget_recent_entries ul li a:hover {
    color: var(--rust) !important;
}

.featured-body h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.featured-body h2 a:hover {
    color: #c25a2a; /* orange accent matching your "Read the full guide" link */
}

/* style for success msg */

.cl-success {
    color: #f4b860;
    font-size: 1.1em;
    text-align: center;
    padding: 20px 0;
}
