/* ============================================================
   Charlotte Alcala — style.css
   Hostinger static deployment
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ─── */
:root {
  --green:        #1D6B5A;
  --green-dark:   #155048;
  --green-light:  #F0F8F5;
  --green-mid:    #2A8070;
  --cream:        #FAFAF8;
  --cream-dark:   #F1EFE8;
  --border:       #E8E6DF;
  --border-light: #F1EFE8;
  --text:         #2C2C2A;
  --text-mid:     #444441;
  --text-muted:   #5F5E5A;
  --text-faint:   #888780;
  --text-ghost:   #B4B2A9;
  --white:        #ffffff;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.serif { font-family: 'Cormorant Garamond', serif; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand span { font-style: italic; color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
}
.mobile-menu .nav-cta {
  text-align: center;
  padding: 14px 22px;
  border-radius: 8px;
  display: block;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: none;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

.btn-white {
  background: var(--white);
  color: var(--green);
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--cream-dark); transform: translateY(-1px); }

/* ─── SECTION BASE ─── */
section { padding: 7rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--green); }

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 640px;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(29,107,90,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(29,107,90,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 820px;
  width: 100%;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.25s forwards;
}
.hero-h1 em { font-style: italic; color: var(--green); }

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.55s forwards;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ghost);
}

/* ─── PROBLEM ─── */
#problem { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.problem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover { border-color: var(--green); transform: translateY(-2px); }
.problem-card-icon { font-size: 22px; margin-bottom: 0.75rem; }
.problem-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.problem-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.problem-statement {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--green);
  background: var(--green-light);
  border-radius: 0 10px 10px 0;
}
.problem-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ─── MID CTA ─── */
#cta-mid {
  padding: 5rem 2rem;
  background: var(--green);
  text-align: center;
}
#cta-mid .section-title { color: var(--white); margin-bottom: 1.25rem; }
#cta-mid .section-title em { color: rgba(255,255,255,0.65); }
#cta-mid p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

/* ─── METHOD ─── */
#method { background: var(--cream); }
.method-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
}
.method-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.method-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.method-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.method-pillar:hover::before { transform: scaleX(1); }
.method-pillar:hover { border-color: var(--green); transform: translateY(-3px); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}
.method-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.method-pillar p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* Wounds */
.wounds-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.wounds-heading em { font-style: italic; color: var(--green); }
.wounds-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.wounds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.wound-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.wound-card:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-3px);
}
.wound-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 18px;
}
.wound-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.wound-card p { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* Strategic Visioning */
.sv-block {
  background: var(--text);
  border-radius: 18px;
  padding: 3.5rem;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sv-block .section-label { color: rgba(255,255,255,0.5); }
.sv-block .section-label::after { background: rgba(255,255,255,0.2); }
.sv-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.sv-block h3 em { font-style: italic; color: rgba(255,255,255,0.55); }
.sv-block p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 1.5rem; }
.sv-points { list-style: none; }
.sv-points li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sv-points li:last-child { border-bottom: none; }
.sv-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* ─── QUIZ SECTION ─── */
#quiz-section { background: var(--white); }
.quiz-teaser {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quiz-teaser .section-label {
  justify-content: center;
}
.quiz-teaser .section-label::after { display: none; }
.quiz-teaser .section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}
.quiz-wounds-preview {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}
.chip {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream);
  letter-spacing: 0.04em;
}
.quiz-meta {
  font-size: 13px;
  color: var(--text-ghost);
  margin-bottom: 2rem;
}

/* Quiz Modal */
.quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,44,42,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.quiz-overlay.open { display: flex; }
.quiz-modal {
  background: var(--cream);
  border-radius: 18px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.quiz-modal-inner { padding: 2.5rem 2rem; }
.quiz-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all 0.15s;
  font-family: 'Jost', sans-serif;
}
.quiz-close:hover { border-color: var(--text); color: var(--text); }

/* ─── OFFERS ─── */
#offers { background: var(--cream); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--green); }
.offer-card.featured { background: var(--text); border-color: var(--text); }
.offer-badge {
  position: absolute;
  top: -12px; left: 1.75rem;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.offer-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1.25rem;
}
.offer-card.featured .offer-icon { background: rgba(255,255,255,0.1); }
.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.offer-card.featured h3 { color: var(--white); }
.offer-format {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.offer-card.featured .offer-format { color: rgba(255,255,255,0.5); }
.offer-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}
.offer-card.featured > p { color: rgba(255,255,255,0.65); }
.offer-outcomes { list-style: none; margin-bottom: 2rem; }
.offer-outcomes li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.5;
}
.offer-card.featured .offer-outcomes li { color: rgba(255,255,255,0.7); }
.offer-outcomes li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.offer-card.featured .offer-outcomes li::before { background: rgba(255,255,255,0.4); }
.offer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s;
}
.offer-card.featured .offer-link { color: rgba(255,255,255,0.7); }
.offer-link:hover { gap: 10px; }

