/* ============================================================
   HAPPY ROOTS GARDENS — style.css
   Logo color palette:
     Primary green  #1e5c34   (deep forest green)
     Dark green     #0f2d18
     Root brown     #6b3519   (trunk / roots)
     Terracotta     #c85c2a   (pot accent)
     Ivory cream    #f5efe6   (logo background)
   ============================================================ */

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

:root {
  /* ── Greens (logo primary) ── */
  --g950: #0a1f10;
  --g900: #0f2d18;
  --g800: #1e5c34;   /* PRIMARY — exact logo deep forest green */
  --g700: #276b3e;
  --g600: #33864f;
  --g500: #4a9c63;
  --g400: #6cb882;
  --g300: #96cfa9;
  --g200: #bfe3ca;
  --g100: #dff0e4;
  --g50:  #f0f8f2;

  /* ── Earth / root tones (logo trunk) ── */
  --brown:    #6b3519;
  --brown-md: #a05828;
  --brown-lt: #d4a574;

  /* ── Terracotta (logo pot) ── */
  --terra:    #c85c2a;
  --terra-lt: #e07a45;

  /* ── Logo ivory / cream ── */
  --cream:    #f5efe6;
  --cream-dk: #ece3d6;
  --white:    #ffffff;

  /* ── Text ── */
  --txt:    #0d2416;
  --txt-md: #3a5c44;
  --txt-lt: #7a9880;

  /* ── Shadows ── */
  --sh-sm: 0 1px 4px rgba(14,45,24,.08);
  --sh-md: 0 4px 18px rgba(14,45,24,.11);
  --sh-lg: 0 8px 36px rgba(14,45,24,.14);
  --sh-xl: 0 20px 64px rgba(14,45,24,.18);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 9999px;
  --ease:   .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--txt);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ── Type ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2; color: var(--txt);
}
h1     { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h1 em  { font-style: italic; color: var(--g800); }
h2     { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3     { font-size: 1.15rem; font-weight: 700; }

.eyebrow {
  display: block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--g600); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--txt-md); max-width: 580px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r-full);
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700;
  cursor: pointer; text-decoration: none; border: 2px solid transparent;
  transition: all var(--ease); white-space: nowrap; letter-spacing: .02em;
}
.btn--primary { background: var(--g800); color: var(--white); border-color: var(--g800); }
.btn--primary:hover {
  background: var(--g900); border-color: var(--g900);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,92,52,.38);
}
.btn--outline { background: transparent; color: var(--g800); border-color: var(--g800); }
.btn--outline:hover { background: var(--g800); color: var(--white); transform: translateY(-2px); }
.btn--white   { background: var(--white); color: var(--g800); border-color: var(--white); }
.btn--white:hover { background: var(--g100); transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: .82rem; }

/* ── Pill ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 18px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 700;
}
.pill--green { background: var(--g100); color: var(--g800); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: 70px;
  background: var(--g800);
  box-shadow: 0 2px 20px rgba(14,45,24,.25);
  overflow: visible;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav--scrolled {
  background: var(--g900);
  box-shadow: 0 2px 24px rgba(14,45,24,.35);
}
/* Nav inner — vertically centered in 70px header, clear logo + title */
.nav__inner { display: flex; align-items: center; gap: 20px; padding-left: 340px; height: 70px; }

/* Logo — pinned to top, 140px tall (70px bleeds below nav into hero) */
.nav__logo {
  position: absolute; top: 0; left: 24px;
  text-decoration: none; z-index: 1001;
  display: flex; align-items: flex-start; gap: 14px;
}
.nav__logo-img {
  height: 140px; width: 140px; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
  flex-shrink: 0;
  transition: transform var(--ease);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }

/* Title: "Happy Roots" big cursive + "GARDENS" small block — centered in 70px */
.nav__logo-text {
  display: flex; flex-direction: column; justify-content: center;
  height: 70px; line-height: 1.1; gap: 2px;
}
.nav__logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem; font-weight: 700; color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
  white-space: nowrap; display: block;
}
.nav__logo-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .65rem; font-weight: 500; letter-spacing: .38em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  white-space: nowrap; display: block;
}
/* Links */
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; text-decoration: none; color: rgba(255,255,255,.88);
  font-size: .88rem; font-weight: 600; border-radius: var(--r-full);
  transition: all var(--ease);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.15); }

