/* ============================================================
   danteharker.com — shared site stylesheet
   Light, airy, modern design system: near-white base, sage
   mist sections, fresh green accents.
   Fraunces (headings) + Nunito Sans (body).
   ============================================================ */

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

:root {
  /* Core palette — light blues and quiet pastels */
  --white: #FFFFFF;
  --base: #FCFBF7;         /* warm ivory page base */
  --mist: #EEF6FA;         /* powder blue section wash */
  --mist-deep: #DDECF4;    /* deeper blue mist for accents */
  --ink: #1F2D3A;          /* classic blue-charcoal text */
  --ink-soft: #334758;
  --sage: #8DBBD2;         /* primary powder blue accent */
  --sage-dark: #4F7F99;    /* links, hovers */
  --apricot: #F2D5D3;      /* pale blush warmth */
  --honey: #B3846B;        /* small warm text accents */
  --lavender: #E8E4F6;
  --sky: #D9EEF8;
  --blue-wash: #F4FAFD;
  --muted: #657684;

  --serif: 'Lora', Georgia, serif;
  --sans: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  --wonk-off: "WONK" 0;

  /* Legacy aliases — older markup and inline styles reference these */
  --dark-bg: #EEF6FA;
  --light-bg: #FCFBF7;
  --gold: #B3846B;
  --green: #8DBBD2;
  --text-light: #1F2D3A;
  --text-dark: #1F2D3A;
  --text-muted: #657684;
  --footer-bg: #EEF6FA;
  --terracotta: #B3846B;
  --playfair: 'Lora', Georgia, serif;
  --montserrat: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  --lora: 'Lora', Georgia, serif;
  --jost: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  --raleway: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  line-height: 1.7;
  background: var(--base);
}
::selection { background: rgba(111, 160, 122, 0.25); }

/* ── HEADER — sticky, frosted ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(38, 48, 43, 0.06);
}
.site-header .logo-link { display: flex; align-items: center; }
.site-header .logo-link img { height: 33px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--sage-dark); background: var(--mist); }
.site-nav a.active { color: var(--sage-dark); background: var(--mist-deep); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: -0.5rem -0.5rem -0.5rem 0;
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s;
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: var(--mist); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-green, .btn-dark, .btn-outline, .submit-btn, .btn, .btn-media-email {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.btn-green, .submit-btn, .btn.primary {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(111, 160, 122, 0.35);
}
.btn-green:hover, .submit-btn:hover, .btn.primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(78, 122, 88, 0.4);
}
.btn-dark, .btn.secondary,
.content a.btn-media-email, .content a.btn-media-email:visited {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover, .btn.secondary:hover, .content a.btn-media-email:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  border-color: rgba(38, 48, 43, 0.2);
}
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* Buttons inside .content must not inherit link styling */
.content a.btn-green, .content a.btn-green:hover, .content .submit-btn,
.content a.btn.primary, .content a.btn.primary:hover {
  color: #fff;
  text-decoration: none;
}
.content a.btn-dark, .content a.btn-dark:hover, .content a.btn.secondary, .content a.btn.secondary:hover {
  color: #fff;
  text-decoration: none;
}
.content a.btn-outline { text-decoration: none; color: var(--ink); }
.content a.btn-outline:hover { color: #fff; }

/* ── DIVIDERS & LAYOUT HELPERS ──────────────────────────── */
.gold-divider { height: 1px; background: linear-gradient(90deg, rgba(111, 160, 122, 0) 0%, rgba(111, 160, 122, 0.35) 50%, rgba(111, 160, 122, 0) 100%); }
.inner { max-width: 900px; margin: 0 auto; }
.wide-inner { max-width: 1120px; margin: 0 auto; }

/* ── PAGE HERO (centred banner) — light and airy ────────── */
.page-hero {
  background:
    radial-gradient(1100px 420px at 15% -10%, rgba(111, 160, 122, 0.16) 0%, rgba(111, 160, 122, 0) 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(232, 168, 124, 0.14) 0%, rgba(232, 168, 124, 0) 55%),
    var(--base);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sage-dark);
  text-transform: uppercase;
  background: rgba(111, 160, 122, 0.12);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.page-hero h2 {
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero p { font-family: var(--sans); font-size: 16px; color: var(--muted); }
.page-hero p.eyebrow { color: var(--sage-dark); }
.page-hero .hero-cta { margin-top: 2.25rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── SPLIT HERO (portrait + text) — light with framed photo ─ */
.hero {
  background:
    radial-gradient(1100px 420px at 10% -10%, rgba(111, 160, 122, 0.16) 0%, rgba(111, 160, 122, 0) 60%),
    radial-gradient(900px 380px at 95% 10%, rgba(232, 168, 124, 0.14) 0%, rgba(232, 168, 124, 0) 55%),
    var(--base);
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 3.5rem 3rem;
  gap: 3rem;
}
.hero-img-col { flex: 0 0 32%; max-width: 32%; }
.hero-img-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(38, 48, 43, 0.18);
}
.hero-text-col { flex: 1; padding: 0; }
.hero-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(111, 160, 122, 0.12);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 780px;
}
.hero h2 {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 720px;
}
.hero a:not([class]) { color: var(--sage-dark); }

/* ── GENERIC SECTIONS — white / mist rhythm ─────────────── */
.section-light { background: var(--base); padding: 72px 2rem; }
.section-dark { background: var(--mist); padding: 72px 2rem; }
.section-light h2, .section-dark h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  text-align: center;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lead {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
  color: var(--sage-dark);
}
.section-light p, .section-dark p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.1rem; }
.section-light a, .section-dark a { color: var(--sage-dark); }

