*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

:root {
  --gold:   #D4860A;
  --amber:  #F4A81C;
  --cream:  #FFF8E7;
  --warm:   #FEF0C4;
  --brown:  #3D1A00;
  --dark:   #1C0A00;
  --green:  #4A7C59;
  --text:   #3D2B10;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(28, 10, 0, 0.93);
  backdrop-filter: blur(6px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--amber);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo span { color: #fff; }
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber);
}

#site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

#site-nav ul a {
  color: #f5e6c8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
#site-nav ul a:hover { color: var(--amber); }
.nav-active { color: var(--amber) !important; }

#site-nav .nav-cta {
  background: var(--amber);
  color: var(--brown);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  transition: background 0.2s;
}
#site-nav .nav-cta:hover { background: #ffc13a; color: var(--brown); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,10,0,0.82) 0%, rgba(90,45,8,0.72) 50%, rgba(184,110,0,0.6) 100%);
}

.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--amber);
  margin-bottom: 1.2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: #f0ddb8;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--amber);
  color: var(--brown);
}
.btn-primary:hover {
  background: #ffc13a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,134,10,0.45);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  margin-left: 1rem;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-outline-dark {
  border: 2px solid var(--brown);
  color: var(--brown);
}
.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--amber);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── SHARED ── */
section { padding: 5rem 1.5rem; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 1rem;
}

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

/* ── ABOUT ── */
#about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-photo-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,26,0,0.18);
  aspect-ratio: 3/2;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── AWARDS ── */
#awards { background: var(--warm); }

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.awards-photo-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,26,0,0.18);
  aspect-ratio: 5/4;
}
.awards-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.awards-text > p { color: #5a3d1e; margin-bottom: 1.2rem; font-size: 0.98rem; }

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.awards-list li {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}
.awards-list li strong { color: var(--brown); }
.awards-list li span { font-size: 0.85rem; color: var(--gold); display: block; margin-top: 0.1rem; }

.awards-footer { font-style: italic; color: #6b4c2a; font-size: 0.92rem; }

.about-text p { color: #5a3d1e; margin-bottom: 0.9rem; }

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-item strong { display: block; color: var(--brown); }
.feature-item span { font-size: 0.9rem; color: #6b4c2a; }

/* ── PRODUCTS ── */
#products { background: var(--cream); }

.products-header { text-align: center; margin-bottom: 3.5rem; }
.products-header .section-sub { max-width: 560px; margin: 0 auto; color: #6b4c2a; font-size: 1.02rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(61,26,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(61,26,0,0.14);
}

.product-img-wrap {
  height: 220px;
  overflow: hidden;
}
.product-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-photo { transform: scale(1.05); }

.product-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, #FFF9C4 0%, #F9A825 100%);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.product-body .product-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
}
.product-body p { font-size: 0.95rem; color: #6b4c2a; margin-bottom: 1rem; }

.product-sizes {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.size-pill {
  background: var(--warm);
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}
.size-label { color: #6b4c2a; }
.size-price { font-weight: 700; color: var(--brown); }
.size-pill--sold-out { opacity: 0.55; }
.size-sold-out { font-style: italic; color: #999; font-size: 0.8rem; }

.out-of-stock {
  display: inline-block;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #ddd;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
}

.btn-order {
  display: inline-block;
  margin-top: auto;
  background: var(--brown);
  color: var(--amber);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-order:hover { background: var(--gold); color: var(--dark); }

/* ── STOCKISTS ── */
#stockists { background: #fff; }

.stockists-header { text-align: center; margin-bottom: 3rem; }
.stockists-header .section-sub { max-width: 520px; margin: 0 auto; color: #6b4c2a; font-size: 1.02rem; }

.stockists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.stockist-card {
  background: var(--cream);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--warm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.stockist-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(61,26,0,0.1);
}

.stockist-logo-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stockist-logo {
  max-height: 160px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
}
.stockist-logo--circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}
.stockist-name-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.stockist-location { font-size: 0.88rem; color: #6b4c2a; }
.stockist-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* ── BROADS ── */
#broads {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.broads-photo-wrap {
  position: absolute;
  inset: 0;
}
.broads-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45) saturate(0.8);
}
.broads-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,124,89,0.6) 0%, rgba(28,80,56,0.7) 100%);
}

.broads-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#broads .section-label { color: #a8d5b5; }
#broads h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
#broads p {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #d0eed8;
  font-size: 1.05rem;
}

/* ── REVIEWS ── */
#reviews { background: var(--warm); }

.reviews-header { text-align: center; margin-bottom: 3rem; }
.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 0.4rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(61,26,0,0.06);
}
.review-card .stars { font-size: 0.9rem; margin-bottom: 0.8rem; }
.review-card p {
  font-size: 0.95rem;
  color: #5a3d1e;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--brown); }

.recommend-bar {
  text-align: center;
  padding: 1.8rem;
  background: var(--brown);
  border-radius: 1rem;
  color: var(--amber);
}
.recommend-bar big {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  display: block;
}
.recommend-bar p { color: #f5e6c8; font-size: 0.92rem; margin-top: 0.3rem; }

/* ── SWARMS ── */
#swarms { background: var(--cream); }

.swarms-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.swarms-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.swarms-photo-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,26,0,0.18);
}
.swarms-photo-wrap--main { aspect-ratio: 3/4; }
.swarms-photo-wrap--secondary { aspect-ratio: 3/2; }

.swarms-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.swarms-text > p { color: #5a3d1e; margin-bottom: 1.2rem; font-size: 0.98rem; }
.swarms-text .swarms-footer { font-style: italic; font-size: 0.9rem; }

.swarms-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.5rem;
}

/* ── CONTACT ── */
#contact { background: #fff; }

.contact-centered {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.contact-centered .section-title { margin-bottom: 1rem; }
.contact-intro { color: #5a3d1e; margin-bottom: 2.5rem; }

.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  text-align: left;
}

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  color: var(--brown);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}
.contact-item a, .contact-item span { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ── SWARM PAGE ── */
#swarm-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.swarm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
}

.swarm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,10,0,0.6) 0%, rgba(28,10,0,0.75) 100%);
}

