/* ============================================================
   Cup of Blessing · 全站样式表
   设计哲学：神圣的寂静 (Sacred Stillness)
   版本：LV2.2.10
   ============================================================ */

/* === CSS Variables · 晨光调色板 === */
:root {
  --color-mist:       #F7F3EE;
  --color-warmbrown:  #8B7355;
  --color-sage:       #9CAF88;
  --color-tranquil:   #6B8F9E;
  --color-terracotta: #C49B8B;
  --color-cream:      #FDFAF5;
  --color-darkwood:   #5D4E37;
  --color-white:      #FFFFFF;
  --color-border:     rgba(139, 115, 85, 0.12);
  --color-shadow:     rgba(139, 115, 85, 0.08);
  
  --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script:   'Caveat', 'Brush Script MT', cursive;
  
  --max-width-article: 680px;
  --max-width-container: 1280px;
  --transition-gentle: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-warmbrown);
  background-color: var(--color-mist);
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(156, 175, 136, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 100%, rgba(107, 143, 158, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-warmbrown);
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(28px, 4vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 32px); color: var(--color-tranquil); }
h3 { font-size: clamp(18px, 2.2vw, 24px); }
h4 { font-size: clamp(16px, 1.8vw, 20px); }

p { margin-bottom: 1.2rem; }

a {
  color: var(--color-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-tranquil);
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-tranquil);
  background: rgba(156, 175, 136, 0.08);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-script);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--color-tranquil);
}

blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-sage);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}

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

.article-container {
  max-width: var(--max-width-article);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation · Glass Effect === */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

nav.hidden {
  transform: translateY(-100%);
}

nav.scrolled {
  box-shadow: 0 2px 20px var(--color-shadow);
}

.nav-inner {
  max-width: var(--max-width-container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-warmbrown);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-warmbrown);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-sage);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-sage);
}

.nav-search {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.nav-search:hover {
  opacity: 1;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-warmbrown);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--color-mist) 0%,
    rgba(156, 175, 136, 0.08) 50%,
    var(--color-mist) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.18;
  filter: saturate(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--color-terracotta);
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-warmbrown);
  margin-bottom: 20px;
  animation: gentleFadeIn 1.2s ease-out;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-tranquil);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: gentleFadeIn 1.5s ease-out;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: gentleFadeIn 1.8s ease-out;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: #8B9E7A;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-sage);
  color: var(--color-sage);
}

.btn-outline:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

/* === Trust Bar === */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.5);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  list-style: none;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-warmbrown);
  opacity: 0.75;
}

.trust-bar-icon {
  font-size: 1.1rem;
}

/* === Intent Funnel === */
.intent-funnel {
  padding: 60px 0;
}

.intent-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.intent-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-gentle);
  text-decoration: none;
  color: var(--color-warmbrown);
}

.intent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow);
  border-color: var(--color-sage);
}

.intent-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.intent-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.intent-card-desc {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* === Section Headers === */
.section-header {
  text-align: center;
  padding: 60px 0 36px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-divider {
  display: inline-block;
  color: var(--color-sage);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* === Article Cards === */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 40px;
}

.article-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-gentle);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow);
}

.article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 20px;
}

.article-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-sage);
  margin-bottom: 6px;
  font-weight: 500;
}

.article-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--color-warmbrown);
}

.article-card-summary {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card-meta {
  font-size: 0.75rem;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* === Editor's Picks · 大卡片 === */
.editors-picks {
  padding: 0 0 60px;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pick-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-gentle);
  text-decoration: none;
  color: var(--color-warmbrown);
  display: block;
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow);
}

.pick-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.pick-card-body {
  padding: 24px;
}

.pick-card-label {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--color-terracotta);
  margin-bottom: 4px;
}

.pick-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 8px;
}

/* === Category Grid === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 60px;
}

.category-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  text-decoration: none;
  color: var(--color-warmbrown);
  transition: all var(--transition-gentle);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow);
  border-color: var(--color-sage);
}

.category-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.category-card-count {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* === Newsletter Section === */
.newsletter {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.1) 0%, rgba(107, 143, 158, 0.06) 100%);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  margin: 0 24px 60px;
}

