:root {
  --evergreen: #284738;
  --evergreen-dark: #183126;
  --sage: #728b75;
  --sage-soft: #dfe7db;
  --cream: #fcfaf4;
  --sand: #f0e6d4;
  --gold: #c79842;
  --terracotta: #b76b4d;
  --text: #243029;
  --muted: #5b675f;
  --white: #fff;
  --border: #dbd9cc;
  --shadow: 0 20px 45px rgba(31, 48, 39, 0.09);
  --radius-lg: 32px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
}

h1 {
  max-width: 690px;
  font-size: clamp(3rem, 5.5vw, 4.7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.4rem;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--evergreen);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(252, 250, 244, 0.91);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(40, 71, 56, 0.08);
  box-shadow: 0 6px 16px rgba(31, 48, 39, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--evergreen);
}

.brand-mark .mark-door {
  fill: var(--cream);
}

.brand-mark .mark-heart {
  fill: var(--gold);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}

.brand small {
  margin-top: 5px;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #4d5c54;
  font-size: 0.93rem;
  font-weight: 500;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button):focus-visible {
  color: var(--evergreen);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 29px;
  border: 0;
  border-radius: 999px;
  background: var(--evergreen);
  box-shadow: 0 8px 17px rgba(40, 71, 56, 0.16);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #355846;
  transform: translateY(-1px);
}

.button-small {
  min-height: 45px;
  padding: 11px 23px;
}

.button-light {
  background: var(--white);
  box-shadow: none;
  color: var(--evergreen);
}

.button-light:hover,
.button-light:focus-visible {
  background: #f6f2e7;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 76px;
}

