/* Carney's Produce marketing home — matches carneys cream/forest/barn */
:root {
  --cream: #f7f2e8;
  --cream-dark: #ebe4d6;
  --forest: #1e4d2b;
  --forest-light: #2d6a3e;
  --barn: #8b2e2e;
  --barn-dark: #6e2424;
  --ink: #1a1a1a;
  --muted: #4a4a4a;
  --white: #fff;
  --max: 1100px;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--cream); color: var(--ink); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.15rem; }
.muted { color: var(--muted); }

.demo-banner {
  background: var(--barn);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.demo-banner span { opacity: 0.85; margin: 0 0.35rem; }

.site-header {
  background: var(--forest);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}
.logo-link img {
  border-radius: 8px;
  background: #fff;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text small { font-weight: 600; font-size: 0.78rem; opacity: 0.85; }
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
}
.header-nav a {
  color: #e8f5e9;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.header-nav a:hover { color: #fff; }
.btn-nav {
  background: var(--barn) !important;
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
}

.hero {
  position: relative;
  color: #fff;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.15rem 3rem;
  max-width: 640px;
}
.hero-logo {
  width: min(220px, 70vw);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  background: #fff;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 800;
  color: #c8e6c9;
  margin: 0 0 0.5rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
}
.lead { font-size: 1.1rem; margin: 0.85rem 0 1.25rem; color: #f0f7f1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--barn); color: #fff; }
.btn.primary:hover { background: var(--barn-dark); }
.btn.ghost { background: transparent; border-color: #fff; color: #fff; }
.btn.ghost.dark { border-color: var(--forest); color: var(--forest); }
.btn.ghost.dark:hover { background: var(--cream-dark); }

.strip {
  background: var(--forest);
  color: #fff;
  padding: 1.25rem 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.strip-grid strong { display: block; font-size: 1.05rem; }
.strip-grid span { font-size: 0.92rem; opacity: 0.9; }

.section { padding: 2.5rem 0; }
.section-alt { background: var(--cream-dark); }
.section h2 { margin: 0 0 0.5rem; color: var(--forest); font-size: 1.65rem; }
.section-sub { margin: 0 0 1.25rem; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
.photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #d4cbb8;
}
.photo figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 120px;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.cat-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  filter: brightness(0.55);
}
.cat-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem;
  font-weight: 800;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #d4cbb8;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  .visit-grid { grid-template-columns: 1fr; }
}
.big-phone { font-size: 1.5rem; font-weight: 800; margin: 0.35rem 0; }
.big-phone a { text-decoration: none; color: var(--forest); }
.cta-card {
  background: #fff;
  border: 1px solid #d4cbb8;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.cta-card .plaque {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  background: var(--cream);
  border-radius: 8px;
}
.cta-card .btn { margin: 0.35rem 0.35rem 0 0; }

.site-footer {
  background: var(--forest);
  color: #e8f5e9;
  padding: 1.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}
.footer-brand strong { display: block; color: #fff; }
.footer-brand span { font-size: 0.85rem; opacity: 0.85; }
.footer-note { margin: 0; font-size: 0.9rem; }
.footer-note a { color: #fff; font-weight: 700; }
