/* Havenbrook Landing Page Styles */
:root {
  --cream: #F7F4EF;
  --cream-dark: #EDE8DF;
  --forest: #2C3E30;
  --forest-mid: #3D5440;
  --sage: #7D9E8C;
  --sage-light: #A8BFB2;
  --terracotta: #C4704F;
  --warm-gray: #6B6560;
  --text: #2C3E30;
  --muted: #8A847C;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.25rem 3rem;
  border-bottom: 1px solid rgba(44,62,48,0.08);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-tag {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 65px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 4rem;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--forest);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 420px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-art-oval {
  position: absolute;
  width: 380px;
  height: 460px;
  top: -20px;
  left: 20px;
  background: var(--sage-light);
  border-radius: 60% 40% 50% 50% / 55% 45% 55% 45%;
  opacity: 0.35;
}
.hero-art-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  top: 60px;
  right: 0;
  background: var(--forest);
  border-radius: 50%;
  opacity: 0.15;
}
.hero-art-line {
  position: absolute;
  bottom: 0;
  left: 60px;
  width: 4px;
  height: 200px;
  background: linear-gradient(to top, var(--terracotta), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

/* INTRO STATS */
.intro {
  background: var(--forest);
  padding: 4rem 3rem;
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.intro-stat {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: rgba(247,244,239,0.7);
  line-height: 1.5;
  font-weight: 300;
}
.intro-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.intro-divider {
  width: 1px;
  height: 80px;
  background: rgba(247,244,239,0.15);
}

/* SECTION LABEL */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* APPROACH */
.approach {
  padding: 7rem 3rem;
  background: var(--cream);
}
.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.approach-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.approach-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 620px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 4rem;
}
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.pillar {
  border-top: 2px solid var(--sage-light);
  padding-top: 1.5rem;
}
.pillar-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.pillar-text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* CARE */
.care {
  padding: 6rem 3rem;
  background: var(--cream-dark);
}
.care-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.care-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.5rem;
  border: 1px solid rgba(125,158,140,0.2);
}
.care-icon {
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.care-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.care-card-text {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* LOCATION */
.location {
  padding: 7rem 3rem;
  background: var(--forest);
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.location .section-label { color: var(--sage-light); }
.location-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.location-body {
  font-size: 1rem;
  color: rgba(247,244,239,0.65);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}
.location-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.county-tag {
  background: rgba(247,244,239,0.1);
  color: var(--sage-light);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(247,244,239,0.12);
}

/* CLOSING */
.closing {
  padding: 8rem 3rem;
  background: var(--cream);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}
.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--terracotta);
  margin: 0 auto 3rem;
}
.closing-contact {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--cream-dark);
  padding: 3rem;
  border-top: 1px solid rgba(44,62,48,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-meta {
  text-align: right;
}
.footer-license {
  font-size: 0.8rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}
.footer-reg {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-tag { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
    gap: 2rem;
  }
  .hero-art { width: 260px; height: 260px; margin: 0 auto; }
  .hero-art-oval { width: 230px; height: 280px; }
  .hero-art-circle { width: 160px; height: 160px; }
  .intro { padding: 3rem 1.5rem; }
  .intro-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .intro-divider { width: 40px; height: 1px; }
  .approach { padding: 4rem 1.5rem; }
  .approach-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .care { padding: 4rem 1.5rem; }
  .care-grid { grid-template-columns: 1fr; }
  .location { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .footer-meta { text-align: left; }
  .footer-reg { text-align: left; }
}