/* =========================================================
   DRACK GARTENBAU — Redesign-Studie
   Design-Sprache: "Mediterraner Garten / Earth Tones"
   Olive · Terrakotta-Rosé · Sandstein-Creme · Aubergine
   ========================================================= */

:root {
  --olive: #6b7f4a;
  --olive-dark: #4f5f36;
  --olive-deep: #3b4826;
  --terra: #d6a87c;
  --terra-deep: #b8875a;
  --sand: #e8dfc4;
  --sand-light: #f4efde;
  --sand-warm: #ede4ca;
  --aubergine: #2e1f2b;
  --ink: #1f1a1c;
  --line: rgba(46, 31, 43, 0.14);
  --white: #fdfaf1;

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--aubergine);
}

h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h4 { font-size: 1.25rem; font-family: var(--sans); font-weight: 500; letter-spacing: 0.01em; }

p { margin-bottom: 1rem; }

/* Demo-Banner */
.demo-banner {
  background: var(--aubergine);
  color: var(--sand);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
  font-weight: 500;
}
.demo-banner strong { color: var(--terra); font-weight: 600; }

/* Navigation */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 38px;
  z-index: 90;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--aubergine);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.logo-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--olive);
  display: inline-block;
  position: relative;
  top: 1px;
}
.logo .sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-deep);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--aubergine);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--olive); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--terra);
}
.nav-cta {
  background: var(--aubergine);
  color: var(--sand) !important;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--olive); color: var(--white) !important; }

.burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--aubergine); }

/* Hero */
.hero {
  background: var(--sand-light);
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) clamp(3rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 110%, rgba(107, 127, 74, 0.12), transparent 50%),
    radial-gradient(circle at 85% 10%, rgba(214, 168, 124, 0.14), transparent 45%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra-deep);
}
.hero h1 .em { font-style: italic; color: var(--olive); }
.hero-claim {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin-top: 2rem;
  color: var(--aubergine);
  font-style: italic;
  line-height: 1.3;
  max-width: 34ch;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta div span {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--olive);
  line-height: 1;
}
.hero-meta div small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aubergine);
  opacity: 0.65;
}
.hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--terra);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero-visual::after {
  content: "seit 2012";
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--sand-light);
  padding: 10px 18px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--aubergine);
  font-size: 1.1rem;
}

/* CTA Button */
.btn {
  display: inline-block;
  padding: 16px 34px;
  background: var(--aubergine);
  color: var(--sand);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--aubergine);
  transition: all 0.25s;
  cursor: pointer;
  margin-top: 2rem;
}
.btn:hover { background: var(--olive); border-color: var(--olive); }
.btn.outline { background: transparent; color: var(--aubergine); }
.btn.outline:hover { background: var(--aubergine); color: var(--sand); }
.btn.terra { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--white); }
.btn.terra:hover { background: var(--olive); border-color: var(--olive); }

/* Sections generic */
section { padding: clamp(4rem, 9vw, 7rem) var(--gutter); }
.wrap { max-width: var(--max); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { font-size: 1.08rem; color: var(--aubergine); opacity: 0.75; max-width: 48ch; }

/* Drei-Prinzipien (konzipieren · bauen · pflegen) */
.triptych {
  background: var(--white);
}
.triptych-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.triptych-col {
  padding: 3rem 2.2rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.triptych-col:last-child { border-right: none; }
.triptych-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--terra-deep);
  font-style: italic;
  margin-bottom: 2.5rem;
  display: block;
}
.triptych-col h3 {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  color: var(--olive-deep);
}
.triptych-col h3 em { color: var(--terra-deep); font-style: italic; }
.triptych-col p { font-size: 0.98rem; line-height: 1.7; opacity: 0.82; }
.triptych-col a {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--olive);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 2px;
}
.triptych-col a:hover { color: var(--aubergine); border-color: var(--aubergine); }

