/*
Theme Name: Magee Meadow Apiary
Theme URI: 
Author: Magee Meadow Apiary
Author URI: 
Description: A modern, clean WordPress theme for Magee Meadow Apiary — featuring a blog, product showcase, podcast page, and social media integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magee-meadow
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, responsive-layout
*/

/* =========================================================
   CSS VARIABLES — DESIGN SYSTEM
   ========================================================= */
:root {
  /* Brand Colors */
  --honey:        #D4870A;
  --honey-light:  #F0A830;
  --honey-dark:   #A66508;
  --honey-pale:   #FEF3DC;
  --honey-muted:  #F5E4B8;

  /* Neutral Palette */
  --ink:      #1A1614;
  --text:     #3C3733;
  --muted:    #7A7470;
  --border:   #E5DDD4;
  --bg:       #FFFEF8;
  --bg-warm:  #FAF5EA;
  --white:    #FFFFFF;

  /* Accent */
  --green:       #3D6B2A;
  --green-light: #EBF2E7;

  /* Dark Sections */
  --dark-bg:   #1A1614;
  --dark-text: #F5EFE6;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --max-width:      1200px;
  --content-width:  780px;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      20px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 2px 14px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 36px rgba(0,0,0,0.13);

  /* Transition */
  --transition: all 0.25s ease;
}

/* =========================================================
   BASE RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--honey-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--honey); }

ul, ol { padding-left: 1.5rem; }

table { border-collapse: collapse; width: 100%; }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--honey);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.75rem;
}

blockquote {
  border-left: 4px solid var(--honey);
  padding: 1rem 1.5rem;
  background: var(--honey-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  margin: 1.5rem 0;
  color: var(--text);
}

code {
  background: var(--bg-warm);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* =========================================================
   LAYOUT / CONTAINERS
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--content-width);
}

.section {
  padding: 5rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--dark {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--dark-text);
}

.section--warm {
  background: var(--bg-warm);
}

.section--honey {
  background: var(--honey);
  color: var(--white);
}

.section--honey h1,
.section--honey h2,
.section--honey h3 {
  color: var(--white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}
.btn-primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,135,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--honey);
  border-color: var(--honey);
}
.btn-outline:hover {
  background: var(--honey);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--honey-dark);
  border-color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #333;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header .lead { font-size: 1.05rem; }

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}

/* Branding */
.site-branding a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
}

.site-name span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.custom-logo { max-height: 52px; width: auto; }

/* Primary Nav */
.main-navigation { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.nav-menu li { position: relative; }

.nav-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--honey);
  background: var(--honey-pale);
}

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem;
  list-style: none;
  z-index: 100;
}

.nav-menu .sub-menu a {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  display: block;
}

/* Podcast Highlight in Nav */
.nav-menu .menu-podcast > a,
.nav-menu .menu-item-podcast > a {
  background: var(--honey-pale);
  color: var(--honey-dark);
  font-weight: 600;
}
.nav-menu .menu-podcast > a:hover,
.nav-menu .menu-item-podcast > a:hover {
  background: var(--honey);
  color: var(--white);
}

/* Header Social */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--muted);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

.social-icon:hover { color: var(--white); border-color: transparent; }
.social-icon.facebook:hover  { background: #1877F2; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.youtube:hover   { background: #FF0000; }
.social-icon.tiktok:hover    { background: #010101; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-warm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 74L0 56V20L30 2l30 18v36L30 74zm0-2.3l27.7-16V22.3L30 6.3 2.3 22.3V56L30 71.7z' fill='%23D4870A' fill-opacity='0.06'/%3E%3C/svg%3E");
  overflow: hidden;
}

.hero-has-image {
  background-size: cover;
  background-position: center;
}

.hero-has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,20,0.72) 0%, rgba(26,22,20,0.45) 60%, rgba(212,135,10,0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 4rem 1.5rem;
}

.hero h1 {
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.hero-has-image .hero h1 { color: var(--white); }

.hero .lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text);
  max-width: 560px;
}

