/* ═══════════════════════════════════════════════════
   Nawman's Meadow Apiary — Main Stylesheet
   Honey • Habitat • Heritage | Union County, Ohio
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lora:ital,wght@0,400;0,500;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────── */
:root {
  --honey:        #F59F00;
  --honey-light:  #FFD447;
  --honey-pale:   #FFF6D6;
  --green-deep:   #1F7A5A;
  --green-sage:   #4FA06B;
  --green-light:  #EEF5F0;
  --brown:        #3D2A16;
  --brown-light:  #7B5B3C;
  --cream:        #FFFDF7;
  --charcoal:     #1F1A14;
  --warm-gray:    #4D463D;
  --white:        #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lora', Georgia, serif;
  --ff-sans:    'Source Sans 3', sans-serif;

  --shadow-soft: 0 4px 24px rgba(92,61,30,0.10);
  --shadow-med:  0 8px 40px rgba(92,61,30,0.15);
  --shadow-strong: 0 16px 64px rgba(92,61,30,0.22);

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--green-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
  transition: color var(--transition), text-decoration-color var(--transition);
}
a:hover {
  color: var(--honey);
  text-decoration-color: var(--honey);
}
ul { list-style: none; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.25;
  color: var(--brown);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1.05rem; color: var(--warm-gray); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout ─────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-med);
}
.btn-outline {
  background: transparent;
  color: var(--honey);
  border-color: var(--honey);
}
.btn-outline:hover {
  background: var(--honey);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--honey-pale);
  transform: translateY(-2px);
}

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(253,250,243,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(92,61,30,0.10);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey);
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--honey); }
.nav-cta { margin-left: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2D1F0A 0%, #3D6B4F 50%, #5C3D1E 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,160,32,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(61,107,79,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(92,61,30,0.3) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A020' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 8rem 2rem 6rem;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--honey-light);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--honey-light); }
.hero-tagline {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── Mission Strip ───────────────────────────────── */
.motto-strip {
  background: var(--honey);
  padding: 1.25rem 0;
  text-align: center;
  overflow: hidden;
}
.motto-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}
.motto-dot {
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  line-height: 1;
}

/* ── Cards ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.card-body { padding: 2rem; }
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-deep), var(--honey));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── Grid layouts ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Section headings ───────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── About preview ──────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(145deg, var(--green-deep) 0%, #2A5040 50%, var(--honey) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-strong);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--honey);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-med);
}
.about-badge-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1.25rem; }
.about-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillar {
  text-align: center;
  flex: 1;
}
.pillar-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.pillar-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
}

/* ── Honey section ──────────────────────────────── */
.honey-section { background: var(--honey-pale); }
.honey-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--honey);
  transition: transform var(--transition), box-shadow var(--transition);
}
.honey-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-med); }
.honey-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.honey-card h3 { margin-bottom: 0.75rem; }
.honey-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-deep);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-top: 1rem;
}

