/* ============================================================
   Crookston International Institute of Homeopathy
   Shared stylesheet — all pages
   ============================================================ */

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

:root {
  --navy: #1B2E52;
  --navy-mid: #243A68;
  --gold: #C9A84C;
  --gold-light: #E8C878;
  --ivory: #F5F0E8;
  --parchment: #EDE8DF;
  --text-dark: #1B2E52;
  --text-mid: #4A4560;
  --text-muted: #7A7590;
  --border: #DDD8CE;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

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

a { color: inherit; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 999;
  font-size: 13px;
  border-top: 2px solid var(--gold);
}
#cookie-banner p { max-width: 680px; line-height: 1.6; opacity: 0.9; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold); color: var(--navy); border: none;
  padding: 9px 20px; border-radius: 6px; font-weight: 700;
  font-size: 13px; cursor: pointer; white-space: nowrap;
}
.btn-cookie-decline {
  background: transparent; color: #ccc; border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 20px; border-radius: 6px; font-size: 13px;
  cursor: pointer; white-space: nowrap;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV ── */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(27,46,82,0.06);
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img {
  width: 88px !important;
  height: 88px !important;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}
.logo-seal {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-seal span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }
.logo-text { line-height: 1.2; }
.logo-name { color: var(--navy); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; }
.logo-sub { color: var(--gold); font-size: 9px; letter-spacing: 0.1em; }

.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #b8952e; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── HERO ── */
.hero {
  background: #fff;
  padding: 72px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 36px; }

.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.trust-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-check svg { width: 11px; height: 11px; }

/* ── CONSULTATION FORM ── */
.consult-form {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(27,46,82,0.10);
}
.consult-form h3 {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.consult-form > p { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-dark);
  background: #fafafa;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  margin-top: 4px;
  font-family: 'Lato', sans-serif;
}
.form-submit:hover { background: var(--navy-mid); }
.form-gdpr { text-align: center; font-size: 11px; color: #aaa; margin-top: 10px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px 48px;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0 16px;
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 34px; font-weight: 700; color: var(--gold); font-family: 'Lato', sans-serif; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* ── ABOUT SECTION ── */
.about-section {
  background: #fff;
  padding: 88px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 12px;
}
.photo-collage .photo-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 16px;
  overflow: hidden;
}
.photo-collage .photo-top {
  grid-column: 2;
  grid-row: 1;
  border-radius: 16px;
  overflow: hidden;
}
.photo-collage .photo-stat {
  grid-column: 2;
  grid-row: 2;
  border-radius: 16px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.photo-collage img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.photo-stat-num { font-size: 28px; font-weight: 700; color: var(--gold); font-family: 'Lato', sans-serif; }
.photo-stat-txt { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 4px; line-height: 1.4; }

.about-content h2 { font-size: 36px; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.about-content p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }

.about-highlights { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.pillar-item { display: flex; flex-direction: row; align-items: center; gap: 48px; padding-right: 48px; }
.pillar-item .highlight-card { flex: 1; }
.pillar-circle {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid var(--gold);
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  font-variant-numeric: lining-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.highlight-card {
  background: var(--ivory);
  border-radius: 10px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
}
.highlight-card h4 { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.highlight-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── SERVICES SECTION ── */
.services-section {
  background: #fff;
  padding: 88px 48px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.services-header h2 { font-size: 36px; color: var(--navy); line-height: 1.2; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,46,82,0.1); }
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--parchment);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card.featured .service-icon { background: rgba(201,168,76,0.15); }
.service-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card.featured h3 { color: #fff; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.service-card.featured p { color: rgba(255,255,255,0.7); }

/* ── HOW IT WORKS ── */
.how-section {
  background: #fff;
  padding: 88px 48px;
  text-align: center;
}
.how-section h2 { font-size: 36px; color: var(--navy); margin-bottom: 48px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--ivory);
  border-radius: 14px;
  padding: 28px 20px;
}
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  margin: 0 auto 18px;
}
.step-num.navy { background: var(--navy); color: var(--gold); }
.step-num.gold { background: var(--gold); color: #fff; }
.step-card h3 { font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ── WHAT WE TREAT ── */
.what-we-treat-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.what-we-treat-section .container { max-width: 1100px; margin: 0 auto; padding: 48px 48px; }
.wt-header { margin-bottom: 52px; text-align: center; }
.wt-header-left h2 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: #1B2E52; line-height: 1.2; margin: 0; }
.wt-header-left h2 em { font-style: italic; }
.wt-header-right { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.wt-header-right p { font-size: 15px; color: #4A4560; line-height: 1.7; margin: 0; }
.wt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wt-card { background: #ffffff; border: 1px solid #DDD8CE; border-radius: 12px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.2s ease; }
.wt-card:hover { border-color: #C9A84C; }
.wt-card.wt-featured { background: #1B2E52; border-color: #1B2E52; }
.wt-icon { width: 44px; height: 44px; }
.wt-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #1B2E52; margin: 0; line-height: 1.2; }
.wt-card.wt-featured h3 { color: #ffffff; }
.wt-card p { font-size: 14px; color: #7A7590; line-height: 1.65; margin: 0; }
.wt-card.wt-featured p { color: rgba(255,255,255,0.65); }
.wt-card-link { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #C9A84C; text-decoration: none; margin-top: auto; padding-top: 8px; }

/* ── PRICING ── */
.pricing-section {
  background: #fff;
  padding: 88px 48px;
}
.pricing-section > .section-label { display: flex; justify-content: center; margin-bottom: 12px; }
.pricing-section > h2 { font-size: 36px; color: var(--navy); text-align: center; margin-bottom: 48px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pricing-badge {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}
.pricing-card h3 { font-family: 'Lato', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-card.featured h3 { color: #fff; }
.pricing-card .pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; min-height: 60px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-amount { font-size: 38px; font-weight: 700; color: var(--navy); font-family: 'Lato', sans-serif; }
.pricing-card.featured .pricing-amount { color: var(--gold); }
.pricing-period { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #F5F0E8;
  padding: 48px 48px;
}
.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.testimonials-header h2 { font-size: 36px; color: var(--navy); line-height: 1.2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  align-items: start;
}
.testimonial-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,46,82,0.1); }
.testimonial-photo { width: 100%; height: 180px; object-fit: cover; object-position: top; display: block; }
.testimonial-body { padding: 22px; background: #fff; flex: 1; }
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.testimonial-text { font-size: 13px; color: var(--text-mid); line-height: 1.75; font-style: italic; }
/* Expand / collapse */
.testimonial-preview { display: block; }
.testimonial-full    { display: none; }
.testimonial-card.expanded .testimonial-preview { display: none; }
.testimonial-card.expanded .testimonial-full    { display: block; }
.testimonial-read-more {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-style: normal;
  cursor: pointer;
  padding: 8px 0 0 0;
  display: inline-block;
}
.testimonial-read-more:hover { color: var(--navy); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: #fff;
  padding: 64px 48px 56px;
  border-bottom: 1px solid var(--border);
}
.page-hero.with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 48px;
  border-bottom: none;
}
.page-hero.with-image .page-hero-text {
  padding: 40px 0 32px;
}
.page-hero.with-image .page-hero-img {
  align-self: stretch;
  overflow: hidden;
}
.page-hero.with-image .page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Logo frame — top-aligned to match heading */
.page-hero.with-image .page-hero-logo-frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
}
.page-hero.with-image .page-hero-logo-frame img {
  width: auto;
  height: auto;
  max-width: 560px;
  max-height: 560px;
  object-fit: contain;
}
/* Photo frame — white mat around treatment photo */
.page-hero.with-image .page-hero-photo-frame {
  overflow: hidden;
  padding: 20px;
  background: #fff;
}
.page-hero.with-image .page-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.page-hero .section-label { display: flex; }
.page-hero h1 {
  font-size: 44px;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 400;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.8;
}

/* ── GENERAL CONTENT SECTION ── */
.content-section {
  background: #fff;
  padding: 88px 48px;
}
.content-section h2 { font-size: 32px; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.content-section h3 { font-size: 22px; color: var(--navy); margin-bottom: 12px; margin-top: 32px; }
.content-section p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.content-section ul { margin: 0 0 16px 20px; }
.content-section ul li { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 8px; }

/* ── CTA STRIP ── */
.cta-strip {
  background: #fff;
  padding: 72px 48px;
  text-align: center;
}
.cta-strip h2 { font-size: 36px; color: var(--navy); margin-bottom: 12px; }
.cta-strip p { font-size: 16px; color: var(--text-mid); margin-bottom: 28px; }
.cta-strip .btn-group { display: flex; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 48px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-top: 10px; }
.footer-logo-name { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.04em; line-height: 1.4; }

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact span { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  font-size: 13px;
}
.comparison-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th.featured { background: var(--navy); }
.comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 700; color: var(--navy); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--ivory); }
.comparison-table .check { color: var(--gold); font-size: 16px; }
.comparison-table .dash { color: var(--border); }

/* ── PULL QUOTE ── */
.pull-quote {
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
}
.pull-quote-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}
.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ── FAQ ── */
.faq-section {
  background: #fff;
  padding: 88px 48px;
}
.faq-group { margin-bottom: 48px; }
.faq-group h3 {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.faq-item { margin-bottom: 24px; }
.faq-item h4 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 48px;
}
.legal-content h1 { font-size: 40px; color: var(--navy); margin-bottom: 8px; }
.legal-content .legal-date { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 22px; color: var(--navy); margin: 36px 0 12px; }
.legal-content p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content ul li { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 8px; }
.legal-content a { color: var(--gold); text-decoration: underline; }

/* ── ADDRESS COLLECTION PAGE ── */
.address-page {
  min-height: 100vh;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.address-card {
  background: #fff;
  border-radius: 18px;
  padding: 44px;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(27,46,82,0.10);
}
.address-card .address-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

/* ── WAITLIST SECTION ── */
.waitlist-section {
  background: #fff;
  padding: 72px 48px;
  text-align: center;
}
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 420px;
  margin: 24px auto 0;
}
.waitlist-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  outline: none;
  color: var(--text-dark);
}
.waitlist-form input:focus { border-color: var(--gold); }
.waitlist-form button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.waitlist-form button:hover { background: var(--navy-mid); }

/* ── WAVE DIVIDERS ── */
.wave-enter,
.wave-exit {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wave-enter svg,
.wave-exit svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── IVORY SECTIONS ── */
.what-we-treat-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.what-we-treat-section .container { max-width: 1100px; margin: 0 auto; padding: 48px 48px; }
.testimonials-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.who-we-are-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.philosophy-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.guided-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.resources-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }
.medicine-section { background: #F5F0E8; padding-top: 0; padding-bottom: 0; }

/* ── CONTACT PAGE LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .consult-form { max-width: 480px; }
  .about-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero.with-image { grid-template-columns: 1fr; padding: 40px 48px 0; }
  .page-hero.with-image .page-hero-img { height: 340px; }
  .page-hero.with-image .page-hero-logo-frame { padding-top: 0; justify-content: flex-start; }
  .page-hero.with-image .page-hero-logo-frame img { max-height: 320px; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  nav { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  nav > .btn { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(27,46,82,0.08);
    z-index: 99;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 12px 0; font-size: 15px; }
  .hero { padding: 48px 24px; }
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-wrap: wrap; }
  .stats-bar { grid-template-columns: 1fr; padding: 24px; }
  .about-section, .services-section, .how-section,
  .pricing-section, .testimonials-section, .content-section { padding: 56px 24px; }
  .services-grid, .steps-grid, .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; padding: 0; }
  footer { padding: 40px 24px 20px; }
  .legal-content { padding: 48px 24px; }
  /* page heroes */
  .page-hero { padding: 40px 24px 32px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero.with-image { grid-template-columns: 1fr; padding: 32px 24px 0; }
  .page-hero.with-image .page-hero-img { height: 260px; }
  .page-hero.with-image .page-hero-text { padding: 24px 0 0; }
  /* sections missing mobile padding */
  .what-we-treat-section .container { padding: 32px 24px; }
  .cta-strip { padding: 56px 24px; }
  .cta-strip .btn-group { flex-wrap: wrap; justify-content: center; }
  /* pillar items */
  .pillar-item { gap: 16px; padding-right: 0; }
  /* photo collage on about page */
  .photo-collage { grid-template-rows: 200px 140px; }
  /* comparison table horizontal scroll */
  .comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* contact page */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout > div[style] { padding-top: 0 !important; }
  /* what we treat grid */
  .wt-grid { grid-template-columns: 1fr; }
  /* treatments — ebook + add-on stack vertically */
  .addons-grid { grid-template-columns: 1fr !important; }
  .addons-grid .service-card[style*="grid-column"] { grid-column: auto !important; }
  /* why-us — our approach: 1 column */
  .approach-grid { grid-template-columns: 1fr !important; }
  /* why-us — common questions: 1 column */
  .faq-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── TERMS CONSENT MODAL ── */
.terms-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,46,82,0.55);
  z-index: 1100;
}
.terms-modal-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1101;
  background: #fff;
  border-radius: 8px;
  padding: 40px 36px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 8px 40px rgba(27,46,82,0.18);
}
.terms-modal-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.terms-modal-box p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.6;
}
.terms-modal-box ul {
  margin: 0 0 16px 20px;
}
.terms-modal-box ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.terms-modal-box ul li a {
  color: var(--gold);
  text-decoration: underline;
}
.terms-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