/* Leistungen-Liste */
.leistungen { background: var(--sand-light); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.leistung {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  align-items: baseline;
}
.leistung:nth-child(odd) { padding-right: 2rem; border-right: 1px solid var(--line); }
.leistung:nth-child(even) { padding-left: 2rem; }
.leistung-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra-deep);
  font-size: 1.1rem;
  min-width: 2.5rem;
}
.leistung h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--aubergine);
}
.leistung p {
  font-size: 0.95rem;
  opacity: 0.75;
  margin: 0;
}

/* Projekte / Referenzen */
.projekte { background: var(--white); }
.projekte-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.projekt {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.projekt-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.projekt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.projekt:hover img { transform: scale(1.04); }
.projekt-meta {
  padding: 1.4rem 0 0.5rem;
}
.projekt-meta h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--aubergine);
  margin-bottom: 0.3rem;
}
.projekt-meta span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-dark);
}
.projekt.w6 { grid-column: span 6; }
.projekt.w5 { grid-column: span 5; }
.projekt.w7 { grid-column: span 7; }
.projekt.w4 { grid-column: span 4; }
.projekt.w8 { grid-column: span 8; }

/* Stimmen / Testimonials */
.stimmen { background: var(--olive-deep); color: var(--sand); }
.stimmen h2 { color: var(--sand); }
.stimmen .eyebrow { color: var(--terra); }
.stimmen .eyebrow::before { background: var(--terra); }
.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.stimme {
  padding: 2.2rem 1.8rem;
  background: rgba(253, 250, 241, 0.06);
  border: 1px solid rgba(214, 168, 124, 0.22);
  border-radius: var(--radius);
}
.stimme-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--sand-light);
  margin-bottom: 2rem;
}
.stimme-quote::before {
  content: "«";
  color: var(--terra);
  font-size: 2rem;
  display: block;
  line-height: 0.6;
  margin-bottom: 0.5rem;
}
.stimme-author {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--terra);
}
.stimme-author span { display: block; opacity: 0.65; font-size: 0.78rem; margin-top: 3px; }

/* Kontakt-CTA */
.cta-band {
  background: var(--terra);
  color: var(--aubergine);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
}
.cta-band .eyebrow { color: var(--aubergine); justify-content: center; display: inline-flex; }
.cta-band .eyebrow::before { background: var(--aubergine); }
.cta-band h2 { color: var(--aubergine); margin: 1rem auto 1.5rem; max-width: 22ch; }
.cta-band p { max-width: 48ch; margin: 0 auto 2rem; opacity: 0.85; }
.cta-band .btn { background: var(--aubergine); border-color: var(--aubergine); color: var(--sand); }
.cta-band .btn:hover { background: var(--olive-deep); border-color: var(--olive-deep); }

/* Footer */
footer {
  background: var(--aubergine);
  color: var(--sand);
  padding: 4.5rem var(--gutter) 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(214, 168, 124, 0.2);
}
footer h5 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
footer .logo { color: var(--sand); margin-bottom: 1.5rem; }
footer .logo-mark { background: var(--terra); }
footer p, footer a, footer li {
  font-size: 0.92rem;
  color: var(--sand);
  opacity: 0.82;
  line-height: 1.8;
}
footer ul { list-style: none; }
footer a:hover { color: var(--terra); opacity: 1; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Page header (non-index) */
.page-head {
  background: var(--sand-light);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 40%, rgba(214, 168, 124, 0.18), transparent 55%);
}
.page-head-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-head h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); max-width: 16ch; }
.page-head .lead { font-size: 1.2rem; max-width: 52ch; margin-top: 1.5rem; opacity: 0.78; }
.crumb { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--terra-deep); margin-bottom: 1.5rem; }
.crumb a { color: var(--terra-deep); }
.crumb a:hover { color: var(--olive); }

/* Text + Bild Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--terra);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text h2 em { color: var(--olive); font-style: italic; }
.split-text p { opacity: 0.82; margin-bottom: 1.2rem; font-size: 1.02rem; }

/* Werte-Liste (über-uns) */
.werte {
  background: var(--sand-light);
}
.werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wert {
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
}
.wert:last-child { border-right: none; }
.wert-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra-deep);
  margin-bottom: 1.5rem;
  display: block;
}
.wert h3 { font-size: 1.8rem; margin-bottom: 0.8rem; color: var(--olive-deep); }
.wert p { opacity: 0.78; font-size: 0.96rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--sand-light);
  padding: 2rem;
  border-radius: var(--radius);
}
.team-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.team-card h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--aubergine); margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra-deep); margin-bottom: 1rem; }
.team-card p { font-size: 0.92rem; opacity: 0.78; }

