:root {
  --sage:       #7a9e7e;
  --sage-dark:  #4e7153;
  --sage-light: #b8d4bc;
  --sage-pale:  #e8f0e9;
  --cream:      #f7f4ee;
  --stone:      #c9bfaa;
  --warm-dark:  #2d3a2e;
  --text:       #3a3a35;
  --text-light: #555850;
  --white:      #ffffff;
}

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

html { scroll-behavior: smooth; }

/* ── FOCUS STYLES ── */
*:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.8rem 1.5rem;
  background: var(--sage-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 200;
  font-size: 0.85rem;
}
.skip-link:focus { top: 0; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--warm-dark);
}

p { line-height: 1.8; color: var(--text); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,126,0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(45,58,46,0.08); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--sage-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { font-style: italic; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.25s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage-dark);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--warm-dark) !important; color: var(--white) !important; }

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  color: var(--warm-dark);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 3rem;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--warm-dark); transform: translateY(-2px); }

.btn-ghost {
  color: var(--sage-dark);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--warm-dark); border-color: var(--sage-dark); }

.hero-right {
  position: relative;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-organic {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  opacity: 0.4;
}

.hero-photo-placeholder {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 420px;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

.placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.leaf-deco {
  position: absolute;
  opacity: 0.12;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--warm-dark);
  color: var(--sage-pale);
  padding: 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}
.intro-divider { background: rgba(255,255,255,0.12); height: 60px; align-self: center; }
.intro-stat { font-family: 'Cormorant Garamond', serif; }
.intro-stat strong { display: block; font-size: 2.2rem; font-weight: 400; color: var(--sage-light); }
.intro-stat span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }

/* ── SECTIONS ── */
section { padding: 7rem 6rem; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

/* ── HOW IT FEELS ── */
.feels {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feels-text p { margin-bottom: 1.4rem; font-size: 1.05rem; }

.feels-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.feel-card {
  background: var(--sage-pale);
  border-radius: 1.5rem;
  padding: 1.8rem 1.5rem;
  border-left: 3px solid var(--sage);
  transition: transform 0.2s;
}
.feel-card:hover { transform: translateY(-4px); }
.feel-card:nth-child(2) { margin-top: 0rem; }
.feel-card:nth-child(4) { margin-top: 0rem; }

.feel-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--sage-dark);
}
.feel-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how {
  background: var(--sage-pale);
  text-align: center;
}
.how .section-title { max-width: 600px; margin: 0 auto 1rem; }
.how > p { max-width: 560px; margin: 0 auto 4rem; color: var(--text-light); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: var(--sage-light);
}

.step { padding: 2rem 1.5rem; }
.step-num {
  width: 3rem; height: 3rem;
  background: var(--sage-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.step p { font-size: 0.9rem; color: var(--text-light); }

/* ── QUOTE ── */
.quote-section {
  background: var(--warm-dark);
  text-align: center;
  padding: 6rem;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sage-pale);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-section cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-top: 2rem;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding: 11rem 6rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-photo {
  background: linear-gradient(145deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: 40% 60% 50% 50% / 55% 45% 60% 40%;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}

.about-content h1 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.2rem; font-size: 1rem; }

.credentials {
  display: flex; flex-direction: column; gap: 0.8rem;
  margin: 2.5rem 0;
}
.credential {
  display: flex; align-items: center; gap: 1rem;
  background: var(--sage-pale);
  padding: 1rem 1.4rem;
  border-radius: 0.8rem;
}
.cred-icon {
  width: 2.2rem; height: 2.2rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cred-icon svg { width: 1rem; height: 1rem; fill: white; }
.credential span { font-size: 0.9rem; color: var(--text); }

.about-values {
  background: var(--sage-pale);
  padding: 6rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  border-top: 3px solid var(--sage);
}
.value-card h3 { font-size: 1.25rem; color: var(--sage-dark); margin-bottom: 0.8rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ── ISSUES PAGE ── */
.issues-hero {
  padding: 11rem 6rem 5rem;
  text-align: center;
}
.issues-hero h1 { font-size: clamp(2.5rem, 4vw, 3.8rem); max-width: 700px; margin: 1rem auto; }
.issues-hero p { max-width: 580px; margin: 1.5rem auto 0; color: var(--text-light); font-size: 1.05rem; }

.issues-grid {
  padding: 2rem 6rem 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.issue-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(122,158,126,0.2);
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.issue-card:hover { box-shadow: 0 8px 32px rgba(45,58,46,0.1); transform: translateY(-4px); }
.issue-card:hover::before { transform: scaleX(1); }

.issue-card h2,
.issue-card h3 {
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
}
.issue-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.issues-note {
  background: var(--warm-dark);
  padding: 5rem 6rem;
  text-align: center;
}
.issues-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--sage-pale);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* ── CONTACT PAGE ── */
.contact-wrap {
  padding: 10rem 6rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h1 { font-size: clamp(2.2rem, 3.5vw, 3.2rem); margin-bottom: 1.5rem; }
.contact-info p { font-size: 1rem; margin-bottom: 2rem; max-width: 420px; }

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
}
.contact-detail-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 1rem; height: 1rem; stroke: var(--sage-dark); fill: none; }
.contact-detail span { font-size: 0.95rem; color: var(--text); }
.contact-detail a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 2px; }

.bacp-badge { margin-top: 2rem; }
.bacp-badge img { display: block; max-width: 180px; height: auto; background: var(--white); border-radius: 0.6rem; padding: 0.8rem; box-shadow: 0 2px 12px rgba(45,58,46,0.08); }

.free-call-note {
  background: var(--sage-pale);
  border-radius: 1.2rem;
  padding: 1.8rem;
  border-left: 3px solid var(--sage);
}
.free-call-note strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin-bottom: 0.5rem;
}
.free-call-note p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 8px 48px rgba(45,58,46,0.08);
}
.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 2rem; color: var(--warm-dark); }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--sage-light);
  border-radius: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--sage-dark);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 3rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s;
}
.form-submit:hover { background: var(--warm-dark); }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success h3 {
  font-size: 1.8rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.form-success p { color: var(--text-light); }

/* ── FOOTER ── */
footer {
  background: var(--warm-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--sage-light);
}
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.85); }
footer a { color: var(--sage-light); text-decoration: underline; text-underline-offset: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 2.5rem 4rem; }
  .hero-right { height: 50vh; }
  section { padding: 5rem 2.5rem; }
  .feels, .about-hero, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .intro-strip { padding: 3rem 2.5rem; grid-template-columns: 1fr; }
  .intro-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .issues-grid { grid-template-columns: 1fr 1fr; padding: 2rem 2.5rem 5rem; }
  .about-hero, .issues-hero, .contact-wrap { padding-left: 2.5rem; padding-right: 2.5rem; }
  .about-values { padding: 4rem 2.5rem; }
  .issues-note { padding: 4rem 2.5rem; }
  footer { padding: 2rem 2.5rem; flex-direction: column; text-align: center; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 2rem; border-bottom: 1px solid var(--sage-light); }
  .hamburger { display: flex; }
  .quote-section { padding: 4rem 2.5rem; }
}

@media (max-width: 600px) {
  .feels-cards { grid-template-columns: 1fr; }
  .feel-card:nth-child(2), .feel-card:nth-child(4) { margin-top: 0; }
  .values-grid, .issues-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}