/* ── CONTENT PAGES (about, contact, legal, media…) ──────── */
.content { background: var(--base); padding: 64px 2rem; }
.content .inner { max-width: 900px; margin: 0 auto; }
.content p { font-family: var(--sans); font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.25rem; }
.content h2 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); margin: 2.75rem 0 1rem; line-height: 1.25; letter-spacing: -0.01em; }
.content h2:first-of-type { margin-top: 0; }
.content h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--sage-dark); margin: 2.25rem 0 0.75rem; }
.content h4 { font-family: var(--sans); font-size: 18px; font-weight: 700; color: var(--ink); margin: 2rem 0 0.5rem; }
.content ul { margin: 0.5rem 0 1rem 1.5rem; }
.content li { margin-bottom: 0.4rem; }
.content a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(111, 160, 122, 0.5);
  text-underline-offset: 3px;
}
.content a:hover { color: var(--ink); }

/* ── SUPPORT PAGE — intro, pillars, guide ───────────────── */
.section-beyond { background: var(--base); padding: 72px 2rem; text-align: center; }
.section-beyond h1 { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--ink); margin-bottom: 1rem; }
.section-beyond h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 500; color: var(--ink); margin-bottom: 1.25rem; letter-spacing: -0.01em; }
.section-beyond .subtitle {
  font-family: var(--sans);
  font-size: 19px;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.section-beyond.faq-section { padding-top: 0; padding-bottom: 64px; }

.section-pillars { background: var(--base); padding: 0 2rem 72px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1200px; margin: 0 auto; }
.pillar-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 8px 30px rgba(38, 48, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(38, 48, 43, 0.1); }
.pillar-card.card-dark, .pillar-card.card-light { background: #fff; border: 1px solid rgba(38, 48, 43, 0.06); }
.pillar-card h3, .pillar-card.card-dark h3, .pillar-card.card-light h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 1rem;
}
.pillar-card p, .pillar-card.card-dark p, .pillar-card.card-light p {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}
.pillar-card a, .pillar-card.card-dark p a, .pillar-card.card-light p a { color: var(--sage-dark) !important; font-weight: 600; }

.section-cta-row { background: var(--base); padding: 0 2rem 72px; text-align: center; }

.section-why { background: var(--mist); padding: 72px 2rem; text-align: center; }
.section-why .inner { max-width: 900px; margin: 0 auto; }
.section-why h2 { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.section-why .label { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 1rem; }
.section-why p { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.75; text-align: left; margin-bottom: 1rem; }
.section-why a { color: var(--sage-dark); }

.section-guide { background: var(--mist); padding: 20px 2rem 72px; display: flex; align-items: stretch; }
.guide-text-col { flex: 0 0 66.666%; max-width: 66.666%; padding-right: 3rem; }
.guide-img-col { flex: 0 0 33.333%; max-width: 33.333%; display: flex; flex-direction: column; align-items: center; }
.guide-img-col img { width: 100%; max-width: 400px; height: auto; display: block; margin-bottom: 1.5rem; border-radius: 24px; box-shadow: 0 18px 40px rgba(38, 48, 43, 0.14); }
.guide-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--sage-dark);
  text-align: center;
  line-height: 1.5;
}
.section-guide h1, .section-guide h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.guide-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.guide-body p { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.75; text-align: left; }
.guide-body a { color: var(--sage-dark); text-decoration: underline; text-decoration-color: rgba(111, 160, 122, 0.5); }
.guide-body a:hover { color: var(--ink); }
.guide-cta { text-align: center; margin-top: 1rem; }
.guide-cta h2 { font-family: var(--sans); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; }

