/* ═══════════════════════════════════════════════════════════════
   HANSEN HEALTH — MAIN STYLESHEET
   Colors: Navy #1B3A6B | Green #5A8A2E | Light Green #F0F7E6
   Font: Inter (body) | Playfair Display (headings)
════════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --navy:         #1B3A6B;
  --navy-dark:    #112846;
  --navy-mid:     #254d8a;
  --green:        #5A8A2E;
  --green-dark:   #3d6120;
  --green-light:  #F0F7E6;
  --green-mid:    #d4ebb0;
  --white:        #ffffff;
  --off-white:    #F8FAFB;
  --light-gray:   #F1F3F5;
  --border:       #DDE3EA;
  --text:         #1A1A2E;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.13);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --max-width:    1200px;
  --section-pad:  80px;
  --transition:   0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

ul { list-style: none; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

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

/* ── Section Padding ───────────────────────────────────────── */
.section-pad { padding: var(--section-pad) 0; }

/* ── Background Utilities ──────────────────────────────────── */
.bg-light-green { background: var(--green-light); }
.bg-navy        { background: var(--navy); }
.bg-light       { background: var(--off-white); }
.text-center    { text-align: center; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.light, .light h1, .light h2, .light h3, .light p { color: var(--white); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}
.section-eyebrow.light { color: var(--green-mid); }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 1rem auto 0;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: .5rem; }

