/* ============================================================
   BOOZIE CREEK FARM — style.css
   Palette: muted greens + honey accent
   Fonts: Young Serif (headings) / Nunito Sans (body)
   ============================================================ */

:root {
  --pine:      #3F4A3A;   /* dark green — nav, footer, headings */
  --sage:      #7D8B6F;   /* mid green — accents, dividers */
  --sage-tint: #E9ECE2;   /* pale green — alternate sections */
  --linen:     #F6F4EC;   /* page background */
  --honey:     #C9922E;   /* accent — buttons, highlights */
  --honey-tint:#F3E3C2;   /* pale honey — notices */
  --bark:      #262B22;   /* body text */

  --font-display: 'Young Serif', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, Segoe UI, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--bark);
  background: var(--linen);
}

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--pine); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

a { color: var(--pine); }

.eyebrow {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: .75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--honey); color: var(--bark); }
.btn-solid:hover { background: #d9a441; }
.btn-ghost { border: 2px solid rgba(255,255,255,.85); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-pine { background: var(--pine); color: var(--linen); }
.btn-pine:hover { background: #4d5a49; }

/* ---------- Navigation ---------- */
.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 1.1rem 0;
}
.site-nav.solid { position: static; background: var(--pine); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}
.nav-links { list-style: none; display: flex; gap: 1.8rem; }
.nav-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--honey); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 34px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}
.nav-toggle span { top: 15px; }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }

/* ---------- Hero (landing page) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero video.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(38,43,34,.35), rgba(38,43,34,.6));
}
.hero-inner { position: relative; z-index: 2; color: #fff; padding: 6rem 1.25rem 3rem; }
.hero-inner .eyebrow { color: var(--honey-tint); }
.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 1rem;
}
.slogan {
  max-width: 38ch;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--pine);
  color: var(--linen);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { color: var(--sage-tint); max-width: 55ch; margin: .5rem auto 0; }

/* ---------- Sections ---------- */
section { padding: 4.25rem 0; }
.section-alt { background: var(--sage-tint); }

/* ---------- Creek divider (signature) ---------- */
.creek { line-height: 0; }
.creek svg { width: 100%; height: 42px; display: block; }

/* ---------- Intro split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split img { border-radius: 12px; box-shadow: 0 10px 30px rgba(38,43,34,.15); }
.split.reverse > *:first-child { order: 2; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(38,43,34,.10);
  display: flex;
  flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body p { flex: 1; font-size: .98rem; }
.card-body .btn { margin-top: 1.1rem; align-self: flex-start; padding: .6rem 1.3rem; }
.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--sage-tint);
  color: var(--pine);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.badge.honey { background: var(--honey-tint); color: #7a5a15; }

/* ---------- Shop ---------- */
.notice {
  background: var(--honey-tint);
  border-left: 5px solid var(--honey);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 2.5rem;
  font-size: .98rem;
}
.price { font-weight: 800; color: var(--pine); margin-top: .35rem; }

/* ---------- About video ---------- */
.video-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(38,43,34,.18);
  margin-top: 2rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0 6px 22px rgba(38,43,34,.10);
}

/* ---------- Footer ---------- */
footer {
  background: var(--pine);
  color: var(--sage-tint);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
footer a { color: var(--honey-tint); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer ul { list-style: none; }
footer li { margin-bottom: .4rem; }
.footer-note {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ---------- Mobile ---------- */
@media (max-width: 700px) {
  .nav-toggle { display: block; z-index: 30; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--pine);
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 1rem;
  }
  .nav-links li { text-align: center; padding: .55rem 0; }
  body.nav-open .nav-links { display: flex; }
  .site-nav.solid .nav-links, .site-nav .nav-links { box-shadow: 0 12px 24px rgba(0,0,0,.25); }

  .split, .split.reverse { grid-template-columns: 1fr; gap: 1.75rem; }
  .split.reverse > *:first-child { order: 0; }
  section { padding: 3rem 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}