/* Identity Update promo band (support page) */
.promo-band {
  background: linear-gradient(135deg, var(--mist) 0%, #FDF6EF 100%);
  padding: 64px 2rem;
}
.promo-band .inner { max-width: 900px; margin: 0 auto; text-align: center; }
.promo-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sage-dark);
  text-transform: uppercase;
  background: rgba(111, 160, 122, 0.14);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1rem;
}
.promo-band h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em; }
.promo-band .promo-copy { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.75; max-width: 720px; margin: 0 auto 1.5rem; }
.promo-band .promo-price { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--honey); margin-bottom: 1.75rem; }

/* ── FAQ ACCORDIONS ─────────────────────────────────────── */
.faq-block { max-width: 760px; margin: 0 auto; text-align: left; }
.faq-block .faq-kicker { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.35rem; }
.faq-block .faq-intro { font-family: var(--sans); font-size: 17px; line-height: 1.65; color: var(--muted); margin: 0 0 1.35rem; }
.faq-block details {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.07);
  border-radius: 16px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(38, 48, 43, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-block details:hover { border-color: rgba(111, 160, 122, 0.5); }
.faq-block details[open] { border-color: var(--sage); box-shadow: 0 10px 26px rgba(38, 48, 43, 0.07); }
.faq-block summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.05rem 1.15rem 1.05rem 3rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  user-select: none;
}
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::marker { content: ''; }
.faq-block summary::before {
  content: '+';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  line-height: 1.3rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-dark);
  border: 2px solid rgba(111, 160, 122, 0.5);
  border-radius: 50%;
  background: rgba(111, 160, 122, 0.08);
  transition: background 0.2s, color 0.2s;
}
.faq-block details[open] summary::before {
  content: '\2212';
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.faq-block summary:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.faq-block .faq-answer {
  padding: 0 1.15rem 1.15rem 3rem;
  border-top: 1px solid rgba(38, 48, 43, 0.05);
  background: linear-gradient(180deg, rgba(241, 245, 240, 0.5) 0%, #fff 100%);
}
.faq-block .faq-answer p { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; }
.faq-block .faq-answer p + p { margin-top: 0.75rem; }
.faq-block .faq-answer a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(111, 160, 122, 0.5);
  text-underline-offset: 3px;
}
.faq-block .faq-answer a:hover { color: var(--ink); }

/* Simple details cards (why-dante page) */
details.plain, .content details {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.07);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin: 0 0 0.9rem;
}
.content summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--sans);
  padding: 0.6rem 0;
  margin: -0.6rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.content summary:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.content details p { margin: 0.75rem 0 0; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.dh-testimonials-section { background: var(--base); padding: 0 2rem 72px; }
.content .dh-testimonials-section { padding: 0; margin-top: 2.5rem; }
.dh-testimonials-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.dh-testimonials-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  background: rgba(111, 160, 122, 0.12);
  border-radius: 999px;
  padding: 0.35rem 1rem;
}
.dh-testimonials-inner h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.dh-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; margin-top: 0.5rem; }
.dh-testimonial-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 24px 24px 20px;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.05);
  text-align: left;
}
.dh-testimonial-card blockquote { margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.dh-testimonial-card figcaption { margin-top: 12px; font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--sage-dark); letter-spacing: 0.2px; }

/* ── ABOUT PAGE ─────────────────────────────────────────── */
.approach-cards { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1.5rem 0 2rem; }
.approach-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 1.85rem;
  flex: 1 1 260px;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.approach-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(38, 48, 43, 0.09); }
.approach-card .card-icon { font-size: 1.9rem; margin-bottom: 0.75rem; line-height: 1; color: var(--sage); display: inline-block; }
.approach-card h3 { margin-top: 0; margin-bottom: 0.6rem; font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.approach-card p { color: var(--muted); font-size: 16px; margin-bottom: 0; }

.qual-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; margin: 1.5rem 0; list-style: none; }
.qual-list li { font-family: var(--sans); font-size: 14px; line-height: 1.5; margin-bottom: 0; }
.qual-badge {
  display: block;
  width: 100%;
  background: var(--mist);
  color: var(--ink);
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  text-align: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.qual-badge:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.qual-group-title { font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 2px; margin: 2rem 0 0.75rem; }

.nch-membership {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 0.35rem 0 1.35rem;
  padding: 1.1rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.07);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(38, 48, 43, 0.04);
}
.nch-membership a.logo-link-nch { display: inline-block; line-height: 0; flex-shrink: 0; transition: opacity 0.2s, transform 0.2s; }
.nch-membership a.logo-link-nch:hover { opacity: 0.92; transform: translateY(-1px); }
.nch-membership img { display: block; max-height: 118px; width: auto; height: auto; }
.nch-membership .nch-text { flex: 1 1 220px; margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.nch-membership .nch-text a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(111, 160, 122, 0.5);
  text-underline-offset: 3px;
}
.nch-membership .nch-text a:hover { color: var(--ink); }
.content .faq-block { margin-top: 0.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(111, 160, 122, 0.3); max-width: none; }

