:root {
  color-scheme: light;
  --soil: #4b3a2a;
  --leaf: #2c6b4f;
  --mint: #d7efe3;
  --sun: #f4c27a;
  --sky: #f2f7f5;
  --ink: #1e1f1c;
  --muted: #5b6360;
  --card: #ffffff;
  --line: #e3e9e5;
  --shadow: 0 22px 50px rgba(36, 45, 42, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  color-scheme: light;
  background: radial-gradient(circle at top left, rgba(244, 194, 122, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(44, 107, 79, 0.2), transparent 45%),
    var(--sky);
  line-height: 1.6;
  -ms-overflow-style: none;
  scrollbar-width: none;
  animation: page-fade 0.6s ease both;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.dark {
  color-scheme: dark;
  --soil: #e1c7a8;
  --leaf: #6fc6a0;
  --mint: #1b2a24;
  --sun: #c79b54;
  --sky: #0f1412;
  --ink: #f2f6f2;
  --muted: #b4bcb8;
  --card: #151c19;
  --line: #23302b;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  background: radial-gradient(circle at top left, rgba(111, 198, 160, 0.18), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(199, 155, 84, 0.22), transparent 45%),
    var(--sky);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 194, 122, 0.85);
  outline-offset: 3px;
  border-radius: 12px;
}

.site-header {
  padding: 32px 6vw 80px;
  animation: slide-down 0.7s ease both;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--leaf), #214a36);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 26px;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-tag {
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toggle {
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(44, 107, 79, 0.4);
}

.phone {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-weight: 600;
  border: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 12px 24px rgba(44, 107, 79, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(44, 107, 79, 0.3);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(44, 107, 79, 0.22);
}

.btn.ghost {
  background: transparent;
  color: var(--leaf);
  border: 1px solid rgba(44, 107, 79, 0.3);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(44, 107, 79, 0.08);
}

.hero {
  margin-top: 56px;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-media img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.hero-media-card {
  background: var(--card);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--leaf);
  font-weight: 600;
}

.lead {
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 28px;
}

.trust {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.trust h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.trust p {
  font-size: 14px;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.card-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--leaf);
}

.card-text {
  font-size: 18px;
}

.card-highlight {
  background: var(--mint);
  border-radius: 18px;
  padding: 14px 18px;
  display: grid;
  gap: 4px;
}

.card-highlight strong {
  font-size: 20px;
}

.card-hours {
  font-size: 14px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

main {
  background: #fff;
  border-radius: 40px 40px 0 0;
  padding: 80px 6vw 40px;
  box-shadow: 0 -22px 60px rgba(26, 31, 29, 0.08);
  animation: rise 0.7s ease both;
  animation-delay: 0.1s;
}

body.dark main {
  background: #111714;
  box-shadow: 0 -22px 60px rgba(0, 0, 0, 0.3);
}

.section {
  margin-bottom: 80px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service {
  padding: 22px;
  border-radius: 20px;
  background: var(--sky);
  border: 1px solid var(--line);
  min-height: 150px;
}

.gallery {
  margin-top: -10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.02);
}

.gallery-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(36, 45, 42, 0.2);
}

.gallery-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.service h3 {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(135deg, rgba(215, 239, 227, 0.7), rgba(244, 194, 122, 0.35));
  border-radius: 30px;
  padding: 44px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.pillars h3 {
  margin-bottom: 8px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.contact-card {
  margin-top: 18px;
  background: var(--sky);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
}

.label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 6px;
}

.hours {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.contact-form {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(44, 107, 79, 0.45);
  box-shadow: 0 0 0 3px rgba(44, 107, 79, 0.15);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  padding: 26px 6vw 40px;
  background: #f4f7f5;
  text-align: center;
  color: var(--muted);
  animation: rise 0.7s ease both;
  animation-delay: 0.2s;
}

body.dark .footer {
  background: #0c120f;
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 60px;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  main {
    padding: 60px 6vw 30px;
  }

  .hero {
    gap: 28px;
  }

  .hero-media img {
    min-height: 220px;
  }

  .gallery-grid img {
    height: 200px;
  }

  .section {
    margin-bottom: 60px;
  }

  .highlight {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-card,
  .hero-media,
  .section-head,
  .service,
  .pillars > div,
  .contact-form {
    animation: rise 0.6s ease both;
  }

  .gallery-grid figure {
    animation: page-fade 0.6s ease both;
  }

  .hero-card {
    animation-delay: 0.1s;
  }

  .service:nth-child(2) {
    animation-delay: 0.1s;
  }

  .service:nth-child(3) {
    animation-delay: 0.2s;
  }

  .service:nth-child(4) {
    animation-delay: 0.3s;
  }

  .service:nth-child(5) {
    animation-delay: 0.4s;
  }

  .service:nth-child(6) {
    animation-delay: 0.5s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
