:root {
  --ink: #18231d;
  --muted: #5c6a61;
  --leaf: #2f6b4f;
  --deep-leaf: #1c4d38;
  --moss: #d6e8c8;
  --sage: #eef4e6;
  --sun: #f4c95d;
  --clay: #b85f3d;
  --cream: #fbfaf4;
  --white: #ffffff;
  --line: #dfe5d8;
  --shadow: 0 22px 70px rgba(24, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.demo-ribbon {
  background: var(--ink);
  color: var(--white);
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  color: var(--white);
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 800;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
}

.site-nav a,
.header-call {
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--leaf);
}

.header-call {
  color: var(--white);
  background: var(--leaf);
  padding: 0.72rem 1rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: clamp(2.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem) 2rem;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.hero-text,
.section-heading > p,
.directions-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-text {
  max-width: 42rem;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24, 35, 29, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--leaf);
}

.button.primary:hover {
  background: var(--deep-leaf);
}

.button.secondary {
  color: var(--ink);
  background: var(--sun);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 42rem;
  margin: 2rem 0 0;
}

.hero-details div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-details dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-details dd {
  margin: 0.15rem 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-height: 28rem;
}

.hero-media img {
  width: 100%;
  height: min(68vh, 46rem);
  min-height: 28rem;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.season-card {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: min(18rem, calc(100% - 2rem));
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band span {
  padding: 1.1rem;
  background: var(--moss);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.4rem;
}

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

.service-grid article,
.gallery-grid article,
.about-panel,
.contact-form,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 35, 29, 0.08);
}

.service-grid article,
.gallery-grid article {
  overflow: hidden;
}

.service-grid img,
.gallery-grid img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.service-grid h3,
.service-grid p,
.gallery-grid h3,
.gallery-grid p {
  padding-inline: 1rem;
}

.service-grid h3,
.gallery-grid h3 {
  padding-top: 1rem;
}

.service-grid p,
.gallery-grid p {
  color: var(--muted);
  padding-bottom: 1rem;
}

.expanded article {
  min-height: 100%;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: start;
  background: var(--sage);
}

.about-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.about-panel p,
.about-panel li,
.contact-copy {
  color: var(--muted);
}

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

.gallery-section .eyebrow {
  color: var(--sun);
}

.gallery-section .section-heading > p {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid article {
  color: var(--ink);
}

.gallery-category {
  margin-bottom: -0.25rem;
  color: var(--clay) !important;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.directions-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: stretch;
  background: var(--sage);
}

.directions-copy,
.map-card {
  min-height: 24rem;
}

address {
  margin-bottom: 1.2rem;
  color: var(--ink);
  font-style: normal;
}

.map-card {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 2rem;
  text-align: center;
  background:
    linear-gradient(rgba(47, 107, 79, 0.82), rgba(47, 107, 79, 0.82)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1000&q=80") center / cover;
  color: var(--white);
}

.map-card span {
  margin-bottom: 0.6rem;
  color: var(--sun);
  font-weight: 850;
  text-transform: uppercase;
}

.map-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.map-card p {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-section {
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  background: var(--sun);
}

.cta-section h2 {
  max-width: 18ch;
  margin-bottom: 0.7rem;
}

.cta-section p {
  max-width: 42rem;
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: start;
}

.contact-copy a {
  font-weight: 850;
}

.fine-print,
.form-status {
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6c6;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fffef9;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 107, 79, 0.2);
  border-color: var(--leaf);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--leaf);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 5vw, 5rem);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  max-width: 44rem;
  margin: 0;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-weight: 800;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 0.9rem 0;
  }

  .hero,
  .split-section,
  .directions-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .trust-band,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow {
    margin-bottom: -0.8rem;
  }
}

@media (max-width: 620px) {
  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    max-width: 12rem;
  }

  .hero-details,
  .trust-band,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 27rem;
  }

  .cta-section {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}
