/* Project Yew — Global Styles */

:root {
  --bg: #f3f2ef;
  --text: #11171c;
  --sage: #5e675d;
  --sage-light: #e6e9e5;
  --sage-mid: #8a9489;
  --sage-dark: #495249;
  --white: #ffffff;
  --border: #d8dcd7;
  --muted: #596160;
  --shadow: rgba(17, 23, 28, 0.09);

  --font: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ── Layout ─────────────────────────────────────── */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section { text-align: center; }

/* Keep contact, footer, and long body text left-aligned */
.contact-grid,
.contact-info,
.contact-form,
.form-group,
.form-row,
footer,
.footer-inner,
.footer-bottom { text-align: left; }

/* Contact info left-aligned */
.contact-info p,
.contact-info h3 { text-align: left; }


/* ── Buttons ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-secondary:hover {
  background-color: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg);
  border-color: rgba(243, 242, 239, 0.4);
}
.btn-outline-white:hover {
  background-color: rgba(243, 242, 239, 0.12);
  border-color: var(--bg);
  transform: translateY(-2px);
}


/* ── Typography helpers ──────────────────────────── */

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  background-color: rgba(94, 103, 93, 0.09);
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  border: 1px solid rgba(94, 103, 93, 0.2);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}


/* ── Navigation ──────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(243, 242, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

/* Nav over dark hero pages */
.page-hero ~ nav,
body:has(.page-hero) nav:not(.scrolled) {
  color: var(--bg);
}

body:has(.page-hero) nav:not(.scrolled) .nav-logo-text,
body:has(.page-hero) nav:not(.scrolled) .nav-links a {
  color: var(--bg);
}

body:has(.page-hero) nav:not(.scrolled) .nav-toggle span {
  background-color: var(--bg);
}

body:has(.page-hero) nav:not(.scrolled) .footer-logo-fallback {
  background-color: rgba(243,242,239,0.15);
  border-color: rgba(243,242,239,0.4);
  color: var(--bg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 101;
}

.nav-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}

.nav-logo-fallback {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--sage-light);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.05em;
}

.nav-logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--sage); }

.nav-links .nav-cta a {
  opacity: 0.65;
  font-weight: 400;
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
  background: none;
  border: none;
  position: absolute;
  right: 1.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.28s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.75;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, color 0.2s;
}
.mobile-nav a:hover { opacity: 1; color: var(--sage); }


/* ── Hero logo ───────────────────────────────────── */

.hero-logo {
  width: clamp(240px, 35vw, 400px);
  height: clamp(240px, 35vw, 400px);
  object-fit: contain;
  margin-bottom: 2.5rem;
}

/* ── Hero (homepage) ─────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 0 6rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(94,103,93,0.1) 0%, transparent 70%);
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  color: var(--sage);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}


/* ── Audience cards ───────────────────────────────── */

.audience-section { padding: 6rem 0; }

.audience-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.audience-header .section-lead { margin-bottom: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(17, 23, 28, 0.07);
}

.audience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.audience-card:hover {
  border-color: var(--sage);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px var(--shadow);
}

.audience-card:hover::after { transform: scaleX(1); }

.audience-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.audience-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  text-wrap: pretty;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sage);
  margin-top: 0.5rem;
}

.card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.audience-card:hover .card-link svg { transform: translateX(3px); }


/* ── How it works ────────────────────────────────── */

.how-section {
  padding: 7rem 0;
  background-color: var(--text);
  text-align: center;
}

.how-section .label {
  color: var(--sage-mid);
  background-color: rgba(138, 148, 137, 0.15);
  border-color: rgba(138, 148, 137, 0.25);
}

.how-section .section-title { color: var(--bg); }
.how-section .section-lead { max-width: 460px; color: rgba(243,242,239,0.5); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4.5rem;
}

.how-step { display: flex; flex-direction: column; gap: 1.125rem; }

.how-number {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(243, 242, 239, 0.13);
  margin-bottom: 0.5rem;
}

.how-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
  color: var(--bg);
}

.how-step p {
  font-size: 0.9rem;
  color: rgba(243, 242, 239, 0.5);
  line-height: 1.7;
  text-wrap: pretty;
}


/* ── Stats strip ─────────────────────────────────── */

.stats-section {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; gap: 0.5rem; }