.hero-glow {
  position: absolute;
  right: -150px;
  top: -180px;
  width: 670px;
  height: 670px;
  border-radius: 50%;
  background: radial-gradient(circle, #e7dfcc 0%, rgba(240, 230, 212, 0) 67%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 46px;
}

.hero-text {
  max-width: 570px;
  margin: 23px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  border-bottom: 1px solid var(--gold);
  color: var(--evergreen);
  font-weight: 600;
}

.hero-badges {
  display: flex;
  gap: 31px;
  margin-top: 52px;
  color: var(--evergreen);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-badges span {
  position: relative;
}

.hero-badges span + span::before {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-card {
  overflow: hidden;
  border-radius: 30px;
  background: #ece5d6;
  box-shadow: var(--shadow);
}

.house-scene {
  position: relative;
  height: 450px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ebe7dc 0 55%, #d4d4ba 55% 100%);
}

.sun {
  position: absolute;
  top: 48px;
  right: 62px;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: #e3c98c;
}

.home {
  position: absolute;
  right: 91px;
  bottom: 82px;
  width: 268px;
}

.roof {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  margin: 0 auto -3px;
  border-right: 155px solid transparent;
  border-bottom: 121px solid #b35c40;
  border-left: 155px solid transparent;
}

.wall {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-evenly;
  height: 152px;
  background: #f6f0e4;
}

.door {
  width: 47px;
  height: 86px;
  border-radius: 23px 23px 0 0;
  background: var(--evergreen);
}

.window {
  width: 42px;
  height: 45px;
  margin-bottom: 55px;
  border: 6px solid #e8c784;
  background: #7a988d;
}

.path {
  position: absolute;
  right: 184px;
  bottom: -10px;
  width: 61px;
  height: 105px;
  transform: perspective(140px) rotateX(24deg);
  background: #d7bd87;
}

.leaf {
  position: absolute;
  bottom: 0;
  width: 117px;
  height: 155px;
  background: #536f5b;
  clip-path: polygon(43% 0, 74% 16%, 52% 29%, 88% 39%, 54% 52%, 93% 65%, 53% 73%, 49% 100%, 37% 75%, 0 68%, 34% 53%, 4% 41%, 38% 30%, 17% 17%);
}

.leaf-one {
  left: 45px;
}

.leaf-two {
  bottom: -6px;
  left: 133px;
  width: 84px;
  height: 130px;
  background: #6f896b;
}

.welcome-note {
  padding: 26px 34px 25px;
  background: var(--white);
}

.welcome-note strong {
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.welcome-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.intro {
  padding: 82px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 76px;
  align-items: start;
}

.intro-text {
  padding: 9px 0 0 32px;
  border-left: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.83;
}

.service-notice {
  display: flex;
  align-items: start;
  gap: 36px;
  margin-top: 56px;
  padding: 28px 34px;
  border: 1px solid #d6dece;
  border-radius: var(--radius-md);
  background: #f2f4ec;
}

.service-notice strong {
  flex: 0 0 205px;
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
}

.service-notice p {
  margin: 0;
  color: #48574e;
}

.features {
  padding: 88px 0 93px;
}

.section-heading {
  max-width: 630px;
}

.section-heading.centered {
  margin: 0 auto 52px;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 284px;
  padding: 30px 27px;
  border: 1px solid #e7e1d3;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(31, 48, 39, 0.06);
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 27px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--evergreen);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: 1.31rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.amenities-panel {
  padding: 39px 42px;
  border: 1px solid #e7e1d3;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(31, 48, 39, 0.04);
}

.amenities-intro {
  margin: 0 0 25px;
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-list li,
.resource-list li,
.simple-list li {
  position: relative;
  padding-left: 29px;
  color: #44544b;
}

.amenity-list li::before,
.resource-list li::before,
.simple-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.gallery {
  padding: 88px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #e7e1d3;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-feature {
  grid-column: 1 / -1;
}

.gallery-card figcaption {
  padding: 17px 20px 19px;
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  margin-bottom: 4px;
  color: var(--evergreen-dark);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.22rem;
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.89rem;
}

.gallery-note {
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.partnerships {
  padding: 88px 0;
  background: #f4f2e9;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 66px;
  align-items: center;
}

.partners-intro {
  margin: 25px 0 0;
  color: var(--muted);
}

.partners-intro strong {
  color: var(--evergreen);
}

.resource-card {
  padding: 35px 39px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(31, 48, 39, 0.05);
}

.resource-card h3 {
  margin-bottom: 25px;
  font-size: 1.38rem;
}

.resource-list,
.simple-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eligibility {
  padding: 92px 0;
  background: var(--white);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 25px;
}

.serve-card,
.safety-card {
  padding: 42px 38px;
  border-radius: 24px;
}

.serve-card {
  background: #eef0e5;
}

.safety-card {
  border: 1px solid #e4d9c4;
  background: #fffaf1;
}

.serve-card h2 {
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.safety-card h3 {
  margin-bottom: 27px;
  font-size: 1.55rem;
}

.safety-card .simple-list li::before {
  background: var(--terracotta);
}

.values {
  padding: 88px 0;
}

.values-panel {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 60px;
  align-items: center;
  padding: 59px 70px;
  border-radius: var(--radius-lg);
  background: #eef0e5;
}

.check-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #44544b;
  font-weight: 500;
}

.check-list li {
  position: relative;
  padding-left: 36px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--evergreen);
  color: var(--white);
  content: "\2713";
  font-size: 0.74rem;
}

.process {
  padding: 86px 0 93px;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.step {
  text-align: center;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f2ebd9;
  color: var(--evergreen);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  max-width: 302px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.93rem;
}

.cta {
  padding: 68px 0;
  background: var(--evergreen);
  color: var(--white);
  text-align: center;
}

.cta .eyebrow {
  color: #cfbe91;
}

.cta h2 {
  max-width: 730px;
  margin: 0 auto 31px;
  color: var(--white);
}

.contact {
  padding: 92px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 22px;
}

.contact-info > p:not(.eyebrow):not(.contact-note) {
  max-width: 460px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 19px;
  margin: 40px 0 33px;
}

.contact-details a,
.contact-details div {
  color: var(--evergreen-dark);
  font-weight: 600;
}

.contact-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-note {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.86rem;
}

.inquiry-form {
  padding: 40px;
  border: 1px solid #e9e2d4;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(31, 48, 39, 0.045);
}

.inquiry-form h3 {
  margin-bottom: 7px;
  font-size: 1.7rem;
}

.inquiry-panel h3 + p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.89rem;
}

.inquiry-panel {
  align-self: center;
}

.inquiry-panel .eyebrow {
  margin-bottom: 14px;
}

.inquiry-form .intake-button {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid #e8e0d1;
  background: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-grid p {
  margin: 0;
}

.footer-brand .brand-mark {
  width: 39px;
  height: 39px;
}

.footer-brand strong {
  font-size: 1.05rem;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition: none !important;
    animation: none !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .partnerships-grid,
  .eligibility-grid,
  .values-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-badges {
    justify-content: center;
  }

  .hero-card {
    max-width: 530px;
    margin: 0 auto;
  }

  .intro-grid,
  .contact-grid {
    gap: 38px;
  }

  .intro-text {
    padding: 0;
    border: 0;
  }

  .service-notice {
    flex-direction: column;
    gap: 15px;
  }

  .service-notice strong {
    flex-basis: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-feature {
    grid-column: 1 / -1;
  }

  .gallery-card:last-of-type {
    grid-column: 1 / -1;
  }

  .values-panel {
    padding: 48px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .js-enabled .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 4px 10px 12px;
  }

  .nav-toggle span:not(.sr-only) {
    width: 26px;
    height: 2px;
    background: var(--evergreen);
  }

  .js-enabled .nav-links {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 23px;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
    box-shadow: 0 14px 22px rgba(31, 48, 39, 0.07);
  }

  .js-enabled .nav-links.open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    padding: 13px 0;
  }

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

  .hero {
    padding: 46px 0 58px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.1rem);
  }

  .hero-actions {
    flex-direction: column;
    gap: 22px;
  }

  .hero-badges {
    gap: 23px;
    margin-top: 40px;
    font-size: 0.68rem;
  }

  .hero-badges span + span::before {
    left: -13px;
  }

  .house-scene {
    height: 315px;
  }

  .home {
    right: 49px;
    bottom: 54px;
    width: 178px;
  }

  .roof {
    border-right-width: 103px;
    border-bottom-width: 82px;
    border-left-width: 103px;
  }

  .wall {
    height: 102px;
  }

  .door {
    width: 34px;
    height: 60px;
  }

  .window {
    width: 29px;
    height: 32px;
    margin-bottom: 37px;
    border-width: 4px;
  }

  .sun {
    top: 35px;
    right: 36px;
    width: 50px;
    height: 50px;
  }

  .leaf {
    left: 20px;
    width: 77px;
    height: 104px;
  }

  .leaf-two {
    left: 76px;
    width: 62px;
    height: 92px;
  }

  .path {
    right: 102px;
    width: 48px;
    height: 77px;
  }

  .intro,
  .features,
  .gallery,
  .partnerships,
  .eligibility,
  .process,
  .contact {
    padding: 62px 0;
  }

  .feature-grid,
  .gallery-grid,
  .amenity-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .amenities-panel,
  .resource-card,
  .serve-card,
  .safety-card {
    padding: 29px 22px;
  }

  .service-notice {
    margin-top: 36px;
    padding: 25px 22px;
  }

  .gallery-feature,
  .gallery-card:last-of-type {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
  }

  .values {
    padding: 62px 0;
  }

  .values-panel {
    gap: 33px;
    padding: 37px 27px;
  }

  .steps {
    gap: 42px;
  }

  .cta {
    padding: 55px 0;
  }

  .inquiry-form {
    padding: 27px 20px;
  }

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