/* Greybull Valley Produce — static clone */
:root {
  --primary: #654747;
  --primary-dark: #592c2c;
  --accent-green: #71de26;
  --accent-forest: #386832;
  --accent-red: #fa0101;
  --text: #2a2a2a;
  --text-muted: #5a5a5a;
  --bg: #ffffff;
  --bg-soft: #f7f9f5;
  --bg-leaf: #eef6e8;
  --border: #e2e8de;
  --max: 1100px;
  --header-h: 72px;
  --radius-btn: 2px;
  --shadow: 0 8px 28px rgba(56, 104, 50, 0.12);
  --font-title: "Forum", "Times New Roman", serif;
  --font-body: "PT Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-forest); text-decoration: none; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}
.btn-green {
  background: var(--accent-forest);
  color: #fff;
  border-color: var(--accent-forest);
}
.btn-green:hover {
  background: #2d5428;
  color: #fff;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.callout {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-forest);
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-banner {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.15)),
    url("../images/flawless_green_leaf_1681947234.jpeg") center/cover no-repeat;
  min-height: 120px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  height: 52px;
  width: auto;
  background: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: flex-end;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a, .nav-toggle-btn {
  display: block;
  padding: 0.55rem 0.7rem;
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border: none;
  background: none;
  cursor: pointer;
}
.nav a:hover, .nav-toggle-btn:hover,
.nav a.active { color: var(--accent-forest); }
.nav-cta { margin-left: 0.5rem; }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  z-index: 50;
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.55rem 1rem;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.45rem 0.7rem;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--text);
}

/* Hero / sections */
.hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-logo { max-width: 420px; margin-inline: auto; }
.section {
  padding: 3.25rem 0;
}
.section-alt { background: var(--bg-soft); }
.section-leaf { background: var(--bg-leaf); }
.section-title { text-align: left; margin-bottom: 1rem; }
.section-lead { max-width: 52rem; color: var(--text-muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.split-rev > :first-child { order: 2; }

.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 42%, rgba(255,255,255,0.2) 100%);
}
.hero-bg .card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  max-width: 540px;
  box-shadow: var(--shadow);
  border-radius: 2px;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent-green);
  border-radius: 1px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  background: #ddd;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery figure:hover img { transform: scale(1.04); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.partner-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.partner-card ul { padding-left: 1rem; margin: 0; color: var(--text-muted); }
.partner-card p { margin: 0; color: var(--text-muted); }

.page-banner {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.45));
}
.page-banner .container {
  position: relative;
  z-index: 1;
  padding-bottom: 1.75rem;
  color: #fff;
}
.page-banner h1 { color: #fff; }

.contact-panel {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.pdf-wrap {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  min-height: 70vh;
}
.pdf-wrap iframe {
  width: 100%;
  height: 80vh;
  border: 0;
  display: block;
}
.pdf-fallback {
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.product-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}
.product-card h3 { color: var(--accent-forest); }
.product-card ul { color: var(--text-muted); }

.lean-bg {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
    url("../images/30841_1693750187.jpeg") center/cover no-repeat;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #f3ecec;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-logo {
  height: 64px;
  width: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 2px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.footer-nav a { color: #fff; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--accent-green); }
.footer-meta {
  font-size: 0.9rem;
  opacity: 0.9;
}
.footer-meta a { color: #fff; text-decoration: underline; }
.footer-copy {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .hero-grid, .split, .gallery, .product-cols { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .split-rev > :first-child { order: 0; }
}
@media (max-width: 768px) {
  .menu-btn { display: inline-flex; }
  .nav-wrap {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav-wrap.open { display: flex; }
  .nav { flex-direction: column; align-items: stretch; }
  .dropdown-menu { position: static; box-shadow: none; border: none; }
  .nav-cta { margin: 0.75rem 0 0; }
  .hero-grid, .split, .product-cols, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .header-banner { min-height: 80px; }
}