/* ── MEN'S PSYCHOSEXUAL HEALTH PAGE ─────────────────────── */
.section-card { padding: 48px 2rem; }
.section-card.bg-light { background: var(--base); }
.section-card.bg-dark { background: var(--mist); }
.card-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 10px 30px rgba(38, 48, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-inner:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(38, 48, 43, 0.1); }
.card-inner h2 { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--ink); text-align: center; margin-bottom: 1rem; }
.card-inner p { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.card-inner ul { color: var(--ink-soft); }
.card-stat { font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 400; color: var(--sage-dark); text-align: center; margin-top: 1.5rem; }
.card-cta { text-align: center; margin-top: 1.5rem; }

.section-issues { background: var(--mist); padding: 72px 2rem; }
.section-issues .inner { max-width: 900px; margin: 0 auto; }
.section-issues h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--ink); text-align: center; margin-bottom: 2rem; letter-spacing: -0.01em; }
.issues-icon { text-align: center; margin-bottom: 1.5rem; }
.issues-icon img { width: 110px; height: auto; }
.issues-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(38, 48, 43, 0.07);
  margin-bottom: 2rem;
}
.issues-card ul { font-family: var(--sans); font-size: 17px; color: var(--ink-soft); line-height: 1.7; padding-left: 1.5rem; }
.issues-card ul li { margin-bottom: 0.75rem; }
.issues-stat { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--sage-dark); text-align: center; }

.section-how { background: var(--mist); padding: 20px 2rem 72px; display: flex; align-items: stretch; }
.how-text-col { flex: 0 0 66.666%; max-width: 66.666%; padding-right: 3rem; }
.how-img-col { flex: 0 0 33.333%; max-width: 33.333%; display: flex; flex-direction: column; align-items: center; }
.how-img-col img { width: 100%; max-width: 400px; height: auto; display: block; margin-bottom: 1.5rem; border-radius: 24px; box-shadow: 0 18px 40px rgba(38, 48, 43, 0.14); }
.how-quote { font-family: var(--serif); font-size: 21px; font-weight: 400; font-style: italic; color: var(--sage-dark); text-align: center; line-height: 1.5; }
.section-how h1, .section-how h2 { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; color: var(--ink); text-align: center; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.how-body { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1rem; }
.how-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.how-body ul li { margin-bottom: 0.5rem; }
.how-cta { text-align: center; margin-top: 2rem; }

/* ── IDENTITY UPDATE PAGE ───────────────────────────────── */
.lag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 2rem 0 0.5rem; }
.lag-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 6px 20px rgba(38, 48, 43, 0.04);
}
.lag-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.lag-card p { font-size: 16px; color: var(--muted); margin-bottom: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 1rem auto 0; }
.step-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 22px;
  padding: 1.85rem;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(38, 48, 43, 0.1); }
.step-num { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.4rem; }
.step-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); margin-bottom: 0.75rem; }
.step-card p { font-size: 16px; color: var(--muted); margin-bottom: 0; }
.step-card .step-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--sage-dark);
  background: rgba(111, 160, 122, 0.13);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}

.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 1.5rem auto 0; }
.practice-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 1.85rem;
  box-shadow: 0 6px 20px rgba(38, 48, 43, 0.04);
}
.practice-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
.practice-card p { font-size: 16px; color: var(--muted); margin-bottom: 0.75rem; }
.practice-card a { color: var(--sage-dark); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(111, 160, 122, 0.5); text-underline-offset: 3px; }
.practice-card a:hover { color: var(--ink); }

.who-list { max-width: 760px; margin: 1rem auto 0; padding-left: 1.25rem; }
.who-list li { font-family: var(--sans); font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.6rem; }

.section-cta { background: var(--base); padding: 0 2rem 72px; text-align: center; }
.section-cta .note { margin-top: 1rem; font-size: 16px; color: var(--muted); }

