/* Deep Roots Hydro — shared styles
   Palette pulled from the storefront sign: deep green on white, black accents.
   Vibe: Expert / Clean / Local */

:root {
  --green-900: #0e2d18;
  --green-800: #143d20;
  --green-700: #1a5c2e;
  --green-600: #217a3c;
  --green-100: #e6f2e9;
  --green-50:  #f3f8f4;
  --ink: #16211a;
  --ink-soft: #47554c;
  --line: #dde5df;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(14, 45, 24, 0.08), 0 12px 32px rgba(14, 45, 24, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
}

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

a { color: var(--green-700); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-900);
  color: #cfe3d5;
  font-size: 0.85rem;
}
.topbar .wrap {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ---------- Header / nav ---------- */
header.site {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 8px; padding-bottom: 8px; gap: 20px; flex-wrap: wrap;
}
.brand { display: inline-block; }
.brand img { height: 72px; width: auto; display: block; }
nav.main { display: flex; gap: 4px; flex-wrap: wrap; }
nav.main a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600;
  padding: 8px 14px; border-radius: 999px; font-size: 0.95rem;
}
nav.main a:hover { background: var(--green-50); color: var(--green-800); }
nav.main a.active { background: var(--green-100); color: var(--green-800); }
nav.main a.cta {
  background: var(--green-700); color: #fff;
}
nav.main a.cta:hover { background: var(--green-800); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(33, 122, 60, 0.55), transparent 60%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
  color: #fff;
}
.hero .wrap {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center; padding-top: 72px; padding-bottom: 72px;
}
.hero .kicker {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12;
  letter-spacing: -0.015em; margin-bottom: 18px; font-weight: 800;
}
.hero p.lede { color: #d7e8dc; font-size: 1.13rem; max-width: 34em; margin-bottom: 30px; }
.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 1rem;
}
.btn.primary { background: #fff; color: var(--green-800); }
.btn.primary:hover { background: var(--green-100); }
.btn.ghost { color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn.solid { background: var(--green-700); color: #fff; }
.btn.solid:hover { background: var(--green-800); }

.hero .photo-card {
  background: #fff; padding: 10px 10px 14px; border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: rotate(1.5deg);
}
.hero .photo-card img { border-radius: 8px; width: 100%; }
.hero .photo-card figcaption {
  color: var(--ink-soft); font-size: 0.83rem; text-align: center; padding-top: 10px;
}

/* ---------- Info strip ---------- */
.info-strip { background: var(--green-50); border-bottom: 1px solid var(--line); }
.info-strip .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 22px; padding-bottom: 22px;
}
.info-strip .cell strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: 2px;
}
.info-strip .cell { font-size: 0.98rem; color: var(--ink); }
.info-strip a { text-decoration: none; font-weight: 600; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
section.block.tint { background: var(--green-50); }
.block h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -0.01em;
  margin-bottom: 10px; font-weight: 800; color: var(--green-900);
}
.block .sub { color: var(--ink-soft); max-width: 44em; margin-bottom: 40px; font-size: 1.05rem; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card .pad { padding: 18px 20px 20px; }
.card h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--green-900); }
.card p { font-size: 0.94rem; color: var(--ink-soft); }

.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
}
.value-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-100); color: var(--green-800);
  font-weight: 800; font-size: 1.15rem; margin-bottom: 14px;
}
.value-card h3 { font-size: 1.06rem; margin-bottom: 6px; color: var(--green-900); }
.value-card p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Feature split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split .tag {
  display: inline-block; background: var(--green-100); color: var(--green-800);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.split h2 { margin-bottom: 14px; }
.split p { color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Feature band (high-emphasis split on dark green) ---------- */
.feature-band {
  background:
    radial-gradient(900px 400px at 15% -10%, rgba(33, 122, 60, 0.55), transparent 60%),
    linear-gradient(140deg, var(--green-900), var(--green-800) 55%, var(--green-700));
  color: #fff;
}
.feature-band .wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding-top: 64px; padding-bottom: 64px;
}
.feature-band .tag {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.feature-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -0.01em;
  margin-bottom: 14px; font-weight: 800; color: #fff;
}
.feature-band p { color: #d7e8dc; margin-bottom: 14px; }
.feature-band .btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.feature-band img {
  border-radius: var(--radius); width: 100%;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* ---------- Pills / brands ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px; font-weight: 600; font-size: 0.95rem; color: var(--ink);
}
.pill.leaf::before { content: "✓  "; color: var(--green-600); font-weight: 800; }

.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.brand-grid .brand {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 10px; text-align: center; font-weight: 700; color: var(--green-900);
  font-size: 1rem;
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(140deg, var(--green-800), var(--green-700)); color: #fff; }
.cta-band .wrap {
  padding-top: 60px; padding-bottom: 60px; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; font-weight: 800; }
.cta-band p { color: #d7e8dc; margin-bottom: 26px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
}
.contact-card strong {
  display: block; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: 8px;
}
.contact-card .big { font-size: 1.25rem; font-weight: 700; color: var(--green-900); text-decoration: none; display: inline-block; }
.contact-card .big:hover { color: var(--green-700); }
.contact-card p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 6px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table td { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

.map-frame {
  border: 0; width: 100%; height: 420px; border-radius: var(--radius);
  box-shadow: var(--shadow); display: block;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption { padding: 10px 14px; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer.site { background: var(--green-900); color: #b9d2c1; font-size: 0.95rem; }
footer.site .wrap {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  padding-top: 56px; padding-bottom: 40px;
}
footer.site h4 {
  color: #fff; font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
footer.site a { color: #e6f2e9; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
footer .fine {
  border-top: 1px solid rgba(255,255,255,0.12);
}
footer .fine .wrap {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding-top: 18px; padding-bottom: 22px; font-size: 0.82rem; color: #8fae99;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--green-900), var(--green-800)); color: #fff; }
.page-hero .wrap { padding-top: 56px; padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 10px; }
.page-hero p { color: #d7e8dc; max-width: 40em; font-size: 1.08rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap, .split, .feature-band .wrap { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .contact-grid, .gallery { grid-template-columns: 1fr 1fr; }
  .grid-4, .brand-grid { grid-template-columns: 1fr 1fr; }
  .info-strip .wrap { grid-template-columns: 1fr; gap: 14px; }
  footer.site .wrap { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .contact-grid, .gallery { grid-template-columns: 1fr; }
  section.block { padding: 52px 0; }
  .topbar .wrap { justify-content: center; }
}