.hero-has-image .hero .lead { color: rgba(255,255,255,0.88); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--honey-pale);
  color: var(--honey-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--honey-muted);
}

.hero-badge::before {
  content: '🐝';
  font-size: 1rem;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   FEATURES STRIP
   ========================================================= */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.features-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}

.feature-item p {
  font-size: 0.825rem;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   PRODUCTS SECTION
   ========================================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}

.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-image .product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--honey-pale), var(--honey-muted));
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--honey-dark);
}

.product-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

/* =========================================================
   BLOG CARDS
   ========================================================= */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-warm);
}

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--bg-warm), var(--honey-pale));
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.blog-card-cat {
  background: var(--honey-pale);
  color: var(--honey-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-body h3 a:hover { color: var(--honey); }

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--honey);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.read-more::after { content: '→'; transition: transform 0.2s ease; }
.read-more:hover::after { transform: translateX(4px); }

/* =========================================================
   PODCAST TEASER SECTION
   ========================================================= */
.podcast-teaser {
  background: var(--dark-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 74L0 56V20L30 2l30 18v36L30 74zm0-2.3l27.7-16V22.3L30 6.3 2.3 22.3V56L30 71.7z' fill='%23D4870A' fill-opacity='0.07'/%3E%3C/svg%3E");
  color: var(--dark-text);
  padding: 5rem 0;
}

.podcast-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.podcast-teaser h2 { color: var(--white); }

.podcast-teaser .lead { color: rgba(255,255,255,0.72); }

.podcast-art {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 20px 60px rgba(212,135,10,0.4);
  position: relative;
  overflow: hidden;
}

.podcast-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent);
}

.podcast-waves {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   HIVE MANAGEMENT CTA
   ========================================================= */
.hive-mgmt-cta {
  background: var(--green);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hive-mgmt-cta::before {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  top: -1rem;
  left: 5%;
}

.hive-mgmt-cta::after {
  content: '🐝';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  bottom: -1rem;
  right: 5%;
}

.hive-mgmt-cta h2 { color: var(--white); margin-bottom: 1rem; }
.hive-mgmt-cta .lead { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; }

/* =========================================================
   SINGLE POST
   ========================================================= */
.single-post-hero {
  background: var(--bg-warm);
  padding: 4rem 0 0;
}

.single-post-hero .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.post-cat-tag {
  background: var(--honey-pale);
  color: var(--honey-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
}

.single-post-hero h1 { margin-bottom: 1.5rem; }

.featured-image-wrapper {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  max-height: 520px;
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post Content */
.post-content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  padding: 3.5rem 0 5rem;
  align-items: start;
}

.entry-content {
  min-width: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 { margin-top: 2rem; margin-bottom: 1rem; }

.entry-content img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.entry-content ul,
.entry-content ol { margin-bottom: 1.25rem; }

.entry-content li { margin-bottom: 0.4rem; }

/* Post Footer */
.post-footer {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tag-link {
  background: var(--bg-warm);
  color: var(--text);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  border: 1px solid var(--border);
}
.tag-link:hover { background: var(--honey-pale); color: var(--honey-dark); border-color: var(--honey-muted); }

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.nav-previous, .nav-next {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-previous:hover, .nav-next:hover {
  border-color: var(--honey-muted);
  background: var(--honey-pale);
}

.nav-next { text-align: right; }

.nav-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.35rem;
}

.nav-title { font-size: 0.9rem; font-weight: 600; color: var(--ink); }

/* =========================================================
   BLOG ARCHIVE / INDEX
   ========================================================= */
.blog-hero {
  background: var(--bg-warm);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  padding: 4rem 0;
  align-items: start;
}

.blog-grid { display: grid; gap: 2rem; }

.blog-card--list {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

.blog-card--list .blog-card-image {
  aspect-ratio: auto;
  min-height: 200px;
}

.blog-card--list .blog-card-body {
  padding: 1.75rem;
}

/* =========================================================
   SIDEBAR
   ========================================================= */
.sidebar {
  position: sticky;
  top: 90px;
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--honey-muted);
}

.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 0.4rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text); }
.widget ul li a:hover { color: var(--honey); }

/* =========================================================
   PRODUCT ARCHIVE
   ========================================================= */
.products-hero {
  background: var(--bg-warm);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.products-grid {
  padding: 4rem 0;
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */
.single-product-wrap {
  padding: 4rem 0;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-warm);
  position: relative;
}

.product-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-gallery .no-image {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--honey-pale), var(--honey-muted));
}

.product-info .section-eyebrow { margin-bottom: 0.5rem; }
.product-info h1 { margin-bottom: 0.75rem; }

.product-info .product-price {
  font-size: 2rem;
  display: block;
  margin-bottom: 1.5rem;
}

.product-info .entry-content { margin-bottom: 2rem; }

.product-meta-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 2rem;
}

.product-meta-table table { width: 100%; }
.product-meta-table td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.product-meta-table tr:last-child td { border-bottom: none; }
.product-meta-table td:first-child { font-weight: 600; color: var(--ink); background: var(--bg-warm); width: 40%; }

/* =========================================================
   PODCAST PAGE
   ========================================================= */
.podcast-page-hero {
  background: var(--dark-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104'%3E%3Cpath d='M30 74L0 56V20L30 2l30 18v36L30 74zm0-2.3l27.7-16V22.3L30 6.3 2.3 22.3V56L30 71.7z' fill='%23D4870A' fill-opacity='0.07'/%3E%3C/svg%3E");
  padding: 5rem 0;
  text-align: center;
}

.podcast-page-hero h1 { color: var(--white); }
.podcast-page-hero .lead { color: rgba(255,255,255,0.75); }

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.platform-badge:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--white);
}

