@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green-950: #0b2b18;
  --green-900: #123f22;
  --green-800: #18532b;
  --green-700: #226638;
  --green-500: #6f9f26;
  --green-300: #b9d878;
  --cream: #f6f1e4;
  --cream-2: #fbf8ef;
  --ink: #172219;
  --muted: #59645a;
  --white: #ffffff;
  --gold: #f1b73d;
  --shadow: 0 18px 50px rgba(9, 36, 20, .12);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
}

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

a { color: inherit; }

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

h1, h2, h3, .eyebrow, .button, .primary-nav a, .location-label {
  font-family: "Barlow Condensed", Impact, sans-serif;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

h1 span { color: var(--green-300); }

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.08;
}

p { margin-bottom: 18px; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 8px 28px rgba(9, 36, 20, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 172px;
  max-height: 68px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  color: var(--green-950);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover { color: var(--green-500); }

.primary-nav .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  color: var(--green-950);
  background: transparent;
  border: 1px solid rgba(11,43,24,.28);
  border-radius: 8px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url('/assets/images/garden-site-front.png');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 14, .96) 0%, rgba(8, 31, 17, .85) 45%, rgba(8, 31, 17, .30) 75%, rgba(8, 31, 17, .18) 100%),
    linear-gradient(0deg, rgba(6, 26, 14, .55), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 90px;
}

.hero-logo {
  width: min(330px, 70vw);
  margin-bottom: 24px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.35));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--green-300);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--green-700); }

.hero-copy {
  max-width: 690px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

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

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.pillar-strip {
  position: relative;
  z-index: 5;
  margin-top: -32px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pillar-grid article {
  min-height: 210px;
  padding: 30px 24px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid #e3e5df;
}

.pillar-grid article:last-child { border-right: 0; }

.pillar-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 50%;
  font-size: 1.45rem;
}

.pillar-grid h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.section { padding: 108px 0; }

.section-light { background: var(--white); }
.section-cream { background: var(--cream); }
.section-deep { color: var(--white); background: var(--green-950); }
.section-green { color: var(--white); background: var(--green-800); }
.section-budget { background: #edf3e3; }
.section-cta { color: var(--white); background: var(--green-950); }

.split-layout {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: center;
}

.lead {
  color: var(--green-900);
  font-size: 1.24rem;
  font-weight: 600;
}

.quote-card {
  padding: 38px;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card img {
  width: 150px;
  margin: 0 auto 20px;
}

.quote-card blockquote {
  margin: 0 0 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
}

.quote-card p {
  margin: 0;
  color: var(--green-300);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 46px;
}

.section-heading.on-dark p:not(.eyebrow) { color: rgba(255,255,255,.8); }

.site-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.site-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
}

.site-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.site-photo figcaption {
  padding: 14px 18px;
  color: var(--green-950);
  background: var(--white);
  font-size: .9rem;
}

.site-photo-vision {
  outline: 3px solid rgba(185, 216, 120, .45);
  outline-offset: -3px;
}

.site-photo-vision figcaption {
  background: #edf3e3;
}

.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  padding: 28px 32px;
  color: var(--green-950);
  background: var(--cream);
  border-radius: var(--radius);
}

.location-label {
  margin: 0 0 5px;
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.location-panel h3 { font-size: 2rem; }
.location-panel address { font-style: normal; }
.parcel { margin-bottom: 0; color: var(--muted); }

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.text-link {
  color: var(--green-800);
  font-weight: 700;
}

.map-frame {
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vision-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vision-card .number {
  display: block;
  margin-bottom: 32px;
  color: var(--green-300);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
}

.vision-card h3 { color: var(--green-900); }

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

.concept-note {
  margin-top: 26px;
  padding: 20px 24px;
  color: var(--green-950);
  background: #dfecc6;
  border-left: 5px solid var(--green-500);
  border-radius: 10px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.impact-card {
  min-height: 260px;
  padding: 28px;
  background: var(--cream);
  border-radius: var(--radius);
}

.impact-card.featured {
  color: var(--white);
  background: var(--green-900);
}

.impact-card strong {
  display: block;
  margin-bottom: 20px;
  color: var(--green-500);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  line-height: .9;
}

.impact-card.featured strong { color: var(--green-300); }

.impact-card p { margin-bottom: 0; color: var(--muted); }
.impact-card.featured p { color: rgba(255,255,255,.8); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 28px 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-300);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline p { margin-bottom: 0; color: rgba(255,255,255,.78); font-size: .93rem; }

.budget-layout {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}

.budget-card {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.budget-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid #e8ebe3;
}

.budget-card > div:last-child { border-bottom: 0; }

.budget-card span { font-weight: 600; }

.budget-card strong {
  color: var(--green-900);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
}

.budget-card .budget-total {
  color: var(--white);
  background: var(--green-900);
}

.budget-card .budget-total strong { color: var(--white); }

.cta-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-inner img { width: 150px; }
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner p:last-child { margin-bottom: 0; color: rgba(255,255,255,.8); }

.site-footer {
  padding: 56px 0;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid #e4e9df;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-inner img {
  width: 220px;
  margin-inline: auto;
}

.footer-copy strong {
  color: var(--green-950);
  font-size: 1.2rem;
}

.footer-inner p { margin-bottom: 3px; }
.footer-note {
  margin-top: 8px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1000px) {
  .menu-toggle { display: inline-flex; }

  .primary-nav {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid #e4e9df;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px; }
  .primary-nav .nav-cta { margin-top: 6px; text-align: center; }

  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid article:nth-child(2) { border-right: 0; }
  .pillar-grid article:nth-child(-n+2) { border-bottom: 1px solid #e3e5df; }

  .split-layout,
  .budget-layout { grid-template-columns: 1fr; }

  .vision-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { grid-template-columns: 110px 1fr; }
  .cta-inner .button { grid-column: 2; justify-self: start; }

}

@media (max-width: 720px) {
  :root { --shell: min(100% - 26px, 1180px); }

  .header-inner { min-height: 72px; }
  .brand img { width: 138px; }
  .primary-nav { top: 72px; }

  .hero { min-height: 720px; }
  .hero-content { padding-block: 70px; }

  .section { padding: 78px 0; }

  .pillar-strip { margin-top: 0; }
  .pillar-grid { width: 100%; border-radius: 0; }
  .pillar-grid article { min-height: 180px; }

  .site-gallery,
  .vision-grid,
  .impact-grid,
  .timeline { grid-template-columns: 1fr; }

  .site-photo img { height: 300px; }

  .location-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-frame iframe { height: 340px; }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-inner img { width: 120px; }
  .cta-inner .button { grid-column: auto; }


  h1 { font-size: clamp(3rem, 16vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
