/* == 途观旅行 web09 — Magazine Design System == */

:root {
  /* Colors — Warm Travel Palette */
  --bg-cream: #faf6f0;
  --bg-warm: #f1e8d9;
  --bg-white: #ffffff;
  --ink: #1b263b;
  --ink-soft: #4a5568;
  --ink-light: #7a8a9a;
  --terracotta: #d4553a;
  --terracotta-dark: #b03a1a;
  --terracotta-soft: #f0ded5;
  --gold: #c89b3c;
  --gold-light: #eddbaa;
  --sandy: #e8d5b5;
  --line: #d4c8b8;
  --line-deco: #1b263b;
  --shadow-warm: 0 12px 40px rgba(27, 38, 59, 0.10);
  --shadow-card: 0 4px 20px rgba(27, 38, 59, 0.08);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans SC', sans-serif;
  --font-serif: 'Georgia', 'Palatino Linotype', 'Book Antiqua', 'Noto Serif SC', serif;
}

/* == Reset & Base == */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-cream);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; vertical-align: middle; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta-dark); }
ul { list-style: none; }

/* == Container == */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 740px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* == Full Image Wrapper == */
.full-img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay { position: relative; }
.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.7) 0%, rgba(27, 38, 59, 0.3) 100%);
}

/* == Section == */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-warm); }
.section-white { background: var(--bg-white); }
.section-head { margin-bottom: 56px; text-align: center; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* == Header == */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header:not(.scrolled) .site-logo { color: #fff; }
.site-header.scrolled .site-logo { color: var(--ink); }
.site-logo:hover { opacity: 0.85; }

.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.site-header:not(.scrolled) .nav-list a { color: rgba(255,255,255,0.85); }
.site-header:not(.scrolled) .nav-list a:hover,
.site-header:not(.scrolled) .nav-list a.active { color: #fff; background: rgba(255,255,255,0.15); }
.site-header.scrolled .nav-list a { color: var(--ink-soft); }
.site-header.scrolled .nav-list a:hover,
.site-header.scrolled .nav-list a.active { color: var(--ink); background: var(--bg-warm); }

.nav-cta {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--terracotta-dark) !important; color: #fff !important; }
.site-header:not(.scrolled) .nav-cta:hover { background: var(--terracotta-dark) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  border-radius: 2px;
  transition: 0.3s;
}
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* == Hero Cinema — Full-bleed == */
.hero-cinema {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 38, 59, 0.75) 0%, rgba(27, 38, 59, 0.35) 60%, rgba(27, 38, 59, 0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* == Buttons — Pill style == */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none !important;
}
.btn-pill {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff !important;
}
.btn-pill:hover { background: var(--terracotta-dark); transform: translateY(-1px); color: #fff !important; }
.btn-pill-ghost {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff !important;
}
.btn-pill-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff !important; }
.btn-pill-dark {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
}
.btn-pill-dark:hover { background: #2a3a5a; transform: translateY(-1px); }
.btn-pill-outline {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--ink-soft) !important;
}
.btn-pill-outline:hover { border-color: var(--terracotta); color: var(--terracotta) !important; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* == Featured Destination == */
.featured-dest {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.featured-dest-img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.featured-dest-body {
  background: var(--bg-white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-dest-body .label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.featured-dest-body h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}
.featured-dest-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.dest-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.dest-stat { text-align: center; }
.dest-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--terracotta);
  display: block;
}
.dest-stat .label {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 2px;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}

/* == Story Highlights == */
.story-stack { display: flex; flex-direction: column; gap: 24px; }
.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--bg-white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.story-card-img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}
.story-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-card-body .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.story-card-body h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}
.story-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.story-card:nth-child(even) .story-card-img { order: 1; }
.story-card:nth-child(even) .story-card-body { order: 0; }

/* == Pull Quote Divider == */
.quote-pull {
  text-align: center;
  padding: 80px 0;
  position: relative;
}
.quote-pull::before,
.quote-pull::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--line-deco);
  margin: 0 auto;
}
.quote-pull blockquote {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  max-width: 700px;
  margin: 40px auto;
  padding: 0 24px;
  letter-spacing: -0.01em;
}
.quote-pull cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: var(--ink-light);
  margin-top: -20px;
}

/* == Destination Grid == */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-tile {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  box-shadow: var(--shadow-card);
}
.dest-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}
.dest-tile .icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.dest-tile h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.dest-tile p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.dest-tile .more {
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
}