.podcast-content {
  padding: 4rem 0;
}

.podcast-content iframe {
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.72);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-name { color: var(--white); font-size: 1.5rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social .social-icon {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--honey-light); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-404 {
  text-align: center;
  padding: 8rem 0;
}

.error-404 .error-code {
  font-size: 8rem;
  font-family: var(--font-heading);
  color: var(--honey-muted);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.error-404 h1 { margin-bottom: 1rem; }
.error-404 .lead { margin-bottom: 2rem; }

/* =========================================================
   GENERIC PAGE
   ========================================================= */
.page-hero {
  background: var(--bg-warm);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-content {
  padding: 4rem 0;
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(212,135,10,0.15);
}

textarea { min-height: 120px; resize: vertical; }

/* Search Form */
.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input[type="search"] { flex: 1; }

.search-submit {
  padding: 0.7rem 1.25rem;
  background: var(--honey);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.search-submit:hover { background: var(--honey-dark); }

/* =========================================================
   ADMIN BAR OFFSET
   ========================================================= */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* =========================================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .post-content-wrap { grid-template-columns: 1fr; }
  .blog-layout        { grid-template-columns: 1fr; }
  .sidebar            { position: static; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .single-product-grid { grid-template-columns: 1fr; }
  .podcast-teaser .container { grid-template-columns: 1fr; }
  .podcast-art { max-width: 320px; margin: 0 auto; }
  .blog-card--list { grid-template-columns: 200px 1fr; }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  .header-inner { height: 62px; }
  .header-social { display: none; }

  .menu-toggle { display: flex; }

  .main-navigation {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .main-navigation.is-open { display: flex; }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-menu a { padding: 0.75rem 1rem; font-size: 1rem; }

  .nav-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    margin-top: 0.25rem;
    display: block;
    padding: 0.25rem;
  }

  .features-strip .container { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(n+3) { border-top: 1px solid var(--border); }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }

  .blog-card--list { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .post-navigation { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }

  .podcast-page-hero { padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .features-strip .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .btn-group { flex-direction: column; align-items: flex-start; }
}