/* Actions */
.nav__actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  border-radius: var(--r-full); color: rgba(255,255,255,.88); cursor: pointer;
  transition: all var(--ease);
}
.icon-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }
.nav__cart-btn { position: relative; }
.nav__cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--terra); color: #fff;
  font-size: .58rem; font-weight: 800; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; align-items: center;
  justify-content: center; width: 40px; height: 40px;
  border: none; background: none; cursor: pointer;
  border-radius: var(--r-full); z-index: 1001;
}
.menu-toggle:hover { background: var(--g100); }
.menu-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--g800); border-radius: 2px; transition: all var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 150px 0 80px; background: var(--cream);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 68% 18%, rgba(30,92,52,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 82%, rgba(107,53,25,.06) 0%, transparent 50%);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}

/* Left */
.hero__text .pill { margin-bottom: 28px; }
.hero__text h1    { margin-bottom: 20px; }
.hero__desc {
  font-size: 1.05rem; color: var(--txt-md); line-height: 1.78;
  max-width: 460px; margin-bottom: 36px;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__stats { display: flex; align-items: center; gap: 28px; }
.hero__stat  { display: flex; flex-direction: column; }
.hero__stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--g800); line-height: 1;
}
.hero__stat span { font-size: .7rem; color: var(--txt-lt); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.stat-sep { width: 1px; height: 44px; background: var(--g200); }

/* Right — visual */
.hero__visual {
  position: relative; display: flex;
  align-items: center; justify-content: center; height: 540px;
}

/* Animated blob — uses exact logo primary green */
.hero__blob {
  width: 440px; height: 440px;
  background: linear-gradient(145deg, var(--g900) 0%, var(--g800) 55%, var(--g600) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 32px 80px rgba(30,92,52,.30), inset 0 -20px 50px rgba(0,0,0,.12);
  animation: morphBlob 9s ease-in-out infinite;
  position: relative; overflow: hidden;
}
/* Earthy root-brown glow at the base — echoes the logo */
.hero__blob::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse at 40% 90%, rgba(107,53,25,.30) 0%, transparent 55%);
}

/* Logo inside the blob */
.hero__logo-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero__logo-wrap img {
  width: 270px; height: 270px; object-fit: contain; border-radius: 50%;
  background: var(--cream); padding: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  animation: floatLogo 4s ease-in-out infinite;
}
.hero__logo-wrap .hero__fallback {
  font-size: 130px; display: none; line-height: 1;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.2));
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%     { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%     { border-radius: 50% 50% 30% 70% / 30% 50% 70% 40%; }
  75%     { border-radius: 40% 60% 60% 40% / 60% 30% 40% 70%; }
}

/* Tagline ribbon pinned below the blob */
.hero__ribbon {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  background: var(--brown); color: var(--white);
  padding: 7px 26px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107,53,25,.35); z-index: 4;
}