/* ── BOOKING PAGE ───────────────────────────────────────── */
.price-card {
  border-radius: 22px;
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(38, 48, 43, 0.1); }
.price-card.card-light { background: #fff; border: 1px solid rgba(38, 48, 43, 0.08); }
.price-card.card-light strong { color: var(--ink); font-family: var(--serif); font-size: 21px; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.price-card.card-dark { background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%); border: none; }
.price-card.card-dark strong { color: #fff; font-family: var(--serif); font-size: 21px; font-weight: 500; display: block; margin-bottom: 0.25rem; }
.price-card.card-dark p { color: rgba(255, 255, 255, 0.94); margin-bottom: 0.5rem; }
.price-card.card-dark a { color: #fff !important; }
.price-card.card-dark .badge {
  display: inline-block;
  color: var(--sage-dark);
  background: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  margin-top: 0.25rem;
}

/* ── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(38, 48, 43, 0.15);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(111, 160, 122, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-info-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.contact-info-list li { margin-bottom: 0.75rem; font-family: var(--sans); font-size: 18px; }
.contact-info-list a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(111, 160, 122, 0.5);
}
.contact-info-list a:hover { color: var(--ink); }

/* ── MEDIA PAGE ─────────────────────────────────────────── */
.topic-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.topic-list li {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 0.65rem 0 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(38, 48, 43, 0.08);
  position: relative;
  margin-bottom: 0;
}
.topic-list li::before { content: "—"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.bio-box {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.07);
  border-radius: 20px;
  padding: 1.35rem 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(38, 48, 43, 0.04);
}
.bio-box .bio-label { font-family: var(--sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sage-dark); margin-bottom: 0.75rem; }
.bio-box p { margin-bottom: 0; font-size: 17px; }
.bio-box p + p { margin-top: 0.75rem; }
.photo-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; margin: 1rem 0 2rem; }
.photo-row img { max-width: 220px; width: 100%; height: auto; border-radius: 20px; border: 1px solid rgba(38, 48, 43, 0.08); box-shadow: 0 8px 24px rgba(38, 48, 43, 0.08); }
.appearances { list-style: none; margin: 0; padding: 0; }
.appearances li { font-family: var(--sans); font-size: 17px; padding: 1rem 0; border-bottom: 1px solid rgba(38, 48, 43, 0.08); margin-bottom: 0; }
.appearances li strong { display: block; font-family: var(--sans); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.appearances .meta { font-size: 15px; color: var(--muted); }

/* ── WHY DANTE PAGE ─────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; margin: 1.25rem 0 2rem; }
.card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 6px 20px rgba(38, 48, 43, 0.04);
}
.card h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: 0; text-transform: none; margin-bottom: 0.6rem; color: var(--ink); }
.card ul { margin: 0; padding-left: 1.1rem; }
.card li { margin: 0.45rem 0; }
.cta-row { margin-top: 1.75rem; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* ── MIND MANAGEMENT MONDAY ─────────────────────────────── */
.technique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 2rem; }
.technique-card {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 22px;
  padding: 1.85rem;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.05);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.technique-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(38, 48, 43, 0.1); }
.card-date, .technique-card .card-date { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 0.5rem; }
.technique-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 0.6rem; color: var(--ink); }
.technique-card p { font-size: 16px; color: var(--muted); margin-bottom: 1rem; }
.card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--sage-dark);
  background: rgba(111, 160, 122, 0.13);
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
}

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 36px; align-items: start; }
.article-copy h2 { text-align: left; }
.article-copy h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--sage-dark); margin: 1.6rem 0 0.5rem; }
.article-copy ol, .article-copy ul { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.article-copy li { font-size: 18px; line-height: 1.7; margin-bottom: 0.45rem; color: var(--ink-soft); }
.instagram-panel {
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(38, 48, 43, 0.05);
}
.instagram-panel h2 { font-size: 24px; margin-bottom: 1rem; }
.instagram-media { margin-left: auto !important; margin-right: auto !important; min-width: 0 !important; width: 100% !important; }

.note-box {
  background: #fff;
  border-left: 4px solid var(--sage);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 14px rgba(38, 48, 43, 0.04);
}
.note-box p { font-size: 16px; color: var(--muted); margin-bottom: 0; }
.note-box a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(111, 160, 122, 0.5);
  text-underline-offset: 3px;
}
.note-box a:hover { color: var(--ink); }