.newsletter-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsletter-desc {
  color: var(--color-tranquil);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-warmbrown);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

/* === Footer === */
footer {
  background: var(--color-darkwood);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-sage);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-sage);
  color: var(--color-sage);
}

/* === Article Page === */
.article-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--color-darkwood);
}

.article-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(93, 78, 55, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

.article-hero-content {
  max-width: var(--max-width-article);
}

.article-hero-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-sage);
  margin-bottom: 8px;
}

.article-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-white);
}

/* Article Body */
.article-body {
  padding: 48px 0;
}

.article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* Drop Cap */
.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  color: var(--color-sage);
}

/* Breath Card */
.breath-card {
  background: rgba(156, 175, 136, 0.08);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 2.5rem 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--color-tranquil);
  line-height: 1.6;
}

/* Section Divider */
.section-sep {
  text-align: center;
  margin: 2rem 0;
  color: var(--color-sage);
  opacity: 0.5;
  font-size: 1.2rem;
  letter-spacing: 4px;
}

/* === Author Box === */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  margin-top: 3rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-info-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 6px;
}

.author-info-bio {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.7;
}

/* === CTA Box === */
.cta-box {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.12) 0%, rgba(107, 143, 158, 0.08) 100%);
  border: 1px solid var(--color-sage);
  border-radius: 8px;
  padding: 28px 32px;
  text-align: center;
  margin: 2rem 0;
}

.cta-box-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cta-box-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* === Comparison Table === */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
  display: block;
}

.comparison-table th {
  background: var(--color-sage);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 0.85rem;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.comparison-table tr:nth-child(even) td {
  background: rgba(247, 243, 238, 0.5);
}

/* === FAQ Section === */
.faq-section {
  margin: 2.5rem 0;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-warmbrown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(156, 175, 136, 0.05);
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

/* === Breadcrumb === */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.8rem;
  opacity: 0.6;
}

.breadcrumb a {
  color: var(--color-warmbrown);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-sage);
}

.breadcrumb span {
  margin: 0 6px;
}

/* === Share Block === */
.share-block {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 2rem 0;
}

.share-block-text {
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

.share-block-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* === Animations === */
@keyframes gentleFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lazy Load Images */
img.lazy {
  filter: blur(10px);
  transition: filter 0.6s ease;
}

img.lazy.loaded {
  filter: blur(0);
}

/* Under Review Badge */
.under-review {
  display: inline-block;
  background: #F5E6CA;
  color: var(--color-warmbrown);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === User Reviews Section === */
.user-reviews {
  margin: 2.5rem 0;
}

.user-reviews-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.review-avatar.av-1 { background: #9CAF88; }
.review-avatar.av-2 { background: #6B8F9E; }
.review-avatar.av-3 { background: #C49B8B; }
.review-avatar.av-4 { background: #8B7355; }
.review-avatar.av-5 { background: #7A8B6F; }

.review-user-info {
  flex: 1;
}

.review-username {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.75rem;
  opacity: 0.5;
}

.review-stars {
  color: #D4A853;
  font-size: 0.85rem;
}

.verified-badge {
  display: inline-block;
  background: #FDF2E9;
  color: #B87333;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
}

.review-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.review-body {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 10px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  opacity: 0.5;
}

.review-helpful {
  cursor: pointer;
  transition: opacity 0.3s;
}

.review-helpful:hover {
  opacity: 0.8;
}

/* === Responsive Design === */
@media (max-width: 1023px) {
  .article-grid,
  .picks-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .intent-funnel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 243, 238, 0.95);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-mobile-toggle {
    display: block;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .article-grid,
  .picks-grid,
  .category-grid,
  .intent-funnel-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .trust-bar-inner {
    gap: 20px;
  }
  
  .comparison-table {
    font-size: 0.75rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 8px 10px;
  }
  
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}