.section-header--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(90,138,46,.35);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-sm  { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg  { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: .6;
  pointer-events: none;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  font-size: .875rem;
  text-align: center;
  padding: .5rem 1rem;
}
.announcement-bar a { color: var(--green-mid); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Logo */
.site-logo a { display: flex; align-items: center; gap: .5rem; }
.site-logo img { max-height: 56px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-hansen { color: var(--navy); }
.logo-health { color: var(--green); }

/* Nav */
.primary-nav { flex: 1; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-menu a {
  display: block;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--navy);
  background: var(--green-light);
}

/* Dropdown */
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  z-index: 200;
  border: 1px solid var(--border);
}
.nav-menu .menu-item-has-children:hover .sub-menu,
.nav-menu .menu-item-has-children:focus-within .sub-menu { display: block; }
.nav-menu .sub-menu li a { padding: .6rem 1.2rem; font-size: .875rem; border-radius: 0; }

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg--default {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 70%, #2d6a4f 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,40,70,.88) 0%, rgba(27,58,107,.72) 60%, rgba(27,58,107,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero-content h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════════════════════
   BENEFITS SECTION
════════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.benefit-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .6rem; }
.benefit-card p  { font-size: .95rem; color: var(--text-mid); margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
}
.step-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
  flex-shrink: 0;
}
.step-content h3  { margin-bottom: .5rem; font-size: 1.2rem; }
.step-content p   { font-size: .95rem; color: var(--text-mid); margin-bottom: .75rem; }
.step-includes    { list-style: none; }
.step-includes li {
  font-size: .875rem;
  color: var(--text-mid);
  padding: .25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.step-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.process-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   ABOUT SNIPPET (HOMEPAGE)
════════════════════════════════════════════════════════════ */
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-photo-placeholder {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}
.about-snippet-content p { color: var(--text-mid); margin-bottom: 1rem; }
.about-snippet-content h2 { margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.testimonial-quote {
  font-style: italic;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-quote p { margin-bottom: 0; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-mid);
}
.testimonial-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name  { display: block; color: var(--white); font-weight: 600; font-size: .9rem; }
.testimonial-role  { display: block; color: rgba(255,255,255,.6); font-size: .8rem; }
.testimonials-cta  { margin-top: 1rem; }

/* ═══════════════════════════════════════════════════════════
   GOOD FIT SECTION
════════════════════════════════════════════════════════════ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.fit-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
}
.fit-card--yes { background: var(--green-light); border-color: var(--green-mid); }
.fit-card--no  { background: #FFF5F5; border-color: #FECACA; }
.fit-card h3   { margin-bottom: 1rem; font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.fit-card ul li {
  padding: .4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .95rem;
  color: var(--text-mid);
  border-bottom: 1px dotted var(--border);
}
.fit-card ul li:last-child { border-bottom: none; }
.fit-card--yes ul li::before { content: '✅'; position: absolute; left: 0; font-size: .8rem; }
.fit-card--no  ul li::before { content: '❌'; position: absolute; left: 0; font-size: .8rem; }
.fit-note { color: var(--text-mid); font-style: italic; }
.fit-note a { color: var(--green); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   POSTS GRID (Home & Blog)
════════════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.posts-grid--3 { grid-template-columns: repeat(3, 1fr); }
.posts-grid--blog { grid-template-columns: repeat(2, 1fr); }

.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card-thumb { overflow: hidden; aspect-ratio: 16/9; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-thumb-placeholder svg { width: 40px; height: 40px; stroke: var(--green); opacity: .6; }
.post-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}
.post-cat-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: .2rem .6rem;
  border-radius: 20px;
}
.post-date, .post-reading-time, .post-author {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.post-date svg, .post-reading-time svg { width: 13px; height: 13px; flex-shrink: 0; }
.post-card-title {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: .75rem;
  font-weight: 700;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--green); }
.post-card-excerpt { font-size: .9rem; color: var(--text-mid); margin-bottom: 1rem; flex: 1; }
.post-card-footer { margin-top: auto; }
.post-read-more {
  font-size: .875rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.post-read-more:hover { color: var(--green-dark); gap: .55rem; }

/* ═══════════════════════════════════════════════════════════
   OPT-IN SECTION
════════════════════════════════════════════════════════════ */
.optin-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.optin-content .section-eyebrow { font-size: .85rem; }
.optin-content h2 { margin-bottom: 1rem; }
.optin-content p  { color: var(--text-mid); }
.optin-bullets    { list-style: none; margin: 1.25rem 0; }
.optin-bullets li { padding: .35rem 0; font-size: .95rem; color: var(--text-mid); }

.optin-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.optin-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; color: var(--navy); font-family: var(--font-body); font-weight: 700; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}
.required { color: var(--green); }
.form-input {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.12);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-privacy { font-size: .8rem; color: var(--text-light); text-align: center; margin-top: .75rem; }
.form-privacy-note p { font-size: .8rem; color: var(--text-light); }

.newsletter-form { display: flex; flex-direction: column; gap: .75rem; }
.newsletter-input {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  width: 100%;
  transition: border-color var(--transition);
}
.newsletter-input:focus { outline: none; border-color: var(--navy); }
.newsletter-msg {
  font-size: .875rem;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.newsletter-msg.success { background: var(--green-light); color: var(--green-dark); }
.newsletter-msg.error   { background: #FFF5F5; color: #c0392b; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS TEASER
════════════════════════════════════════════════════════════ */
.products-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.product-cat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.product-cat-card:hover { box-shadow: var(--shadow-md); }
.product-cat-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.product-cat-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: .5rem; }
.product-cat-card p  { font-size: .875rem; color: var(--text-mid); margin-bottom: 0; }
.products-teaser-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.products-teaser-cta .btn { margin: 0; }
.product-disclaimer { font-size: .78rem; color: var(--text-light); font-style: italic; max-width: 600px; }

/* ═══════════════════════════════════════════════════════════
   PRE-FOOTER CTA
════════════════════════════════════════════════════════════ */
.pre-footer-cta {
  background: var(--green-light);
  border-top: 3px solid var(--green-mid);
  padding: 4rem 0;
}
.pre-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pre-footer-cta__content h2 { color: var(--navy); margin-bottom: .6rem; }
.pre-footer-cta__content p  { color: var(--text-mid); max-width: 520px; margin-bottom: 0; }
.pre-footer-cta__actions    { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); padding: 4rem 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-text {
  display: flex;
  gap: .35rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-logo-text .green { color: var(--green-mid); }
.footer-brand img { max-height: 50px; margin-bottom: 1rem; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 1rem; }
.footer-location { color: rgba(255,255,255,.5); font-size: .8rem; display: flex; align-items: center; gap: .4rem; }
.footer-location svg { flex-shrink: 0; }

.footer-heading { font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 1.25rem; }
.footer-nav-list li { margin-bottom: .5rem; }
.footer-nav-list a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--white); }

.footer-cta-col p { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.footer-link-block {
  display: block;
  margin-top: 1rem;
  font-size: .875rem;
  color: var(--green-mid);
  text-decoration: underline;
}
.footer-newsletter { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); }
.footer-newsletter p { margin-bottom: .75rem; }
.footer-newsletter .newsletter-input { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); }
.footer-newsletter .newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter .newsletter-input:focus { border-color: var(--green-mid); }

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 0; }
.footer-legal-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-nav a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal-nav a:hover { color: rgba(255,255,255,.8); }