/* Floating info cards */
.float-card {
  position: absolute; background: var(--white); border-radius: var(--r-md);
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg); z-index: 3;
  border-left: 3px solid var(--g800);
}
.float-card span   { font-size: 1.5rem; }
.float-card div    { display: flex; flex-direction: column; }
.float-card strong { font-size: .82rem; font-weight: 700; color: var(--txt); }
.float-card small  { font-size: .68rem; color: var(--txt-lt); }
.float-card--top    { top: 6%;  right: -14px; animation: floatCard 6s ease-in-out infinite; }
.float-card--bottom { bottom: 16%; left: -14px; animation: floatCard 6s ease-in-out infinite 2.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* Decorative leaves */
.deco { position: absolute; font-size: 1.8rem; opacity: .45; animation: spinLeaf 14s linear infinite; }
.deco.l1 { top: 3%;   left: 7%;  animation-duration: 16s; }
.deco.l2 { bottom: 5%; right: 7%; animation-direction: reverse; animation-duration: 18s; }
.deco.l3 { top: 46%; left: 1%;  animation-duration: 11s; }
@keyframes spinLeaf { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Background decorative circles */
.hero__deco { position: absolute; border-radius: 50%; pointer-events: none; opacity: .04; }
.hero__deco--1 { width: 620px; height: 620px; background: var(--g800); top: -180px; right: -80px; }
.hero__deco--2 { width: 360px; height: 360px; background: var(--brown); bottom: -80px; left: -110px; }

/* ============================================================
   FEATURES STRIP — logo deep green background
   ============================================================ */
.features {
  background: linear-gradient(135deg, var(--g900) 0%, var(--g800) 100%);
  padding: 54px 0; position: relative; overflow: hidden;
}
.features::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.features__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  position: relative; z-index: 1;
}
.feature { text-align: center; color: var(--white); padding: 0 24px; }
.feature + .feature { border-left: 1px solid rgba(255,255,255,.1); }
.feature__icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.feature h3    { font-size: .95rem; font-weight: 700; font-family: 'Inter',sans-serif; margin-bottom: 6px; }
.feature p     { font-size: .82rem; opacity: .72; line-height: 1.55; }

/* ============================================================
   PLANTS SECTION
   ============================================================ */
.plants-section { padding: 100px 0; background: var(--white); }

.filter-bar {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px;
}
.filter-btn {
  padding: 10px 22px; border: 2px solid var(--g200); background: transparent;
  border-radius: var(--r-full); font-size: .85rem; font-weight: 700;
  font-family: 'Inter',sans-serif; cursor: pointer; color: var(--txt-md);
  transition: all var(--ease);
}
.filter-btn:hover  { border-color: var(--g800); color: var(--g800); }
.filter-btn.active { background: var(--g800); border-color: var(--g800); color: var(--white); }

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

.plant-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--g100); box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  opacity: 0; transform: translateY(24px);
}
.plant-card--in { animation: riseIn .45s ease forwards; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }
.plant-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }

.plant-card__img {
  height: 220px; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.plant-card__emoji {
  font-size: 84px; line-height: 1;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
  transition: transform var(--ease);
}
.plant-card:hover .plant-card__emoji { transform: scale(1.12) translateY(-6px); }
.plant-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--g900);
  font-size: .64rem; font-weight: 800; padding: 4px 10px;
  border-radius: var(--r-full); letter-spacing: .05em; text-transform: uppercase;
}