.swarm-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 720px;
}

.swarm-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}

.swarm-hero-content > p {
  font-size: 1.1rem;
  color: #f0ddb8;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.swarm-back-link {
  display: inline-block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.swarm-back-link:hover { color: var(--amber); }

#what-is-a-swarm { background: #fff; }

.swarm-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.swarm-photo-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,26,0,0.18);
  aspect-ratio: 3/4;
}

.swarm-page-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.swarm-info-text > p {
  color: #5a3d1e;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}

#contact-swarm { background: var(--cream); }

.swarm-contact-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.swarm-contact-intro {
  color: #5a3d1e;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.swarm-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.swarm-contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 1.2rem;
  border-radius: 1rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.swarm-contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61,26,0,0.15);
}

.swarm-contact-method--phone { background: #fff; border: 2px solid #e8d5b0; }
.swarm-contact-method--whatsapp { background: #fff; border: 2px solid var(--amber); }
.swarm-contact-method--email { background: #fff; border: 2px solid #e8d5b0; }

.swarm-contact-icon {
  width: 52px;
  height: 52px;
  background: var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.swarm-contact-method--whatsapp .swarm-contact-icon {
  background: #dcf8c6;
}

.swarm-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.swarm-contact-detail strong {
  display: block;
  color: var(--brown);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.swarm-contact-detail span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.swarm-contact-detail .swarm-contact-note {
  color: #8a6535;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
}

.swarm-contact-arrow { display: none; }

.swarm-contact-footer {
  color: #7a5c35;
  font-size: 0.88rem;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

#swarm-limits { background: #fff; }

.swarm-limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.swarm-limits-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid;
}

.swarm-limits-heading--can { color: var(--green); border-color: var(--green); }
.swarm-limits-heading--cant { color: #9b3a2a; border-color: #9b3a2a; }

.swarm-limits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.swarm-limits-list li {
  color: #5a3d1e;
  font-size: 0.95rem;
  padding-left: 1.6rem;
  position: relative;
}

.swarm-limits-list--can li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.swarm-limits-list--cant li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #9b3a2a;
  font-weight: 700;
}

.swarm-established-note {
  color: #7a5c35;
  font-size: 0.88rem;
  font-style: italic;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.swarm-established-note a { color: var(--gold); }

#swarm-wider { background: var(--cream); }

.swarm-wider-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.swarm-wider-inner p {
  color: #5a3d1e;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .swarm-info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .swarm-photo-wrap { aspect-ratio: 16/9; }
  .swarm-contact-methods { grid-template-columns: 1fr; }
  .swarm-limits-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── BLOG LIST ── */
#blog-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.blog-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,10,0,0.72) 0%, rgba(90,45,8,0.65) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 720px;
}

.blog-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin: 0.6rem 0 1rem;
}

.blog-hero-content > p {
  font-size: 1.05rem;
  color: #f0ddb8;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

#blog-list { background: var(--cream); }

.blog-list-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem 2.2rem;
  text-decoration: none;
  display: block;
  border: 2px solid var(--warm);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(61,26,0,0.1);
}

.blog-card-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.blog-card-excerpt {
  color: #5a3d1e;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-card-read {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── BLOG POST ── */
#blog-post-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.blog-post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,10,0,0.75) 0%, rgba(90,45,8,0.7) 100%);
}

.blog-post-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 760px;
}

.blog-post-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin: 0.6rem 0 0;
}

#blog-post-body { background: #fff; }

.blog-post-container {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-article {
  font-size: 1.05rem;
  color: #3d2b10;
  line-height: 1.8;
}

.blog-post-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brown);
  margin: 2.5rem 0 0.8rem;
  line-height: 1.3;
}

.blog-post-article p {
  margin-bottom: 1.2rem;
}

.blog-post-article em {
  font-style: italic;
  color: #5a3d1e;
}

.blog-post-article ul, .blog-post-article ol {
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-post-article li { color: #5a3d1e; }

.blog-post-figure {
  margin: 2rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(61,26,0,0.14);
}

.blog-post-img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-caption {
  background: var(--warm);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: #6b4c2a;
  font-style: italic;
}

.blog-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #c8a87a;
  text-align: center;
  padding: 3rem 1.5rem;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
footer > .footer-inner > p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 1rem; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0 1.2rem;
}
.footer-links a {
  color: #c8a87a;
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--amber); }
.footer-small { font-size: 0.75rem; opacity: 0.5; }
.footer-small a { color: #c8a87a; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  #site-nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(28,10,0,0.97);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  #site-nav.open ul { display: flex; }

  .about-grid,
  .swarms-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-photo-wrap { aspect-ratio: 16/9; }

  .about-visual,
  .swarms-visual { gap: 1rem; }

  .about-photo-wrap,
  .swarms-photo-wrap {
    max-width: 100%;
    width: 100%;
  }

  .about-photo-wrap:not(:last-child),
  .swarms-photo-wrap:not(:last-child) { margin-bottom: 1rem; }

  .awards-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .btn-outline { margin: 1rem 0 0; display: block; text-align: center; }

  .products-grid { grid-template-columns: 1fr; }

  .contact-items { grid-template-columns: 1fr; }
}