.footer-disclaimer {
  background: rgba(0,0,0,.2);
  padding: 1.25rem 0;
}
.footer-disclaimer p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-disclaimer strong { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════
   SERVICES / WORK WITH ME PAGE
════════════════════════════════════════════════════════════ */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.include-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition);
}
.include-card:hover { box-shadow: var(--shadow-md); }
.include-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.include-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: .5rem; font-family: var(--font-body); font-weight: 700; }
.include-card p  { font-size: .875rem; color: var(--text-mid); margin-bottom: 0; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 1;
}
.pricing-card-header { margin-bottom: 1.25rem; }
.pricing-card-header h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.pricing-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--green-light);
  color: var(--green-dark);
  padding: .25rem .65rem;
  border-radius: 20px;
}
.pricing-badge--green { background: var(--green); color: var(--white); }
.pricing-price { margin-bottom: 1.5rem; }
.price-amount { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); font-family: var(--font-body); line-height: 1.1; }
.price-period { font-size: .8rem; color: var(--text-light); }
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  padding: .4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .9rem;
  color: var(--text-mid);
  border-bottom: 1px dotted var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-note { font-size: .8rem; color: var(--text-light); font-style: italic; max-width: 700px; margin: 0 auto; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-list { margin-bottom: 2rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--green-light); }
.faq-question[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
}
.faq-answer p { color: var(--text-mid); font-size: .95rem; margin-bottom: 0; }
.faq-cta { margin-top: 2rem; }
.faq-cta p { color: var(--text-mid); }
.faq-cta a { color: var(--green); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════ */
.about-main-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.about-page-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-page-photo-placeholder {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: var(--navy);
  font-size: .9rem;
}
.about-credentials-box {
  margin-top: 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: var(--white);
}
.about-credentials-box h4 { color: var(--green-mid); margin-bottom: .75rem; font-size: .9rem; letter-spacing: .05em; }
.about-credentials-box li {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.about-credentials-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green-mid); }

.about-main-content p { color: var(--text-mid); margin-bottom: .9rem; }
.about-main-content h2 { margin-top: 2rem; margin-bottom: .6rem; }
.about-main-content ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.about-main-content ul li { color: var(--text-mid); font-size: .95rem; margin-bottom: .4rem; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.5rem 0 2rem;
}
.value-chip {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 20px;
  border: 1px solid var(--green-mid);
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.stat-card { text-align: center; }
.stat-num   { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); font-family: var(--font-body); }
.stat-label { display: block; font-size: .8rem; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   BOOK PAGE
════════════════════════════════════════════════════════════ */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.path-icon { font-size: 2.25rem; display: block; margin-bottom: .75rem; }
.path-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.path-card p  { font-size: .9rem; color: var(--text-mid); margin-bottom: 1.25rem; }

.booking-native-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.booking-widget-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}

.booking-widget-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}

.booking-widget-note {
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  color: var(--text-light);
}

.booking-widget-note a {
  color: var(--green);
  font-weight: 600;
}
.booking-form .btn { margin-top: .25rem; }

.booking-grid {
  display: grid;
  gap: 1rem;
}

.booking-grid--2 {
  grid-template-columns: 1fr 1fr;
}

.booking-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.booking-native-wrap .form-response-msg {
  margin-top: 1rem;
}