/* == Travel Tips == */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tip-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.tip-card .icon {
  width: 56px;
  height: 56px;
  background: var(--terracotta-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.tip-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* == Magazine News Grid == */
.magazine-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.magazine-feature-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.magazine-feature-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.magazine-feature-body .date {
  font-size: 13px;
  color: var(--ink-light);
  display: block;
  margin-bottom: 8px;
}
.magazine-feature-body h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}
.magazine-feature-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.magazine-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.magazine-list-item {
  display: flex;
  gap: 16px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.magazine-list-item:hover { box-shadow: var(--shadow-warm); }
.magazine-list-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.magazine-list-item-body { flex: 1; }
.magazine-list-item-body .date {
  font-size: 12px;
  color: var(--ink-light);
  display: block;
  margin-bottom: 4px;
}
.magazine-list-item-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* == Traveler Quote / Testimonial == */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  background: var(--terracotta-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-card .loc {
  font-size: 13px;
  color: var(--ink-light);
}

/* == Newsletter Band == */
.newsletter-band {
  background: var(--bg-warm);
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-band h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.newsletter-band p {
  font-size: 16px;
  color: var(--ink-light);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--terracotta); }
.newsletter-form input::placeholder { color: var(--ink-light); }

/* == Footer == */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.footer-brand .footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold-light); }

/* == About Page == */
.about-hero {
  padding: 160px 0 60px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  margin-top: -80px;
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
}
.about-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-double h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.about-double p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-double img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
}
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stat {
  text-align: center;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius);
}
.about-stat .num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
}
.about-stat .label { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.value-card .icon { font-size: 32px; margin-bottom: 12px; display: block; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--ink-soft); }

/* == App Page == */
.app-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: var(--ink);
  margin-top: -80px;
  color: #fff;
}
.app-hero h1 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}
.app-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 28px;
}
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.app-card .icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: var(--terracotta-soft);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.app-card h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.app-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center;
  padding: 24px;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.step h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* == Legal Pages == */
.legal-page { padding: 140px 0 60px; }
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 6px;
}
.legal-page .e-date {
  text-align: center;
  color: var(--ink-light);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page .toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.legal-page .toc a { font-size: 14px; color: var(--terracotta); }

/* == News List Page == */
.news-list-page { padding: 140px 0 60px; }
.news-list-page h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  margin-bottom: 4px;
}
.news-list-page .subtitle {
  text-align: center;
  color: var(--ink-light);
  margin-bottom: 48px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-white);
  color: var(--ink-soft);
  font-size: 14px;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { border-color: var(--terracotta); color: var(--terracotta); }

/* == News Article Page == */
.article-page { padding: 140px 0 60px; }
.article-header { margin-bottom: 32px; }
.article-header .date {
  font-size: 14px;
  color: var(--ink-light);
  display: block;
  margin-bottom: 12px;
}
.article-header h1 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
}
.article-header p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
}
.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--shadow-warm);
}
.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.article-body p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  color: var(--terracotta);
  margin-top: 4px;
}
.article-body h2 { font-family: var(--font-serif); font-size: 26px; font-weight: 700; margin: 36px 0 14px; color: var(--ink); }
.article-body h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin: 28px 0 12px; color: var(--ink); }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin-bottom: 18px; padding-left: 24px; }
.article-body li { margin-bottom: 6px; }
.article-body img { border-radius: var(--radius); margin: 24px 0; }
.article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-footer a { font-weight: 600; }

/* == Grid Utilities == */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* == Responsive == */
@media (max-width: 1024px) {
  .dest-grid, .testimonial-grid, .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .magazine-feature { grid-template-columns: 1fr; }
  .magazine-list { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .featured-dest, .story-card, .about-double { grid-template-columns: 1fr; }
  .featured-dest-img { min-height: 250px; max-height: 300px; }
  .story-card-img { height: 200px; }
  .story-card:nth-child(even) .story-card-img { order: 0; }
  .story-card:nth-child(even) .story-card-body { order: 1; }
  .magazine-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 36px; }
  .quote-pull blockquote { font-size: 22px; }
  .nav-list {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    display: none;
    backdrop-filter: blur(12px);
  }
  .nav-list.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header:not(.scrolled) .nav-list a { color: var(--ink-soft); }
  .site-header:not(.scrolled) .nav-list a:hover,
  .site-header:not(.scrolled) .nav-list a.active { color: var(--ink); background: var(--bg-warm); }
  .section { padding: 64px 0; }
}
@media (max-width: 720px) {
  .dest-grid, .testimonial-grid, .tips-grid { grid-template-columns: 1fr; }
  .app-grid, .steps, .about-stats, .values { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .hero-content h1 { font-size: 30px; }
  .hero-cinema { min-height: 500px; }
  .featured-dest-body { padding: 28px; }
  .featured-dest-body h2 { font-size: 26px; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input { text-align: center; }
  .about-hero h1, .legal-page h1 { font-size: 30px; }
  .article-header h1 { font-size: 26px; }
  .legal-page { padding: 100px 0 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .dest-stats { gap: 16px; justify-content: center; }
  .hero-content h1 { font-size: 26px; }
  .about-stat .num { font-size: 32px; }
  .story-card-body { padding: 24px; }
  .story-card-body h3 { font-size: 18px; }
}
