/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,600;1,9..144,700&display=swap');

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

:root {
  /* Editorial warm palette */
  --bg: #f4ede1;
  --bg-card: #fbf6ec;
  --bg-card-hover: #efe5d2;
  --bg-highlight: #ede4d2;
  --bg-dark: #1a1410;
  --bg-dark-2: #221a14;
  --text: #3a322a;
  --text-muted: #6b6259;
  --text-heading: #1a1410;
  --text-on-dark: #f4ede1;
  --text-on-dark-muted: rgba(244, 237, 225, 0.72);
  --accent: #a83c2e;
  --accent-light: #c14d3e;
  --accent-dark: #7c2a1f;
  --accent-rgb: 168, 60, 46;
  --danger: #a83c2e;
  --danger-muted: #7c2a1f;
  --warning: #b8722a;
  --success: #5e7a3e;
  --border: #d9cfba;
  --border-strong: #b8aa8e;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --content-width: 720px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  /* subtle warm paper noise texture */
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.07 0 0 0 0 0.04 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

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

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* ===== HEADER & NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 237, 225, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.site-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

/* hide the old colored "!" tile — wordmark only */
.site-logo .logo-icon { display: none; }

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-heading);
  background: var(--bg-highlight);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background-color: #0a0806;
  background-image:
    linear-gradient(180deg, rgba(10, 8, 6, 0.65) 0%, rgba(10, 8, 6, 0.85) 60%, rgba(10, 8, 6, 0.96) 100%),
    url("../images/xray-20-years-post-orthognathic-surgery.jpg");
  background-size: cover;
  background-position: center 30%;
  background-blend-mode: normal;
  color: var(--text-on-dark);
  padding: 140px 24px 120px;
  text-align: center;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::after {
  /* film-grain over the image */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero > * { position: relative; z-index: 1; }

.hero h1 {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.hero .hero-accent {
  color: #d65a4a;
  font-style: italic;
  font-weight: 600;
}

.hero .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--text-on-dark-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-eyebrow {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(244, 237, 225, 0.6);
  margin-bottom: 24px;
}

/* ===== SECTION LAYOUT ===== */
.section {
  padding: 96px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-divider {
  border: none;
  text-align: center;
  margin: 0 auto;
  max-width: var(--max-width);
  height: 1px;
  background: var(--border);
  position: relative;
}

.section-divider::after {
  content: "·  ·  ·";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  color: var(--text-muted);
  letter-spacing: 0.6em;
  font-size: 1.2rem;
  background: var(--bg);
  padding: 0 1.4em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.section-title .accent {
  color: var(--accent);
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.55;
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-grid--hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.card-grid--hero .card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 260px;
}

@media (max-width: 900px) {
  .card-grid--hero .card { flex: 0 1 calc(50% - 12px); }
}

@media (max-width: 560px) {
  .card-grid--hero .card { flex: 1 1 100%; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(26, 20, 16, 0.04);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26, 20, 16, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 60, 46, 0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== ALTERNATING CONCERN ROWS ===== */
.concern-rows {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 64px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.concern-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.concern-row:nth-child(even) .concern-row__media {
  order: 2;
}

.concern-row__number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.concern-row__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text-heading);
  line-height: 1.1;
}

.concern-row__content p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 460px;
}

.concern-row__media {
  display: block;
}

.concern-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 820px) {
  .concern-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .concern-row:nth-child(even) .concern-row__media {
    order: 0;
  }
  .concern-row__content p { max-width: none; }
}

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(168, 60, 46, 0.04) 0,
      rgba(168, 60, 46, 0.04) 10px,
      transparent 10px,
      transparent 20px
    ),
    var(--bg-card);
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: var(--text-muted);
}

.image-placeholder .ph-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.image-placeholder .ph-desc {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

/* dark version on dark backgrounds */
.image-placeholder--dark {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(244, 237, 225, 0.05) 0,
      rgba(244, 237, 225, 0.05) 10px,
      transparent 10px,
      transparent 20px
    ),
    rgba(244, 237, 225, 0.04);
  border-color: rgba(244, 237, 225, 0.25);
  color: var(--text-on-dark-muted);
}

.image-placeholder--dark .ph-label { color: #d65a4a; }
.image-placeholder--dark .ph-desc { color: var(--text-on-dark); }

/* ===== CONCERN CARDS (legacy, still used elsewhere) ===== */
.concern-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.concern-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(26, 20, 16, 0.04);
}

.concern-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.concern-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.concern-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CTA BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-dark);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--text-on-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(168, 60, 46, 0.3);
}

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

.btn-outline:hover {
  background: rgba(168, 60, 46, 0.08);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-danger {
  background: var(--accent);
  color: var(--text-on-dark);
}

.btn-danger:hover {
  background: var(--accent-dark);
  color: var(--text-on-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(168, 60, 46, 0.3);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  grid-auto-flow: dense;
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: 0 1px 3px rgba(26, 20, 16, 0.04);
}

.testimonial-card::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--font-display);
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card .attribution {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font);
}

.testimonial-card .attribution a {
  color: var(--accent);
  font-weight: 500;
}

/* Larger highlighted testimonials — span 2 cols on wide grids.
   On the testimonials page we auto-promote every 12th card to keep rhythm. */
.testimonial-card--large,
.page-testimonials .testimonial-grid > .testimonial-card:nth-child(12n+1) {
  grid-column: span 2;
  padding: 48px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
}

.testimonial-card--large blockquote,
.page-testimonials .testimonial-grid > .testimonial-card:nth-child(12n+1) blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.4;
  color: var(--text-heading);
  font-weight: 400;
}

