@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --green-900: #14361f;
  --green-800: #1b5e20;
  --green-700: #2e7d32;
  --green-500: #4caf50;
  --green-100: #e7f2e6;
  --cream: #f7f4ee;
  --cream-2: #efe8dc;
  --ink: #142019;
  --muted: #5c6b60;
  --white: #fffdf8;
  --line: rgba(20, 54, 31, 0.12);
  --shadow: 0 18px 50px rgba(20, 54, 31, 0.12);
  --radius: 22px;
  --container: 1160px;
  --font: "Manrope", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(76, 175, 80, 0.16), transparent 55%),
    radial-gradient(900px 400px at 100% 0%, rgba(27, 94, 32, 0.10), transparent 50%),
    linear-gradient(180deg, #fbf8f2 0%, var(--cream) 40%, #f3efe6 100%);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.75rem);
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 244, 238, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.brand span { font-size: 1.25rem; color: var(--green-800); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-800); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green-800);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.25);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:visited {
  background: var(--green-900);
  color: #fff !important;
}
.nav-links a.btn-primary {
  color: #fff !important;
}
.btn-secondary {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid rgba(27, 94, 32, 0.28);
}
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--green-900);
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 28, 16, 0.28) 0%, rgba(10, 28, 16, 0.55) 45%, rgba(10, 28, 16, 0.82) 100%),
    url("../images/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #d7efd5;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #dff0de;
  font-weight: 600;
  font-size: .95rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.banner {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.banner-inner {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  border-radius: 18px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.services-section {
  position: relative;
}

.season-toolbar {
  margin-bottom: 1.5rem;
}

.season-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .35rem;
  padding: .35rem;
  max-width: 100%;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(27, 94, 32, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(20, 54, 31, 0.06);
}

.season-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 999px;
  padding: .68rem .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.season-btn:hover {
  color: var(--green-900);
  background: rgba(27, 94, 32, 0.07);
}

.season-btn.active {
  background: linear-gradient(135deg, var(--green-800), #246b2a);
  color: #fff;
  box-shadow: 0 8px 18px rgba(27, 94, 32, 0.24);
}

.season-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.season-dot-all { background: #8a9a8e; }
.season-dot-winter { background: #6f9fc2; }
.season-dot-spring { background: #5fb866; }
.season-dot-summer { background: #d9a93a; }
.season-dot-autumn { background: #c8793d; }

.season-btn.active .season-dot {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,.2);
}

.season-hint {
  margin: .85rem 0 0;
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
  min-height: 1.35em;
}

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

.service-item {
  position: relative;
  background: linear-gradient(180deg, #fffefb 0%, #fbf8f1 100%);
  border: 1px solid rgba(27, 94, 32, 0.1);
  border-radius: 22px;
  padding: 1.25rem 1.25rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20, 54, 31, 0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-500), var(--green-800));
  opacity: 0;
  transition: opacity .25s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 54, 31, 0.12);
  border-color: rgba(27, 94, 32, 0.22);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item.is-hidden { display: none; }

.service-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .55rem;
  margin-bottom: .85rem;
}

.service-season-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.season-chip {
  display: inline-flex;
  align-items: center;
  padding: .28rem .55rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--green-100);
  color: var(--green-800);
}

.season-chip-all { background: #e8eee9; color: #3f5645; }
.season-chip-winter { background: #e7f1f7; color: #2f5f7d; }
.season-chip-spring { background: #e7f6e8; color: #2a6b30; }
.season-chip-summer { background: #f8f0d9; color: #8a6918; }
.season-chip-autumn { background: #f6ebe2; color: #8a4f22; }

.service-audience {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-top: .2rem;
}

.service-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.service-item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  flex: 1;
}

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  padding-top: .95rem;
  border-top: 1px solid rgba(27, 94, 32, 0.08);
  margin-top: auto;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 800;
  color: var(--green-800);
  font-size: .92rem;
  transition: gap .2s ease, color .2s ease;
}

.service-item:hover .service-cta {
  gap: .5rem;
  color: var(--green-900);
}

.services-empty {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(255,253,248,.9);
  border: 1px dashed rgba(27, 94, 32, 0.18);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.price {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--green-800);
  background: rgba(76, 175, 80, 0.14);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-size: .84rem;
}

.field-label {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .45rem;
}

.property-type-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .7rem;
  width: 100%;
}

.property-type-option {
  cursor: pointer;
  min-width: 0;
  display: block;
}

.property-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.property-type-option span {
  display: grid;
  gap: .15rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1.5px solid rgba(27, 94, 32, 0.18);
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.property-type-option span strong {
  color: var(--green-900);
  font-size: .98rem;
}

.property-type-option span small {
  color: var(--muted);
  font-weight: 500;
}

.property-type-option input:checked + span {
  border-color: var(--green-800);
  background: var(--green-100);
  box-shadow: 0 8px 22px rgba(27, 94, 32, 0.12);
}

.field-hint {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.service-multi {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  max-height: 12.5rem;
  overflow: auto;
  padding: .2rem .1rem .35rem;
}

.service-multi-option {
  display: block;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
}

.service-multi-option[hidden] {
  display: none !important;
}

.service-multi-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-multi-option span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(27, 94, 32, 0.18);
  background: #fff;
  color: var(--green-900);
  font-size: .9rem;
  line-height: 1.2;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.service-multi-option input:checked + span {
  border-color: var(--green-800);
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 6px 16px rgba(27, 94, 32, 0.18);
}

.service-multi-option span:hover {
  border-color: rgba(27, 94, 32, 0.4);
}

.quote-form-card .service-multi-option input:focus + span {
  outline: none;
  border-color: rgba(27, 94, 32, 0.4);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.14);
}

.other-service-field {
  display: grid;
  gap: .35rem;
  margin-top: .75rem;
  animation: otherServiceIn .22s ease;
}

.other-service-field[hidden] {
  display: none !important;
}

@keyframes otherServiceIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}

.panel {
  background: rgba(255,253,248,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.checker-result {
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  display: none;
}
.checker-result.show { display: block; }
.checker-result.ok { background: #e8f7e9; color: var(--green-900); }
.checker-result.no { background: #fff4e5; color: #7a4a00; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
  max-width: 100%;
}

.section,
.panel {
  max-width: 100%;
}
.chip {
  background: var(--cream-2);
  color: var(--green-900);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .85rem;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
}
.gallery figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-weight: 600;
}
.gallery figure:first-child { grid-row: span 2; min-height: 100%; }
.gallery figure:first-child img { min-height: 100%; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.score {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--green-800);
  line-height: 1;
}
.stars { color: #d4a017; letter-spacing: .08em; font-size: 1.1rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-card {
  background: rgba(255,253,248,.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
}
.review-card.featured {
  background: linear-gradient(180deg, #f3faf3, #fffdf8);
  border-color: rgba(27, 94, 32, 0.22);
}
.review-card p { color: var(--muted); margin: .75rem 0; }
.review-meta { font-weight: 700; color: var(--green-900); }
.review-meta span { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item {
  background: rgba(255,253,248,.9);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: var(--green-900);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { background: var(--green-100); }
.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

#quote {
  padding-top: clamp(3.25rem, 6vw, 5rem);
  padding-bottom: clamp(3.75rem, 7vw, 5.5rem);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  width: 100%;
  max-width: 100%;
  align-items: start;
}

.quote-grid > * {
  min-width: 0;
  max-width: 100%;
}

.quote-grid .section-head {
  margin-bottom: 1.25rem;
}

.quote-grid .panel {
  padding: clamp(1.15rem, 2.5vw, 1.65rem);
}

.quote-info {
  display: grid;
  gap: .85rem;
}

.quote-info-row {
  display: grid;
  gap: .2rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}

.quote-info-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.quote-info-row span {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-700);
}

.quote-info-row strong {
  color: var(--green-900);
  font-size: 1.02rem;
}

.quote-info-row em {
  font-style: normal;
  color: var(--muted);
  font-size: .92rem;
}

.quote-form-card {
  box-shadow: 0 18px 48px rgba(20, 54, 31, 0.08);
  border-color: rgba(27, 94, 32, 0.12);
}

.quote-form-title {
  margin-bottom: 1.15rem;
  padding-bottom: .95rem;
  border-bottom: 1px solid var(--line);
}

.quote-form-title h3 {
  margin: 0 0 .3rem;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.quote-form-title p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.quote-form-card input,
.quote-form-card select,
.quote-form-card textarea {
  transition: border-color .2s ease, box-shadow .2s ease;
}

.quote-form-card input:focus,
.quote-form-card select:focus,
.quote-form-card textarea:focus {
  outline: none;
  border-color: rgba(27, 94, 32, 0.4);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.14);
}

.quote-actions {
  display: grid;
  gap: .55rem;
  margin-top: .15rem;
}

.quote-actions .btn {
  width: 100%;
  padding: .95rem 1.2rem;
}

.quote-hint {
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .9rem;
  width: 100%;
}
.form-grid .full { grid-column: 1 / -1; min-width: 0; }
label {
  display: grid;
  gap: .35rem;
  font-weight: 600;
  font-size: .92rem;
  min-width: 0;
}
input, select, textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid rgba(20, 54, 31, 0.18);
  background: #fff;
  border-radius: 12px;
  padding: .8rem .9rem;
}
textarea { min-height: 120px; resize: vertical; }
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: 0 !important;
  top: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
form { position: relative; overflow: hidden; }

.alert {
  border-radius: 14px;
  padding: .9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert-success { background: #e8f7e9; color: var(--green-900); }
.alert-error { background: #fdecea; color: #8a1f11; }

.about-hero {
  padding: 5rem 0 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.about-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1.5rem;
}
.value {
  background: rgba(255,253,248,.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.value strong { color: var(--green-800); display: block; margin-bottom: .25rem; }

.site-footer {
  margin-top: 2rem;
  background:
    radial-gradient(700px 280px at 12% 0%, rgba(76, 175, 80, 0.18), transparent 60%),
    radial-gradient(520px 240px at 90% 20%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #174223 0%, var(--green-900) 55%, #102a18 100%);
  color: rgba(255,255,255,.88);
  padding: 3.25rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr 1.15fr;
  gap: 2rem 1.75rem;
  margin-bottom: 2.25rem;
  align-items: start;
}
.site-footer a { color: #d7efd5; }
.site-footer h3, .site-footer h4 {
  margin: 0 0 .8rem;
  color: #fff;
}
.site-footer h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.site-footer h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(215, 239, 213, .85);
}
.footer-links {
  display: grid;
  gap: .55rem;
}
.footer-links a {
  width: fit-content;
  color: rgba(255,255,255,.82);
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-connect-text {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  line-height: 1.5;
  max-width: 26ch;
}
.footer-social {
  display: grid;
  gap: .65rem;
}
.footer-social-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  padding: .8rem .95rem;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff !important;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.footer-social-link:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(215, 239, 213, .4);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.footer-social-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.35), rgba(27, 94, 32, 0.55));
  color: #e8f8e6;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.footer-social-copy {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.footer-social-copy strong {
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.footer-social-copy small {
  color: rgba(255,255,255,.58);
  font-size: .8rem;
  font-weight: 500;
}
.footer-social-arrow {
  color: rgba(215, 239, 213, .7);
  font-size: 1.05rem;
  transition: transform .2s ease, color .2s ease;
}
.footer-social-link:hover .footer-social-arrow {
  transform: translateX(3px);
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78) !important;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.dev-credit:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(215, 239, 213, .45);
  color: #fff !important;
  transform: translateY(-1px);
}

.dev-credit-label {
  font-size: .78rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.55);
}

.dev-credit:hover .dev-credit-label {
  color: rgba(255,255,255,.75);
}

.dev-credit-brand {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 800;
  font-size: .9rem;
  color: #dff5de;
  letter-spacing: -0.01em;
}

.dev-credit-bolt {
  display: inline-grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4caf50, #1b5e20);
  font-size: .7rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: .5rem;
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(247, 244, 238, 0.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.mobile-cta .btn { flex: 1; padding: .8rem .5rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .two-col,
  .quote-grid,
  .about-grid,
  .footer-grid,
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child { grid-row: auto; }
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
  .values { grid-template-columns: 1fr; }
  .quote-grid { gap: 1.35rem; }
  #quote { padding-bottom: clamp(4.5rem, 10vw, 6rem); }
  .season-switch {
    display: flex;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 18px;
  }
  .season-switch::-webkit-scrollbar { display: none; }
  .season-btn { flex: 0 0 auto; white-space: nowrap; }
}

@media (max-width: 640px) {
  .services-grid,
  .reviews-grid,
  .form-grid,
  .property-type-picker { grid-template-columns: 1fr; }
  .hero-content { padding-top: 5.5rem; }
  .season-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    flex-wrap: unset;
    gap: .4rem;
    padding: .45rem;
    border-radius: 18px;
  }
  .season-btn {
    justify-content: center;
    width: 100%;
    padding: .75rem .55rem;
    font-size: .86rem;
  }
  .season-btn[data-season="all"] { grid-column: 1 / -1; }
  .service-item {
    padding: 1.15rem 1.1rem 1.05rem;
    border-radius: 20px;
  }
  .service-item h3 { font-size: 1.12rem; }
  .service-foot {
    flex-direction: row;
    align-items: center;
  }
  .service-cta {
    min-height: 44px;
    padding: .35rem 0;
  }
  .container { padding-inline: 1.35rem; }
  .quote-grid .panel { border-radius: 18px; }
  .section-head p { font-size: .98rem; }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(27, 94, 32, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.9);
  cursor: pointer;
  padding: 0;
  z-index: 80;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-800);
  transition: transform .25s ease, opacity .2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 28, 18, 0.48);
  backdrop-filter: blur(3px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 75;
  width: min(86vw, 340px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(76, 175, 80, 0.16), transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, #f4f1ea 100%);
  border-left: 1px solid rgba(27, 94, 32, 0.12);
  box-shadow: -18px 0 50px rgba(20, 54, 31, 0.18);
  transform: translateX(104%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
  padding: 1rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom));
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.mobile-sidebar-top .brand img {
  width: 44px;
  height: 44px;
}

.sidebar-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-sidebar-nav {
  display: grid;
  gap: .35rem;
  padding: 1.1rem 0;
  flex: 1;
  overflow: auto;
}

.mobile-sidebar-nav a {
  display: block;
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  color: var(--green-900);
  background: transparent;
  transition: background .2s ease, transform .2s ease;
}

.mobile-sidebar-nav a:hover,
.mobile-sidebar-nav a.active {
  background: var(--green-100);
  transform: translateX(2px);
}

.mobile-sidebar-foot {
  display: grid;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mobile-sidebar-foot .btn {
  width: 100%;
}

.sidebar-phone {
  text-align: center;
  font-weight: 800;
  color: var(--green-800) !important;
  font-size: 1.05rem;
}

.sidebar-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 961px) {
  .nav-overlay,
  .mobile-sidebar {
    display: none !important;
  }
}
