/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, 'Segoe UI', sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--park-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: #f8faf9; }
.section-title { font-size: 2rem; margin-bottom: 32px; text-align: center; }
.section-cta { text-align: center; margin-top: 32px; }
.page-title { font-size: 2.2rem; margin-bottom: 28px; padding-top: 32px; }
.lead { font-size: 1.15rem; color: #4a5568; margin-bottom: 24px; }
.empty-state { color: #6b7280; padding: 40px 0; text-align: center; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 8px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: opacity .15s, transform .1s; text-decoration: none; border: none;
}
.btn:hover { opacity: .9; text-decoration: none; }
.btn-primary { background: var(--park-accent); color: #fff; }
.btn-outline { background: transparent; color: var(--park-accent); border: 2px solid var(--park-accent); }
/* Hero buttons must remain legible on dark hero overlay */
.hero .btn-primary { background: #fff; color: #1a1a2e; }
.hero .btn-primary:hover { background: var(--park-accent); color: #fff; }
.hero .btn-outline { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; backdrop-filter: blur(2px); }
.hero .btn-outline:hover { background: #fff; color: var(--park-accent); }
.btn-sm { padding: 6px 14px; font-size: 0.82rem; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */
.site-header { background: #fff; border-bottom: 1px solid #e5e7eb; position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; height: 64px; display: flex; align-items: center; gap: 24px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--park-accent); }
.nav-links { list-style: none; display: flex; gap: 4px; margin-left: auto; }
.nav-links a { padding: 6px 12px; border-radius: 6px; color: #374151; font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { background: #f3f4f6; text-decoration: none; color: var(--park-accent); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; border-bottom: 1px solid #e5e7eb; padding: 12px; }
  .nav-open .nav-links { display: flex; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 560px; background: var(--park-accent) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; position: relative;
  color: #fff;
}
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 48px 24px; max-width: 700px; }
.hero-inner h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.hero-tagline { font-size: 1.2rem; opacity: .9; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── Plan strip ────────────────────────────────────────────────────────── */
.plan-strip { background: var(--park-accent); color: #fff; }
.plan-strip-inner { max-width: 1180px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.plan-item { display: flex; flex-direction: column; align-items: center; padding: 24px 16px; gap: 6px; border-right: 1px solid rgba(255,255,255,.2); text-align: center; }
.plan-item:last-child { border-right: none; }
.plan-icon { font-size: 1.6rem; }
.plan-item strong { font-weight: 700; }
.plan-item a { color: rgba(255,255,255,.85); font-size: .88rem; }
.plan-item a:hover { color: #fff; }

/* ─── Cards ─────────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card-grid-small { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.card { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; transition: border-color .15s, transform .15s; }
.card:hover { border-color: var(--park-accent); transform: translateY(-2px); }
.card-small { border-radius: 8px; }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 16px; }
.card-title { font-size: 1.05rem; font-weight: 700; margin: 8px 0 6px; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--park-accent); text-decoration: none; }
.card-excerpt { color: #4a5568; font-size: .9rem; margin-bottom: 10px; }
.card-date { font-size: .8rem; color: #9ca3af; display: block; margin-bottom: 10px; }
.card-link { font-size: .88rem; font-weight: 600; color: var(--park-accent); }

/* ─── POI grid ──────────────────────────────────────────────────────────── */
.poi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.poi-card { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.poi-card { transition: border-color .15s, transform .15s; }
.poi-card:hover { border-color: var(--park-accent); transform: translateY(-2px); }
.poi-card-img { width: 100%; height: 180px; object-fit: cover; }
.poi-card-body { padding: 14px; }
.poi-card-body h2, .poi-card-body h3 { font-size: .95rem; font-weight: 700; margin: 6px 0; }
.poi-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; font-size: .8rem; color: #6b7280; }

/* ─── Type badges ───────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: .75rem; font-weight: 600; background: #e0f2fe; color: #0369a1; }
.poi-type-badge { display: inline-block; padding: 2px 8px; border-radius: 99px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.poi-type-trail { background: #d1fae5; color: #065f46; }
.poi-type-viewpoint { background: #fef3c7; color: #92400e; }
.poi-type-cave { background: #ede9fe; color: #5b21b6; }
.poi-type-beach { background: #dbeafe; color: #1e40af; }
.poi-type-waterfall { background: #cffafe; color: #0e7490; }
.poi-type-cultural { background: #fce7f3; color: #9d174d; }
.poi-type-wildlife { background: #d1fae5; color: #064e3b; }
.poi-type-other { background: #f3f4f6; color: #374151; }
.hotel-type-badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: .75rem; font-weight: 600; background: #fef3c7; color: #78350f; }

/* ─── Difficulty ────────────────────────────────────────────────────────── */
.difficulty { font-size: .78rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.difficulty-easy { background: #d1fae5; color: #065f46; }
.difficulty-moderate { background: #fef3c7; color: #92400e; }
.difficulty-challenging { background: #fee2e2; color: #991b1b; }
.difficulty-expert { background: #fae8ff; color: #701a75; }

/* ─── Hotel strip ───────────────────────────────────────────────────────── */
.hotel-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.hotel-card { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.hotel-card-img { width: 100%; height: 180px; object-fit: cover; }
.hotel-card-body { padding: 14px; }
.stars { color: #f59e0b; letter-spacing: .1em; }
.stars-lg { font-size: 1.4rem; margin-bottom: 10px; }
.price-from { font-size: .9rem; color: #374151; margin: 6px 0 10px; }

/* ─── Filter bar ────────────────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { padding: 6px 14px; border-radius: 99px; font-size: .85rem; font-weight: 500; background: #f3f4f6; color: #374151; text-decoration: none; border: 1px solid transparent; }
.filter-btn:hover { background: #e5e7eb; text-decoration: none; }
.filter-btn.active { background: var(--park-accent); color: #fff; }

/* ─── Article layout ────────────────────────────────────────────────────── */
.article-layout { max-width: 800px; margin: 0 auto; padding: 32px 20px 64px; }
.article-header { margin-bottom: 24px; }
.article-header h1 { font-size: 2rem; line-height: 1.25; margin: 12px 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #6b7280; margin-top: 8px; }
.article-hero { margin-bottom: 28px; }
.article-hero img { width: 100%; border-radius: 10px; aspect-ratio: 16/9; object-fit: cover; }
.article-excerpt { font-size: 1.1rem; color: #4a5568; border-left: 4px solid var(--park-accent); padding-left: 16px; margin-bottom: 24px; }
.article-toc { background: #f8faf9; border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px 20px; margin-bottom: 28px; }
.article-toc ul { margin: 8px 0 0 16px; }
.article-toc li { margin: 4px 0; font-size: .9rem; }
.article-toc .toc-sub { margin-left: 16px; }
.article-body { font-size: 1rem; line-height: 1.8; }
.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body img { border-radius: 8px; margin: 24px 0; }
.article-body ul, .article-body ol { margin: 16px 0 16px 24px; }
.article-body li { margin: 6px 0; }
.article-body blockquote { border-left: 4px solid var(--park-accent); padding: 12px 20px; background: #f8faf9; margin: 24px 0; border-radius: 0 8px 8px 0; color: #4a5568; font-style: italic; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.tag { padding: 4px 12px; background: #f3f4f6; border-radius: 99px; font-size: .8rem; color: #374151; }
.tag:hover { background: var(--park-accent); color: #fff; text-decoration: none; }

/* ─── Share bar ─────────────────────────────────────────────────────────── */
.share-bar {
  display: flex; align-items: flex-start; gap: 14px;
  margin: 28px 0; padding: 16px; background: #f8faf9;
  border: 1px solid #e5e7eb; border-radius: 10px;
  flex-wrap: wrap;
}
.share-label { font-size: .9rem; color: #374151; padding-top: 8px; flex-shrink: 0; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 6px;
  font-size: .82rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity .15s, transform .1s;
  font-family: inherit;
}
.share-btn:hover { opacity: .9; text-decoration: none; }
.share-btn svg { flex-shrink: 0; }
.share-whatsapp { background: #25d366; color: #fff; }
.share-facebook { background: #1877f2; color: #fff; }
.share-twitter   { background: #000;    color: #fff; }
.share-linkedin  { background: #0a66c2; color: #fff; }
.share-reddit    { background: #ff4500; color: #fff; }
.share-telegram  { background: #229ed9; color: #fff; }
.share-email     { background: #4b5563; color: #fff; }
.share-copy      { background: #1f2937; color: #fff; }
.share-copy.copied { background: var(--park-accent); }

@media (max-width: 600px) {
  .share-bar { flex-direction: column; gap: 10px; padding: 14px; }
  .share-label { padding-top: 0; }
  .share-buttons { width: 100%; }
  .share-btn { flex: 1; min-width: calc(50% - 4px); justify-content: center; font-size: .78rem; padding: 8px 6px; }
  .share-btn span { font-size: .75rem; }
}

/* ─── POI layout with sidebar ───────────────────────────────────────────── */
.poi-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 64px;
  align-items: start;
}
.poi-main { min-width: 0; }
.poi-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  border: 1px solid #e5e7eb; border-radius: 10px;
  padding: 18px; background: #fff;
}
.sidebar-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--park-accent);
  color: #1a1a2e;
}
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-link {
  display: flex; gap: 10px; align-items: center;
  padding: 6px; border-radius: 6px;
  color: #1a1a2e; text-decoration: none;
  transition: background .15s;
}
.sidebar-link:hover { background: #f8faf9; text-decoration: none; color: var(--park-accent); }
.sidebar-thumb {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 6px; object-fit: cover; background: #f3f4f6;
}
.sidebar-thumb-placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.sidebar-thumb-placeholder svg { width: 24px; height: 24px; }
.sidebar-thumb-placeholder.poi-type-trail { background: #065f46; }
.sidebar-thumb-placeholder.poi-type-viewpoint { background: #92400e; }
.sidebar-thumb-placeholder.poi-type-cave { background: #5b21b6; }
.sidebar-thumb-placeholder.poi-type-beach { background: #1e40af; }
.sidebar-thumb-placeholder.poi-type-waterfall { background: #0e7490; }
.sidebar-thumb-placeholder.poi-type-cultural { background: #9d174d; }
.sidebar-thumb-placeholder.poi-type-wildlife { background: #064e3b; }
.sidebar-thumb-placeholder.poi-type-other { background: #6b7280; }
.sidebar-link-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sidebar-link-text strong { font-size: .88rem; font-weight: 600; line-height: 1.3; }
.sidebar-meta { font-size: .72rem; color: #6b7280; }
.sidebar-cta {
  display: block; text-align: center;
  margin-top: 14px; padding: 8px 14px;
  font-size: .85rem; font-weight: 600;
  color: var(--park-accent);
  border: 1px solid var(--park-accent); border-radius: 6px;
}
.sidebar-cta:hover { background: var(--park-accent); color: #fff; text-decoration: none; }

/* OSM/Leaflet map embed */
.map-section { margin: 32px 0; }
.map-section h2 { font-size: 1.4rem; margin-bottom: 10px; }
.map-section address { font-style: normal; color: #4a5568; margin-bottom: 12px; font-size: .92rem; }
.poi-map { width: 100%; height: 360px; border-radius: 10px; border: 1px solid #e5e7eb; z-index: 0; }
.map-links { margin-top: 10px; font-size: .85rem; color: #6b7280; }
.map-links a { color: var(--park-accent); font-weight: 500; }

@media (max-width: 900px) {
  .poi-layout { grid-template-columns: 1fr; gap: 24px; padding: 16px; }
  .poi-sidebar { position: static; top: auto; }
  .poi-map { height: 280px; }
  .map-section h2 { font-size: 1.2rem; }
}

/* ─── Detail layout ─────────────────────────────────────────────────────── */
.detail-layout { max-width: 900px; margin: 0 auto; padding: 32px 20px 64px; }
.detail-hero { margin-bottom: 24px; }
.detail-hero img { width: 100%; border-radius: 10px; max-height: 460px; object-fit: cover; }
.detail-body h1 { font-size: 2rem; margin: 10px 0 16px; line-height: 1.2; }
.info-strip { display: flex; flex-wrap: wrap; gap: 16px; background: #f8faf9; border-radius: 8px; padding: 16px 20px; margin: 20px 0; }
.info-item { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: #9ca3af; font-weight: 700; }
.detail-content { font-size: 1rem; line-height: 1.8; }
.detail-content h2 { font-size: 1.4rem; margin: 32px 0 14px; }
.detail-content p { margin-bottom: 14px; }
.detail-content ul { margin: 14px 0 14px 20px; }
.map-embed { margin: 28px 0; }
.map-embed h2 { font-size: 1.2rem; margin-bottom: 10px; }
.map-embed address { font-style: normal; color: #4a5568; margin-bottom: 12px; font-size: .9rem; }
.booking-cta { text-align: center; margin: 32px 0; }
.amenities { margin: 20px 0; }
.amenities h2 { font-size: 1.2rem; margin-bottom: 10px; }
.amenity-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-pill { padding: 4px 12px; border-radius: 99px; background: #f3f4f6; font-size: .82rem; color: #374151; }
.amenity-pills-sm .amenity-pill { font-size: .75rem; padding: 2px 8px; }
.contact-details { margin: 20px 0; font-size: .9rem; }
.contact-details p { margin-bottom: 6px; }
.nearby-section { max-width: 900px; margin: 0 auto; padding: 0 20px 64px; }
.nearby-section h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb { margin-bottom: 20px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: .85rem; color: #6b7280; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; }
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: var(--park-accent); }

/* ─── Search ────────────────────────────────────────────────────────────── */
.search-form { display: flex; gap: 10px; margin-bottom: 28px; }
.search-input { flex: 1; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 1rem; font-family: inherit; }
.search-input:focus { outline: none; border-color: var(--park-accent); }
.search-count { color: #6b7280; font-size: .9rem; margin-bottom: 16px; }
.search-results { list-style: none; }
.search-result { padding: 16px 0; border-bottom: 1px solid #e5e7eb; }
.search-result:last-child { border-bottom: none; }
.result-type { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--park-accent); letter-spacing: .06em; }
.search-result h3 { margin: 6px 0 4px; }
.search-result p { font-size: .9rem; color: #4a5568; }

/* ─── Pagination ────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 40px 0; }
.page-btn { padding: 7px 13px; border: 1px solid #e5e7eb; border-radius: 6px; font-size: .88rem; color: #374151; }
.page-btn.active { background: var(--park-accent); color: #fff; border-color: var(--park-accent); }
.page-btn:hover { border-color: var(--park-accent); text-decoration: none; }
.page-ellipsis { padding: 7px 4px; color: #9ca3af; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: #1a1a2e; color: #9ca3af; margin-top: auto; }
.footer-container { max-width: 1180px; margin: 0 auto; padding: 48px 20px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer-brand strong { color: #fff; font-size: 1.1rem; }
.footer-brand p { margin-top: 8px; font-size: .88rem; }
.footer-links h4 { color: #fff; font-size: .85rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.footer-links ul { list-style: none; }
.footer-links li { margin: 6px 0; }
.footer-links a { color: #9ca3af; font-size: .88rem; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid #2d2d4e; text-align: center; padding: 16px 20px; font-size: .82rem; }

/* ─── Flash messages ────────────────────────────────────────────────────── */
.flash-messages { max-width: 1180px; margin: 12px auto 0; padding: 0 20px; }
.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 10px; font-size: .9rem; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: #dbeafe; color: #1e40af; }

/* ─── Error page ────────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-size: 5rem; color: var(--park-accent); opacity: .3; }
.error-page p { font-size: 1.2rem; color: #4a5568; margin: 16px 0 28px; }

/* ─── Park intro (description + right-side photo) ───────────────────────── */
.park-intro { padding: 64px 0; }
.park-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.park-intro-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.25; color: #1a1a2e; }
.park-intro-text p { font-size: 1.05rem; line-height: 1.75; color: #374151; }
.park-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

/* ─── Related links section (used on list pages) ────────────────────────── */
.related-section {
  margin: 48px 0 24px;
  padding: 24px;
  background: #f8faf9;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.related-section h2 { font-size: 1.2rem; margin-bottom: 14px; }
.related-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.related-links a { font-size: .95rem; font-weight: 500; }
.related-links a:hover { color: var(--park-accent); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .park-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .park-intro-img img { height: 260px; }
  .park-intro { padding: 40px 0; }
  .section { padding: 40px 0; }
  .section-title { font-size: 1.6rem; }
  .hero { min-height: 440px; }
  .hero-inner h1 { font-size: clamp(1.75rem, 6vw, 2.6rem); }
  .article-layout, .detail-layout, .nearby-section { padding-left: 16px; padding-right: 16px; }
  .article-header h1 { font-size: 1.6rem; }
  .detail-body h1 { font-size: 1.6rem; }
  .article-body { font-size: .98rem; line-height: 1.7; }
  .article-body h2 { font-size: 1.3rem; margin: 28px 0 12px; }
  .article-body h3 { font-size: 1.1rem; }
  .article-hero img, .detail-hero img { aspect-ratio: 16/10; max-height: 320px; }
  .info-strip { gap: 12px; padding: 12px 14px; }
  .share-bar { flex-wrap: wrap; padding: 12px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .footer-container { grid-template-columns: 1fr; padding: 32px 16px 24px; }
  .hero { min-height: 380px; }
  .hero-inner h1 { font-size: 1.9rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .plan-strip-inner { grid-template-columns: 1fr 1fr; }
  .plan-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 18px 12px; }
  .plan-item:nth-last-child(-n+2) { border-bottom: none; }
  .plan-item:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.15); }
  .park-intro { padding: 32px 0; }
  .park-intro-text h2 { font-size: 1.5rem; }
  .park-intro-text p { font-size: .98rem; }
  .park-intro-img img { height: 220px; border-radius: 12px; }
  .card-grid, .poi-grid, .hotel-strip { grid-template-columns: 1fr; gap: 16px; }
  .card-img, .poi-card-img, .hotel-card-img { height: 200px; }
  .nav-container { padding: 0 16px; gap: 12px; height: 56px; }
  .nav-logo-text { font-size: 1rem; }
  .article-header h1, .detail-body h1 { font-size: 1.4rem; }
  .article-body h2 { font-size: 1.2rem; }
  .filter-bar { gap: 6px; }
  .filter-btn { font-size: .78rem; padding: 5px 12px; }
  .search-form { flex-direction: column; }
  .search-input { width: 100%; }
  .share-bar { gap: 8px; }
  .share-btn { flex: 1; justify-content: center; font-size: .8rem; padding: 8px 10px; }
  .pagination { gap: 4px; flex-wrap: wrap; }
  .page-btn { padding: 6px 10px; font-size: .82rem; }
  .breadcrumb { font-size: .78rem; }
  .error-page { padding: 60px 16px; }
  .error-page h1 { font-size: 3.5rem; }
  .btn { padding: 10px 18px; font-size: .9rem; }
  .btn-lg { padding: 12px 22px; font-size: 1rem; }
  .article-body img, .detail-hero img { margin: 16px 0; }
  table { font-size: .85rem; }
}

@media (max-width: 380px) {
  .plan-strip-inner { grid-template-columns: 1fr; }
  .plan-item, .plan-item:nth-child(2n) { border-left: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .plan-item:last-child { border-bottom: none; }
  .hero-inner h1 { font-size: 1.6rem; }
  .park-intro-img img { height: 180px; }
}