/* Feature-Liste (Leistungs-Seiten) */
.feature-list {
  list-style: none;
  margin-top: 2rem;
}
.feature-list li {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  align-items: baseline;
}
.feature-list li::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terra);
  display: inline-block;
  position: relative;
  top: -6px;
}
.feature-list strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--aubergine);
  display: block;
  margin-bottom: 0.25rem;
}
.feature-list span { font-size: 0.94rem; opacity: 0.78; }

/* Info-Karten */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius);
}
.info-card .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra-deep);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  display: block;
}
.info-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-bottom: 0.6rem; color: var(--aubergine); }
.info-card p { font-size: 0.94rem; opacity: 0.78; margin: 0; }

/* Kontakt Seite */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.kontakt-info h3 { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--olive-deep); }
.kontakt-info p { font-size: 1rem; opacity: 0.82; line-height: 1.8; }
.kontakt-info .line { margin-bottom: 2rem; }
.kontakt-info .line small {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-deep);
  display: block;
  margin-bottom: 0.3rem;
}
.kontakt-info .line a { color: var(--aubergine); font-size: 1.08rem; }
.kontakt-info .line a:hover { color: var(--olive); }

form {
  background: var(--sand-light);
  padding: 3rem;
  border-radius: var(--radius);
}
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
form input, form textarea, form select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--aubergine);
  transition: border-color 0.2s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-bottom-color: var(--olive);
}
form textarea { min-height: 120px; resize: vertical; }
form .full { grid-column: 1 / -1; margin-bottom: 1.2rem; }
form .btn { width: 100%; margin-top: 1rem; }

/* Pflanzen-Grid (bepflanzung) */
.plants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.plant-card {
  padding: 2rem 1.5rem;
  background: var(--sand-light);
  border-radius: var(--radius);
  border-top: 3px solid var(--olive);
}
.plant-card:nth-child(4n+2) { border-top-color: var(--terra-deep); }
.plant-card:nth-child(4n+3) { border-top-color: var(--aubergine); }
.plant-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; color: var(--aubergine); margin-bottom: 0.5rem; }
.plant-card p { font-size: 0.9rem; opacity: 0.78; margin: 0; }

/* Sticky-Referenz Einzugsgebiet */
.gebiet-band {
  background: var(--aubergine);
  color: var(--sand);
  padding: 4rem var(--gutter);
  text-align: center;
}
.gebiet-band h3 { color: var(--sand); font-size: 2rem; margin-bottom: 1rem; }
.gebiet-band .cities {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terra);
  font-size: 1.3rem;
  line-height: 2;
}
.gebiet-band .cities span { margin: 0 0.6rem; opacity: 0.65; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: 4/3; max-width: 520px; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .triptych-grid { grid-template-columns: 1fr; }
  .triptych-col { border-right: none; border-bottom: 1px solid var(--line); }
  .triptych-col:last-child { border-bottom: none; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung, .leistung:nth-child(odd), .leistung:nth-child(even) {
    padding: 1.8rem 0;
    border-right: none;
  }
  .projekte-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .projekt.w6, .projekt.w5, .projekt.w7, .projekt.w4, .projekt.w8 { grid-column: span 1; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
  .werte-grid { grid-template-columns: 1fr; }
  .wert { border-right: none; border-bottom: 1px solid var(--line); }
  .wert:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .plants-grid { grid-template-columns: 1fr 1fr; }
  form { padding: 2rem 1.5rem; }
  form .row { grid-template-columns: 1fr; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; flex-direction: column; gap: 1.2rem; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  h1 { font-size: 3rem; }
  .hero { padding-top: 3rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-meta { gap: 1.5rem; }
  .plants-grid { grid-template-columns: 1fr; }
}
