:root {
  --bg: #f4efe8;
  --bg-alt: #ede6d8;
  --fg: #2c2c2c;
  --fg-muted: #6b6b6b;
  --accent: #3d5a47;
  --accent-warm: #c4843a;
  --accent-light: #e8ddd0;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(61,90,71,0.12);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav__brand {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 14px;
  color: var(--fg-muted);
}
.nav__book-btn {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav__book-btn:hover { opacity: 0.85; }

/* Hero */
.hero {
  background: var(--accent);
  color: #fff;
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 80px;
}
.hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.hero__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}
.hero__lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__credential {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero__illustration {
  width: 100%;
}
.dog-ring {
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.dog-ring__inner {
  width: 100%;
}
.dog-ring svg {
  width: 100%;
  height: auto;
}
.hero__stat-row {
  display: flex;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  justify-content: space-around;
}
.hero__stat {
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.hero__wave {
  line-height: 0;
  margin-top: -2px;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Philosophy */
.philosophy {
  background: var(--bg);
  padding: 100px 40px;
}
.philosophy__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  margin-bottom: 16px;
  font-weight: 500;
}
.philosophy__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--accent);
  max-width: 600px;
  margin-bottom: 20px;
}
.philosophy__body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 60px;
}
.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar__icon {
  margin-bottom: 16px;
}
.pillar__title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pillar__text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Services */
.services {
  background: var(--accent);
  color: #fff;
  padding: 100px 40px;
}
.services__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.services__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 56px;
  line-height: 1.2;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
}
.service-card--cta {
  background: rgba(196,132,58,0.15);
  border-color: rgba(196,132,58,0.4);
}
.service-card__number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  margin-bottom: 16px;
  line-height: 1;
}
.service-card--cta .service-card__number {
  color: var(--accent-warm);
  opacity: 1;
}
.service-card__title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Story */
.story {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}
.story__portrait {
  width: 100%;
}
.story__portrait svg {
  width: 100%;
  height: auto;
}
.story__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  margin-bottom: 16px;
  font-weight: 500;
}
.story__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 28px;
}
.story__body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story__stat {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(61,90,71,0.2);
}
.story__stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Outcomes */
.outcomes {
  background: var(--bg);
  padding: 100px 40px;
}
.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.outcome__quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 12px;
}
.outcome__source {
  font-size: 13px;
  color: var(--fg-muted);
}
.outcomes__footer {
  margin-top: 60px;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(61,90,71,0.12);
}
.outcomes__footer p {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  background: var(--accent);
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing__headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}
.closing__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.closing__phone {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.closing__sep {
  color: rgba(255,255,255,0.4);
}
.closing__area {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Footer */
.footer {
  background: var(--bg-alt);
  padding: 40px;
  border-top: 1px solid rgba(61,90,71,0.12);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.footer__tagline {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.footer__meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .dog-ring { max-width: 280px; margin: 0 auto; }
  .philosophy__pillars { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .outcomes__grid { grid-template-columns: 1fr; gap: 32px; }
  .story__inner { grid-template-columns: 1fr; }
  .story__portrait { max-width: 280px; margin: 0 auto; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .philosophy, .story, .outcomes, .closing { padding: 72px 24px; }
  .services { padding: 72px 24px; }
}