/* ============================================================
   Weekend Basecamp — Global CSS
   Mobile-first responsive design system
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #faf7f2;
  color: #2c2c2c;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* --- LAYOUT UTILS --- */
.container { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 1rem; }

@media (min-width: 640px) {
  .container, .container--narrow { padding: 0 1.5rem; }
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: #CC5500;
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 1rem;
  letter-spacing: 0.02em;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- HEADER --- */
.site-header {
  background: #1a1a1a;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
}
.site-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo__img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo__text {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #f5f0e8;
  text-transform: uppercase;
}

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 24px;
}
.site-nav__link {
  color: #b0a090;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s;
  padding: 8px 0;
}
.site-nav__link:hover,
.site-nav__link:focus { color: #fff; }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .hamburger-btn { display: none !important; }
  .site-header__inner { padding: 0 1.5rem; }
}

/* Hamburger button */
.hamburger-btn {
  background: none;
  border: none;
  color: #d4c8b8;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  transition: color 0.15s;
}
.hamburger-btn:hover { color: #fff; }
.hamburger-btn svg { pointer-events: none; }

/* Mobile drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #1a1a1a;
  z-index: 1000;
  transition: right 0.25s ease;
  padding: 0;
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  right: 0;
}
.mobile-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-drawer__close {
  background: none;
  border: none;
  color: #d4c8b8;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.mobile-nav-drawer__link {
  display: block;
  padding: 14px 20px;
  color: #d4c8b8;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav-drawer__link:hover,
.mobile-nav-drawer__link:focus {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.mobile-nav-drawer__cta {
  margin: 16px;
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: #CC5500;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-nav-drawer__cta:hover { background: #e06000; }

/* --- HERO --- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #f5f0e8 0%, #faf7f2 100%);
  padding: 2rem 1rem 1.25rem;
  text-align: center;
  overflow: hidden;
}
.hero__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #CC5500;
  margin-bottom: 0.75rem;
  background: rgba(204,85,0,0.08);
  padding: 4px 12px;
  border-radius: 4px;
}
.hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 0 0 0.75rem;
}
.hero__subtitle {
  font-size: 0.95rem;
  color: #6b5c4c;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}
.hero__cta {
  display: inline-block;
  padding: 12px 28px;
  background: #CC5500;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s;
}
.hero__cta:hover {
  background: #e06000;
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .hero { padding: 2.5rem 1.5rem 1.5rem; }
}

/* --- SECTION --- */
.section {
  padding: 2rem 1rem;
}
.section--alt {
  background: #f8f6ea;
  border-top: 1px solid #e8dfd3;
  border-bottom: 1px solid #e8dfd3;
}
.section--dark {
  background: #1a1a1a;
  color: #f5f0e8;
}
.section__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
  color: #2c2c2c;
}
.section--dark .section__title { color: #f5f0e8; }

@media (min-width: 640px) {
  .section { padding: 2.5rem 1.5rem; }
}

/* --- CARD GRID --- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 480px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* --- GUIDE CARD --- */
.guide-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.guide-card:hover,
.guide-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.guide-card__thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}
.guide-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-card__body {
  padding: 1rem;
}
.guide-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a7a5a;
}
.guide-card__title {
  margin: 0.35rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.guide-card__desc {
  margin: 0;
  font-size: 0.85rem;
  color: #6b6b6b;
  line-height: 1.5;
}

/* --- SPOTLIGHT CARD --- */
.spotlight {
  display: block;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,80,22,0.88), rgba(74,140,42,0.75), rgba(135,206,235,0.6));
  z-index: 0;
}
.spotlight__content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}
.spotlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.spotlight__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.spotlight__label-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}
.spotlight__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.spotlight__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.spotlight__btn {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  transition: background 0.15s;
}
.spotlight:hover .spotlight__btn { background: rgba(255,255,255,0.3); }

