/* ---------- Design tokens ---------- */
:root {
  --sage-900: #1f3d2e;
  --sage-700: #2f6b4f;
  --sage-500: #4f9d74;
  --terracotta-500: #c97c5d;
  --terracotta-600: #b3654a;
  --cream-50: #fbf7f1;
  --cream-100: #f2eae0;
  --charcoal-900: #2b2a26;
  --charcoal-600: #5b584f;
  --white: #ffffff;

  --font-heading: "Poppins", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --max-width: 1140px;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(59, 74, 62, 0.08);
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

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

section {
  padding: 88px 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--sage-900);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.accent {
  font-style: italic;
  font-weight: 600;
  color: var(--terracotta-500);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-bottom: 12px;
}

.eyebrow-light {
  color: #e0a184;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-intro p {
  color: var(--charcoal-600);
  font-size: 1.05rem;
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bg-alt {
  background: var(--cream-100);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--terracotta-500);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-600);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--sage-500);
  color: var(--sage-900);
}

.btn-outline-dark:hover {
  background: var(--sage-900);
  color: var(--white);
  border-color: var(--sage-900);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-50);
  border-bottom: 1px solid rgba(59, 74, 62, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--sage-900);
}

.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal-900);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--sage-700);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sage-900);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--sage-900), var(--sage-700));
  color: var(--white);
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  height: 340px;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta a {
  color: inherit;
  text-decoration: none;
}

.hero-meta a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.service-card > p {
  color: var(--charcoal-600);
  margin-bottom: 20px;
}

.service-card ul li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  color: var(--charcoal-900);
}

.service-card ul li::before {
  content: "✓";
  color: var(--sage-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- How It Works ---------- */
.process-list {
  list-style: none;
  max-width: 640px;
}

.process-step {
  position: relative;
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 21px;
  width: 2px;
  bottom: 0;
  background: var(--terracotta-500);
  opacity: 0.35;
}

.process-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  z-index: 1;
}

.process-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.process-content p {
  color: var(--charcoal-600);
}

/* ---------- Why it matters ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-card {
  padding: 8px 4px;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 18px;
}

.pain-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.pain-card p {
  color: var(--charcoal-600);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}

.price-card.featured {
  border-color: var(--terracotta-500);
  transform: translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.price-card .price-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-600);
  margin-top: 12px;
}

.price-card .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage-900);
  margin-bottom: 4px;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-600);
}

.price-card .price-for {
  color: var(--charcoal-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.price-card ul {
  flex-grow: 1;
  margin-bottom: 28px;
}

.price-card ul li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
}

.price-card ul li::before {
  content: "✓";
  color: var(--sage-500);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-footnote {
  margin-top: 40px;
  text-align: center;
  color: var(--charcoal-600);
}

.pricing-footnote a {
  color: var(--terracotta-600);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--sage-500), var(--sage-700), var(--sage-900));
  padding: 14px;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: calc(var(--radius) - 6px);
}

.about-copy p {
  color: var(--charcoal-600);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-signature {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--sage-900);
  font-size: 1.2rem;
  margin-top: 24px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(59, 74, 62, 0.12);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--sage-900);
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--terracotta-500);
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer p {
  color: var(--charcoal-600);
  margin-top: 14px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, var(--sage-900), var(--sage-700));
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ---------- Quote ---------- */
.quote-section {
  text-align: center;
}

.quote-section blockquote {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.quote-section blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--terracotta-500);
  opacity: 0.35;
  margin-bottom: -10px;
}

.quote-section p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.5;
  color: var(--sage-900);
  margin-bottom: 18px;
}

.quote-section cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-tagline {
  margin-top: 14px;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.footer-col ul li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  text-decoration: none;
  color: inherit;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 220px;
    order: -1;
  }

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

  .price-card.featured {
    transform: none;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    border-bottom: 1px solid rgba(59, 74, 62, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a:not(.btn) {
    padding: 12px 0;
    width: 100%;
  }

  .nav-links .btn {
    margin-top: 12px;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
