/* ═══════════════════════════════════════════════════════════
   Mund og Tand Foreningen — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --navy:        #0b1f3a;
  --navy-mid:    #122847;
  --navy-light:  #1a3a60;
  --teal:        #1d6e6e;
  --teal-light:  #2a9090;
  --teal-pale:   #e8f5f5;
  --gold:        #c8862a;
  --gold-light:  #e0a040;
  --cream:       #f8f5f0;
  --cream-dark:  #ede8e0;
  --white:       #ffffff;
  --text:        #0b1f3a;
  --text-mid:    #3d5270;
  --text-soft:   #7a8fa8;
  --red:         #8b1f1f;

  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --radius:      6px;
  --shadow-sm:   0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:   0 6px 24px rgba(11,31,58,0.12);
  --shadow-lg:   0 14px 48px rgba(11,31,58,0.16);

  --container:   1140px;
  --nav-h:       70px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ─── Base Typography ─── */
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

p { line-height: 1.85; }

/* ─── Layout Utilities ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5.5rem 2rem; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 1rem;
}
.tag-line  { width: 30px; height: 2px; background: var(--teal); flex-shrink: 0; }
.tag-text  { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 600; }
.tag--light .tag-line { background: var(--teal-light); }
.tag--light .tag-text { color: var(--teal-light); }

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-title em   { font-style: italic; color: var(--teal); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--teal-light); }

.section-lead {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.22s;
  border: 1.5px solid transparent;
  text-align: center;
}
.btn--primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,110,110,0.35); }
.btn--outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.btn--outline-white:hover { border-color: var(--teal-light); color: var(--teal-light); }
.btn--lg { padding: 16px 44px; font-size: 0.95rem; }

/* ─── NAV ─── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  transition: box-shadow 0.2s;
}

#site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }

.nav-brand {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-icon {
  width: 38px; height: 38px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.25;
}
.nav-brand-sub {
  display: block; font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 400; color: var(--teal-light);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* WordPress nav menu */
#primary-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
}
#primary-menu > li > a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.87rem; font-weight: 400;
  transition: color 0.18s;
  padding: 4px 0;
}
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a { color: var(--teal-light); }

/* Dropdown support */
#primary-menu li { position: relative; }
#primary-menu li ul {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 300;
}
#primary-menu li:hover > ul { display: block; }
#primary-menu li ul a {
  display: block;
  padding: 8px 16px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.15s;
}
#primary-menu li ul a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta-wrap { margin-left: 1rem; }
.nav-cta-wrap .btn { padding: 9px 22px; font-size: 0.82rem; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 4px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.25s;
}