.testimonial-card--large::before,
.page-testimonials .testimonial-grid > .testimonial-card:nth-child(12n+1)::before {
  font-size: 8rem;
  top: -8px;
  left: 28px;
  opacity: 0.14;
}

@media (max-width: 760px) {
  .testimonial-card--large,
  .page-testimonials .testimonial-grid > .testimonial-card:nth-child(12n+1) {
    grid-column: span 1;
    padding: 36px 28px;
  }
  .testimonial-card--large blockquote,
  .page-testimonials .testimonial-grid > .testimonial-card:nth-child(12n+1) blockquote {
    font-size: 1.2rem;
  }
}

/* ===== ARTICLE / CONTENT PAGES ===== */
.page-hero {
  text-align: center;
  padding: 100px 24px 64px;
  background: linear-gradient(180deg, rgba(168, 60, 46, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.025em;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.1;
}

.page-hero .page-desc {
  color: var(--text-muted);
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.55;
}

.content-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin: 56px 0 18px;
  padding-top: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 36px 0 12px;
}

.content-section h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.content-section p {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== EDITORIAL DROP CAP / LEDE ===== */
.content-section--editorial > p:first-of-type,
.lede {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--text-heading);
  margin-bottom: 28px;
}

.content-section--editorial > p:first-of-type::first-letter,
.lede::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5.2rem;
  float: left;
  line-height: 0.85;
  margin: 8px 14px 0 0;
  color: var(--accent);
  font-style: normal;
}

.content-section ul, .content-section ol {
  margin: 12px 0 24px 24px;
  color: var(--text);
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.content-section blockquote {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-heading);
  font-size: 1.2rem;
  line-height: 1.5;
}

.content-section blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
  font-family: var(--font);
}

/* ===== CALLOUT BOX ===== */
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.callout.callout-warning { border-left: 4px solid var(--warning); }
.callout.callout-danger { border-left: 4px solid var(--accent); }
.callout.callout-info { border-left: 4px solid var(--accent); }

.callout h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-family: var(--font-display);
}

.callout p { margin-bottom: 0; }

/* ===== DATA TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}

.data-table th, .data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-highlight);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font);
}

.data-table td { color: var(--text); }

.data-table tr:hover td { background: rgba(168, 60, 46, 0.04); }

/* ===== DID YOU KNOW — FULL-BLEED DARK ===== */
.full-bleed {
  width: 100%;
  margin: 0;
  padding: 0;
}

.dyk-feature {
  background: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at top, rgba(168, 60, 46, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-on-dark);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dyk-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.dyk-feature > * { position: relative; z-index: 1; }

.dyk-feature .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #d65a4a;
  font-weight: 700;
  margin-bottom: 28px;
  font-family: var(--font);
}

.dyk-feature p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-on-dark);
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* keep the old plain version available */
.did-you-know {
  background: linear-gradient(135deg, rgba(168, 60, 46, 0.08), rgba(168, 60, 46, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}

.did-you-know .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.did-you-know p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-heading);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===== BIG NUMBER ===== */
.big-number-block {
  text-align: center;
  margin-bottom: 48px;
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 0.85;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: -0.06em;
  display: block;
}

.big-number-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text-heading);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.big-number-sub {
  margin-top: 20px;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== KEY POINTS ===== */
.key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.key-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 3px rgba(26, 20, 16, 0.04);
}

.key-point h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.key-point p {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.news-card:hover { border-color: var(--accent); }

.news-card .source {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.news-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ===== BLOG LIST ===== */
.blog-list { display: flex; flex-direction: column; gap: 20px; }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
  display: block;
}

.blog-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.blog-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.65;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== CONTACT ===== */
.contact-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-box .email-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

/* ===== SCRIPT BOXES ===== */
.script-box {
  background: var(--bg-highlight);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 16px 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  position: relative;
}

.script-box .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-style: normal;
  font-family: var(--font);
  margin-bottom: 8px;
}

/* ===== MANTRA LIST ===== */
.mantra-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mantra-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-heading);
  text-align: center;
}

/* ===== STEPS ===== */
.steps { counter-reset: step; margin: 32px 0; }

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 80px;
  margin-bottom: 16px;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
}

.step h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--text);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  background-image: linear-gradient(180deg, var(--bg-dark-2) 0%, var(--bg-dark) 100%);
  color: var(--text-on-dark-muted);
  border-top: none;
  padding: 80px 24px 36px;
  margin-top: 0;
  position: relative;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.6;
  font-family: var(--font-serif);
  font-style: italic;
  max-width: 360px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d65a4a;
  font-weight: 700;
  font-family: var(--font);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-on-dark); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 237, 225, 0.12);
  text-align: center;
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
}

/* ===== STORY IMAGE ===== */
.story-image {
  max-width: 560px;
  margin: 24px auto 36px;
  text-align: center;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(26, 20, 16, 0.10);
}

.story-image figcaption {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--text-on-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 50;
  box-shadow: 0 4px 14px rgba(168, 60, 46, 0.3);
}

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

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .mobile-menu-btn { display: block; }

  .hero { padding: 96px 20px 80px; min-height: 60vh; }
  .section { padding: 64px 20px; }
  .content-section { padding: 48px 20px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .concern-cards { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

  .key-points { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .step { padding-left: 72px; }

  .did-you-know { padding: 28px 20px; }
  .did-you-know p { font-size: 1.05rem; }

  .dyk-feature { padding: 80px 20px; }

  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }

  .content-section--editorial > p:first-of-type::first-letter,
  .lede::first-letter { font-size: 4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .concern-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-grid { grid-template-columns: 1fr; }
}
