:root {
  --color-forest: #3f5628;
  --color-leaf: #7f9655;
  --color-gold: #c4a528;
  --color-moss: #657b46;
  --color-lavender: #ddd5ec;
  --color-lavender-deep: #77618d;
  --color-cream: #fbf8ef;
  --color-cream-deep: #f3eddd;
  --color-sage: #e9efdf;
  --color-ink: #303426;
  --color-muted: #6e705f;
  --color-white: #ffffff;
  --color-line: rgba(63, 86, 40, 0.16);
  --shadow-soft: 0 18px 45px rgba(46, 51, 39, 0.12);
  --shadow-card: 0 12px 30px rgba(46, 51, 39, 0.09);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-section: clamp(4.5rem, 8vw, 7.5rem);
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--color-forest);
  color: var(--color-white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 239, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(190px, 25vw, 280px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.7rem);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.button) {
  color: var(--color-ink);
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"] {
  color: var(--color-forest);
}

.nav-photo {
  display: none;
}

.nav-photo-card {
  display: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  color: var(--color-forest);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--color-gold);
  color: #282511;
  box-shadow: 0 12px 24px rgba(133, 108, 12, 0.18);
}

.button-secondary {
  background: var(--color-forest);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(63, 86, 40, 0.16);
}

.button-ghost {
  border-color: rgba(119, 97, 141, 0.28);
  color: var(--color-forest);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(38, 61, 23, 0.88) 0%, rgba(63, 86, 40, 0.68) 42%, rgba(119, 97, 141, 0.18) 100%),
    var(--hero-image);
  background-position: center right;
  background-size: cover;
  color: var(--color-white);
}

.hero::after,
.section-wave::after {
  position: absolute;
  right: -12vw;
  bottom: -54px;
  width: 62vw;
  height: 130px;
  border-top: 2px solid rgba(195, 174, 16, 0.58);
  border-radius: 50%;
  content: "";
  transform: rotate(-4deg);
}

.hero-content {
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  align-items: center;
  padding: 7.5rem 0 6rem;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 860px;
}

h2 {
  color: var(--color-forest);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  color: var(--color-forest);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.hero-copy p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.section {
  position: relative;
  padding: var(--space-section) 0;
}

.section-light {
  background: var(--color-white);
}

.section-sage {
  background: var(--color-sage);
}

.section-lavender {
  background: linear-gradient(135deg, rgba(221, 213, 236, 0.86), rgba(251, 248, 239, 0.94));
}

.section-hummingbird {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 248, 239, 0.95), rgba(251, 248, 239, 0.76)),
    url("../images/hummingbird-texture.jpeg");
  background-position: center right;
  background-size: cover;
}

.section-hummingbird::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 24%, rgba(221, 213, 236, 0.38), transparent 36%);
  content: "";
}

.section-hummingbird > .container {
  position: relative;
}

.section-cream {
  background: var(--color-cream);
}

.section-header {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header p {
  margin: 1rem auto 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.wave-rule {
  width: min(220px, 46vw);
  height: 16px;
  margin: 1rem auto 0;
  background:
    radial-gradient(50% 100% at 50% 100%, transparent 56%, rgba(119, 97, 141, 0.55) 57% 64%, transparent 65%) 0 0 / 42px 16px repeat-x;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.pillar {
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-lavender);
  color: var(--color-lavender-deep);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-copy p {
  color: var(--color-muted);
  margin: 1rem 0 0;
}

.split-copy ul {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  z-index: 0;
  border: 2px solid rgba(195, 174, 16, 0.42);
  border-radius: var(--radius);
  content: "";
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.quote-placeholder {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 5px solid var(--color-gold);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.centered-cta {
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding: clamp(1.4rem, 4vw, 2rem);
  text-align: center;
  background: rgba(221, 213, 236, 0.44);
  border: 1px solid rgba(119, 97, 141, 0.18);
  border-radius: var(--radius);
}

.centered-cta p {
  margin: 0 auto 1.25rem;
  color: var(--color-muted);
}

.service-note {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.price-line {
  margin: 0.9rem 0 0;
  color: var(--color-forest);
  font-weight: 900;
}

.quote-placeholder p {
  margin: 0;
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.35;
}

.quote-placeholder span {
  display: block;
  margin-top: 0.9rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(119, 97, 141, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.testimonial-card::before {
  position: absolute;
  top: 0.35rem;
  right: 1.1rem;
  color: rgba(119, 97, 141, 0.16);
  content: "\"";
  font-family: var(--font-heading);
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: 1;
}

.testimonial-card::after {
  display: block;
  width: 4.75rem;
  height: 0.75rem;
  margin: 0 0 1.35rem;
  border-top: 2px solid rgba(195, 165, 40, 0.56);
  border-radius: 50%;
  content: "";
}

.testimonial-card p {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.testimonial-feature {
  max-width: 920px;
  margin: 0 auto;
}

.testimonial-feature p {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.program-card {
  display: flex;
  flex-direction: column;
}

.program-card .card-body {
  flex: 1;
}

.list-check {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--color-muted);
}

.list-check li::before {
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  content: "";
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--color-forest);
  color: var(--color-white);
}

.cta-band::before {
  position: absolute;
  left: -12vw;
  top: -58px;
  width: 70vw;
  height: 150px;
  border-bottom: 2px solid rgba(195, 174, 16, 0.6);
  border-radius: 50%;
  content: "";
  transform: rotate(3deg);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.cta-inner p {
  max-width: 650px;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  background: #2d3f1d;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--color-white);
}

.site-footer h2 {
  font-size: 1.7rem;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

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

.footer-resume {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--color-gold);
  font-weight: 900;
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-social {
  margin-top: 0.75rem;
}

.contact-social .social-icon {
  border-color: rgba(63, 86, 40, 0.2);
  color: var(--color-forest);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.interior-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(135deg, var(--color-sage), var(--color-lavender));
  overflow: hidden;
}

.interior-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.interior-hero h1 {
  color: var(--color-forest);
}

.interior-hero p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
}

.contact-card a {
  color: var(--color-forest);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .nav-photo-card {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    margin-top: 0.9rem;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .nav-photo-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(63, 86, 40, 0.08), rgba(63, 86, 40, 0.46)), radial-gradient(circle at 85% 15%, rgba(221, 213, 236, 0.4), transparent 42%);
    content: "";
  }

  .nav-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    filter: saturate(0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .site-nav .button {
    margin-top: 0.5rem;
  }

  .grid-3,
  .grid-2,
  .testimonial-grid,
  .split,
  .split-reverse,
  .interior-hero .container,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-reverse .image-frame {
    order: -1;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero-content {
    min-height: 560px;
    padding-top: 5rem;
  }

  .image-frame::before {
    inset: 0.65rem -0.45rem -0.65rem 0.65rem;
  }

  .image-frame img {
    min-height: 330px;
  }
}