/* ─── HERO (front-page only) ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(29,110,110,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 20%, rgba(200,134,42,0.07) 0%, transparent 60%);
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--navy-mid);
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left {
  padding: 6rem 3rem 5rem 5rem;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  animation: fadeUp 0.85s ease both;
}
.hero-right {
  padding: 6rem 4rem 5rem 2rem;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  animation: fadeUp 0.85s 0.12s ease both;
}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; }
.kicker-dot  { width: 8px; height: 8px; background: var(--teal-light); border-radius: 50%; animation: pulse 2.2s ease-in-out infinite; }
.kicker-text { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); font-weight: 500; }
.hero h1 { font-size: clamp(2.6rem, 4.5vw, 4rem); color: var(--white); margin-bottom: 1.6rem; }
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,0.65); font-weight: 300; line-height: 1.8; max-width: 480px; margin-bottom: 2.8rem; }
.hero-ctas { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.btn-text { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; display: flex; align-items: center; gap: 7px; transition: color 0.18s; }
.btn-text:hover { color: var(--teal-light); }
.btn-text-arrow { width: 24px; height: 24px; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.hero-counters { display: flex; gap: 3rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.counter-val { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--teal-light); line-height: 1; }
.counter-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 5px; max-width: 110px; line-height: 1.4; }

/* Hero right cards */
.patient-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; backdrop-filter: blur(10px); margin-bottom: 1.2rem; }
.patient-card-top { padding: 1.6rem 1.8rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.patient-card-badge { display: inline-block; background: rgba(29,110,110,0.3); border: 1px solid rgba(29,110,110,0.5); border-radius: 20px; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); padding: 3px 11px; margin-bottom: 0.9rem; font-weight: 500; }
.patient-card-quote { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; }
.patient-card-bottom { padding: 1rem 1.8rem; display: flex; align-items: center; gap: 12px; }
.patient-avatar { width: 36px; height: 36px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.patient-name { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.patient-desc { font-size: 0.72rem; color: rgba(255,255,255,0.38); font-weight: 300; margin-top: 2px; }
.hero-fact-card { background: var(--teal); border-radius: 6px; padding: 1.4rem 1.8rem; display: flex; align-items: center; gap: 1.2rem; }
.fact-icon { font-size: 1.8rem; flex-shrink: 0; }
.fact-number { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.fact-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 300; margin-top: 3px; line-height: 1.45; }

/* ─── ALERT BAND ─── */
.alert-band {
  background: var(--red);
  padding: 13px 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  text-align: center;
}
.alert-band p { font-size: 0.88rem; color: rgba(255,255,255,0.92); line-height: 1.5; }
.alert-band strong { font-weight: 600; color: var(--white); }
.alert-band a { color: var(--white); text-decoration: underline; }

/* ─── MISSION ─── */
.mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-media { position: relative; }
.mission-image { width: 100%; aspect-ratio: 4/3.2; border-radius: var(--radius); background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mission-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mission-image-placeholder { font-size: 4rem; opacity: 0.25; }
.mission-badge { position: absolute; top: -16px; right: -16px; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-md); text-align: center; min-width: 120px; }
.mission-badge-2 { position: absolute; bottom: -16px; left: -16px; background: var(--navy); border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-md); text-align: center; }
.badge-val { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.badge-label { font-size: 0.65rem; color: var(--text-soft); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; line-height: 1.4; }
.mission-badge-2 .badge-val { color: var(--teal-light); }
.mission-badge-2 .badge-label { color: rgba(255,255,255,0.4); }
.mission-body { font-size: 1rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; margin-bottom: 1.3rem; }
.mission-body strong { color: var(--navy); font-weight: 600; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 2rem; }
.pillar { background: var(--white); border: 1px solid var(--cream-dark); border-left: 3px solid var(--teal); border-radius: 4px; padding: 1rem 1.2rem; }
.pillar-h { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; font-family: var(--font-sans); }
.pillar-p { font-size: 0.78rem; color: var(--text-soft); line-height: 1.6; font-weight: 300; }

/* ─── PROBLEM / STATS ─── */
.problem { background: var(--navy); position: relative; overflow: hidden; }
.problem::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(29,110,110,0.1) 0%, transparent 70%); pointer-events: none; }
.problem-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.problem-pull { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--teal-light); line-height: 1.6; border-left: 3px solid var(--teal); padding-left: 1.4rem; }
.problem-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.06); }
.stat-card { background: var(--navy); padding: 2.2rem 1.8rem; transition: background 0.2s; }
.stat-card:hover { background: var(--navy-mid); }
.stat-num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; color: var(--teal-light); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.82); font-weight: 500; margin-bottom: 0.4rem; line-height: 1.4; }
.stat-body { font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.65; }

/* ─── NEWS SECTION (homepage) ─── */
.news-section { background: var(--white); }
.news-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Post card — used on homepage news grid AND archive */
.post-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.post-card-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden; position: relative;
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0.3; }
.post-card-body { padding: 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.post-card-cat {
  display: inline-block; margin-bottom: 0.7rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-pale);
  padding: 3px 10px; border-radius: 20px;
}
.post-card-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 0.7rem; }
.post-card-excerpt { font-size: 0.82rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; flex: 1; margin-bottom: 1.2rem; }
.post-card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--cream-dark); }
.post-card-date { font-size: 0.72rem; color: var(--text-soft); font-weight: 400; }
.post-card-author { font-size: 0.72rem; color: var(--text-soft); font-weight: 300; }
.post-card-readmore { font-size: 0.78rem; font-weight: 600; color: var(--teal); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.post-card-readmore:hover { color: var(--teal-light); }

/* ─── BLOG ARCHIVE PAGE ─── */
.archive-header {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  text-align: center;
  padding-top: calc(var(--nav-h) + 4rem);
}
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.archive-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* Widget boxes (sidebar) */
.widget-box { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 1.5rem; }
.widget-box-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.7rem; border-bottom: 2px solid var(--teal); }
.widget-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.widget-box ul li a { font-size: 0.83rem; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.18s; }
.widget-box ul li a::before { content: '›'; color: var(--teal); font-weight: 700; }
.widget-box ul li a:hover { color: var(--teal); }
.widget-box p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.widget-box .btn { width: 100%; margin-top: 1rem; display: block; }