/* --- SEASONAL BANNER --- */
.seasonal-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #CC5500;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  flex-wrap: wrap;
}
.seasonal-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204,85,0,0.12);
}
.seasonal-banner__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #CC5500;
  background: rgba(204,85,0,0.08);
  padding: 4px 10px;
  border-radius: 4px;
}
.seasonal-banner__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.seasonal-banner__arrow {
  margin-left: auto;
  color: #CC5500;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- CATEGORY CARD --- */
.cat-card {
  display: block;
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.cat-card__emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.cat-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.cat-card__desc {
  font-size: 0.82rem;
  opacity: 0.9;
}

/* --- TRUST / SOCIAL PROOF --- */
.trust-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-stat__number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #CC5500;
  line-height: 1;
}
.trust-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b5c4c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}
@media (min-width: 640px) {
  .trust-quotes { grid-template-columns: repeat(3, 1fr); }
}
.trust-quote {
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.trust-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.trust-quote blockquote {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
  color: #2c2c2c;
  line-height: 1.5;
}
.trust-quote cite {
  font-size: 0.78rem;
  font-style: normal;
  color: #CC5500;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a3f35;
  white-space: nowrap;
}

/* --- NEWSLETTER --- */
.newsletter {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.newsletter__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f5f0e8;
  margin: 0 0 0.5rem;
}
.newsletter__desc {
  font-size: 0.95rem;
  color: #a89880;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
}
.newsletter__input:focus {
  outline: none;
  border-color: #CC5500;
}
.newsletter__btn {
  padding: 12px 28px;
  background: #CC5500;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter__btn:hover { background: #e06000; }
.newsletter__fine-print {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.75rem;
}

/* --- FOOTER --- */
.site-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 2.5rem 1rem;
  margin-top: 3rem;
  font-size: 0.875rem;
}
.site-footer__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.site-footer__brand {
  margin: 0;
  font-weight: 700;
  color: #f5f0e8;
  font-size: 1rem;
}
.site-footer__columns {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}
.site-footer__col { min-width: 120px; }
.site-footer__col-title {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5f0e8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__col-links a {
  color: #b0a090;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.site-footer__col-links a:hover { color: #f5f0e8; }
.site-footer__disclosure {
  margin: 0;
  font-size: 0.78rem;
  color: #666;
  max-width: 600px;
  line-height: 1.5;
}
.site-footer__legal { display: flex; gap: 16px; }
.site-footer__legal a {
  color: #666;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.15s;
}
.site-footer__legal a:hover { color: #f5f0e8; }

@media (max-width: 480px) {
  .site-footer__columns {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .site-footer__col-links { align-items: center; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn--primary { background: #CC5500; color: #fff; }
.btn--primary:hover { background: #e06000; transform: translateY(-1px); }
.btn--dark { background: #2c2c2c; color: #f5f0e8; }
.btn--dark:hover { background: #444; }
.btn--outline {
  background: transparent;
  color: #2c2c2c;
  border: 2px solid #e8dfd3;
}
.btn--outline:hover { border-color: #CC5500; color: #CC5500; }

/* --- ARTICLE --- */
.article { padding: 2rem 1rem 3rem; }
.article__category {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9a7a5a;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #888;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.article__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2c2c2c;
}
.article__body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
}
.article__body h2 { scroll-margin-top: 80px; }
.article__body h3 { scroll-margin-top: 80px; }

@media (max-width: 600px) {
  .article__body img {
    border-radius: 8px;
    margin: 1.25rem -1rem;
    max-width: calc(100% + 2rem);
    width: calc(100% + 2rem);
  }
}

/* --- SHARE BUTTONS --- */
.share-buttons {
  display: flex;
  gap: 8px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
}
.share-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #333;
}
.share-btn:hover { background: #f5f0e8; border-color: #CC5500; }
.share-btn--pin {
  background: #E60023;
  border-color: #E60023;
  color: #fff;
  font-weight: 600;
}
.share-btn--pin:hover { background: #c7001f; }

/* --- TOC --- */
.toc {
  background: #f8f6ea;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border: 1px solid #e8dfd3;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.toc summary {
  cursor: pointer;
  font-weight: 700;
  color: #2c2c2c;
  list-style: none;
}
.toc summary::-webkit-details-marker { display: none; }
.toc__list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc__link {
  color: #4a4a4a;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  padding: 4px 0;
  transition: color 0.1s;
}
.toc__link:hover { color: #CC5500; }

/* --- BREADCRUMBS --- */
.breadcrumbs {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumbs__link {
  color: #9a7a5a;
  text-decoration: none;
}
.breadcrumbs__link:hover { text-decoration: underline; color: #CC5500; }
.breadcrumbs__sep { color: #ccc; }
.breadcrumbs__current { color: #888; }

/* --- AUTHOR BOX --- */
.author-box {
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: #f8f6ea;
  border-radius: 10px;
  border: 1px solid #e8dfd3;
}
.author-box__inner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.author-box__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #CC5500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-box__name {
  font-weight: 800;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.author-box__bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a4a4a;
}
@media (max-width: 500px) {
  .author-box__inner { flex-direction: column; align-items: center; text-align: center; }
}

/* --- RELATED GUIDES --- */
.related-guides {
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid #e8dfd3;
}
.related-guides__heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.related-guides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* --- PAGE HEADER --- */
.page-header {
  margin-bottom: 2.5rem;
}
.page-header__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  margin: 0 0 0.75rem;
  color: #2c2c2c;
}
.page-header__desc {
  font-size: 1.05rem;
  color: #6b5c4c;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
}

/* --- LIST CARD (for guides index) --- */
.list-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}
.list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.list-card__thumb {
  min-width: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.list-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- COMING SOON CARD --- */
.coming-soon-card {
  background: #fff;
  border: 1px dashed #d4c8b8;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
}
.coming-soon-card__emoji { font-size: 1.6rem; }
.coming-soon-card__name {
  font-weight: 700;
  color: #2c2c2c;
  font-size: 0.95rem;
  display: block;
}
.coming-soon-card__status {
  font-size: 0.75rem;
  color: #999;
  font-style: italic;
}

/* --- BLOCKQUOTE (About page) --- */
.pullquote {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #f8f6ea;
  border-radius: 8px;
  border-left: 4px solid #CC5500;
  font-style: italic;
  color: #4a3a2a;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- FOCUS STATES (accessibility) --- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #CC5500;
  outline-offset: 2px;
}


/* ============================================================
   HOMEPAGE v2 — Visual Shortcut Patterns
   Modeled on: Airbnb (chip bar), AllTrails (image-forward cards),
   TravelLemming (minimal text), LocalAdventurer (visual hierarchy)
   ============================================================ */

/* --- CHIP BAR (Airbnb-style horizontal category nav) --- */
.chip-bar {
  background: #fff;
  border-bottom: 1px solid #e8dfd3;
  padding: 0;
  position: sticky;
  top: 56px; /* below header */
  z-index: 90;
  overflow: hidden;
}
.chip-bar__track {
  display: flex;
  gap: 6px;
  padding: 10px 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}
.chip-bar__track::-webkit-scrollbar { display: none; }

.chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f5f0e8;
  border: 1px solid #e8dfd3;
  border-radius: 999px;
  text-decoration: none;
  color: #4a3f35;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  min-height: 40px;
}
.chip:hover, .chip:focus {
  background: #fff;
  border-color: #CC5500;
  color: #CC5500;
  transform: translateY(-1px);
}
.chip:active { transform: scale(0.97); }
.chip__icon { font-size: 1rem; line-height: 1; }
.chip__label { line-height: 1; }

.chip--featured {
  background: #CC5500;
  color: #fff;
  border-color: #CC5500;
}
.chip--featured:hover, .chip--featured:focus {
  background: #e06000;
  color: #fff;
  border-color: #e06000;
}
.chip--seasonal {
  background: #fff;
  border-color: #CC5500;
  color: #CC5500;
}
.chip--all {
  background: transparent;
  border-color: #d4c8b8;
  color: #9a7a5a;
}
.chip--all:hover { color: #CC5500; border-color: #CC5500; background: #fff; }

/* Fade-out edge hint (scroll affordance) */
.chip-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, #fff);
  pointer-events: none;
}

@media (min-width: 768px) {
  .chip-bar__track {
    justify-content: center;
    overflow-x: visible;
    padding: 10px 1.5rem;
  }
  .chip-bar::after { display: none; }
}

/* --- HERO v2 overrides removed — integrated above --- */

/* --- SPOTLIGHT v2 — cleaner overlay --- */
.spotlight__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(4px);
}

/* --- PICK CARDS (image-forward, minimal text) --- */
.picks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .picks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .picks-grid .pick-card--large {
    grid-column: 1 / -1;
  }
}
@media (min-width: 768px) {
  .picks-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .picks-grid .pick-card--large {
    grid-column: 1;
    grid-row: 1;
  }
}

.pick-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.15s, box-shadow 0.15s;
}
.pick-card:hover, .pick-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.pick-card:active { transform: scale(0.98); }

.pick-card__img {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pick-card--large .pick-card__img {
  height: 200px;
}
@media (min-width: 768px) {
  .pick-card--large .pick-card__img { height: 240px; }
}
.pick-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.pick-card:hover .pick-card__img img {
  transform: scale(1.04);
}
.pick-card__emoji {
  font-size: 3rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.pick-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.pick-card__title {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.pick-card--large .pick-card__title {
  font-size: 1.05rem;
}

/* --- TRUST LINE (replaces bloated trust section) --- */
/* --- NEWSLETTER compact variant --- */
.newsletter--compact {
  max-width: 480px;
  padding: 0;
}
.newsletter--compact .newsletter__title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.newsletter--compact .newsletter__desc {
  display: none;
}
.section--dark#newsletter {
  padding: 1.75rem 1rem;
}

/* --- BUTTON small variant --- */
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}


/* ============================================================
   DUAL-PATH HOMEPAGE
   ============================================================ */
.hero--minimal .hero__inner {
  padding: 2rem 1rem 0.5rem;
  text-align: center;
}
.hero--minimal .hero__title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin: 0;
  font-weight: 800;
}

/* --- Dual Path Cards --- */
.dual-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .dual-path {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 2px solid #e8e0d4;
  background: #fffbf5;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  min-height: 120px;
  justify-content: center;
}
.path-card:hover,
.path-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #CC5500;
}
.path-card:active {
  transform: translateY(0);
}
.path-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.path-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.path-card__desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}
.path-card__arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #CC5500;
  transition: transform 0.2s ease;
}
.path-card:hover .path-card__arrow {
  transform: translateY(3px);
}

/* --- Section Labels --- */
.section--flush {
  padding: 0.75rem 0;
}
.section__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin: 0 0 0.5rem;
}

/* --- Crew Chips (horizontal scroll) --- */
.crew-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.crew-chips::-webkit-scrollbar { display: none; }

.crew-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  background: var(--chip-bg, #f5f0e8);
  border: 1.5px solid transparent;
  transition: border-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
  min-height: 44px;
}
.crew-chip:hover,
.crew-chip:focus-visible {
  border-color: var(--chip-accent, #CC5500);
  transform: translateY(-1px);
}
.crew-chip:active {
  transform: scale(0.97);
}
.crew-chip__emoji {
  font-size: 1.1rem;
  line-height: 1;
}
.crew-chip__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

/* --- Destination Card --- */
.dest-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.dest-card:hover {
  transform: translateY(-2px);
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.dest-card__title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.15rem;
}
.dest-card__sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  margin: 0;
}

.dest-coming {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.dest-coming__item {
  font-size: 0.78rem;
  color: #999;
  background: #f5f0e8;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ============================================================
   PERSONA PAGE — Weekend Plans
   ============================================================ */
.persona-page {
  padding: 1.5rem 0 3rem;
}
.persona-page__back {
  display: inline-block;
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.persona-page__back:hover {
  color: #CC5500;
}
.persona-page__hero {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.persona-page__emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}
.persona-page__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.persona-page__intro {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Plan Cards Grid --- */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 520px) {
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-card {
  display: block;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e0d4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.plan-card:active {
  transform: translateY(-1px);
}
.plan-card__header {
  padding: 1.25rem;
  text-align: center;
}
.plan-card__emoji {
  font-size: 2.2rem;
}
.plan-card__body {
  padding: 1rem 1.1rem 1.25rem;
}
.plan-card__badges {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.plan-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  background: #f5f0e8;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.plan-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.plan-card__hook {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   MOBILE NAV — Persona section
   ============================================================ */
.mobile-nav-drawer__divider {
  height: 1px;
  background: #333;
  margin: 0.75rem 1.5rem;
}
.mobile-nav-drawer__section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  padding: 0.25rem 1.5rem 0.5rem;
}
.mobile-nav-drawer__link--sub {
  padding-left: 2rem !important;
  font-size: 0.9rem !important;
  color: #bbb !important;
}
.mobile-nav-drawer__link--sub:hover {
  color: #fff !important;
}


/* ============================================================
   DESTINATION HUB — /leavenworth/ landing page
   ============================================================ */
.hub-hero {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
}
.hub-hero__overlay {
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 3rem 1rem 1.5rem;
}
.hub-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.hub-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #CC5500;
  background: rgba(255,255,255,0.15);
  padding: 3px 10px;
  border-radius: 4px;
  margin: 0 0 0.5rem;
  backdrop-filter: blur(4px);
}
.hub-hero__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.1;
}
.hub-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .hub-hero { min-height: 340px; }
  .hub-hero__overlay { padding: 4rem 1.5rem 2rem; }
}

/* Hub quick nav pills */
.hub-nav {
  background: #fff;
  border-bottom: 1px solid #e8dfd3;
  position: sticky;
  top: 56px;
  z-index: 50;
}
.hub-nav__track {
  display: flex;
  gap: 6px;
  padding: 10px 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  max-width: 900px;
  margin: 0 auto;
}
.hub-nav__track::-webkit-scrollbar { display: none; }
.hub-nav__pill {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #d5cdc0;
  background: #fff;
  color: #4a3f35;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.hub-nav__pill:hover,
.hub-nav__pill:focus {
  background: #CC5500;
  border-color: #CC5500;
  color: #fff;
}
@media (min-width: 640px) {
  .hub-nav__track { padding: 10px 1.5rem; justify-content: center; }
}

/* Hub intro text */
.hub-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a3f35;
  max-width: 650px;
  margin: 0;
}

/* Hub sub-guide cards */
.hub-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 480px) {
  .hub-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hub-cards { grid-template-columns: repeat(3, 1fr); }
}
.hub-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.hub-card:hover,
.hub-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: #CC5500;
}
.hub-card__emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.hub-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  color: #1a1a1a;
  line-height: 1.2;
}
.hub-card__desc {
  font-size: 0.8rem;
  color: #6b5c4c;
  margin: 0;
  line-height: 1.3;
}
.hub-card__arrow {
  margin-left: auto;
  color: #CC5500;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hub-card--coming {
  opacity: 0.55;
  cursor: default;
}
.hub-card--coming:hover,
.hub-card--coming:focus-visible {
  transform: none;
  box-shadow: none;
  border-color: #e8dfd3;
}
.hub-card__soon {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  flex-shrink: 0;
}
.hub-card__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #CC5500;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.hub-card--seasonal {
  border-left: 3px solid #CC5500;
}
.hub-coming-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  margin: 1.5rem 0 0.75rem;
}

/* Hub facts strip */
.hub-facts {
  background: #1a1a1a;
  padding: 1rem 0;
}
.hub-facts__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hub-facts__item {
  font-size: 0.8rem;
  color: #b0a090;
  white-space: nowrap;
}

/* Hub full guide link */
.hub-full-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #CC5500;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid #CC5500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.hub-full-link:hover {
  background: #CC5500;
  color: #fff;
}

/* ============================================================
   SUB-PAGES — /leavenworth/things-to-do, /restaurants, etc.
   ============================================================ */
.sub-page {
  padding: 1.5rem 0 3rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: #CC5500;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep {
  margin: 0 0.4rem;
  color: #ccc;
}

/* Sub-page headings */
.sub-page__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.sub-page__intro {
  font-size: 1rem;
  color: #4a3f35;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 0 2rem;
}
.sub-page__section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8dfd3;
}
.sub-page__section-title:first-of-type {
  border-top: none;
  padding-top: 0;
}
.sub-page__section-intro {
  font-size: 0.95rem;
  color: #6b5c4c;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

/* Activity blocks */
.activity {
  margin-bottom: 2rem;
}
.activity__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 0.25rem;
}
.activity__meta {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 0.5rem;
}
.activity p,
.activity ul {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.activity ul {
  padding-left: 1.25rem;
}
.activity li {
  margin-bottom: 0.4rem;
}

/* Insider tip box */
.tip {
  background: #fef9f2;
  border-left: 3px solid #CC5500;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #4a3f35;
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
  margin-top: 0.5rem;
}
.tip a {
  color: #CC5500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Restaurant blocks */
.restaurant {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0ebe3;
}
.restaurant:last-child {
  border-bottom: none;
}
.restaurant__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}
.restaurant__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0;
}
.restaurant__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: #CC5500;
  white-space: nowrap;
}
.restaurant__meta {
  font-size: 0.8rem;
  color: #888;
  margin: 0 0 0.5rem;
}
.restaurant__vibe {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.6;
  margin: 0 0 0.4rem;
}
.restaurant__best-for {
  font-size: 0.8rem;
  color: #6b5c4c;
  margin: 0 0 0.4rem;
}
.restaurant__order {
  font-size: 0.9rem;
  color: #4a3f35;
  line-height: 1.5;
  margin: 0 0 0.4rem;
}

/* Tips list */
.sub-page__tips-list {
  padding-left: 1.25rem;
  margin: 0 0 1.5rem;
}
.sub-page__tips-list li {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

/* Season blocks */
.season-block {
  margin-bottom: 1rem;
}
.season-block p,
.season-block ul {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.season-block ul {
  padding-left: 1.25rem;
}
.season-block li {
  margin-bottom: 0.4rem;
}

/* Festival calendar */
.festival-calendar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.festival {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #4a3f35;
  line-height: 1.5;
}
.festival__when {
  flex-shrink: 0;
  width: 70px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #CC5500;
  padding-top: 2px;
}

/* Related pages footer */
.related-pages {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8dfd3;
}
.related-pages__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin: 0 0 0.75rem;
}
.related-pages__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.related-pages__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CC5500;
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid #e8dfd3;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.related-pages__links a:hover {
  background: #fef9f2;
  border-color: #CC5500;
}


/* ============================================================
   WEBCAM GRID — YouTube live embeds
   ============================================================ */
.webcam-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .webcam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.webcam-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f5f0e8;
  border: 1px solid #e8dfd3;
}
.webcam-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}
.webcam-card__label {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.webcam-card__label span {
  font-size: 0.7rem;
  color: #999;
}
.webcam-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.webcam-extras a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid #e8dfd3;
  border-radius: 20px;
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.75rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.webcam-extras a:hover {
  border-color: #CC5500;
  color: #CC5500;
}

/* ============================================================
   MAP EMBED & MAP LINKS
   ============================================================ */
.map-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid #e8dfd3;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #CC5500;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.map-link:hover {
  color: #e06000;
  text-decoration: underline;
}
.map-link::before {
  content: "📍";
  font-size: 0.75rem;
}

/* ============================================================
   GOOGLE RATINGS — inline review badges
   ============================================================ */
.google-rating {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
}
.rating-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.8rem;
  color: #e8a100;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.rating-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.rating-count {
  color: #888;
  font-weight: 400;
  font-size: 0.75rem;
  margin-left: 2px;
}


/* ============================================================
   INTERACTIVE MAP — Leaflet
   ============================================================ */
.interactive-map {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  border: 1px solid #e8dfd3;
}
@media (min-width: 640px) {
  .interactive-map { height: 400px; }
}
.map-pin-wrap { background: none !important; border: none !important; }

.map-legend {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: #666;
  flex-wrap: wrap;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   PERSONA CHIPS — "Who's coming?" filter
   ============================================================ */
.persona-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.persona-chips::-webkit-scrollbar { display: none; }

.persona-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 24px;
  background: #f5f0e8;
  border: 1.5px solid #e8dfd3;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c2c2c;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
  cursor: pointer;
  min-height: 44px;
}
.persona-chip:hover,
.persona-chip:focus-visible {
  background: #CC5500;
  color: white;
  border-color: #CC5500;
}
.persona-chip--soon {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}
.persona-chip__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.08);
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 2px;
}
