/*
Theme Name: Straight from the Hive
Theme URI: https://straightfromthehivehoney.co.uk
Author: The Davidge Family
Description: Heritage honey brand theme for Straight from the Hive, Edmondsham Dorset.
Version: 2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --gold:       #B8860B;
  --gold-light: #D4A017;
  --gold-pale:  #F5EDD6;
  --cream:      #FDFAF3;
  --parchment:  #F2E8CC;
  --bark:       #3B2507;
  --bark-mid:   #6B4C2A;
  --bark-light: #9C7B52;
  --off-white:  #FEFCF7;
  --text:       #2A1A08;
  --muted:      #7A6248;
  --border:     #DDD0B0;
  --fb:         #1877F2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── ANNOUNCEMENT BANNER ── */
.site-banner {
  background: var(--bark);
  text-align: center;
  padding: 9px 1rem;
  font-size: 12px;
  color: var(--gold-pale);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}
.site-banner a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid var(--gold-light); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  color: var(--bark-mid);
  text-decoration: none;
  padding: 6px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bark); }
.nav-fb {
  background: var(--bark) !important;
  color: var(--gold-pale) !important;
  border-radius: 2px !important;
  padding: 7px 16px !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
}
.nav-fb:hover { background: var(--gold) !important; color: #fff !important; }
.nav-fb svg { width: 13px; height: 13px; fill: currentColor; }

/* ── HERO ── */
.site-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--bark);
}
.hero-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.hero-content h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-tagline {
  font-size: 15px;
  color: rgba(253,250,243,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  background: #2a1a08;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}
.hero-logo-overlay {
  position: absolute;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(212,160,23,0.4);
  padding: 0.75rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fb);
  color: #fff;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-fb svg { width: 15px; height: 15px; fill: currentColor; }
.btn-fb:hover { background: #1464d8; color: #fff; }
.btn-reels {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bark);
  color: var(--gold-pale);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-reels:hover { background: var(--gold); color: #fff; }

/* ── DIVIDER ── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 18px;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 8px;
  opacity: 0.7;
}
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 1.5rem;
}

/* ── SECTION LAYOUT ── */
.section-wrap { max-width: 1060px; margin: 0 auto; padding: 0 2rem; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--bark);
  text-align: center;
  font-weight: 300;
  margin-bottom: 0.25rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}

/* ── SERVICES STRIP ── */
.services-strip {
  background: var(--parchment);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}
.service-item {
  padding: 2rem 3rem;
  text-align: center;
  border-right: 1px solid var(--border);
  flex: 1;
  max-width: 280px;
}
.service-item:last-child { border-right: none; }
.service-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--bark);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.service-desc {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ── HONEY / JARS ── */
.jars-section { padding: 5rem 2rem; background: var(--cream); }
.jars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.jar-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.jar-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.jar-icon { font-size: 36px; display: block; margin-bottom: 14px; }
.jar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--bark);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.jar-weight { font-size: 12px; color: var(--muted); display: block; margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.jar-price { font-size: 1.1rem; color: var(--gold); display: block; margin-bottom: 16px; font-family: 'Cormorant Garamond', serif; }
.jar-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 5px 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  border-radius: 2px;
  transition: all 0.2s;
}
.jar-card:hover .jar-btn { background: var(--gold); color: #fff; }
.jar-popular {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  padding: 3px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.jars-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 1.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

/* ── ABOUT / STORY ── */
.about-section {
  padding: 5rem 2rem;
  background: var(--bark);
}
.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-section .section-title { color: var(--cream); }
.about-section .section-title em { color: var(--gold-light); }
.about-section .rule { background: var(--gold-light); }
.about-text {
  font-size: 16px;
  color: rgba(253,250,243,0.75);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.about-text strong { color: var(--gold-light); font-weight: 400; }
.about-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 2rem; }
.about-tag {
  border: 1px solid rgba(212,160,23,0.35);
  color: rgba(253,250,243,0.6);
  font-size: 11px;
  padding: 4px 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

/* ── SERVICES DETAIL ── */
.services-section { padding: 5rem 2rem; background: var(--parchment); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.service-card-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.service-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--bark);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.service-card-text { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── FACEBOOK FEED ── */
.fb-section {
  padding: 5rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.fb-feed-container {
  max-width: 800px;
  margin: 0 auto 2rem;
}
.fb-feed-container .cff-wrapper { max-width: 100% !important; }
.fb-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── STATS ── */
.stats-bar {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--bark);
  display: block;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bark);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
  color: rgba(253,250,243,0.45);
  font-size: 12px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  font-weight: 300;
}
.footer-tagline {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(253,250,243,0.4);
  display: block;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  color: rgba(253,250,243,0.5);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { margin: 0.75rem 0; }
.footer-contact a { color: var(--gold-light); text-decoration: none; font-size: 13px; margin: 0 0.75rem; }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253,250,243,0.08);
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .jars-grid { grid-template-columns: 1fr; max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-strip { flex-wrap: wrap; }
  .service-item { border-right: none; border-bottom: 1px solid var(--border); max-width: 100%; }
  .stats-bar { gap: 2rem; }
  .site-nav { padding: 0 1rem; }
  .nav-links { display: none; }
}