.stat-number {
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ── Homepage bottom CTA ─────────────────────────── */

.cta-section {
  padding: 8rem 0;
  text-align: center;
  background-color: var(--text);
}

.cta-section .label {
  color: var(--sage-mid);
  background-color: rgba(138, 148, 137, 0.15);
  border-color: rgba(138, 148, 137, 0.25);
}

.cta-section .section-title {
  color: var(--bg);
  max-width: 600px;
  margin: 0.75rem auto 1.5rem;
}

.cta-section .section-lead {
  color: rgba(243, 242, 239, 0.55);
  margin: 0 auto 2.75rem;
  text-align: center;
}

.cta-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Footer ──────────────────────────────────────── */

footer {
  background-color: var(--text);
  color: var(--bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(243, 242, 239, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.25fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(243, 242, 239, 0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer-logo img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.85;
}

.footer-logo-fallback {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(94, 103, 93, 0.2);
  border: 1.5px solid rgba(94, 103, 93, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage-mid);
  letter-spacing: 0.05em;
}

.footer-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.88rem;
  opacity: 0.45;
  line-height: 1.65;
  max-width: 280px;
  font-style: italic;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-col ul a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.35;
}


/* ── Inner page hero ─────────────────────────────── */

.page-hero {
  padding: 10rem 0 7rem;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--text);
}

.page-hero-content { max-width: 680px; margin: 0 auto; }

.page-hero .label {
  color: var(--sage-mid);
  background-color: rgba(138, 148, 137, 0.15);
  border-color: rgba(138, 148, 137, 0.25);
}

.page-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--bg);
}

.page-hero .hero-sub {
  color: rgba(243, 242, 239, 0.6);
  margin-bottom: 2.5rem;
}


/* ── Problem section ─────────────────────────────── */

.problem-section { padding: 6rem 0; text-align: center; }

.problem-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.problem-text { max-width: 680px; margin: 0 auto; text-align: center; }
.problem-text .section-title { font-size: clamp(1.7rem, 3vw, 2.35rem); }

.problem-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.25rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.problem-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.problem-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sage);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.problem-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.problem-item-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  text-wrap: pretty;
}

.problem-visual {
  display: none;
}

.problem-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.pv-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(94, 103, 93, 0.15);
  border: 1px solid rgba(94, 103, 93, 0.25);
}

.pv-circle-sm {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(94, 103, 93, 0.08);
  border: 1px solid rgba(94, 103, 93, 0.15);
  position: absolute;
  top: 15%;
  right: 12%;
}

.pv-circle-xs {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(94, 103, 93, 0.12);
  border: 1px solid rgba(94, 103, 93, 0.2);
  position: absolute;
  bottom: 20%;
  left: 10%;
}


/* ── Benefits / What you get ─────────────────────── */

.benefits-section {
  padding: 7rem 0;
  background-color: var(--text);
  color: var(--bg);
  text-align: center;
}

.benefits-section .label {
  color: var(--sage-mid);
  background-color: rgba(138, 148, 137, 0.15);
  border-color: rgba(138, 148, 137, 0.25);
}
.benefits-section .section-title { color: var(--bg); }
.benefits-section .section-lead { color: rgba(243, 242, 239, 0.5); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.benefit-card {
  border: 1px solid rgba(243, 242, 239, 0.09);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, background 0.25s;
}

.benefit-card:hover {
  border-color: rgba(94, 103, 93, 0.5);
  background-color: rgba(94, 103, 93, 0.04);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(94, 103, 93, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--sage-mid);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
}

.benefit-card p {
  font-size: 0.88rem;
  color: rgba(243, 242, 239, 0.5);
  line-height: 1.7;
}


/* ── Page CTA ────────────────────────────────────── */

.page-cta {
  padding: 7rem 0;
  text-align: center;
}

.page-cta .section-title {
  max-width: 480px;
  margin: 0.75rem auto 1.5rem;
}

.page-cta .section-lead {
  margin: 0 auto 2.5rem;
  text-align: center;
}


/* ── About page ──────────────────────────────────── */

.story-section { padding: 6rem 0; text-align: center; }

.story-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.story-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  text-wrap: pretty;
}

.story-text p.lead {
  font-size: 1.175rem;
  color: var(--text);
  font-weight: 400;
}

.story-visual {
  display: none;
}

.story-visual-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0.4;
}

.tree-canopy {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--sage);
}

.tree-trunk {
  width: 22px;
  height: 80px;
  background-color: var(--sage-dark);
  border-radius: 0 0 4px 4px;
}