/* Newsletter */
.newsletter-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(38, 48, 43, 0.06);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 12px 32px rgba(38, 48, 43, 0.06);
  color: var(--ink);
}
.newsletter-panel h2 { text-align: center; margin-bottom: 0.75rem; color: var(--ink); }
.newsletter-panel .lead { margin-bottom: 1.25rem; color: var(--muted); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: flex-end; justify-content: center; }
.newsletter-form .form-field { flex: 1 1 220px; min-width: 0; }
.newsletter-form label { display: block; font-family: var(--sans); font-size: 13px; font-weight: 700; margin-bottom: 0.35rem; color: var(--ink); }
.newsletter-form input[type="email"], .newsletter-form input[type="text"] {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(38, 48, 43, 0.15);
  border-radius: 14px;
  background: #fff;
}
.newsletter-form input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(111, 160, 122, 0.15); }
.newsletter-form button {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border: none;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(111, 160, 122, 0.35);
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}
.newsletter-form button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(78, 122, 88, 0.4); }
.newsletter-form button:disabled { opacity: 0.7; cursor: wait; }
.newsletter-status { margin-top: 0.85rem; font-size: 15px; text-align: center; min-height: 1.4em; }
.newsletter-status.is-success { color: var(--sage-dark); font-weight: 700; }
.newsletter-status.is-error { color: #b42318; }
.newsletter-fineprint { margin-top: 0.85rem; font-size: 13px; color: var(--muted); text-align: center; }
.newsletter-fineprint a { color: var(--sage-dark); }
.newsletter-compact .newsletter-panel { padding: 1.5rem; }
.newsletter-compact .newsletter-form { justify-content: stretch; }

/* ── FOOTER — light and quiet ───────────────────────────── */
.site-footer {
  background: var(--mist);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  padding: 60px 24px 44px;
  border-top: 1px solid rgba(38, 48, 43, 0.06);
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; max-width: 1200px; margin: 0 auto; }
.footer-col h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: var(--ink);
  border-bottom: none;
  padding-bottom: 0;
}
.footer-col p { margin-bottom: 14px; color: var(--muted); }
.footer-copyright { margin-top: 28px; font-size: 13px; color: var(--muted); border-top: 1px solid rgba(38, 48, 43, 0.1); padding-top: 14px; }
.footer-copyright a { color: var(--ink); text-decoration: none; font-weight: 700; }
.footer-policies { font-size: 12px; color: var(--muted); margin-top: 10px; }
.footer-policies a { color: var(--muted); text-decoration: none; font-weight: normal; }
.footer-policies a:hover { color: var(--sage-dark); }
.footer-policy-sep { margin: 0 5px; color: rgba(38, 48, 43, 0.3); }
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 11px; }
.footer-menu li a, .footer-menu a { text-decoration: none; color: var(--muted); transition: color 0.2s; display: inline-block; font-weight: 500; }
.footer-menu li a:hover, .footer-menu a:hover { color: var(--sage-dark); padding-left: 0; text-decoration: none; }
.contact-block, .f-contact-block { margin-bottom: 20px; }
.contact-label, .f-contact-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 700; margin-bottom: 5px; display: block; }
.contact-link, .f-contact-link {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.contact-link:hover, .f-contact-link:hover { border-bottom-color: var(--sage); color: var(--sage-dark); }

/* ── PASTEL MODERN-CLASSIC REDESIGN LAYER ───────────────── */
body {
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(217, 238, 248, 0.75) 0%, rgba(217, 238, 248, 0) 62%),
    radial-gradient(760px 360px at 92% 4%, rgba(232, 228, 246, 0.55) 0%, rgba(232, 228, 246, 0) 58%),
    var(--base);
}

.site-header {
  background: rgba(252, 251, 247, 0.86);
  border-bottom: 1px solid rgba(31, 45, 58, 0.07);
  box-shadow: 0 10px 30px rgba(31, 45, 58, 0.035);
}
.site-nav a:hover { background: rgba(217, 238, 248, 0.75); }
.site-nav a.active { background: rgba(221, 236, 244, 0.95); }

.btn-green, .submit-btn, .btn.primary,
.newsletter-form button {
  background: linear-gradient(135deg, #8DBBD2 0%, #5F91AB 100%);
  box-shadow: 0 10px 26px rgba(79, 127, 153, 0.28);
}
.btn-green:hover, .submit-btn:hover, .btn.primary:hover,
.newsletter-form button:hover:not(:disabled) {
  box-shadow: 0 16px 34px rgba(79, 127, 153, 0.34);
}
.btn-dark, .btn.secondary,
.content a.btn-media-email, .content a.btn-media-email:visited {
  background: #263849;
  border-color: #263849;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(79, 127, 153, 0.32);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(31, 45, 58, 0.04);
}
.btn-outline:hover {
  background: #263849;
  border-color: #263849;
}

.page-hero,
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 440px at 8% 0%, rgba(217, 238, 248, 0.86) 0%, rgba(217, 238, 248, 0) 62%),
    radial-gradient(760px 360px at 92% 6%, rgba(242, 213, 211, 0.44) 0%, rgba(242, 213, 211, 0) 58%),
    linear-gradient(180deg, #FCFBF7 0%, #F7FBFD 100%);
}
.page-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -38% auto;
  width: min(52vw, 620px);
  aspect-ratio: 1;
  border-radius: 44% 56% 52% 48%;
  background: rgba(232, 228, 246, 0.45);
  filter: blur(1px);
  animation: pastel-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.page-hero > *,
.hero > * { position: relative; z-index: 1; }

