/* ============================================================
   Huntertown Gardens — the original farmer's market since 1937
   Kraft & cream · botanical green · terracotta · harvest gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Young+Serif&family=Karla:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

:root {
  --cream: #f8f4e9;
  --kraft: #efe7d4;
  --panel: #fffdf6;
  --line: #e0d6bd;
  --green: #33613f;
  --green-deep: #24492e;
  --green-soft: #e3ecdd;
  --terra: #bc5b34;
  --terra-soft: #f6e3d8;
  --gold: #d9a53f;
  --ink: #33301f;
  --muted: #7c745c;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(51, 48, 31, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Karla', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.68;
}

img { max-width: 100%; display: block; }
::selection { background: var(--green); color: #fffdf6; }

h1, h2, h3 { font-family: 'Young Serif', Georgia, serif; line-height: 1.12; font-weight: 400; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.4rem; }
a { color: var(--green); }

/* ---------- topbar & header ---------- */
.topbar {
  background: var(--green-deep);
  color: #dcead8;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.45rem 1rem;
}
.topbar strong { color: #fff; }
.topbar a { color: #f2d9a0; font-weight: 700; text-decoration: none; }

header.site {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 14px rgba(51,48,31,0.06);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 1.4rem; max-width: 1180px; margin: 0 auto; flex-wrap: wrap;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }
.roundel {
  width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
  border: 2.5px solid var(--green);
  display: grid; place-items: center;
  background: var(--panel);
  color: var(--green);
  font-family: 'Young Serif', serif;
  font-size: 0.62rem; text-align: center; line-height: 1.25;
  letter-spacing: 0.06em;
}
.brand-name {
  font-family: 'Young Serif', serif;
  font-size: 1.35rem; color: var(--ink); line-height: 1.1;
}
.brand-name span { color: var(--green); }
.brand-tag {
  display: block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
nav.main { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
nav.main a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 0.97rem;
  padding: 0.45rem 0.9rem; border-radius: 999px; transition: background 0.15s, color 0.15s;
}
nav.main a:hover { background: var(--green-soft); color: var(--green-deep); }
nav.main a.active { background: var(--green); color: #fffdf6; }
nav.main a.cta { background: var(--terra); color: #fffdf6; margin-left: 0.35rem; }
nav.main a.cta:hover { background: #9c4525; color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 74vh;
  display: flex; align-items: flex-end;
  color: #fffdf6; isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(30,32,18,0.22) 0%, rgba(30,32,18,0.06) 40%, rgba(24,26,14,0.8) 100%);
}
.hero-inner { padding-top: 5.5rem; padding-bottom: 3.2rem; width: 100%; }
.hero .kicker {
  display: inline-block; background: var(--terra);
  color: #fff; font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero h1 {
  color: #fffdf6; font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  max-width: 16ch; text-shadow: 0 3px 22px rgba(0,0,0,0.45);
}
.hero p.lede {
  max-width: 54ch; margin: 1rem 0 1.8rem;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  color: #f3eedd; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero .btns { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero--page { min-height: 46vh; }
.hero--page .hero-inner { padding-top: 4rem; padding-bottom: 2.4rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 800;
  font-size: 1rem; padding: 0.85rem 1.7rem; border-radius: 999px;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.btn-green { background: var(--green); color: #fffdf6; }
.btn-green:hover { background: var(--green-deep); }
.btn-terra { background: var(--terra); color: #fffdf6; }
.btn-terra:hover { background: #9c4525; }
.btn-cream { background: #fffdf6; color: var(--green-deep); }
.btn-outline { background: transparent; color: #fffdf6; border: 2px solid rgba(255,253,246,0.75); }
.btn-outline:hover { background: rgba(255,253,246,0.14); }

/* ---------- info strip ---------- */
.info-strip { background: var(--ink); color: #e7dfc8; }
.info-strip .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.5rem 2rem; padding: 1.1rem 1.4rem;
}
.info-strip .cell { display: flex; align-items: center; gap: 0.75rem; font-size: 0.97rem; }
.info-strip .cell strong { display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.info-strip a { color: #e7dfc8; text-decoration: none; }
.info-strip a:hover { color: #fff; text-decoration: underline; }
.info-ico { font-size: 1.5rem; line-height: 1; }

/* ---------- sections ---------- */
section.block { padding: 4.4rem 0; }
section.block--deep { background: var(--kraft); }
section.block--white { background: var(--panel); }
.eyebrow {
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 0.5rem;
}
.block h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 0.6rem; }
.block .sub { color: var(--muted); max-width: 62ch; margin-bottom: 2.2rem; font-size: 1.08rem; }
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--panel); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(51,48,31,0.18); }
.card img { height: 215px; width: 100%; object-fit: cover; }
.card .pad { padding: 1.2rem 1.3rem 1.4rem; flex: 1; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
.split-img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 10px solid #fff; outline: 1px solid var(--line); transform: rotate(-1deg);
}
.split.rev .split-img { transform: rotate(1deg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 840px) { .split, .split.rev { grid-template-columns: 1fr; gap: 1.8rem; } }

ul.checks { list-style: none; margin-top: 1rem; }
ul.checks li { padding-left: 2rem; position: relative; margin-bottom: 0.65rem; }
ul.checks li::before { content: "🌱"; position: absolute; left: 0; top: 0; font-size: 0.95rem; }

/* ---------- reviews ---------- */
.review {
  background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem 1.7rem 1.5rem; position: relative; border: 1px solid var(--line);
}
.review::before {
  content: "\201C"; font-family: 'Young Serif', serif; font-size: 4.2rem;
  color: var(--kraft); position: absolute; top: 0.4rem; left: 1.1rem; line-height: 1;
}
.review p { position: relative; font-size: 1rem; margin-bottom: 1rem; padding-top: 0.9rem; }
.review .who { font-weight: 800; color: var(--green-deep); font-size: 0.92rem; }
.review .stars { color: var(--gold); letter-spacing: 0.12em; margin-bottom: 0.2rem; }

/* ---------- season cards ---------- */
.season {
  background: var(--panel); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1.2fr;
  margin-bottom: 1.8rem;
}
.season img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.season .pad { padding: 1.8rem 1.9rem; }
.season .when {
  display: inline-block; background: var(--terra-soft); color: var(--terra);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; padding: 0.25rem 0.85rem; margin-bottom: 0.7rem;
}
.season h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.season p { color: var(--muted); }
.season .tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.season .tags span {
  background: var(--green-soft); color: var(--green-deep);
  border-radius: 999px; font-weight: 700; font-size: 0.88rem; padding: 0.28rem 0.85rem;
}
.season.flip { grid-template-columns: 1.2fr 1fr; }
.season.flip img { order: 2; }
@media (max-width: 780px) {
  .season, .season.flip { grid-template-columns: 1fr; }
  .season.flip img { order: 0; }
}

/* ---------- timeline ---------- */
.timeline { position: relative; max-width: 720px; margin: 2.2rem auto 0; padding-left: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 3px; background: var(--line); border-radius: 2px;
}
.tl {
  position: relative; padding-bottom: 2rem;
}
.tl::before {
  content: ""; position: absolute; left: -2.2rem; top: 6px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--green); border: 4px solid var(--cream);
  transform: translateX(0.5px);
}
.tl .year {
  font-family: 'Young Serif', serif; font-size: 1.4rem; color: var(--terra);
}
.tl h3 { font-size: 1.2rem; margin: 0.15rem 0 0.3rem; }
.tl p { color: var(--muted); max-width: 58ch; }

/* ---------- banner ---------- */
.banner {
  position: relative; color: #fffdf6; isolation: isolate; overflow: hidden;
  border-radius: var(--radius);
}
.banner img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(26,30,16,0.84) 0%, rgba(26,30,16,0.45) 60%, rgba(26,30,16,0.2) 100%);
}
.banner .pad { padding: 3.2rem 2.6rem; max-width: 62%; }
.banner h2 { color: #fffdf6; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 0.7rem; }
.banner p { color: #ece5d0; margin-bottom: 1.5rem; }
@media (max-width: 720px) { .banner .pad { max-width: 100%; padding: 2.4rem 1.6rem; } }

/* ---------- hours & map ---------- */
table.hours { width: 100%; border-collapse: collapse; }
table.hours td { padding: 0.7rem 0.4rem; border-bottom: 1px dashed var(--line); font-size: 1.02rem; }
table.hours td:last-child { text-align: right; font-weight: 800; }

.map-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  border: 10px solid #fff; outline: 1px solid var(--line);
}
.map-frame iframe { display: block; width: 100%; height: 400px; border: 0; }

.tip {
  background: var(--terra-soft); border-left: 5px solid var(--terra);
  border-radius: 0 12px 12px 0; padding: 1rem 1.3rem;
  font-size: 0.98rem; margin: 1.6rem 0;
}
.tip strong { color: var(--terra); }

/* ---------- footer ---------- */
footer.site { background: var(--green-deep); color: #dbe6d4; }
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem; padding: 3rem 0 2rem;
}
@media (max-width: 860px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h4 { font-family: 'Young Serif', serif; color: #fffdf6; font-size: 1.05rem; margin-bottom: 0.8rem; }
footer.site a { color: #dbe6d4; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.45rem; font-size: 0.96rem; }
footer.site .brand-name { color: #fffdf6; }
footer.site p.small { font-size: 0.9rem; color: #b8cbb0; margin-top: 0.6rem; }
.footnote {
  border-top: 1px solid rgba(219,230,212,0.25);
  padding: 1.2rem 0 1.6rem; font-size: 0.85rem; color: #a9bfa0; text-align: center;
}
.footnote strong { color: #dbe6d4; }

@media (max-width: 640px) {
  .hero { min-height: 62vh; }
  nav.main { justify-content: center; width: 100%; }
  .nav-row { justify-content: center; }
}