.values-section {
  padding: 6rem 0;
  background-color: var(--sage-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.value-card {
  background-color: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--sage);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(17, 23, 28, 0.06);
}

.value-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sage);
  text-transform: uppercase;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.team-section { padding: 6rem 0; }

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

.team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--sage-light);
  border: 2px solid var(--border);
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 600;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: var(--sage);
}

.team-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ── Contact page ────────────────────────────────── */

.contact-section { padding: 6rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-detail-item svg {
  width: 17px;
  height: 17px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-form {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2.75rem;
  border: 1px solid var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--text);
  background-color: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23596160' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(94, 103, 93, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b0ae;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row .form-group { margin-bottom: 0; }

.form-actions { margin-top: 1.75rem; }

.form-actions .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success.show { display: flex; }

.form-success svg {
  width: 52px;
  height: 52px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 { font-size: 1.25rem; font-weight: 600; }

.form-success p { font-size: 0.93rem; color: var(--muted); }


/* ── Three-button hero CTA ───────────────────────────── */

.hero-cta-three {
  justify-content: center;
  gap: 0.875rem;
}

.hero-cta-three .btn {
  min-width: 150px;
  justify-content: center;
}


/* ── Three-column how-it-works ───────────────────────── */

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

@media (max-width: 768px) {
  .how-grid-3 { grid-template-columns: 1fr; }
}


/* ── Industries section ──────────────────────────────── */

.industries-section {
  padding: 6rem 0;
  text-align: center;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.industry-tag {
  display: inline-block;
  padding: 0.625rem 1.375rem;
  background-color: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.01em;
}


/* ── Venue examples section ──────────────────────────── */

.venues-examples {
  padding: 6rem 0;
  background-color: var(--sage-light);
  text-align: center;
}

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

.venue-example-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue-example-icon {
  width: 48px;
  height: 48px;
  background-color: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-example-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-example-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.venue-example-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .venues-grid-2 { grid-template-columns: 1fr; }
}


/* ── Zero cost banner ────────────────────────────────── */

.zero-cost-section {
  padding: 2.5rem 0;
}

.zero-cost-banner {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  background-color: var(--sage);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.625rem 2.25rem;
}

.zero-cost-banner svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.zero-cost-banner p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.zero-cost-banner strong { font-weight: 600; }

@media (max-width: 600px) {
  .zero-cost-banner { flex-direction: column; text-align: center; }
}


/* ── Dark section utility ────────────────────────── */

.section-dark {
  background-color: var(--text);
  color: var(--bg);
}

.section-dark .label {
  color: var(--sage-mid);
  background-color: rgba(138, 148, 137, 0.15);
  border-color: rgba(138, 148, 137, 0.25);
}

.section-dark .section-title { color: var(--bg); }

.section-dark .section-lead { color: rgba(243, 242, 239, 0.55); }

.section-dark .problem-item-dot { background-color: var(--sage-mid); }

.section-dark .problem-item-text p { color: rgba(243, 242, 239, 0.65); }

.section-dark p { color: rgba(243, 242, 239, 0.65); }


/* ── Scroll reveal ───────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .audience-grid { grid-template-columns: 1fr; gap: 1rem; }
  .audience-header { flex-direction: column; align-items: flex-start; }

  .how-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }

  .problem-grid,
  .story-grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .problem-visual { aspect-ratio: 16/9; }
  .story-visual { aspect-ratio: 4/3; }

  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

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

  .hero { padding: 7.5rem 0 5rem; }
  .page-hero { padding: 8.5rem 0 4rem; min-height: auto; }

  .hero-cta { flex-direction: column; align-items: center; }
  .cta-btn-group { flex-direction: column; align-items: center; }

  .problem-grid .problem-visual { order: -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stat-number { font-size: 3rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .nav-inner { padding: 0 1.25rem; }
}


/* ── Yew tree scroll animation ───────────────────── */

.yew-tree-wrap {
  position: fixed;
  right: 0;
  top: 0;
  width: clamp(180px, 20vw, 290px);
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
  opacity: 0.6;
}

.yew-tree-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.yew-branch {
  fill: none;
  stroke: var(--sage-mid);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 0.28s ease-out;
  will-change: stroke-dashoffset;
}

/* Leaves spring into view when their branch is revealed */
.yew-leaf-el {
  fill: var(--sage);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transform: scale(0);
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity   0.4s ease;
}

.yew-leaf-el.sprouted {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 960px) {
  .yew-tree-wrap { display: none; }
}