.hero {
  min-height: 560px;
  padding: 4.5rem 4rem;
  gap: clamp(2rem, 5vw, 5rem);
}
.hero-img-col { flex: 0 0 22%; max-width: 22%; }
.hero-img-col img,
.guide-img-col img,
.how-img-col img,
.photo-row img,
.visual-panel img,
.image-card img {
  border-radius: 42px;
  box-shadow: 0 28px 70px rgba(31, 45, 58, 0.16);
}
.hero-img-col img {
  width: 100%;
  height: auto;
  object-fit: unset;
  animation: image-drift 12s ease-in-out infinite alternate;
}
.hero-label,
.page-hero .eyebrow,
.promo-eyebrow,
.dh-testimonials-eyebrow,
.faq-block .faq-kicker {
  background: rgba(217, 238, 248, 0.72);
  color: var(--sage-dark);
}
.hero h1,
.page-hero h1 {
  max-width: 820px;
}

.section-beyond,
.section-light,
.content {
  background: var(--base);
}
.section-dark,
.section-why,
.section-guide,
.section-how,
.section-issues,
.site-footer {
  background:
    radial-gradient(760px 320px at 8% 0%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 62%),
    var(--mist);
}

.pastel-section {
  position: relative;
  overflow: hidden;
  padding: 84px 2rem;
  background: var(--base);
}
.pastel-section.tint {
  background:
    radial-gradient(720px 340px at 90% 0%, rgba(242, 213, 211, 0.34) 0%, rgba(242, 213, 211, 0) 60%),
    var(--mist);
}
.pastel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pastel-copy h2,
.pathway-intro h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.pastel-copy p,
.pathway-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.pastel-kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(217, 238, 248, 0.75);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.1rem;
}
.visual-panel {
  position: relative;
}
.visual-panel::before {
  content: "";
  position: absolute;
  inset: 8% -7% -7% 12%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(232, 228, 246, 0.72), rgba(217, 238, 248, 0.78));
  z-index: 0;
}
.visual-panel img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.pathways-section {
  padding: 86px 2rem;
  background: linear-gradient(180deg, var(--base) 0%, var(--blue-wash) 100%);
}
.pathway-intro {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.pathway-card,
.pillar-card,
.approach-card,
.card-inner,
.issues-card,
.price-card,
.technique-card,
.dh-testimonial-card,
.newsletter-panel,
.instagram-panel,
.bio-box,
.card {
  border-radius: 30px;
  border-color: rgba(79, 127, 153, 0.13);
  box-shadow: 0 14px 38px rgba(31, 45, 58, 0.07);
}
.pathway-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(79, 127, 153, 0.13);
  padding: 2rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.pathway-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 24px 54px rgba(31, 45, 58, 0.12);
}
.pathway-card .pathway-number {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.pathway-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0.65rem 0 0.8rem;
  color: var(--ink);
}
.pathway-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.soft-cta-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  border-radius: 46px;
  background:
    radial-gradient(620px 260px at 0% 0%, rgba(217, 238, 248, 0.85) 0%, rgba(217, 238, 248, 0) 64%),
    radial-gradient(620px 260px at 100% 0%, rgba(242, 213, 211, 0.45) 0%, rgba(242, 213, 211, 0) 64%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(79, 127, 153, 0.12);
  box-shadow: 0 26px 70px rgba(31, 45, 58, 0.09);
}
.soft-cta-panel h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.soft-cta-panel p {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  color: var(--ink-soft);
  font-size: 18px;
}

