:root {
  color-scheme: light;
  --leaf: #1f5c32;
  --leaf-dark: #123c23;
  --moss: #6f7f38;
  --gold: #c79438;
  --ink: #17211a;
  --muted: #5f6b61;
  --paper: #fbfbf4;
  --white: #ffffff;
  --line: #d7ddcf;
  --shadow: 0 22px 50px rgba(13, 31, 18, 0.16);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(14, 29, 16, 0.82), rgba(14, 29, 16, 0.22));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.brand span {
  max-width: 19rem;
}

.brand img {
  width: 48px;
  height: 49px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: 96px clamp(20px, 7vw, 92px) 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(10, 23, 13, 0.82), rgba(10, 23, 13, 0.42) 48%, rgba(10, 23, 13, 0.16)),
    url("assets/garden-hero.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(940px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.1vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-location {
  margin: 22px 0 0;
  font-size: clamp(1.3rem, 3vw, 2.15rem);
  font-weight: 700;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
  max-width: 700px;
}

.credential-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.credential-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  background: var(--gold);
  color: #1c1407;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.section {
  padding: clamp(56px, 8vw, 98px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.status-band {
  background: var(--leaf-dark);
  color: var(--white);
}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.status-label {
  margin: 0;
  color: #d5e6c7;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-message {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 800;
  text-align: right;
}

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

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(17, 43, 25, 0.06);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 1.25rem;
}

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

.about-section {
  background: #eef3e9;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-copy p,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.facts-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.facts-list div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.facts-list dt {
  color: var(--leaf);
  font-weight: 800;
}

.facts-list dd {
  margin: 0;
}

.image-pair {
  display: block;
}

.team-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-photo {
  aspect-ratio: 981 / 399;
}

.contact-section {
  background: var(--paper);
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 43, 25, 0.08);
}

.field {
  display: grid;
  gap: 7px;
  color: var(--leaf-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.field-wide,
.form-status,
.contact-form .button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bbc6b6;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fffef8;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(199, 148, 56, 0.35);
  border-color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  background: var(--leaf-dark);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 16px;
    min-height: 0;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand span {
    max-width: 10.5rem;
  }

  .hero {
    min-height: 76svh;
    padding-top: 100px;
    background-position: 54% center;
  }

  .credential-strip span {
    font-size: 0.86rem;
  }

  .status-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-message {
    text-align: left;
  }

  .service-grid,
  .about-layout,
  .contact-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: center;
    padding-inline: 14px;
  }

  .brand {
    gap: 8px;
    font-size: 0.78rem;
  }

  .brand img {
    width: 38px;
    height: 39px;
  }

  .brand span {
    max-width: 8.2rem;
  }

  .site-nav {
    gap: 8px 9px;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.05rem);
    max-width: 100%;
  }

  .credential-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .credential-strip span {
    max-width: 100%;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .service-card {
    min-height: 0;
    padding: 20px;
  }
}
