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

:root {
  --lgp-green: #2d5a3d;
  --lgp-green-light: #3d7350;
  --lgp-sage: #e8f0e8;
  --lgp-cream: #f9f7f2;
  --lgp-earth: #5c4a3a;
  --lgp-mute: #5a6b5e;
  --lgp-line: #c8d4c8;
  --lgp-max: 1100px;
}

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

body {
  font-family: Figtree, sans-serif;
  color: #1e2a22;
  background: var(--lgp-cream);
  line-height: 1.65;
  font-size: 16px;
}

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

a { color: var(--lgp-green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.lgp-wrap, .nursery-wrap { width: min(100% - 2.5rem, var(--lgp-max)); margin-inline: auto; }

/* Header */
.lgp-header {
  background: #fff;
  border-bottom: 1px solid var(--lgp-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.lgp-header-inner {
  width: min(100% - 2.5rem, var(--lgp-max));
  margin-inline: auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.25rem;
}

.lgp-eyebrow {
  width: 100%;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lgp-mute);
}

.lgp-brand {
  font-family: Fraunces, serif;
  font-size: 1.5rem;
  color: var(--lgp-green);
  text-decoration: none;
  margin-right: auto;
}

.menu-toggle {
  display: none;
  background: var(--lgp-green);
  color: #fff;
  border: none;
  padding: .45rem .85rem;
  cursor: pointer;
  font-size: .82rem;
  border-radius: 4px;
}

.nav-main { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav-main a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--lgp-earth);
  text-decoration: none;
}
.nav-main a:hover, .nav-main a.active { color: var(--lgp-green); }

/* Buttons */
.lgp-btn {
  display: inline-block;
  padding: .65rem 1.25rem;
  font-weight: 600;
  font-size: .88rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
}

.lgp-btn-fill { background: var(--lgp-green); color: #fff; }
.lgp-btn-fill:hover { background: var(--lgp-green-light); color: #fff; text-decoration: none; }

.lgp-btn-line { border-color: var(--lgp-green); color: var(--lgp-green); }
.lgp-btn-line:hover { background: var(--lgp-sage); text-decoration: none; }

/* Hero */
.lgp-hero {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--lgp-sage) 0%, var(--lgp-cream) 100%);
  text-align: center;
}

.lgp-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--lgp-green); margin-bottom: 1rem; }

.lgp-welcome {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--lgp-mute);
  font-size: 1.05rem;
}

.lgp-hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 1.25rem; }

.lgp-season-badge {
  display: inline-block;
  background: var(--lgp-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
}

/* Intro */
.lgp-intro { padding: 3rem 0; text-align: center; }

.lgp-intro-lead {
  font-family: Fraunces, serif;
  font-size: 1.35rem;
  color: var(--lgp-earth);
  max-width: 40rem;
  margin: 0 auto 1rem;
}

.lgp-intro p { color: var(--lgp-mute); max-width: 36rem; margin: 0 auto; }

/* Features */
.lgp-features { padding: 2rem 0 3.5rem; background: #fff; }

.lgp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lgp-feature {
  background: var(--lgp-sage);
  padding: 1.75rem;
  border-radius: 8px;
  text-align: center;
}

.lgp-feature h2 { font-size: 1.25rem; color: var(--lgp-green); margin-bottom: .65rem; }
.lgp-feature p { color: var(--lgp-mute); font-size: .92rem; }

/* Seasons */
.lgp-seasons { padding: 3.5rem 0; }

.lgp-seasons h2 { text-align: center; font-size: 2rem; margin-bottom: .5rem; }

.lgp-seasons-sub {
  text-align: center;
  color: var(--lgp-mute);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.lgp-season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lgp-season-card {
  display: block;
  background: #fff;
  border: 1px solid var(--lgp-line);
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.lgp-season-card:hover { border-color: var(--lgp-green); box-shadow: 0 4px 20px rgba(45,90,61,.1); }

.lgp-season-card h3 { font-size: 1.2rem; color: var(--lgp-green); margin-bottom: .5rem; }
.lgp-season-card p { font-size: .88rem; color: var(--lgp-mute); }

.lgp-season-card--now { border-color: var(--lgp-green); background: var(--lgp-sage); }

.lgp-now {
  position: absolute;
  top: .75rem; right: .75rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--lgp-green);
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 3px;
}

/* Reviews */
.lgp-reviews {
  padding: 3.5rem 0;
  background: var(--lgp-green);
  color: #fff;
}

.lgp-reviews h2 { text-align: center; font-size: 1.85rem; margin-bottom: 2rem; color: #fff; }

.lgp-review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lgp-review {
  background: rgba(255,255,255,.1);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 0;
}

.lgp-review p { font-style: italic; opacity: .92; margin-bottom: .65rem; font-size: .92rem; }
.lgp-review cite { font-style: normal; font-size: .82rem; opacity: .8; }

/* Visit */
.lgp-visit { padding: 3.5rem 0 4rem; }

.lgp-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.lgp-visit h2 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--lgp-green); }
.lgp-visit address { font-style: normal; line-height: 1.85; }

.lgp-hours h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--lgp-green); }