/* ── Sponsor section ────────────────────────────── */
.sponsor-section {
  background: linear-gradient(135deg, var(--green-deep) 0%, #2A5040 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.sponsor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sponsor-section .section-label { color: var(--honey-light); }
.sponsor-section h2 { color: var(--white); }
.sponsor-section p { color: rgba(255,255,255,0.75); }
.sponsor-cards { position: relative; z-index: 1; }
.sponsor-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.sponsor-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.sponsor-card-icon { font-size: 2.8rem; margin-bottom: 1.25rem; }
.sponsor-card h3 { color: var(--honey-light); margin-bottom: 0.75rem; }
.sponsor-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.sponsor-cta { position: relative; z-index: 1; text-align: center; margin-top: 3rem; }

/* ── Wildlife / Blog section ────────────────────── */
.wildlife-section { background: var(--green-light); }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-med); }
.blog-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.blog-card-img.monarch { background: linear-gradient(135deg, #F97316, #FCD34D); }
.blog-card-img.bee     { background: linear-gradient(135deg, var(--honey), #92400E); }
.blog-card-img.meadow  { background: linear-gradient(135deg, var(--green-deep), var(--green-sage)); }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.9rem; }
.read-more {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--honey);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.7rem; }

/* ── Contact section ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--honey-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honey);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 500;
}
.contact-value a { color: var(--brown); transition: color var(--transition); }
.contact-value a:hover { color: var(--honey); }

/* Form */
.form { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #DDD5C8;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-note {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--brown);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--honey-light);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  display: block;
}
.footer-col h4 {
  color: var(--honey-light);
  font-size: 0.85rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
  font-family: var(--ff-sans);
}
.footer-links a:hover { color: var(--honey-light); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--honey); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Page Hero (inner pages) ────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--green-deep) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A020' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--honey-light); justify-content: center; display: flex; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto; font-size: 1.1rem; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { height: 340px; }
  .about-badge { right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-pillars { flex-direction: column; gap: 1rem; }
}

/* ── Utility ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-honey  { color: var(--honey); }
.text-green  { color: var(--green-deep); }
.bg-cream    { background: var(--cream); }
.bg-pale     { background: var(--honey-pale); }
.bg-green    { background: var(--green-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider {
  width: 60px; height: 3px;
  background: var(--honey);
  margin: 1.25rem auto;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }


/* Video hero and high-color override layer */
.nav-links a,
.nav-logo,
.btn,
.footer-links a,
.social-btn {
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.hero {
  background: #14140f;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.3) contrast(1.08) brightness(0.72);
}

.hero-bg {
  background:
    radial-gradient(ellipse at 18% 38%, rgba(255, 214, 71, 0.40) 0%, transparent 56%),
    radial-gradient(ellipse at 86% 14%, rgba(245, 159, 0, 0.44) 0%, transparent 52%),
    radial-gradient(ellipse at 60% 82%, rgba(31, 122, 90, 0.52) 0%, transparent 52%),
    linear-gradient(128deg, rgba(19, 16, 10, 0.84) 0%, rgba(32, 47, 38, 0.72) 54%, rgba(61, 42, 22, 0.85) 100%);
}

.hero-blooms {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-blooms span {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  mix-blend-mode: screen;
  opacity: 0.48;
  animation: floatBloom 9s ease-in-out infinite alternate;
}

.hero-blooms span:nth-child(1) {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 16%;
  background: rgba(255, 212, 71, 0.82);
}

.hero-blooms span:nth-child(2) {
  width: 280px;
  height: 280px;
  right: 3%;
  top: -8%;
  background: rgba(245, 159, 0, 0.74);
  animation-delay: 1.6s;
}

.hero-blooms span:nth-child(3) {
  width: 340px;
  height: 340px;
  right: 20%;
  bottom: -18%;
  background: rgba(79, 160, 107, 0.68);
  animation-delay: 0.9s;
}

.hero-content {
  z-index: 3;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
}

.btn-hero-outline {
  border-color: rgba(255, 255, 255, 0.85) !important;
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.16);
}

.btn-hero-outline:hover {
  background: #ffffff;
  color: var(--brown) !important;
  border-color: #ffffff !important;
}

@keyframes floatBloom {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(12px, -18px, 0) scale(1.08); }
}

@media (max-width: 680px) {
  .hero-video {
    opacity: 0.42;
  }

  .hero-blooms span:nth-child(1) {
    width: 240px;
    height: 240px;
  }

  .hero-blooms span:nth-child(2) {
    width: 210px;
    height: 210px;
  }

  .hero-blooms span:nth-child(3) {
    width: 240px;
    height: 240px;
  }
}

/* Contrast and TikTok-media polish */
.nav {
  background: linear-gradient(to bottom, rgba(7, 9, 8, 0.58), rgba(7, 9, 8, 0.08));
}

.nav-logo-text,
.nav-links a {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.nav-logo-sub {
  color: #ffd447;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.nav-logo-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd447 0%, #f59f00 55%, #b86d00 100%);
  color: #2a1e0f;
  font-size: 0.72rem;
  font-family: var(--ff-sans);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.nav.scrolled {
  background: rgba(255, 253, 247, 0.97);
}

.nav.scrolled .nav-logo-text,
.nav.scrolled .nav-links a {
  color: var(--brown);
  text-shadow: none;
}

.nav.scrolled .nav-logo-sub {
  color: var(--honey);
  text-shadow: none;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  background: rgba(16, 17, 15, 0.33);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
}

.hero h1,
.page-hero h1 {
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58);
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.page-hero {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 212, 71, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 82% 12%, rgba(245, 159, 0, 0.26) 0%, transparent 46%),
    linear-gradient(135deg, #123724 0%, #1f7a5a 48%, #5f3f1f 100%);
}

.media-sizzle {
  background: linear-gradient(180deg, #fffdf7 0%, #f7fff7 100%);
}

.media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.media-tile {
  min-height: 220px;
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.media-tile > * {
  position: relative;
  z-index: 1;
}

.media-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.30);
}

.tile-tag {
  align-self: flex-start;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.32rem 0.68rem;
}

.tile-title {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  line-height: 1.2;
}

.tile-tall {
  grid-row: span 2;
  min-height: 456px;
}

.tile-sunflower {
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 215, 68, 0.48) 0%, transparent 42%),
    linear-gradient(145deg, #1f7a5a 0%, #1f5d48 40%, #f59f00 100%);
}

.tile-video-1 {
  background: linear-gradient(145deg, #16543d 0%, #1f7a5a 45%, #ffd447 100%);
}

.tile-video-2 {
  background: linear-gradient(145deg, #6f3f11 0%, #f59f00 46%, #1f7a5a 100%);
}

.tile-video-3 {
  background: linear-gradient(145deg, #0e2a1c 0%, #186148 55%, #7cb66f 100%);
}

@media (max-width: 1000px) {
  .media-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile-tall {
    grid-row: span 1;
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .media-wall {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 0 1rem;
    padding: 7rem 1.1rem 5rem;
  }
}

/* Optional real media files from TikTok */
.tile-sunflower,
.tile-video-1,
.tile-video-2,
.tile-video-3 {
  background-position: center;
  background-size: cover;
}

.tile-sunflower {
  background-image:
    linear-gradient(160deg, rgba(17, 31, 23, 0.20) 0%, rgba(17, 31, 23, 0.56) 100%),
    url('../assets/tiktok-sunflower.jpg');
}

.tile-video-1 {
  background-image:
    linear-gradient(160deg, rgba(10, 27, 20, 0.18) 0%, rgba(10, 27, 20, 0.54) 100%),
    url('../assets/tiktok-hive.jpg');
}

.tile-video-2 {
  background-image:
    linear-gradient(160deg, rgba(35, 21, 10, 0.16) 0%, rgba(35, 21, 10, 0.52) 100%),
    url('../assets/tiktok-meadow.jpg');
}

.tile-video-3 {
  background-image:
    linear-gradient(160deg, rgba(10, 15, 18, 0.20) 0%, rgba(10, 15, 18, 0.60) 100%),
    url('../assets/tiktok-daily.jpg');
}

/* Larger logo and typography across all pages */
.nav-inner {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.nav-logo {
  gap: 0.9rem;
}

.nav-logo-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #ffe177 0%, #f7b801 55%, #e08700 100%);
  color: #2b1d0f;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.nav-logo-text {
  font-size: 1.55rem;
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
}

.nav-cta {
  font-size: 0.96rem !important;
  padding: 0.92rem 1.95rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.35rem);
}

.page-hero p {
  font-size: 1.22rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

@media (max-width: 680px) {
  .nav-logo-icon {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.08rem;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .nav-logo-sub {
    font-size: 0.62rem;
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
}

/* Real logo image support */
.nav-logo-image {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.nav-logo-icon.logo-fallback {
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

/* Featured TikTok embed */
.tiktok-feature {
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
}

.tiktok-feature .tiktok-embed {
  margin: 0 !important;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(31, 122, 90, 0.15);
}

/* Icon separators replacing symbol dots */
.motto-dot,
.inline-sep {
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.motto-dot {
  width: 1.2rem;
  height: 1.2rem;
}

.icon-bee {
  background-image: url('../assets/icon-bee.svg');
}

.icon-honey {
  background-image: url('../assets/icon-honey.svg');
}

/* Larger icon tokens for content cards */
.emoji-icon {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.honey-icon .emoji-icon {
  width: 2.8rem;
  height: 2.8rem;
}

/* Logo frame fix: prevent clipping/cropping */
.nav-logo-icon {
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.nav-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
}

.nav-logo-icon.logo-fallback {
  border-radius: 50%;
  background: linear-gradient(150deg, #ffe177 0%, #f7b801 55%, #e08700 100%);
  color: #2b1d0f;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

@media (max-width: 680px) {
  .nav-logo-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 8px;
  }

  .nav-logo-icon.logo-fallback {
    border-radius: 50%;
    font-size: 1.08rem;
  }
}

/* Bigger centered circle behind logo */
.nav-logo-icon {
  position: relative;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  overflow: visible;
  padding: 0;
}

.nav-logo-icon::before {
  content: "";
  position: absolute;
  inset: -0.22rem;
  border-radius: 50%;
  background: linear-gradient(150deg, #ffe177 0%, #f7b801 55%, #e08700 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  z-index: 0;
}

.nav-logo-image {
  position: relative;
  z-index: 1;
  width: 74%;
  height: 74%;
  object-fit: contain;
  object-position: center;
}

.nav-logo-icon.logo-fallback {
  color: #2b1d0f;
  font-weight: 700;
  font-size: 1.35rem;
}

@media (max-width: 680px) {
  .nav-logo-icon {
    width: 3rem;
    height: 3rem;
  }

  .nav-logo-icon::before {
    inset: -0.16rem;
  }

  .nav-logo-image {
    width: 76%;
    height: 76%;
  }
}

/* Homepage consistency + sunflower background */
.hero {
  min-height: 84vh;
  padding-top: 6.8rem;
  padding-bottom: 4rem;
}

.hero-media {
  opacity: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    linear-gradient(140deg, rgba(18, 55, 36, 0.86) 0%, rgba(31, 122, 90, 0.82) 45%, rgba(95, 63, 31, 0.85) 100%),
    radial-gradient(circle at 15% 20%, rgba(255, 223, 94, 0.24) 0%, transparent 36%),
    radial-gradient(circle at 86% 25%, rgba(255, 186, 41, 0.23) 0%, transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(255, 217, 102, 0.18) 0%, transparent 34%),
    url('../assets/logo.png'),
    url('../assets/logo.png');
  background-size: auto, auto, auto, auto, 350px 350px, 280px 280px;
  background-position: center, center, center, center, 7% 68%, 92% 18%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
}

.hero-content {
  background: rgba(18, 26, 21, 0.38);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.hero p {
  font-size: 1.15rem;
}

.hero-tagline {
  font-size: 1.18rem;
}

@media (max-width: 900px) {
  .hero-bg {
    background-size: auto, auto, auto, auto, 220px 220px, 180px 180px;
    background-position: center, center, center, center, 6% 84%, 94% 12%;
  }
}

/* Remote sunflower hero background image */
.hero-bg {
  background:
    linear-gradient(140deg, rgba(18, 55, 36, 0.76) 0%, rgba(31, 122, 90, 0.72) 42%, rgba(95, 63, 31, 0.76) 100%),
    url('https://lh3.googleusercontent.com/gg/AMW1TPqRJzn2hU9zta1EdMnMjtg6YokZCrK5ie20mma6uDl_vBorQHfC5uiPfpf4TKKm_6O7n5VqrARzVCVhI7KDtHcLw5LFNFC1-ua413BT1OBLkWWWMfjrESiZfYm9poc47c0bW0wou85e2aK9N466k4UTIGy7AzSJdKGWTd7K-xzLoSsQxGYasFQjWHyjSg005J0pKwIOAbSdc-_yyMThprnSEnPYkbZ0h4W2LYqOrSr7-B7fpPkVr99KfnGVM-GxuEnXJKFmT-tjCwoirXgGrCAroQKsTHpMBSNxQhJ5l0FNN0re7uuQaKUx7nOGk-RX8VqzehgO_kfOAMZYpOD35DVA=s1024-rj');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Real photo replacements for placeholders */
.hero-bg {
  background:
    linear-gradient(140deg, rgba(18, 55, 36, 0.74) 0%, rgba(31, 122, 90, 0.70) 42%, rgba(95, 63, 31, 0.74) 100%),
    url('../assets/tiktok-sunflower.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.blog-card-img {
  color: transparent;
  font-size: 0;
  background-size: cover;
  background-position: center;
}

.blog-card-img.monarch {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.20)), url('../assets/wildflowers.jpg');
}

.blog-card-img.bee {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.20)), url('../assets/bee-hive.jpg');
}

.blog-card-img.meadow {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.20)), url('../assets/meadow-birds.jpg');
}

/* Replace text placeholders with real images */
.about-img-photo,
.card-honey-photo,
.card-hive-photo,
.card-wildlife-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
}

.about-img-photo {
  background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.25)), url('../assets/tiktok-sunflower.jpg');
}

.card-honey-photo {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.25)), url('../assets/honey-hero.jpg');
}

.card-hive-photo {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.25)), url('../assets/bee-hive.jpg');
}

.card-wildlife-photo {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.25)), url('../assets/meadow-birds.jpg');
}

/* Small feature/icon blocks use real photos too */
.sponsor-card-icon,
.honey-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  color: transparent;
  font-size: 0;
}

.sponsor-card:nth-child(1) .sponsor-card-icon,
.honey-card:nth-child(1) .honey-icon {
  background-image: url('../assets/bee-hive.jpg');
}

.sponsor-card:nth-child(2) .sponsor-card-icon,
.honey-card:nth-child(2) .honey-icon {
  background-image: url('../assets/blossom-1.jpg');
}

.sponsor-card:nth-child(3) .sponsor-card-icon,
.honey-card:nth-child(3) .honey-icon {
  background-image: url('../assets/honey-hero.jpg');
}

/* Remove logo circle/background completely */
.nav-logo-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible;
}

.nav-logo-icon::before {
  content: none !important;
  display: none !important;
}

.nav-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}

@media (max-width: 680px) {
  .nav-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* Larger logo after removing circle */
.nav-logo-icon {
  width: 3.9rem !important;
  height: 3.9rem !important;
}

.nav-logo-image {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 900px) {
  .nav-logo-icon {
    width: 3.4rem !important;
    height: 3.4rem !important;
  }
}

@media (max-width: 680px) {
  .nav-logo-icon {
    width: 3rem !important;
    height: 3rem !important;
  }
}

/* FINAL IMAGE FALLBACKS (hard override for missing-photo boxes) */
.about-page .about-img-main {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.24)), url('../assets/wildflowers.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}
.apiary-page .about-img-main {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.24)), url('../assets/bee-hive.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}
.honey-page .about-img-main {
  background-image: linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.24)), url('../assets/honey-hero.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}
.blog-card-img.monarch,
.blog-card-img.bee,
.blog-card-img.meadow {
  background-size: cover !important;
  background-position: center !important;
}
