:root {
  --cream: #F6F4EE;
  --cream-deep: #EFEBE0;
  --forest: #22372B;
  --forest-deep: #1B2C22;
  --forest-mist: #51624F;
  --clay: #B4683E;
  --clay-deep: #9A5531;
  --line: #DFD9C9;
  --line-dark: rgba(246, 244, 238, 0.16);
  --white: #FDFCF9;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 28px;
  --radius-xl: 36px;
}

.preloader{ position:fixed; inset:0; z-index:9999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; background:var(--cream); transition:opacity .5s var(--ease), visibility .5s var(--ease); }
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ color:var(--clay); opacity:0; animation:preloaderIn .6s var(--ease) forwards; }
.preloader-bar{ width:120px; height:2px; background:var(--line); overflow:hidden; border-radius:2px; }
.preloader-bar-fill{ display:block; height:100%; width:0%; background:var(--clay); transition:width .25s var(--ease); }
@keyframes preloaderIn{ to{ opacity:1; } }
body.is-preloading{ overflow:hidden; }
@media (prefers-reduced-motion:reduce){ .preloader-mark{ animation:none; opacity:1; } }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--forest);
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
}

img, video { display: block; max-width: 100%; }

.wrap {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

section { padding: clamp(90px, 12vw, 150px) 0; }

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

.eyebrow-light { color: #D69A75; }

.section-title {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  line-height: 1.02;
  margin-bottom: 28px;
}

.section-title-light { color: var(--cream); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.btn-clay {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(34, 55, 43, 0.12), 0 8px 24px rgba(180, 104, 62, 0.28);
}

.btn-clay:hover {
  background: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(34, 55, 43, 0.12), 0 14px 32px rgba(180, 104, 62, 0.34);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-ghost:hover { background: rgba(34, 55, 43, 0.06); transform: translateY(-2px); }

.btn-ghost svg { width: 15px; height: 15px; }

.btn-lg { padding: 18px 36px; font-size: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clay);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s var(--ease);
}

.text-link:hover { gap: 13px; }
.text-link svg { width: 15px; height: 15px; }

/* ---------- header ---------- */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-head.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(34, 55, 43, 0.06);
}

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--forest);
}

.brand-mark { width: 30px; height: 30px; flex: none; }

.brand-name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.brand-name em {
  font-style: normal;
  font-weight: 400;
  color: var(--forest-mist);
  margin-left: 5px;
}

.head-nav { display: flex; gap: 30px; }

.head-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.head-nav a:hover { border-bottom-color: var(--clay); color: var(--clay-deep); }

.head-cta { padding: 12px 22px; white-space: nowrap; }

/* ---------- hero ---------- */

.hero {
  padding-top: clamp(140px, 18vw, 190px);
  padding-bottom: clamp(70px, 8vw, 110px);
  text-align: center;
}

.hero-title {
  font-size: clamp(2.8rem, 7.4vw, 5.6rem);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--forest-mist);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-frame-wrap { margin-top: clamp(56px, 7vw, 84px); }

.hero-frame {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(10px, 1.4vw, 16px);
  box-shadow:
    0 1px 2px rgba(34, 55, 43, 0.05),
    0 12px 32px rgba(34, 55, 43, 0.10),
    0 32px 80px rgba(34, 55, 43, 0.12);
}

.hero-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 12px);
}

.hero-chip {
  position: absolute;
  left: clamp(24px, 3vw, 40px);
  bottom: clamp(24px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(27, 44, 34, 0.78);
  color: var(--cream);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  flex: none;
}

/* ---------- credibility ---------- */

.cred {
  padding: 0 0 clamp(80px, 10vw, 120px);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cred-item {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cred-item + .cred-item { border-left: 1px solid var(--line); }

.cred-item strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cred-item span { font-size: 0.875rem; color: var(--forest-mist); }

/* ---------- services ---------- */

.services { padding-top: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 3.4vw, 44px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(34, 55, 43, 0.05), 0 24px 48px rgba(34, 55, 43, 0.10);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--cream-deep);
  color: var(--forest);
  display: grid;
  place-items: center;
}

.service-icon svg { width: 44px; height: 44px; }

.service-card h3 { font-size: 1.45rem; font-weight: 700; }

.service-card p { font-size: 0.9688rem; color: var(--forest-mist); margin-bottom: 8px; }

/* ---------- before / after ---------- */

.transform {
  background: var(--forest);
  color: var(--cream);
}

.transform-sub {
  max-width: 640px;
  color: rgba(246, 244, 238, 0.72);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 640px;
  width: 100%;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-dark);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-clip {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-label {
  position: absolute;
  top: 22px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(27, 44, 34, 0.72);
  padding: 8px 16px;
  border-radius: 999px;
  pointer-events: none;
}

.ba-label-before { left: 22px; }
.ba-label-after { right: 22px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  pointer-events: none;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.5px;
  width: 3px;
  background: var(--cream);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.ba-grip {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--forest);
  display: grid;
  place-items: center;
  cursor: ew-resize;
  pointer-events: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}

.ba-grip:hover { background: var(--white); transform: translate(-50%, -50%) scale(1.07); }

.ba-grip svg { width: 22px; height: 22px; }

.transform-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(246, 244, 238, 0.55);
}

/* ---------- seasonal calendar ---------- */

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 64px);
}