.next-steps { max-width: 700px; margin: 0 auto; }
.next-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.next-step:last-child { border-bottom: none; }
.next-step-num {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.next-step-content h4 { margin-bottom: .4rem; font-size: 1rem; }
.next-step-content p  { color: var(--text-mid); font-size: .9rem; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════════════════════════════════ */
.fullscript-why {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fs-benefits { list-style: none; margin: 1.25rem 0; }
.fs-benefits li { padding: .4rem 0; font-size: .95rem; color: var(--text-mid); }
.fullscript-why-visual { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.fs-stat-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.fs-stat-num   { display: block; font-size: 2.25rem; font-weight: 800; color: var(--green-mid); font-family: var(--font-body); }
.fs-stat-label { display: block; color: rgba(255,255,255,.7); font-size: .875rem; margin-top: .25rem; }

.product-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.product-cat-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.product-cat-page-card:hover { box-shadow: var(--shadow-md); }
.product-cat-page-card .product-cat-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.product-cat-page-card h3 { color: var(--navy); font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .5rem; }
.product-cat-page-card p  { font-size: .875rem; color: var(--text-mid); margin-bottom: 1rem; }

.product-empty-state {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.product-empty-state h3 { margin-bottom: .5rem; font-family: var(--font-body); font-size: 1rem; }
.product-empty-state p  { margin-bottom: 0; color: var(--text-mid); font-size: .9rem; }

.disclaimer-section { border-top: 3px solid var(--green-mid); }
.disclaimer-inner { max-width: 780px; }
.disclaimer-inner h3 { margin-bottom: .75rem; font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.disclaimer-inner p { font-size: .875rem; color: var(--text-mid); margin-bottom: .75rem; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p   { color: var(--text-mid); margin-bottom: 1.5rem; }

.contact-details { margin-bottom: 2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--green); }
.contact-detail-item strong { display: block; font-size: .875rem; margin-bottom: .15rem; }
.contact-detail-item a, .contact-detail-item span { font-size: .95rem; color: var(--text-mid); display: block; }
.contact-detail-note { font-size: .8rem; color: var(--text-light); }

.contact-book-reminder {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-book-reminder h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .4rem; }
.contact-book-reminder p  { font-size: .875rem; color: var(--text-mid); margin-bottom: .875rem; }

.contact-faq-links h4 { font-size: .9rem; margin-bottom: .5rem; }
.contact-faq-links ul li { margin-bottom: .35rem; }
.contact-faq-links a { font-size: .9rem; color: var(--green); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h2 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.form-response-msg { margin-top: .75rem; padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: .875rem; }
.form-response-msg.success { background: var(--green-light); color: var(--green-dark); }
.form-response-msg.error   { background: #FFF5F5; color: #c0392b; }

/* ═══════════════════════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════════════════════════ */
.single-post-hero {
  position: relative;
  background: var(--navy-dark);
  padding: 5rem 0 3rem;
}
.single-post-hero-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.single-post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}
.single-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,40,70,.7), rgba(17,40,70,.95));
}
.single-post-hero-content { position: relative; z-index: 2; max-width: 860px; }
.post-meta-top { margin-bottom: 1rem; }
.post-category-badge {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: .25rem .7rem;
  border-radius: 20px;
  margin-right: .4rem;
}
.single-post-title { color: var(--white); margin-bottom: .75rem; }
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
}
.post-meta-row svg { width: 14px; height: 14px; }

.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* Prose content */
.prose { max-width: 720px; }
.prose p  { margin-bottom: 1.25rem; color: var(--text-mid); line-height: 1.8; }
.prose h2, .prose h3 { margin: 2rem 0 .75rem; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: .4rem; color: var(--text-mid); }
.prose blockquote {
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text-mid);
}
.prose img { border-radius: var(--radius-md); margin: 1.5rem 0; box-shadow: var(--shadow-md); }
.prose a { color: var(--green); text-decoration: underline; }
.prose strong { color: var(--text); }

/* In-post CTA */
.in-post-cta {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2.5rem 0;
}
.in-post-cta h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.in-post-cta p  { color: var(--text-mid); margin-bottom: 1rem; font-size: .95rem; }

/* Post Navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav-prev, .post-nav-next {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background var(--transition);
}
.post-nav-prev:hover, .post-nav-next:hover { background: var(--green-light); }
.post-nav-next { text-align: right; }
.post-nav-label { font-size: .75rem; color: var(--text-light); font-weight: 600; }
.post-nav-title { font-size: .875rem; font-weight: 600; color: var(--navy); line-height: 1.35; }

/* Post Tags */
.post-tags { margin: 1.5rem 0; font-size: .875rem; }
.post-tags span { color: var(--text-light); }
.post-tags a { color: var(--green); margin-right: .4rem; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════════════════════ */
.sidebar-widget {
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}
.widget-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.sidebar-widget > * { padding: 1.25rem 1.5rem; }
.sidebar-widget > .widget-title { padding: 1rem 1.5rem; }

.sidebar-cta-box {
  background: var(--navy);
  text-align: center;
  padding: 1.5rem !important;
}
.sidebar-cta-box h3 { color: var(--white); font-size: 1rem; font-family: var(--font-body); margin-bottom: .5rem; }
.sidebar-cta-box p  { color: rgba(255,255,255,.75); font-size: .875rem; margin-bottom: 1rem; }

.sidebar-category-list li {
  border-bottom: 1px solid var(--border);
}
.sidebar-category-list a {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  font-size: .875rem;
  color: var(--text-mid);
}
.sidebar-category-list a:hover { color: var(--green); }

.sidebar-recent-list li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent-list li:last-child { border-bottom: none; }
.sidebar-recent-list a { font-size: .875rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.sidebar-recent-list a:hover { color: var(--green); }
.recent-date { display: block; font-size: .775rem; color: var(--text-light); margin-top: .15rem; }

.sidebar-optin-box { background: var(--green-light); padding: 1.5rem !important; }
.sidebar-optin-box h3 { font-size: .95rem; font-family: var(--font-body); font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.sidebar-optin-box p  { font-size: .8rem; color: var(--text-mid); margin-bottom: .75rem; }

/* ═══════════════════════════════════════════════════════════
   BLOG LAYOUT
════════════════════════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.blog-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.cat-filter-btn {
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: all var(--transition);
}
.cat-filter-btn:hover, .cat-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Content wrap pages */
.page-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.content-area { min-width: 0; }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════════════════════ */
.nav-links {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}
.nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.nav-links .prev, .nav-links .next {
  width: auto;
  padding: 0 1rem;
}

/* ═══════════════════════════════════════════════════════════
   404
════════════════════════════════════════════════════════════ */
.error-404-section { background: var(--off-white); }
.error-404-content { max-width: 560px; margin: 0 auto; }
.error-404-num {
  font-size: 8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-404-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0; }
.error-404-search { margin-top: 2rem; }
.no-posts-found { padding: 3rem 0; text-align: center; }
.no-posts-found h2 { margin-bottom: 1rem; }
.no-posts-found p  { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   SEARCH FORM
════════════════════════════════════════════════════════════ */
.search-form-inner { display: flex; gap: .5rem; }
.search-field { flex: 1; }
.search-submit { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 56px; }

  .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem;
    z-index: 99;
  }
  .primary-nav.open { display: block; }
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-menu a {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: block;
  }

  .about-snippet-inner,
  .optin-inner,
  .contact-grid,
  .about-main-inner,
  .fullscript-why {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }

  .path-grid { grid-template-columns: 1fr; }
  .booking-grid--3 { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr; }

  .posts-grid--3     { grid-template-columns: repeat(2, 1fr); }
  .posts-grid--blog  { grid-template-columns: 1fr; }

  .single-post-layout { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .page-wrap   { grid-template-columns: 1fr; }

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

  .process-steps { grid-template-columns: 1fr; }
  .pre-footer-cta__inner { flex-direction: column; text-align: center; }
  .pre-footer-cta__actions { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 600px)
════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-pad: 40px; }

  .hero { min-height: 480px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust-row { display: none; }

  .posts-grid,
  .posts-grid--3,
  .benefits-grid,
  .includes-grid,
  .products-categories,
  .booking-grid--2,
  .booking-grid--3,
  .product-cats-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section-header--flex { flex-direction: column; }

  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }

  .optin-form-wrap, .contact-form-wrap, .booking-native-wrap { padding: 1.5rem; }
	.booking-widget-shell {
      padding: 0 .25rem;
    }

    .booking-widget-card {
      padding: 1rem;
    }

  .hero-content { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT
════════════════════════════════════════════════════════════ */
@media print {
  .site-header,
  .pre-footer-cta,
  .site-footer,
  .sidebar-area,
  .blog-sidebar,
  .in-post-cta,
  .mobile-menu-toggle { display: none; }
  body { font-size: 12pt; }
}

/* ═══════════════════════════════════════════════════════════
   DOUG'S FAVORITE THINGS PAGE
════════════════════════════════════════════════════════════ */

/* Intro section */
.fav-intro { background: var(--white); }
.fav-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}
.fav-intro-quote {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}
.fav-quote-mark {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: var(--green);
  line-height: 1;
  font-family: var(--font-heading);
  opacity: .5;
}
.fav-intro-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.4;
  border: none;
  padding: 0;
  margin: 0 0 .75rem;
}
.fav-intro-quote cite {
  font-style: normal;
  font-size: .875rem;
  color: var(--green-mid);
  font-weight: 600;
}
.fav-intro-inner > p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: .875rem;
}

/* Category badge */
.fav-category-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--green-mid);
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Item layout */
.fav-item-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fav-item-inner--reverse {
  grid-template-columns: 1.3fr 1fr;
}
@media (min-width: 900px) {
  .fav-item-inner--reverse {
    grid-template-columns: 1fr 1.3fr;
  }
  .fav-item-inner--reverse .fav-item-content { order: 2; }
  .fav-item-inner--reverse .fav-item-visual  { order: 1; }
}

.fav-item-content h2 {
  margin-bottom: .75rem;
}
.fav-item-content p {
  color: var(--text-mid);
  margin-bottom: .875rem;
  font-size: 1rem;
}
.fav-item-content h4 {
  color: var(--navy);
  font-size: 1rem;
}

/* Bullet list inside item */
.fav-item-bullets {
  margin: 1rem 0 1.5rem;
}
.fav-item-bullets li {
  padding: .4rem 0 .4rem 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: .95rem;
  border-bottom: 1px dotted var(--border);
}
.fav-item-bullets li:last-child { border-bottom: none; }
.fav-item-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Callout box */
.fav-callout-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  font-size: .95rem;
  color: var(--text-mid);
}
.fav-callout-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: .4rem;
}
.fav-callout-box p { margin: .4rem 0 0; font-size: .9rem; }
.fav-inline-link { color: var(--green); font-weight: 600; text-decoration: underline; }