/* ─── FAQ ─── */
#faq { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 7rem;
}
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.faq-cat-btn {
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  border-left: 2px solid transparent;
  text-align: left;
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Jost', sans-serif;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  color: var(--green);
  border-left-color: var(--green);
  background: var(--green-light);
}
.faq-group { margin-bottom: 3rem; }
.faq-group-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-q.open { color: var(--green); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.25s;
}
.faq-q.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}
.faq-a.open { display: block; }

/* ─── BOTTOM CTA ─── */
#cta-bottom {
  background: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}
#cta-bottom .section-label { justify-content: center; }
#cta-bottom .section-label::after { display: none; }
#cta-bottom .section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}
.cta-bottom-inner { max-width: 680px; margin: 0 auto; }
.cta-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.cta-detail {
  font-size: 12px;
  color: var(--text-ghost);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-logo em { font-style: italic; color: rgba(255,255,255,0.45); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.75rem;
}
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.social-link {
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  color: rgba(255,255,255,0.6);
}
.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.nomeo-link {
  width: auto;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-family: 'Jost', sans-serif;
}
.footer-links-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 0.75rem; }
.footer-links-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── QUIZ INTERNALS ─── */
.brand { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 13px; color: var(--text-faint); letter-spacing: 0.04em; margin-bottom: 2rem; display: block; }
.quiz-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; line-height: 1.25; color: var(--text); margin-bottom: 0.75rem; }
.quiz-subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.progress-track { height: 2px; background: var(--border); border-radius: 2px; margin-bottom: 2rem; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width 0.4s ease; }
.q-section-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 1.5rem; }
.question-block { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border-light); }
.question-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.question-text { font-size: 15px; line-height: 1.65; color: var(--text); font-weight: 400; margin-bottom: 1rem; }
.scale-row { display: flex; gap: 6px; }
.scale-btn { flex: 1; height: 44px; border: 1px solid #D3D1C7; border-radius: 8px; background: var(--white); cursor: pointer; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-faint); transition: all 0.15s; }
.scale-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.scale-btn.selected { background: var(--green); border-color: var(--green); color: var(--white); font-weight: 500; }
.scale-labels { display: flex; justify-content: space-between; margin-top: 6px; }
.scale-label-text { font-size: 10px; color: var(--text-ghost); }
.nav-row { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-light); }
.btn-ghost { background: none; border: 1px solid #D3D1C7; padding: 13px 24px; border-radius: 8px; font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-muted); cursor: pointer; transition: all 0.15s; }
.btn-ghost:hover { border-color: var(--text-faint); color: var(--text); }
.quiz-error-note { font-size: 12px; color: #c0392b; margin-top: 1rem; display: none; }
.cover-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.cover-title em { font-style: italic; }
.cover-subtitle { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.cover-detail { font-size: 13px; color: var(--text-faint); line-height: 1.7; margin-bottom: 1.25rem; }
.q-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.form-field { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input { width: 100%; height: 48px; border: 1px solid #D3D1C7; border-radius: 8px; padding: 0 14px; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300; color: var(--text); background: var(--white); outline: none; transition: border-color 0.15s; }
.form-input::placeholder { color: var(--text-ghost); }
.form-input:focus { border-color: var(--green); }
.form-privacy { font-size: 11px; color: var(--text-ghost); line-height: 1.65; margin-top: 0.5rem; }
.results-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; line-height: 1.3; margin-bottom: 0.75rem; }
.results-intro { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.dominant-card { border: 1px solid var(--green); border-left: 4px solid var(--green); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; background: var(--green-light); }
.dominant-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 0.5rem; }
.dominant-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 1rem; }
.dominant-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.75rem; }
.patterns-heading { font-size: 13px; font-weight: 500; color: var(--text); margin-top: 1rem; margin-bottom: 0.5rem; }
.patterns-list { list-style: none; }
.patterns-list li { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding: 3px 0 3px 16px; position: relative; }
.patterns-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.scores-section { margin-bottom: 2rem; }
.scores-heading { font-size: 12px; font-weight: 500; color: var(--text-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.score-name { font-size: 13px; width: 100px; flex-shrink: 0; color: var(--text-muted); }
.score-name.dominant { color: var(--green); font-weight: 500; }
.score-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 3px; background: #D3D1C7; transition: width 0.8s ease; }
.score-fill.dominant { background: var(--green); }
.score-pct { font-size: 12px; color: var(--text-ghost); width: 34px; text-align: right; }
.secondary-section { background: var(--cream-dark); border-radius: 10px; padding: 1.25rem; margin-bottom: 2rem; }
.secondary-heading { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.result-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0.75rem; }
.result-chip { border: 1px solid #D3D1C7; border-radius: 6px; padding: 4px 12px; font-size: 12px; color: var(--text-muted); background: var(--white); }
.secondary-note { font-size: 12px; color: var(--text-faint); line-height: 1.65; }
.cta-section-quiz { border-top: 1px solid var(--border); padding-top: 2rem; margin-top: 0.5rem; }
.cta-title-quiz { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; line-height: 1.35; margin-bottom: 0.75rem; }
.cta-desc-quiz { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.cta-btn-primary { background: var(--green); color: var(--white); border: none; padding: 13px 28px; border-radius: 8px; font-family: 'Jost', sans-serif; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.15s; letter-spacing: 0.04em; }
.cta-btn-primary:hover { background: var(--green-dark); }
.cta-btn-secondary { background: none; border: 1px solid var(--green); color: var(--green); padding: 13px 28px; border-radius: 8px; font-family: 'Jost', sans-serif; font-size: 14px; cursor: pointer; display: inline-block; transition: all 0.15s; letter-spacing: 0.04em; text-decoration: none; }
.cta-btn-secondary:hover { background: var(--green); color: var(--white); }
.cta-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.restart-link { font-size: 12px; color: var(--text-ghost); cursor: pointer; text-decoration: underline; margin-top: 1.5rem; display: inline-block; background: none; border: none; font-family: 'Jost', sans-serif; }
.restart-link:hover { color: var(--text-muted); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .method-pillars { grid-template-columns: 1fr 1fr; }
  .wounds-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .problem-grid,
  .method-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-sticky { position: static; }
  .sv-block { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 640px) {
  section { padding: 5rem 1.25rem; }
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .method-pillars { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }
  .wounds-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .sv-block { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
  .quiz-modal-inner { padding: 2rem 1.25rem; }
  .cta-btn-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-bottom-actions { flex-direction: column; width: 100%; }
  .cta-bottom-actions .btn-primary,
  .cta-bottom-actions .btn-outline { width: 100%; text-align: center; }
}

/* ─── HERO SPLIT LAYOUT (with image) ─── */
/* ─── HERO — full viewport split with fade ─── */
#hero {
  padding: 0;
  min-height: 100vh;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* The photo sits as an absolutely positioned right-side panel */
.hero-split {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: stretch;
}

/* Text column — left 55% */
.hero-content {
  position: relative;
  z-index: 3;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 6rem 6vw;
}

/* Photo column — right 50%, absolutely placed to bleed to edge */
.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Gradient fade — left edge of photo blends into cream */
.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, var(--cream) 0%, rgba(250,250,248,0.85) 40%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Top fade so nav area blends cleanly */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.88;
}

/* ─── QUIZ SECTION centred ─── */
#quiz-section { background: var(--white); }
.quiz-teaser {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quiz-teaser .section-label { justify-content: center; }
.quiz-teaser .section-label::after { display: none; }
.quiz-teaser .section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

/* ─── MID CTA TWO BUTTONS ─── */
.cta-mid-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white-outline {
  background: none;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ─── HERO RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Tablet: text full-width, photo as bottom panel */
  .hero-split { flex-direction: column; min-height: auto; padding-bottom: 0; }
  .hero-content {
    width: 100%;
    padding: 7rem 2rem 2.5rem;
    text-align: center;
    min-height: 60vh;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  /* Photo becomes a static bottom image panel */
  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 52vw;
    max-height: 400px;
    min-height: 260px;
  }
  /* On tablet, fade from top instead of from left */
  .hero-image-wrap::before {
    width: 100%;
    height: 50%;
    top: 0; left: 0;
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  }
  .hero-image-wrap::after { display: none; }
  .hero-photo { object-position: center 15%; }
}
@media (max-width: 640px) {
  .hero-content { padding: 6rem 1.5rem 2rem; min-height: 55vh; }
  .hero-image-wrap { height: 65vw; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; text-align: center; }
  .cta-mid-actions { flex-direction: column; width: 100%; }
  .cta-mid-actions .btn-white,
  .cta-mid-actions .btn-white-outline { width: 100%; text-align: center; }
}
