:root {
  --cream: #f7f1e6;
  --cream-deep: #efe3d1;
  --forest: #1e684d;
  --forest-dark: #154833;
  --leaf: #78a848;
  --leaf-deep: #3f8d53;
  --earth: #bb845f;
  --earth-soft: #d9b08f;
  --sun: #efb13a;
  --sky: #b7d9e9;
  --text: #1b2a22;
  --muted: #57675d;
  --line: rgba(30, 104, 77, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Satoshi", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 177, 58, 0.16), transparent 26rem),
    linear-gradient(180deg, #faf5ec 0%, #f2eadf 100%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem clamp(2rem, 8vw, 7rem);
  background: #122319;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-stuck {
  background: #122319;
  box-shadow: 0 16px 32px rgba(9, 19, 14, 0.24);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header-main {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Satoshi", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff7ea;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 700;
  color: rgba(255, 248, 239, 0.92);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: transparent;
  border: 0;
  position: relative;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: #efb13a;
}

.nav-cta {
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #efb13a, #c96e1c);
  color: #fff8ee;
  box-shadow: 0 12px 24px rgba(201, 110, 28, 0.24);
}

.nav-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #f4be52, #d5751f);
}

.site-header.is-stuck .site-nav a {
  background: transparent;
  border: 0;
}

.site-header.is-stuck .nav-cta {
  background: linear-gradient(135deg, #efb13a, #c96e1c);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  background: #efb13a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta::after {
  display: none;
}

.cta-mobile-label {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 75svh;
  overflow: clip;
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.45), rgba(247, 241, 230, 0.8));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media-inner {
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 34, 24, 0.8) 0%, rgba(16, 34, 24, 0.52) 38%, rgba(16, 34, 24, 0.18) 68%, rgba(16, 34, 24, 0.08) 100%),
    linear-gradient(180deg, rgba(245, 236, 222, 0.06) 0%, rgba(245, 236, 222, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 7.5rem 0 3rem;
  min-height: 75svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.hero-eyebrow {
  color: rgba(255, 246, 232, 0.88);
}

.hero-brand {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 8ch;
  color: #fff9ef;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.hero h1,
.section-intro h2,
.contact-section h2 {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  max-width: 13ch;
  color: #fff4e6;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-text,
.section-intro p:last-child,
.services-list p,
.schedule-options p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 40rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 246, 236, 0.88);
}

.hero-service-area {
  margin: 1rem 0 0;
  color: rgba(255, 246, 236, 0.94);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  background: var(--forest);
  color: #fff;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
}

.button-secondary {
  background: rgba(255, 249, 239, 0.2);
  color: #fff7ea;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 249, 239, 0.3);
  color: #ffffff;
}

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

.section {
  padding: 5.5rem 0 0;
}

.services-section {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  padding-top: 6.5rem;
}

.section-intro {
  max-width: 42rem;
}

.section-intro h2,
.contact-section h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.section-intro p:last-child {
  margin-top: 1rem;
}

.services-list,
.schedule-options,
.testimonials-list,
.contact-info-list {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

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

.schedule-options,
.testimonials-list,
.contact-info-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-area-map {
  margin-top: 2rem;
}

.service-area-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(30, 104, 77, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 239, 228, 0.92));
  box-shadow:
    0 10px 24px rgba(21, 72, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.service-area-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: 0;
}

.service-area-map-note {
  margin: 0.95rem 0 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.schedule-availability {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.6rem;
  margin-bottom: 1.4rem;
  padding-left: 1rem;
  border-left: 4px solid rgba(30, 104, 77, 0.32);
}

.schedule-availability-label {
  margin: 0;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-availability-text {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.services-list article,
.schedule-options div,
.testimonials-list article,
.contact-info-list article {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 1.05rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 239, 228, 0.9));
  box-shadow:
    0 10px 24px rgba(21, 72, 51, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.services-list article::before,
.schedule-options div::before,
.testimonials-list article::before,
.contact-info-list article::before {
  display: none;
}

.services-list article:hover,
.schedule-options div:hover,
.testimonials-list article:hover,
.contact-info-list article:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 34px rgba(21, 72, 51, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 0, 0, 0.28);
}

.service-card-media {
  margin: 0 0 0.85rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(30, 104, 77, 0.14), rgba(30, 104, 77, 0.04));
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.services-list article:first-child .service-card-media img {
  object-position: center 28%;
}

.services-list article:hover .service-card-media img {
  transform: scale(1.04);
}

.services-list h3,
.schedule-options h3,
.contact-info-list h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonial-quote {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.72;
}

.testimonial-rating {
  margin: 0 0 0.8rem;
}

.testimonial-rating-stars {
  --rating-fill: 100%;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.2em;
}

.testimonial-rating-stars::before,
.testimonial-rating-stars::after {
  content: "\2605\2605\2605\2605\2605";
}

.testimonial-rating-stars::before {
  color: rgba(212, 147, 34, 0.24);
}

.testimonial-rating-stars::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-fill);
  overflow: hidden;
  color: #d49322;
  white-space: nowrap;
}

.testimonial-rating-stars.rating-35 {
  --rating-fill: 70%;
}

.testimonial-rating-stars.rating-40 {
  --rating-fill: 80%;
}

.testimonial-rating-stars.rating-45 {
  --rating-fill: 90%;
}

.testimonial-author {
  margin: 1.2rem 0 0;
  color: rgba(30, 104, 77, 0.9);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.testimonial-role {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}


.contact-form {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(30, 104, 77, 0.14);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(21, 72, 51, 0.05);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a877f;
}

.message-field {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: fit-content;
}

.why-section {
  padding-bottom: 0;
}

.contact-section {
  padding: 5.5rem 0 4rem;
}

.contact-section p {
  max-width: 38rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem min(4vw, 2rem) 1.4rem;
  background: #10261b;
  color: rgba(255, 247, 234, 0.9);
}

.footer-grid {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-family: "Satoshi", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff7ea;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 247, 234, 0.76);
  line-height: 1.7;
}

.footer-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 0.35rem;
  color: #fff7ea;
  font-size: 1rem;
}

.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 1.6rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 900px) {
  .site-header {
    gap: 0.8rem;
    padding-inline: 1rem;
  }

  .header-main {
    gap: 1.1rem;
  }

  .brand-lockup {
    font-size: 1.2rem;
  }

  .brand-lockup img {
    width: 56px;
    height: 56px;
  }

  .site-nav {
    gap: 0.2rem;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    padding: 0.72rem 0.95rem;
    font-size: 0.94rem;
  }

  .hero-copy {
    width: min(calc(100% - 1.5rem), var(--max-width));
    padding-top: 6.75rem;
    justify-content: flex-start;
  }

  .hero-brand {
    max-width: 7ch;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(1.55rem, 4.4vw, 2.2rem);
  }

  .hero-text {
    max-width: 32rem;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .button {
    min-height: 46px;
    padding: 0.85rem 1.15rem;
  }

  .services-list,
  .schedule-options,
  .testimonials-list,
  .contact-info-list,
  .contact-form {
    grid-template-columns: 1fr;
  }


  .section,
  .contact-section {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.85rem 1rem;
    overflow: visible;
  }

  .header-main {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  .brand-lockup {
    display: inline-flex;
    align-items: center;
  }

  .brand-lockup img {
    width: 64px;
    height: 64px;
  }

  .brand-lockup span {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(220px, calc(100vw - 1.5rem));
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 0.85rem;
    background: #122319;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    border-radius: 0 0 0.9rem 0.9rem;
    box-shadow: 0 18px 34px rgba(9, 19, 14, 0.2);
  }

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

  .site-nav a {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    padding: 0.65rem 0;
    font-size: 0.98rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-decoration: none;
  }

  .site-nav a:hover {
    background: transparent;
    color: #efb13a;
  }

  .site-nav a::after {
    left: 0;
    right: 0;
    bottom: 0.3rem;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
    margin-top: 0;
  }

  .nav-cta {
    min-height: 2.9rem;
    padding: 0.8rem 1.15rem;
    background: linear-gradient(135deg, #efb13a, #c96e1c);
    color: #fff8ee;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(201, 110, 28, 0.24);
    font-size: 0.98rem;
  }

  .nav-cta:hover {
    background: linear-gradient(135deg, #f4be52, #d5751f);
    color: #ffffff;
  }

  .cta-desktop-label {
    display: none;
  }

  .cta-mobile-label {
    display: inline;
  }

  .nav-toggle {
    grid-column: 4;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0.55rem;
    color: #fff7ea;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 1.35rem;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    width: min(calc(100% - 1rem), var(--max-width));
    padding: 10.2rem 0 2rem;
    min-height: 72svh;
    align-items: center;
    text-align: center;
  }

  .hero-brand {
    max-width: 4.8ch;
    font-size: clamp(3.6rem, 16vw, 5.4rem);
    line-height: 0.9;
  }

  .hero h1 {
    margin-top: 0.85rem;
    max-width: 13ch;
    font-size: clamp(1.18rem, 5.2vw, 1.55rem);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 21rem;
    margin-top: 1rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-service-area {
    max-width: 21rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .hero-actions .button {
    width: auto;
    min-width: 11rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 34, 24, 0.78) 0%, rgba(16, 34, 24, 0.46) 44%, rgba(16, 34, 24, 0.26) 100%),
      linear-gradient(180deg, rgba(245, 236, 222, 0.06) 0%, rgba(245, 236, 222, 0.18) 100%);
  }

  .section,
  .contact-section {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .section {
    padding-top: 3.25rem;
  }

  .services-section {
    margin-top: -1rem;
    padding-top: 3.5rem;
  }

  .section-intro h2,
  .contact-section h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
  }

  .services-list article,
  .schedule-options div,
  .testimonials-list article {
    padding: 1.2rem 1rem 1.25rem;
  }

  .schedule-availability {
    margin-top: 1.25rem;
    margin-bottom: 1.1rem;
    padding-left: 0.85rem;
  }

  .service-area-map-frame iframe {
    min-height: 380px;
  }

  .schedule-availability-text {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
  }

  .service-card-media {
    margin-bottom: 0.9rem;
    border-radius: 0.9rem;
  }
  .service-card-media {
    margin-bottom: 0.9rem;
    border-radius: 0.9rem;
  }

  .contact-form {
    gap: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem 0.9rem;
    border-radius: 0.85rem;
  }

  .contact-form .button {
    width: auto;
  }

  .contact-section {
    padding-top: 3.25rem;
    padding-bottom: 3rem;
  }

  .site-footer {
    margin-top: 3rem;
    padding: 2rem 1rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