/* Highlight box (more prominent callout) */
.fav-highlight-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.25rem 0;
}
.fav-highlight-box h4 {
  color: var(--green-mid);
  font-size: .95rem;
  font-family: var(--font-body);
  margin-bottom: .5rem;
}
.fav-highlight-box p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-bottom: 0;
}

/* TruVaga version comparison */
.fav-versions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: .75rem 0;
}
.fav-version-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.fav-version-card--featured {
  background: var(--green-light);
  border-color: var(--green-mid);
}
.fav-version-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: .4rem;
  font-size: 1rem;
}
.fav-version-card p {
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: .75rem;
}
.fav-discount-code {
  display: inline-block;
  background: var(--navy);
  color: var(--green-mid);
  font-family: monospace;
  font-size: .9rem;
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
  margin-right: .4rem;
  letter-spacing: .05em;
}
.fav-discount-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.fav-code-reminder {
  font-size: .85rem;
  color: var(--text-light);
  margin-top: .75rem;
  font-style: italic;
}
.fav-code-reminder strong { color: var(--navy); }

/* CTA button spacing */
.fav-cta-btn { margin-top: 1.5rem; }

/* Visual cards (right-side info boxes) */
.fav-visual-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.fav-visual-card--green {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
}
.fav-visual-card--navy {
  background: var(--navy);
}
.fav-visual-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.fav-visual-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: .875rem;
}
.fav-visual-card--navy h3 { color: var(--green-mid); }

.fav-visual-list li {
  padding: .4rem 0 .4rem 1.25rem;
  position: relative;
  font-size: .875rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--green-mid);
}
.fav-visual-card--green .fav-visual-list li { border-color: var(--green-mid); }
.fav-visual-list li:last-child { border-bottom: none; }
.fav-visual-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.fav-visual-list--light li { color: rgba(255,255,255,.8); }
.fav-visual-list--light li::before { color: var(--green-mid); }
.fav-visual-list--light li { border-color: rgba(255,255,255,.15); }

/* Product images */
.fav-item-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.fav-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ─── Responsive ──────────────────────────── */
@media (max-width: 900px) {
  .fav-item-inner,
  .fav-item-inner--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fav-item-inner--reverse .fav-item-content { order: 1; }
  .fav-item-inner--reverse .fav-item-visual  { order: 2; }
  .fav-versions-grid { grid-template-columns: 1fr; }
  .fav-intro-quote { padding: 2rem 1.75rem; }
}
@media (max-width: 600px) {
  .fav-category-badge { font-size: .75rem; }
  .fav-intro-quote blockquote { font-size: 1.2rem; }
}
