:root {
  --bg: #FAF9F6;
  --bg-alt: #F2F0EB;
  --bg-dark: #1C1C1A;
  --fg: #1C1C1A;
  --fg-muted: #6B6860;
  --fg-light: #9A968E;
  --accent: #7A8B6F;
  --accent-light: #A3B396;
  --accent-subtle: #E8EDE4;
  --border: #E4E1DA;
  --border-light: #EEEDEA;
  --white: #FFFFFF;
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1200px;
  --section-padding: clamp(4rem, 8vw, 8rem);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: calc(var(--section-padding) + 4rem) 2rem var(--section-padding);
  background: var(--bg);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: var(--accent-subtle);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* SERVICES */
.services {
  padding: var(--section-padding) 2rem;
  background: var(--white);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-light);
  font-weight: 400;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* APPROACH */
.approach {
  padding: var(--section-padding) 2rem;
  background: var(--bg-dark);
  color: var(--bg);
}

.approach-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.approach .section-label {
  color: var(--accent-light);
}

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

.approach .section-title em {
  color: var(--accent-light);
}

.approach-body {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(250, 249, 246, 0.65);
  margin-top: 1.25rem;
}

.approach-principles {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.principle {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.principle h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.principle p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250, 249, 246, 0.55);
}

/* AUDIENCE */
.audience {
  padding: var(--section-padding) 2rem;
  background: var(--bg);
}

.audience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.audience .section-title {
  margin-bottom: 3.5rem;
  max-width: 550px;
}

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

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 2px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: var(--section-padding) 2rem;
  background: var(--accent-subtle);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.closing-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.closing-accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-light);
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #6a7a5f;
  border-color: #6a7a5f;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-alt);
  color: var(--fg);
}

.btn-dark {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn-dark:hover {
  opacity: 0.85;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--fg-muted);
  border-color: rgba(28, 28, 26, 0.25);
}

.btn-ghost-dark:hover {
  background: rgba(28, 28, 26, 0.06);
  color: var(--fg);
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: #6a7a5f;
}

/* CLOSING CTA */
.closing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* PRICING */
.pricing {
  padding: var(--section-padding) 2rem;
  background: var(--bg-alt);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 2rem;
}

.pricing-tier {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--fg-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-top: 2.5rem;
}

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq {
  padding: var(--section-padding) 2rem;
  background: var(--bg);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--fg-light);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.75rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* FORM PAGES */
.form-page {
  padding-top: calc(4rem + 65px);
  padding-bottom: var(--section-padding);
  min-height: 100vh;
  background: var(--bg);
}

.form-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.form-header {
  margin-bottom: 3.5rem;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

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

.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
}

.form-label-note {
  font-weight: 400;
  color: var(--fg-muted);
}

.required {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--fg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-light);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239A968E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s;
}

.checkbox-label:hover {
  border-color: var(--accent-light);
  background: var(--accent-subtle);
  color: var(--fg);
}

.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-submit-note {
  font-size: 0.82rem;
  color: var(--fg-light);
}

.form-error-banner {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: #fef3f2;
  border: 1px solid #fda29b;
  border-radius: 2px;
  font-size: 0.88rem;
  color: #b42318;
}

.form-success {
  text-align: center;
  padding: 4rem 2rem;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 1.75rem;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.form-success-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.form-success-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* INTAKE FORM */
.intake-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-tagline {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .closing-cta {
    flex-direction: column;
  }

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

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

  .intake-form {
    padding: 1.5rem;
  }
}