:root {
  /* Change these color variables if you want to quickly re-theme the whole website later. */
  --bg-page: #f6f8f4;
  --bg-soft: #eef3ec;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-strong: #ffffff;
  --line: rgba(68, 99, 56, 0.12);
  --line-strong: rgba(20, 31, 24, 0.1);
  --text-main: #18211a;
  --text-muted: #5d6b61;
  --green-main: #6f9860;
  --green-bright: #9fbe87;
  --green-deep: #365334;
  --charcoal: #141a16;
  --silver: #c7ccca;
  --shadow: 0 18px 45px rgba(28, 41, 31, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top, rgba(159, 190, 135, 0.18), transparent 26%),
    linear-gradient(180deg, #fbfcfa 0%, var(--bg-page) 42%, #f3f6f1 100%);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

/* This reusable container keeps the content centered and prevents lines from becoming too wide. */
.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

/* This adds consistent top and bottom spacing to major sections. */
.section-padding {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero-copy h1,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.section-heading p,
.hero-text,
.contact-copy p,
.service-area-copy p,
.hero-panel-copy p {
  color: var(--text-muted);
}

/* This styles all main buttons so the site looks consistent. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green-deep), var(--green-main));
  box-shadow: 0 16px 32px rgba(54, 83, 52, 0.18);
}

.button-secondary {
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid var(--line-strong);
}

.full-width {
  width: 100%;
}

.text-link {
  color: var(--green-deep);
  font-weight: 700;
}

/* The sticky header stays visible so people can always navigate or call. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 250, 0.88);
  border-bottom: 1px solid rgba(20, 26, 22, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(111, 152, 96, 0.2);
  box-shadow: 0 10px 24px rgba(28, 41, 31, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--charcoal);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), #2a342d);
}

/* The hamburger icon is hidden on desktop and shown on small screens. */
.menu-toggle {
  display: none;
  padding: 0.35rem;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--charcoal);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* The hero uses a two-column layout on larger screens for text and visual balance. */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.6rem 0 3.8rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -140px;
  top: -120px;
  background: radial-gradient(circle, rgba(159, 190, 135, 0.16), transparent 68%);
}

.hero::after {
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(199, 204, 202, 0.22), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.75rem 0;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-main));
}

.hero-panel {
  position: relative;
  padding: 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(159, 190, 135, 0.08), rgba(255, 255, 255, 0.75)),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(20, 31, 24, 0.05);
  pointer-events: none;
}

.hero-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: calc(var(--radius-lg) - 8px);
  border: 1px dashed rgba(54, 83, 52, 0.22);
  background:
    linear-gradient(135deg, rgba(159, 190, 135, 0.2), rgba(255, 255, 255, 0.7)),
    repeating-linear-gradient(
      45deg,
      rgba(54, 83, 52, 0.04),
      rgba(54, 83, 52, 0.04) 16px,
      rgba(255, 255, 255, 0.55) 16px,
      rgba(255, 255, 255, 0.55) 32px
    );
}

.hero-photo-placeholder span {
  padding: 1rem 1.2rem;
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(54, 83, 52, 0.14);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-copy {
  padding-top: 1rem;
}

.hero-panel-copy h2 {
  margin: 0 0 0.65rem;
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-panel-copy p {
  margin-bottom: 0;
}

.highlights {
  padding-bottom: 1rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight-card,
.service-card,
.photo-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 1.4rem;
}

.highlight-card h2,
.service-card h3,
.photo-caption h3,
.contact-card h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.highlight-card p,
.service-card p,
.photo-caption p,
.contact-card p {
  margin-bottom: 0;
  color: var(--text-muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0 0 1.55rem;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 190, 135, 0.18), transparent 70%);
}

/* Replace these placeholders with real service images later. */
.service-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 170px;
  margin-bottom: 1.25rem;
  color: var(--green-deep);
  background:
    linear-gradient(135deg, rgba(159, 190, 135, 0.18), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(
      -45deg,
      rgba(54, 83, 52, 0.04),
      rgba(54, 83, 52, 0.04) 14px,
      rgba(255, 255, 255, 0.6) 14px,
      rgba(255, 255, 255, 0.6) 28px
    );
  border-bottom: 1px solid rgba(54, 83, 52, 0.09);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-number {
  display: inline-block;
  margin: 0 1.55rem 1rem;
  color: var(--green-main);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3,
.service-card p {
  margin-left: 1.55rem;
  margin-right: 1.55rem;
}

.service-area {
  background: linear-gradient(180deg, rgba(159, 190, 135, 0.08), rgba(255, 255, 255, 0));
}

.service-area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  align-content: start;
}

.service-area-list span {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-card {
  overflow: hidden;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  color: var(--charcoal);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-placeholder.before {
  background:
    linear-gradient(135deg, rgba(111, 152, 96, 0.26), rgba(255, 255, 255, 0.88)),
    linear-gradient(45deg, transparent 25%, rgba(54, 83, 52, 0.04) 25%, rgba(54, 83, 52, 0.04) 50%, transparent 50%);
}

.photo-placeholder.after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(159, 190, 135, 0.4)),
    linear-gradient(45deg, transparent 25%, rgba(20, 26, 22, 0.04) 25%, rgba(20, 26, 22, 0.04) 50%, transparent 50%);
}

.photo-caption {
  padding: 1.35rem;
}

.cta-band {
  padding: 1rem 0 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(159, 190, 135, 0.16), rgba(255, 255, 255, 0.95)),
    var(--bg-card-strong);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.7rem;
}

.contact-list a {
  color: var(--green-bright);
}

.contact-card {
  padding: 1.7rem;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(20, 26, 22, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-weight: 700;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(111, 152, 96, 0.2);
  box-shadow: 0 8px 20px rgba(28, 41, 31, 0.08);
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
}

/* This button sticks near the bottom corner so mobile users can call at any time. */
.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-deep), var(--green-main));
  box-shadow: 0 12px 35px rgba(54, 83, 52, 0.24);
}

/* These classes work with JavaScript to animate content as it scrolls into view. */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

body.menu-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-grid,
  .service-area-grid,
  .contact-grid,
  .cta-band-inner,
  .highlights-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .brand-text small {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 13vw, 3.7rem);
  }

  .hero-photo-placeholder {
    min-height: 280px;
  }

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

  .photo-placeholder {
    min-height: 210px;
  }

  .floating-call {
    left: 1rem;
    right: 1rem;
    bottom: 0.85rem;
  }
}