.season-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 2.6vw, 36px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.season-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 4px rgba(34, 55, 43, 0.05), 0 20px 44px rgba(34, 55, 43, 0.09);
}

.season-months {
  display: inline-block;
  font-size: 0.7188rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(180, 104, 62, 0.10);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.season-card h3 { font-size: 1.55rem; margin-bottom: 16px; }

.season-card ul { list-style: none; }

.season-card li {
  position: relative;
  font-size: 0.9063rem;
  color: var(--forest-mist);
  padding: 8px 0 8px 24px;
}

.season-card li + li { border-top: 1px solid var(--cream-deep); }

.season-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  opacity: 0.75;
}

/* ---------- gardens strip ---------- */

.gardens { background: var(--cream-deep); }

.gardens-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.gardens-head .section-title { margin-bottom: 0; }

.gardens-note {
  max-width: 300px;
  font-size: 0.9375rem;
  color: var(--forest-mist);
  padding-bottom: 8px;
}

.garden-strip {
  display: flex;
  gap: clamp(18px, 2vw, 26px);
  overflow-x: auto;
  padding: 4px max(24px, calc((100vw - 1180px) / 2)) 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--clay) transparent;
}

.garden-card {
  flex: 0 0 clamp(280px, 32vw, 420px);
  scroll-snap-align: start;
}

.garden-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(34, 55, 43, 0.08), 0 18px 40px rgba(34, 55, 43, 0.12);
  transition: transform 0.4s var(--ease);
}

.garden-card:hover img { transform: translateY(-6px); }

.garden-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 6px 0;
}

.garden-card strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.garden-card span { font-size: 0.8438rem; color: var(--forest-mist); }

/* ---------- testimonial ---------- */

.testimonial-inner {
  max-width: 840px;
  text-align: center;
}

.quote-mark {
  width: 52px;
  height: 52px;
  color: var(--clay);
  margin: 0 auto 28px;
}

.testimonial blockquote p {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.testimonial-who {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  text-align: left;
}

.who-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  flex: none;
}

.testimonial-who strong { display: block; font-size: 1rem; }

.testimonial-who span { font-size: 0.875rem; color: var(--forest-mist); }

/* ---------- quote CTA ---------- */

.quote {
  background: var(--forest-deep);
  color: var(--cream);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: center;
}

.quote-copy p { color: rgba(246, 244, 238, 0.72); max-width: 480px; }

.quote-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.quote-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(246, 244, 238, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s var(--ease);
}

.quote-phone:hover { border-bottom-color: var(--clay); }

.quote-phone svg { width: 19px; height: 19px; color: var(--clay); }

.quote-points {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-points li {
  position: relative;
  padding-left: 30px;
  font-size: 0.9375rem;
  color: rgba(246, 244, 238, 0.78);
}

.quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.7px solid var(--clay);
}

.quote-points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 1.7px solid var(--clay);
  border-bottom: 1.7px solid var(--clay);
  transform: rotate(-45deg);
}

.quote-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

/* ---------- footer ---------- */

.site-foot {
  background: var(--forest-deep);
  color: var(--cream);
  border-top: 1px solid var(--line-dark);
  padding: 52px 0;
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.foot-brand { display: flex; align-items: center; gap: 14px; }

.foot-brand .brand-mark { width: 34px; height: 34px; color: var(--clay); }

.foot-brand strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem; }

.foot-brand span { font-size: 0.8125rem; color: rgba(246, 244, 238, 0.55); }

.foot-nav { display: flex; gap: 22px; flex-wrap: wrap; }

.foot-nav a {
  color: rgba(246, 244, 238, 0.78);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.foot-nav a:hover { color: var(--clay); }

.foot-small { font-size: 0.7813rem; color: rgba(246, 244, 238, 0.4); }

/* ---------- demo pill ---------- */

.demo-pill {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  background: rgba(27, 44, 34, 0.88);
  border: 1px solid var(--line-dark);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s var(--ease);
}

.demo-pill:hover { background: var(--forest); }

/* ---------- reveal ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .season-card, .garden-card img, .ba-grip { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .head-nav { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-item:nth-child(3) { border-left: none; }
  .cred-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .quote-inner { grid-template-columns: 1fr; }
  .gardens-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gardens-note { padding-bottom: 0; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .head-row { height: 68px; }
  .head-cta { padding: 10px 16px; font-size: 0.875rem; }
  .brand-name { font-size: 1.05rem; }
  .season-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-item + .cred-item { border-left: none; border-top: 1px solid var(--line); }
  .cred-item { padding: 24px 4px; }
  .ba-slider { aspect-ratio: 4 / 5; }
  .ba-grip { width: 50px; height: 50px; }
  .hero-chip { left: 20px; bottom: 20px; font-size: 0.75rem; padding: 8px 14px; }
  .hero-frame { border-radius: var(--radius-lg); }
  .hero-frame video { border-radius: calc(var(--radius-lg) - 10px); }
  .quote-actions { gap: 20px; }
  .foot-row { flex-direction: column; align-items: flex-start; }
}