.gateway-main {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 5rem) 2rem;
  background:
    radial-gradient(900px 420px at 10% -8%, rgba(217, 238, 248, 0.82) 0%, rgba(217, 238, 248, 0) 62%),
    radial-gradient(760px 360px at 90% 0%, rgba(242, 213, 211, 0.45) 0%, rgba(242, 213, 211, 0) 58%),
    var(--base);
}
.gateway-hero {
  max-width: 980px;
  margin: 0 auto 3rem;
  text-align: center;
}
.gateway-hero .pastel-kicker { margin-bottom: 1.25rem; }
.gateway-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.gateway-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.65;
}
.gateway-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 205px);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1000px;
  text-align: left;
}
.gateway-copy p {
  margin: 0 0 1.65rem;
}
.gateway-portrait {
  position: relative;
  justify-self: end;
  max-width: 205px;
}
.gateway-portrait::before {
  content: "";
  position: absolute;
  inset: 9% -7% -7% 10%;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(217, 238, 248, 0.85), rgba(242, 213, 211, 0.5));
}
.gateway-portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 46px;
  box-shadow: 0 28px 74px rgba(31, 45, 58, 0.18);
  animation: image-drift 14s ease-in-out infinite alternate;
}
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.gateway-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  border-radius: 42px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(79, 127, 153, 0.12);
  box-shadow: 0 18px 48px rgba(31, 45, 58, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.gateway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(31, 45, 58, 0.15);
}
.gateway-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.gateway-card:hover img { transform: scale(1.06); }
.gateway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(252,251,247,0.86) 68%, rgba(252,251,247,0.98) 100%);
}
.gateway-card-content {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  padding: 1.65rem;
}
.gateway-card-content span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.55rem;
}
.gateway-card-content h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}
.gateway-card-content p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.dante-photo-section {
  padding: 84px 2rem;
  background:
    radial-gradient(720px 320px at 12% 0%, rgba(232, 228, 246, 0.48) 0%, rgba(232, 228, 246, 0) 62%),
    var(--blue-wash);
}
.dante-photo-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(79, 127, 153, 0.13);
  box-shadow: 0 26px 70px rgba(31, 45, 58, 0.1);
  overflow: hidden;
}
.dante-photo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  box-shadow: 0 22px 54px rgba(31, 45, 58, 0.16);
  animation: image-drift 14s ease-in-out infinite alternate;
}
.dante-photo-panel.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}
.dante-photo-panel.is-reversed img {
  order: 2;
}
.dante-photo-panel.is-reversed .dante-photo-copy {
  order: 1;
}
.dante-photo-copy .pastel-kicker { margin-bottom: 1rem; }
.dante-photo-copy h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.dante-photo-copy p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.content .dante-photo-panel {
  margin: 0 auto 2.5rem;
}

.reveal-soft { animation: reveal-soft 0.85s ease both; }
body.reveal-enabled .reveal-soft {
  opacity: 0;
  transform: translateY(22px);
  animation: none;
}
body.reveal-enabled .reveal-soft.is-visible {
  animation: reveal-soft 0.85s ease both;
  animation-delay: var(--reveal-delay, 0ms);
}
.float-soft {
  animation: float-soft 8s ease-in-out infinite;
}

@keyframes reveal-soft {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pastel-drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-28px, -18px, 0) rotate(8deg); }
}
@keyframes image-drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-8px) scale(1.012); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 35px; }
  .gateway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 2.5rem 1.5rem; gap: 2rem; }
  .hero-img-col { flex: none; max-width: min(100%, 220px); margin-inline: auto; }
  .hero-text-col { flex: none; max-width: 100%; padding: 0; text-align: center; }
  .pillars-grid, .dh-testimonials, .lag-grid, .steps-grid, .practice-grid, .technique-grid, .article-layout { grid-template-columns: 1fr; }
  .pastel-grid, .pathway-grid { grid-template-columns: 1fr; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-hero-split { grid-template-columns: 1fr; text-align: center; }
  .gateway-portrait { justify-self: center; margin-inline: auto; }
  .gateway-copy p { margin-left: auto; margin-right: auto; }
  .gateway-card { min-height: 360px; }
  .dante-photo-panel,
  .dante-photo-panel.is-reversed { grid-template-columns: 1fr; border-radius: 32px; }
  .dante-photo-panel.is-reversed img,
  .dante-photo-panel.is-reversed .dante-photo-copy { order: initial; }
  .pastel-section, .pathways-section { padding: 62px 1.5rem; }
  .section-guide, .section-how { flex-direction: column; }
  .guide-text-col, .guide-img-col, .how-text-col, .how-img-col { flex: none; max-width: 100%; padding-right: 0; }
  .guide-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .site-header { padding: 0.85rem 1.25rem; }
  .site-nav { display: none; flex-direction: column; width: 100%; gap: 0; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.8rem 0.25rem; border-bottom: 1px solid rgba(38, 48, 43, 0.06); border-radius: 0; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 3.75rem 1.25rem 3.25rem; }
  .page-hero h1 { font-size: 31px; }
  .section-light, .section-dark, .section-beyond, .content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero h1 { font-size: 30px; }
  .hero h2 { font-size: 17px; }
  .hero-img-col img,
  .guide-img-col img,
  .how-img-col img,
  .photo-row img,
  .visual-panel img,
  .image-card img { border-radius: 28px; }
  .soft-cta-panel { border-radius: 30px; }
  .section-beyond h1 { font-size: 26px; }
  .section-beyond .subtitle { font-size: 17px; }
  .section-guide h1, .section-guide h2, .section-how h1, .section-how h2 { font-size: 27px; }
  .approach-cards { flex-direction: column; }
  .approach-card { flex: 1 1 auto; }
  .qual-list { grid-template-columns: 1fr; }
  .faq-block summary { padding-left: 2.75rem; font-size: 14px; }
  .faq-block .faq-answer { padding-left: 2.75rem; }
}