/* Category pills */
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cat-pill { font-size: 0.75rem; font-weight: 500; color: var(--teal); background: var(--teal-pale); border: 1px solid rgba(29,110,110,0.2); border-radius: 20px; padding: 5px 12px; text-decoration: none; transition: all 0.18s; }
.cat-pill:hover, .cat-pill.active { background: var(--teal); color: var(--white); }

/* ─── SINGLE POST ─── */
.single-header {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  padding-top: calc(var(--nav-h) + 4rem);
}
.single-header-inner { max-width: 760px; margin: 0 auto; }
.single-cat { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-light); background: rgba(29,110,110,0.2); border: 1px solid rgba(29,110,110,0.4); border-radius: 20px; padding: 4px 14px; margin-bottom: 1.2rem; }
.single-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
.single-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.single-meta-item { font-size: 0.78rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.single-meta-item strong { color: rgba(255,255,255,0.75); font-weight: 500; }

.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; padding: 4rem 2rem; max-width: var(--container); margin: 0 auto; }

/* Featured image */
.single-featured { width: 100%; border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; aspect-ratio: 16/7; }
.single-featured img { width: 100%; height: 100%; object-fit: cover; }

/* Post content */
.post-content { font-size: 1rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; }
.post-content h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.post-content h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); margin: 2rem 0 0.8rem; }
.post-content p { margin-bottom: 1.3rem; }
.post-content strong { color: var(--navy); font-weight: 600; }
.post-content a { color: var(--teal); text-decoration: underline; }
.post-content a:hover { color: var(--teal-light); }
.post-content ul, .post-content ol { margin: 1rem 0 1.3rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; line-height: 1.75; }
.post-content blockquote { border-left: 3px solid var(--teal); padding: 1rem 1.5rem; margin: 2rem 0; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--text-mid); background: var(--teal-pale); border-radius: 0 4px 4px 0; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Author box */
.author-box { background: var(--cream); border: 1px solid var(--cream-dark); border-radius: var(--radius); padding: 1.8rem; margin-top: 3rem; display: flex; gap: 1.2rem; }
.author-box-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; overflow: hidden; }
.author-box-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.author-box-bio { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.post-tag { font-size: 0.75rem; color: var(--text-soft); background: var(--cream-dark); border-radius: 20px; padding: 4px 12px; text-decoration: none; transition: all 0.18s; }
.post-tag:hover { background: var(--teal-pale); color: var(--teal); }

/* Related posts */
.related-posts { padding: 4rem 2rem; background: var(--cream); border-top: 1px solid var(--cream-dark); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }

/* Comments */
.comments-section { padding: 3rem; background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius); margin-top: 2rem; }
.comment-list { list-style: none; }
.comment { padding: 1.5rem 0; border-bottom: 1px solid var(--cream-dark); }
.comment:last-child { border-bottom: none; }
.comment-author-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.comment-date { font-size: 0.72rem; color: var(--text-soft); margin-left: 8px; }
.comment-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-top: 0.5rem; font-weight: 300; }
.comment-reply a { font-size: 0.75rem; color: var(--teal); text-decoration: none; margin-top: 0.5rem; display: inline-block; }

/* Comment form */
.comment-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-field input,
.form-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font: inherit; font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.18s;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--teal); background: var(--white); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field-full { grid-column: 1 / -1; }

/* ─── MEMBERSHIP TIERS ─── */
.membership { background: var(--white); }
.membership-header { text-align: center; margin-bottom: 3.5rem; }
.membership-header .section-lead { margin: 0 auto; }
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.tier-card { border: 1.5px solid var(--cream-dark); border-radius: 8px; padding: 2rem 1.6rem; background: var(--cream); transition: all 0.22s; position: relative; display: flex; flex-direction: column; }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.tier-card.featured { background: var(--navy); border-color: var(--navy); border-top: 4px solid var(--teal); }
.tier-featured-label { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 13px; border-radius: 20px; white-space: nowrap; }
.tier-name { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.7rem; }
.tier-card.featured .tier-name { color: rgba(255,255,255,0.45); }
.tier-price { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.tier-card.featured .tier-price { color: var(--teal-light); }
.tier-period { font-family: var(--font-sans); font-size: 0.82rem; color: var(--text-soft); font-weight: 300; }
.tier-card.featured .tier-period { color: rgba(255,255,255,0.4); }
.tier-divider { height: 1px; background: var(--cream-dark); margin: 1.2rem 0; }
.tier-card.featured .tier-divider { background: rgba(255,255,255,0.1); }
.tier-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; flex: 1; }
.tier-card.featured .tier-desc { color: rgba(255,255,255,0.6); }
.tier-features { list-style: none; margin-bottom: 1.8rem; }
.tier-features li { font-size: 0.8rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-weight: 300; line-height: 1.45; }
.tier-card.featured .tier-features li { color: rgba(255,255,255,0.7); }
.tier-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.tier-card.featured .tier-features li::before { color: var(--teal-light); }

