/* ─────────────────────────────────────────
   HEALTHUMIND — SHARED DESIGN SYSTEM
   Clean warm editorial. NYT Well × Mind Body Green.
───────────────────────────────────────── */

/* RESET */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --bg: #FAFAF8;
  --text: #1C1C1C;
  --muted: #6B6560;
  --accent: #2D5A4E;
  --accent-light: #E8F0EE;
  --accent-hover: #3a7366;
  --rule: rgba(0,0,0,0.1);
  --highlight: #F5F0E8;
  --cta-bg: #F0F6F4;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html{scroll-behavior:smooth}

body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a{color: var(--accent); text-decoration: none}
a:hover{color: var(--accent-hover)}

img{max-width:100%;height:auto;display:block}

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
.site-header{
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
}
.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo{
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.site-logo span{color: var(--accent)}

.nav-links{
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 450;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-links a:hover{color: var(--text)}
.nav-links a.active{color: var(--text); font-weight: 550}

.nav-newsletter{
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 7px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-newsletter:hover{background: var(--accent); color: var(--white)}

/* Mobile hamburger */
.hamburger{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1){transform: rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform: rotate(-45deg) translate(5px,-5px)}

@media(max-width:768px){
  .hamburger{display:flex}
  .nav-links{
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 24px 40px;
    gap: 20px;
  }
  .nav-links.open{display:flex}
  .nav-newsletter{align-self: flex-start}
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer{
  border-top: 3px solid var(--accent);
  background: var(--white);
  padding: 56px 40px 0;
  margin-top: 80px;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-col h4{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-col p{
  font-family: var(--body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col ul{list-style:none;padding:0}
.footer-col ul li{margin-bottom:10px}
.footer-col ul a{
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover{color: var(--accent)}

.footer-bottom{
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy{
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}
.footer-disclosure{
  font-family: var(--sans);
  font-size: 10px;
  color: #999;
  max-width: 500px;
  line-height: 1.6;
  text-align: right;
}

@media(max-width:768px){
  .footer-inner{grid-template-columns:1fr; gap:32px}
  .footer-bottom{flex-direction:column; text-align:center}
  .footer-disclosure{text-align:center; max-width:100%}
}

/* ─────────────────────────────────────────
   ARTICLE PAGE — LAYOUT
───────────────────────────────────────── */
.article-layout{
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 60px;
  align-items: start;
}
.article-main{
  max-width: 720px;
  padding-bottom: 80px;
}
.article-sidebar{
  position: sticky;
  top: 88px;
  padding-top: 40px;
}
.sidebar-label{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-card{
  margin-bottom: 24px;
}
.sidebar-card img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
  background: var(--highlight);
}
.sidebar-card-placeholder{
  width: 100%;
  height: 120px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-light), var(--highlight));
}
.sidebar-card h4{
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 6px;
}
.sidebar-card p{
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.sidebar-card a{text-decoration:none; color:inherit}
.sidebar-card a:hover h4{color: var(--accent)}

@media(max-width:960px){
  .article-layout{
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 24px;
  }
  .article-sidebar{display:none}
  .article-main{max-width:720px; margin:0 auto}
}

/* ─────────────────────────────────────────
   ARTICLE HEADER
───────────────────────────────────────── */
.article-breadcrumb{
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  padding-top: 40px;
}
.article-breadcrumb a{color: var(--muted); text-decoration: none}
.article-breadcrumb a:hover{color: var(--accent)}
.article-breadcrumb span{margin: 0 6px; opacity: 0.5}

.article-category{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}

.article-header h1{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.article-deck{
  font-family: var(--body);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 640px;
}

.article-meta{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.author-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.author-info{
  flex: 1;
}
.author-name{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 550;
  color: var(--text);
}
.author-detail{
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.share-icons{
  display: flex;
  gap: 8px;
}
.share-btn{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 14px;
  color: var(--muted);
}
.share-btn:hover{border-color: var(--accent); color: var(--accent)}

/* Progress bar */
.reading-progress{
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 99;
}
.reading-progress-fill{
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   ARTICLE BODY COPY
───────────────────────────────────────── */
.body-text p{
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
}
.body-text p:last-child{margin-bottom:0}
.body-text strong{font-weight:600}
.body-text em{font-style:italic}

.dropcap::first-letter{
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  float: left;
  line-height: 0.78;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--accent);
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-header{
  margin: 56px 0 28px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.section-number{
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.section-header h2{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.3px;
}

/* ─────────────────────────────────────────
   IMAGES
───────────────────────────────────────── */
.img-hero{
  margin: 0 0 32px;
  border-radius: 6px;
  overflow: hidden;
}
.img-hero img{
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.img-block{
  margin: 40px 0;
  border-radius: 6px;
  overflow: hidden;
}
.img-block img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-inline{margin: 40px 0}
.img-inline img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.img-wide{margin: 48px -40px}
.img-wide img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
}

.img-float{
  float: right;
  margin: 8px 0 28px 32px;
  width: 280px;
  border-radius: 6px;
  overflow: hidden;
}
.img-float img{
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.img-caption{
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   PULL QUOTES
───────────────────────────────────────── */
.pull-quote{
  margin: 48px 0;
  padding: 36px 40px;
  border-left: 4px solid var(--accent);
  background: var(--accent-light);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.pull-quote p{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 24px);
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.pull-quote em{font-style: normal; font-weight: 700; color: var(--accent)}
.pull-quote .pq-sub{
  font-family: var(--body);
  font-size: 16px;
  font-style: normal;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.pull-quote-attr{
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  display: block;
}

/* Alt pull quote — warm paper bg */
.pull-quote-warm{
  background: var(--highlight);
  border-left-color: var(--accent);
}

/* ─────────────────────────────────────────
   STATS ROW
───────────────────────────────────────── */
.stats-row{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin: 40px 0;
}
.stat-item{
  background: var(--highlight);
  padding: 28px 20px;
  text-align: center;
}
.stat-num{
  font-family: var(--serif);
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.stat-label{
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   SCIENCE BOX
───────────────────────────────────────── */
.science-box{
  background: var(--highlight);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 0 6px 6px 0;
}
.science-box-label{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.science-box p{
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.science-box p:last-child{margin-bottom:0}
.science-box strong{font-weight:600; color: var(--text)}

/* ─────────────────────────────────────────
   NIGHT CARDS
───────────────────────────────────────── */
.nights-section{
  margin: 48px 0;
  padding: 44px 40px;
  background: var(--text);
  border-radius: 8px;
}
.nights-header{text-align:center; margin-bottom:36px}
.nights-header h3{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  color: #f5f5f0;
  margin-bottom: 8px;
}
.nights-header p{
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}

.nights-grid{
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 10px;
}
.night-card{
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.night-card:hover{border-color: rgba(255,255,255,0.25); transform: translateY(-3px)}
.night-img{
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(45,90,78,0.3), rgba(28,28,28,0.9));
  position: relative;
  overflow: hidden;
}
.night-img img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.night-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,transparent 40%,rgba(28,28,28,0.7));
}
.night-num{
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(255,255,255,0.4);
  position: absolute;
  top: 6px; right: 8px;
  z-index: 2;
  font-weight: 700;
}
.night-body{padding: 10px 9px}
.night-label{
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.night-title{
  font-family: var(--serif);
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
  font-weight: 500;
}

@media(max-width:860px){.nights-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:600px){.nights-grid{grid-template-columns:repeat(2,1fr)}}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi-section{margin: 48px 0}
.testi-label{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-label::after{content:'';flex:1;height:1px;background:var(--rule)}

.testi-card{
  background: var(--highlight);
  border: 1px solid var(--rule);
  padding: 32px;
  margin-bottom: 16px;
  border-radius: 6px;
  position: relative;
}
.testi-card::before{
  content:'\201C';
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(45,90,78,0.08);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testi-quote{
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.testi-attr{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ─────────────────────────────────────────
   MID-ARTICLE CTA (Editorial Recommendation)
───────────────────────────────────────── */
.editorial-cta{
  border-left: 3px solid var(--accent);
  background: var(--cta-bg);
  padding: 24px 28px;
  margin: 48px 0;
  border-radius: 0 4px 4px 0;
}
.editorial-cta-label{
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.editorial-cta p{
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.editorial-cta a.cta-link{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 550;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(45,90,78,0.3);
  transition: border-color 0.2s;
}
.editorial-cta a.cta-link:hover{border-color: var(--accent)}

/* ─────────────────────────────────────────
   FINAL CTA BOX
───────────────────────────────────────── */
.final-cta-box{
  background: var(--accent);
  border-radius: 8px;
  padding: 56px 48px;
  margin: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-eyebrow{
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.final-cta-box h2{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.final-cta-box .cta-body{
  font-family: var(--body);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}
.btn-cta{
  display: inline-block;
  background: var(--white);
  color: var(--accent);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  color: var(--accent);
}
.final-cta-disclosure{
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   STICKY BOTTOM BAR
───────────────────────────────────────── */
.sticky-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible{transform: translateY(0)}
.sticky-bar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-bar-text{
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.sticky-bar-btn{
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--white);
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s;
  white-space: nowrap;
}
.sticky-bar-btn:hover{transform:translateY(-1px); color: var(--accent)}

@media(max-width:600px){
  .sticky-bar-text{font-size:12px}
  .sticky-bar-inner{padding:10px 16px; gap:12px}
}

/* ─────────────────────────────────────────
   DISCLAIMER
───────────────────────────────────────── */
.disclaimer{
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.disclaimer p{
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   HOMEPAGE
───────────────────────────────────────── */
.hero-feature{
  max-width: 1200px;
  margin: 48px auto;
  padding: 0 40px;
}
.hero-feature a{text-decoration:none; color:inherit}
.hero-feature-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-feature img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.hero-feature-text .category-tag{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.hero-feature-text h2{
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-feature-text p{
  font-family: var(--body);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hero-feature-text .read-more{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 550;
  color: var(--accent);
}

@media(max-width:768px){
  .hero-feature-inner{grid-template-columns:1fr; gap:24px}
  .hero-feature img{height:280px}
}

/* Article grid */
.article-grid-section{
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.section-title{
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.article-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.article-card{text-decoration:none; color:inherit}
.article-card:hover .card-title{color: var(--accent)}
.card-image{
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-light), var(--highlight));
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}
.card-image img{width:100%;height:100%;object-fit:cover}
.card-category{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.card-title{
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.card-excerpt{
  font-family: var(--body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.card-meta{
  font-family: var(--sans);
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

@media(max-width:860px){.article-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.article-grid{grid-template-columns:1fr}}

/* Newsletter section */
.newsletter-section{
  background: var(--accent-light);
  padding: 64px 40px;
  text-align: center;
  margin-bottom: 0;
}
.newsletter-section h2{
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.newsletter-section p{
  font-family: var(--body);
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form{
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input{
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--white);
  outline: none;
}
.newsletter-form input:focus{border-color: var(--accent)}
.newsletter-form button{
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover{background: var(--accent-hover)}

@media(max-width:600px){
  .newsletter-form{flex-direction:column}
}

/* ─────────────────────────────────────────
   CATEGORY PAGES
───────────────────────────────────────── */
.category-header{
  max-width: 1200px;
  margin: 48px auto 40px;
  padding: 0 40px;
}
.category-header h1{
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.category-header p{
  font-family: var(--body);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-content{
  max-width: 720px;
  margin: 48px auto 64px;
  padding: 0 40px;
}
.about-content h1{
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}
.about-content p{
  font-family: var(--body);
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-content h2{
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.contributors-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
}
.contributor{
  padding: 24px;
  background: var(--highlight);
  border-radius: 6px;
}
.contributor-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.contributor h3{
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.contributor .role{
  font-family: var(--sans);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.contributor p.bio{
  font-family: var(--body);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media(max-width:600px){.contributors-grid{grid-template-columns:1fr}}

/* ─────────────────────────────────────────
   COMPARISON TABLE (article)
───────────────────────────────────────── */
.comparison{margin:40px 0}
.comparison-title{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.comparison-table{width:100%;border-collapse:collapse}
.comparison-table th{
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--rule);
}
.comparison-table td{
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table tr:last-child td{border-bottom:none}
.comparison-table tr.highlight td{
  background: var(--accent);
  color: var(--white);
}
.comparison-table tr.highlight td:first-child{
  border-left: 3px solid var(--accent-light);
}
.comparison-table td strong{font-weight:600}
.comparison-table tr.highlight td strong{color: var(--white)}

/* ─────────────────────────────────────────
   RESPONSIVE UTILITIES
───────────────────────────────────────── */
@media(max-width:860px){
  .img-wide{margin:40px -24px}
  .img-float{float:none;width:100%;margin:32px 0}
  .stats-row{grid-template-columns:1fr}
  .nights-section{margin:40px -16px; padding:36px 24px}
  .pull-quote{margin:40px 0; padding:28px 28px}
}
@media(max-width:600px){
  .site-header{padding:0 16px}
  .hero-feature{padding:0 16px}
  .article-grid-section{padding:0 16px}
  .category-header{padding:0 16px}
  .about-content{padding:0 16px}
  .img-hero img{height:300px}
  .img-wide{margin:32px -16px}
  .final-cta-box{padding:40px 24px}
  .article-main{padding-bottom:60px}
}

/* Fade-in animation */
.fade-in{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}