.plant-card__body { padding: 20px; }
.plant-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cat-pill {
  font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--g800); background: var(--g50); padding: 3px 10px; border-radius: var(--r-full);
}
.care-dot   { font-size: .72rem; font-weight: 700; }
.plant-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.plant-card__nick { font-size: .72rem; color: var(--txt-lt); font-style: italic; margin-bottom: 12px; }
.plant-card__reqs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.req {
  font-size: .68rem; padding: 4px 10px;
  background: var(--cream); border-radius: var(--r-full); color: var(--txt-md); font-weight: 500;
}
.plant-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--g100);
}
.plant-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700; color: var(--g800);
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-section { padding: 100px 0; background: var(--cream); }
.collections-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.coll-card {
  border-radius: var(--r-lg); padding: 44px 24px; text-align: center;
  cursor: pointer; transition: transform var(--ease), box-shadow var(--ease);
}
.coll-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.coll-card--indoor   { background: linear-gradient(145deg,#d4edd9,#a8d8b2); }
.coll-card--outdoor  { background: linear-gradient(145deg,#fde8c8,#f5c98a); }
.coll-card--succulent{ background: linear-gradient(145deg,#f5d4e0,#eaa8bc); }
.coll-card--herb     { background: linear-gradient(145deg,#d4edd9,#8fc4a0); }
.coll-card__emoji { font-size: 3rem; display: block; margin-bottom: 18px; }
.coll-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--txt); }
.coll-card p  { font-size: .8rem; color: var(--txt-md); margin-bottom: 18px; }
.coll-link {
  font-size: .85rem; font-weight: 800; color: var(--g800);
  background: none; border: none; cursor: pointer;
  font-family: 'Inter',sans-serif;
  text-decoration: underline; text-underline-offset: 3px;
  transition: letter-spacing var(--ease);
}
.coll-link:hover { letter-spacing: .04em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center; height: 480px;
}
/* Circular frame for the logo */
.about-ring {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(145deg, var(--g50), var(--g100));
  border: 6px solid var(--g200);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
}
.about-ring img {
  width: 280px; height: 280px; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 6px 20px rgba(30,92,52,.18));
}
.about-ring .about-fallback { font-size: 130px; display: none; }

.about-badge {
  position: absolute; bottom: 28px; right: -8px;
  background: var(--brown); color: var(--white);
  padding: 22px 28px; border-radius: var(--r-md);
  box-shadow: var(--sh-lg); text-align: center;
}
.about-badge strong {
  font-family: 'Playfair Display',serif; font-size: 2.4rem;
  font-weight: 700; line-height: 1; display: block;
}
.about-badge span { font-size: .76rem; opacity: .85; margin-top: 4px; display: block; }

.about-content .eyebrow { margin-bottom: 16px; }
.about-lead { font-size: 1.02rem; color: var(--txt-md); line-height: 1.78; margin: 16px 0 32px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.about-list li { display: flex; gap: 16px; align-items: flex-start; }
.about-icon {
  width: 46px; height: 46px; background: var(--g50); border: 2px solid var(--g100);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.about-list strong { display: block; font-weight: 700; margin-bottom: 4px; }
.about-list p      { font-size: .875rem; color: var(--txt-md); line-height: 1.55; }

/* ============================================================
   CARE
   ============================================================ */
.care-section { padding: 100px 0; background: var(--cream); }
.care-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.care-card {
  background: var(--white); padding: 36px 24px; border-radius: var(--r-lg);
  text-align: center; box-shadow: var(--sh-sm); border: 1px solid var(--g100);
  transition: transform var(--ease), box-shadow var(--ease);
}
.care-card:hover   { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.care-card__icon   { font-size: 2.4rem; margin-bottom: 18px; }
.care-card h3      { margin-bottom: 12px; }
.care-card p       { font-size: .875rem; color: var(--txt-md); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS — logo deep green background
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--g900) 0%, var(--g800) 100%);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(107,53,25,.22) 0%, transparent 50%);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  position: relative; z-index: 1;
}
.t-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 32px; color: var(--white);
  backdrop-filter: blur(8px); transition: background var(--ease), transform var(--ease);
}
.t-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.stars { color: #f4d03f; font-size: 1rem; letter-spacing: 2px; margin-bottom: 18px; }
.t-card p { font-size: .9rem; line-height: 1.7; opacity: .88; font-style: italic; margin-bottom: 24px; }
.t-author  { display: flex; align-items: center; gap: 12px; }
.t-avatar  {
  width: 44px; height: 44px; border-radius: 50%; background: var(--g500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.t-author strong { display: block; font-size: .9rem; }
.t-author span   { font-size: .72rem; opacity: .6; }

/* ============================================================
   NEWSLETTER — earthy root-brown (logo trunk color)
   ============================================================ */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-md) 100%);
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.newsletter-text span {
  display: block; font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 8px;
}
.newsletter-text h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 8px; }
.newsletter-text p  { color: rgba(255,255,255,.78); font-size: .9rem; }
.newsletter-form    { display: flex; gap: 12px; flex-shrink: 0; }
.newsletter-input {
  padding: 14px 22px; border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14); border-radius: var(--r-full);
  font-size: .9rem; color: var(--white); outline: none;
  width: 280px; font-family: 'Inter',sans-serif;
  transition: border-color var(--ease);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-input:focus        { border-color: rgba(255,255,255,.75); }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section { padding: 100px 0; background: var(--cream); }
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  max-width: 880px; margin: 0 auto;
}
.location-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 44px 40px; box-shadow: 0 4px 24px rgba(30,92,52,.08);
  border: 2px solid var(--g100); display: flex; flex-direction: column; gap: 28px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.location-card:hover {
  box-shadow: 0 12px 48px rgba(30,92,52,.14); transform: translateY(-4px);
}
.location-card__header {
  display: flex; align-items: center; gap: 18px;
}
.location-card__icon {
  width: 56px; height: 56px; background: var(--g50); border: 2px solid var(--g100);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.location-card__header h3 { font-size: 1.4rem; margin-bottom: 6px; }
.location-pill {
  display: inline-block; padding: 3px 12px; background: var(--g50);
  border-radius: var(--r-full); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--g700);
}
.location-details { list-style: none; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.location-details li { display: flex; gap: 14px; align-items: flex-start; }
.location-details li > span { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.location-details strong { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 3px; }
.location-details p { font-size: .87rem; color: var(--txt-md); line-height: 1.5; }
.location-map-btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid    { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2       { margin-bottom: 36px; }
.contact-details       { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; background: var(--g50); border: 2px solid var(--g100);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 4px; }
.contact-item p      { font-size: .875rem; color: var(--txt-md); line-height: 1.5; }

.contact-form-wrap { background: var(--cream); border-radius: var(--r-lg); padding: 44px; }
.contact-form h3   { font-size: 1.3rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px; border: 2px solid transparent;
  background: var(--white); border-radius: var(--r-sm);
  font-size: .9rem; font-family: 'Inter',sans-serif; color: var(--txt);
  outline: none; transition: border-color var(--ease);
}
.form-input:focus, .form-textarea:focus { border-color: var(--g600); }
.form-input    { margin-bottom: 16px; }
.form-textarea { resize: vertical; min-height: 120px; margin-bottom: 22px; }

/* ============================================================
   FOOTER — darkest green (#0a1f10)
   ============================================================ */
.footer { background: var(--g950); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo img {
  height: 56px; width: 56px; object-fit: contain; border-radius: 50%;
  filter: brightness(0) invert(1) opacity(.85);
}
.footer-logo-name {
  font-family: 'Dancing Script', cursive; font-size: 1.3rem; color: var(--white); display: block;
}
.footer-logo-sub {
  font-size: .62rem; font-style: normal; color: var(--brown-lt);
  text-transform: uppercase; letter-spacing: .14em; display: block; margin-top: 2px;
}
.footer-brand p { font-size: .84rem; line-height: 1.65; color: rgba(255,255,255,.5); max-width: 280px; }
.social-links   { display: flex; gap: 10px; margin-top: 22px; }
.social-links a { font-size: 1.15rem; text-decoration: none; opacity: .5; transition: opacity var(--ease); }
.social-links a:hover { opacity: 1; }

.footer-col h4 {
  font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brown-lt); margin-bottom: 20px; font-family: 'Inter',sans-serif;
}
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a    { text-decoration: none; color: rgba(255,255,255,.5); font-size: .86rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .plants-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .collections-grid  { grid-template-columns: repeat(2,1fr); }
  .care-grid         { grid-template-columns: repeat(2,1fr); }
  .features__grid    { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .feature + .feature{ border-left: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-visual      { height: 320px; }
  .about-ring        { width: 280px; height: 280px; }
  .about-ring img    { width: 200px; height: 200px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .locations-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; background: var(--cream);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 28px; transform: translateX(-100%); transition: transform var(--ease); z-index: 999;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__links a     { font-size: 1.1rem; padding: 12px 28px; }
  .hero__grid       { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__desc       { margin-left: auto; margin-right: auto; }
  .hero__buttons    { justify-content: center; }
  .hero__stats      { justify-content: center; }
  .hero__visual     { height: 340px; }
  .hero__blob       { width: 300px; height: 300px; }
  .hero__logo-wrap img { width: 180px; height: 180px; }
  .float-card       { display: none; }
  .plants-grid      { grid-template-columns: repeat(2,1fr); }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form  { flex-direction: column; width: 100%; max-width: 400px; }
  .newsletter-input { width: 100%; }
  .contact-form-wrap{ padding: 28px 22px; }
}
@media (max-width: 520px) {
  .plants-grid      { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .care-grid        { grid-template-columns: 1fr; }
  .features__grid   { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .hero             { padding-top: 100px; }
}