/* ─── WHY JOIN ─── */
.why { background: var(--teal-pale); }
.why-inner { text-align: center; }
.why-inner .tag { justify-content: center; }
.why-inner .section-lead { margin: 0 auto 3.5rem; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; }
.why-card { background: var(--white); border: 1px solid rgba(29,110,110,0.15); border-radius: var(--radius); padding: 2rem 1.8rem; transition: all 0.2s; }
.why-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(29,110,110,0.1); }
.why-icon { width: 48px; height: 48px; background: var(--teal-pale); border: 1.5px solid rgba(29,110,110,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.why-h { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; font-family: var(--font-serif); }
.why-p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* ─── CTA BAND ─── */
.cta-section { background: var(--navy); text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(29,110,110,0.18) 0%, transparent 70%); pointer-events: none; }
.cta-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.1rem; }
.cta-title em { font-style: italic; color: var(--teal-light); }
.cta-body { font-size: 1rem; color: rgba(255,255,255,0.58); line-height: 1.85; font-weight: 300; margin-bottom: 2.4rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.cta-trust { margin-top: 1.8rem; font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ─── PAGE TEMPLATES ─── */
/* Generic interior page */
.page-header { background: var(--navy); padding: 5rem 2rem 4rem; padding-top: calc(var(--nav-h) + 4rem); text-align: center; }
.page-header h1 { color: var(--white); }
.page-content-area { max-width: 820px; margin: 0 auto; padding: 4rem 2rem; }
.page-content-area .entry-content { font-size: 1rem; color: var(--text-mid); line-height: 1.9; font-weight: 300; }
.page-content-area .entry-content h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.page-content-area .entry-content p { margin-bottom: 1.3rem; }
.page-content-area .entry-content a { color: var(--teal); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--container); margin: 0 auto; padding: 4rem 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { width: 40px; height: 40px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 3px; }
.contact-info-value { font-size: 0.9rem; color: var(--navy); font-weight: 400; }

/* Contact / general forms */
.mot-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.mot-form .form-row-full { grid-template-columns: 1fr; }

/* ─── PAGINATION ─── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a,
.pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all 0.18s;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .current { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ─── SEARCH ─── */
.search-form { display: flex; gap: 0; }
.search-form input[type="search"] {
  flex: 1; padding: 10px 16px;
  border: 1.5px solid var(--cream-dark); border-right: none;
  border-radius: 4px 0 0 4px;
  font: inherit; font-size: 0.88rem;
  background: var(--cream); color: var(--text);
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--teal); }
.search-form button {
  padding: 10px 18px;
  background: var(--teal); color: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: 0 4px 4px 0;
  font-size: 0.88rem; font-weight: 600;
  transition: background 0.18s;
}
.search-form button:hover { background: var(--teal-light); }

/* ─── FOOTER ─── */
#site-footer { background: #06131f; padding: 4rem 2rem 2.5rem; border-top: 3px solid var(--teal); }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.footer-brand-tag { font-size: 0.62rem; color: var(--teal-light); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; font-weight: 300; max-width: 270px; margin-bottom: 1.2rem; }
.footer-contact-item { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 0.3rem; }
.footer-col-h { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 1.1rem; }
.footer-menu { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-menu a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 300; transition: color 0.18s; }
.footer-menu a:hover { color: var(--teal-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-payment { display: flex; gap: 0.8rem; }
.payment-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 4px 10px; font-size: 0.65rem; color: rgba(255,255,255,0.3); font-weight: 500; letter-spacing: 0.06em; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse  { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero-right { display: none; }
  .mission-grid, .problem-header, .testimonial-grid, .single-layout, .contact-grid { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr 1fr; }
  .news-grid, .related-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  #primary-menu { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy-mid); padding: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
  #primary-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta-wrap { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .news-grid, .related-grid, .why-grid { grid-template-columns: 1fr; }
  .problem-stats { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .comment-form-fields, .mot-form .form-row { grid-template-columns: 1fr; }
}