.lgp-hours dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1.5rem;
  font-size: .92rem;
}

.lgp-hours dt { font-weight: 600; color: var(--lgp-earth); }
.lgp-hours dd { color: var(--lgp-mute); }

.lgp-hours-note { margin-top: 1rem; font-size: .85rem; color: var(--lgp-mute); font-style: italic; }

/* Footer */
.lgp-footer {
  background: #fff;
  border-top: 1px solid var(--lgp-line);
  padding: 2.5rem 0 1.25rem;
  font-size: .88rem;
}

.lgp-footer-grid {
  width: min(100% - 2.5rem, var(--lgp-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.lgp-footer-mark {
  font-family: Fraunces, serif;
  font-size: 1.2rem;
  color: var(--lgp-green);
  margin-bottom: .5rem;
}

.lgp-footer-contact { margin-top: .5rem; line-height: 1.75; }
.lgp-footer-note { margin-top: .75rem; color: var(--lgp-mute); font-size: .82rem; }

.lgp-footer-nav-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lgp-mute);
  margin-bottom: .75rem;
}

.lgp-footer-nav a { display: block; color: var(--lgp-earth); margin: .3rem 0; text-decoration: none; }
.lgp-footer-nav a:hover { color: var(--lgp-green); }

.lgp-footer-base {
  width: min(100% - 2.5rem, var(--lgp-max));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--lgp-line);
  text-align: center;
  color: var(--lgp-mute);
  font-size: .8rem;
}

/* Cookie */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--lgp-earth);
  color: #f0ebe4;
  padding: 1.1rem 1.25rem;
  z-index: 100;
}

.cookie-banner.show { display: block; }
.cookie-inner { max-width: 960px; margin: 0 auto; }
.cookie-inner a { color: #a8d4b0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }

.cookie-accept, .cookie-decline, .cookie-settings {
  border: none;
  padding: .45rem .9rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .82rem;
  border-radius: 4px;
}

.cookie-accept { background: var(--lgp-green-light); color: #fff; }
.cookie-decline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.cookie-settings { background: transparent; color: #a8d4b0; }

.cookie-panel { display: none; max-width: 960px; margin: .75rem auto 0; }
.cookie-panel.open { display: block; }
.cookie-panel label { display: block; margin: .3rem 0; }

/* Inner pages */
.patch-page-head, .lgp-page-head {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
  background: var(--lgp-sage);
}

.patch-page-head h1, .lgp-page-head h1 { font-size: 2rem; color: var(--lgp-green); }

.nursery-page-body { padding: 2.5rem 0 3.5rem; }
.nursery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.nursery-lead {
  font-family: Fraunces, serif;
  font-size: 1.2rem;
  color: var(--lgp-earth);
  margin-bottom: 1rem;
}

.nursery-page-body p { color: var(--lgp-mute); margin-bottom: 1rem; }
.nursery-page-body ul { padding-left: 1.25rem; color: var(--lgp-mute); margin-bottom: 1rem; }

.legal-doc { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.legal-doc h1 { margin-bottom: 1rem; }
.legal-doc h2 { font-size: 1.25rem; margin: 1.5rem 0 .5rem; }
.legal-doc p, .legal-doc li { color: var(--lgp-mute); margin-bottom: .75rem; }

.form-success { display: none; margin-top: 1rem; color: var(--lgp-green); }
.form-success.show { display: block; }

.nursery-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.nursery-card { border: 1px solid var(--lgp-line); border-radius: 8px; overflow: hidden; background: #fff; }
.nursery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.nursery-card-body { padding: 1.15rem; }
.nursery-card-body h3 { font-size: 1.1rem; color: var(--lgp-green); margin-bottom: .4rem; }
.nursery-card-body p { font-size: .88rem; color: var(--lgp-mute); }
.patch-season-card { background: #fff; border: 1px solid var(--lgp-line); padding: 1.25rem; border-radius: 8px; }
.patch-season-card h3 { color: var(--lgp-green); margin-bottom: .5rem; }
.patch-season-card p { color: var(--lgp-mute); font-size: .9rem; }
.nursery-policy h2 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; color: var(--lgp-green); }
.nursery-policy p, .nursery-policy li { color: var(--lgp-mute); margin-bottom: .75rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-main { display: none; width: 100%; flex-direction: column; gap: .6rem; padding-top: .75rem; }
  .nav-main.open { display: flex; }
  .lgp-feature-grid, .lgp-season-grid, .lgp-review-track, .lgp-visit-grid, .nursery-split, .lgp-footer-grid, .nursery-grid-3 { grid-template-columns: 1fr; }
}
