/* ============================================================
   Harvest Hounds — style.css (redesigned)
   Premium-grocery direction · Newsreader + DM Sans · sharp corners
   ============================================================ */

/* --- Tokens --- */
:root {
  --harvest-orange:       #D4722A;
  --harvest-orange-light: #E8914F;
  --harvest-orange-dark:  #B05A1E;
  --sage-green:           #7A9E7E;
  --sage-light:           #A8C5AB;
  --sage-dark:            #5C7D60;
  --earth-brown:          #6B4C35;
  --forest:               #2D4A32;
  --cream:                #FDF8F0;
  --cream-dark:           #F5ECD9;
  --warm-white:           #FFFEF9;
  --linen:                #ECE5D5;
  --text-dark:            #2C2016;
  --text-medium:          #6B4C35;
  --text-light:           #7A9E7E;
  --border-light:         #E8DDD0;
  --border-dark:          rgba(44,32,22,0.18);
  --shadow-sm:            0 1px 2px rgba(44,32,22,0.06);
  --shadow-md:            0 4px 24px rgba(44,32,22,0.08);
  --shadow-lg:            0 20px 60px rgba(44,32,22,0.12);
  --radius-sm:            0px;
  --radius-md:            0px;
  --radius-lg:            0px;
  --radius-xl:            0px;
  --transition:           0.2s ease;
  --font-heading:         'Newsreader', 'Playfair Display', Georgia, serif;
  --font-body:            'DM Sans', 'Nunito', system-ui, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--cream-dark);
}
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 1600px;
  margin: 0 auto;
  box-shadow: 0 0 80px rgba(44,32,22,0.12);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--text-dark);
  font-weight: 400;
}
em { font-style: italic; color: var(--harvest-orange); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--harvest-orange);
  margin-bottom: 0.75rem;
  display: block;
}
.section-label.light { color: var(--cream-dark); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; letter-spacing: -0.01em; }
.section-title.light { color: #fff; }
.section-sub { color: var(--text-light); font-size: 1rem; margin-bottom: 2.5rem; max-width: 600px; line-height: 1.65; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--harvest-orange);
  color: #fff;
}
.btn-primary:hover { background: var(--harvest-orange-dark); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
}
.btn-outline-dark:hover { border-color: var(--text-dark); }
.btn-full { width: 100%; justify-content: center; }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--earth-brown);
  color: #fff;
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 200;
}
.announcement-slide { display: none; }
.announcement-slide.active { display: inline; }
.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.logo-text em { color: var(--text-dark); font-style: italic; font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--harvest-orange);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-subscribe-link { color: var(--harvest-orange) !important; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn {
  position: relative;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 0.45rem 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.cart-btn:hover { border-color: var(--harvest-orange); color: var(--harvest-orange); }
.cart-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--harvest-orange);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* --- Trust Section --- */
.trust-section {
  background: var(--earth-brown);
  padding: 1.25rem 0;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  color: var(--cream-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-badge:last-child { border-right: none; }

/* --- Shop Section --- */
.shop-section { background: var(--cream); }
.shop-section .section-title { margin-bottom: 0.5rem; }
.shop-filters {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--harvest-orange);
  border-color: var(--harvest-orange);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
/* Product cards — rendered by JS, keep class compatibility */
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-bottom: 3px solid var(--text-dark);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--harvest-orange); }
.product-image-wrap { position: relative; overflow: hidden; height: 220px; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--sage-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}
.product-badge.orange { background: var(--harvest-orange); }
.product-body { padding: 1.25rem 1.25rem 1.5rem; }
.product-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.35rem; line-height: 1.25; }
.product-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.9rem; line-height: 1.55; }
.product-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 1rem; }
.product-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--cream);
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--sage-light);
}
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-heading); font-size: 1.3rem; color: var(--harvest-orange); }
.product-price .per { font-size: 0.78rem; font-weight: 400; color: var(--text-light); }
.add-to-cart-btn {
  background: var(--text-dark);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.add-to-cart-btn:hover { background: var(--harvest-orange); }

/* --- FAQ --- */
.faq-answer { display: none; }
.faq-answer.open { display: block; }
.faq-question.open .faq-icon i { transform: rotate(45deg); }
.faq-icon i { transition: transform 0.2s ease; display: inline-block; }

/* --- Scroll animations --- */
.product-card, .faq-item, .never-item, .trust-badge, .process-panel {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* --- Mobile responsive --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border-light); }
  .nav-links a { display: block; padding: 0.75rem 0; font-size: 0.9rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }

  .trust-badge { padding: 0.4rem 0.9rem; font-size: 0.65rem; }
  .products-grid { grid-template-columns: 1fr; }
  .shop-filters { gap: 0.4rem; }
  section { padding: 3.5rem 0; }
}


/* ============================================================
   SECTIONS — section-specific layout styles
   ============================================================ */

/* ============================================================
   Harvest Hounds — sections.css (redesigned section styles)
   ============================================================ */

/* ── Hero: Split Canvas ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: clamp(380px, 42%, 560px) 1fr;
  min-height: 90vh;
  background: var(--cream);
  max-width: 100%;
  overflow: hidden;
}
.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 3.5rem;
  position: relative;
  z-index: 1;
}
.hero-split-text .section-label { color: var(--harvest-orange); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--text-dark);
  line-height: 0.97;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 380px;
  line-height: 1.65;
}
.hero-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-dark);
  margin-bottom: 1.5rem;
}
.stat {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  border-right: 1px solid var(--border-dark);
  padding-right: 1rem;
  padding-left: 0;
}
.stat:nth-child(even) { border-right: none; padding-left: 1rem; padding-right: 0; }
.stat:nth-child(n+3) { border-top: 1px solid var(--border-dark); padding-top: 0.75rem; }
.stat-num, .stat-static {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--harvest-orange);
  line-height: 1;
  display: inline;
}
.stat span { font-family: var(--font-heading); font-size: 1.4rem; color: var(--harvest-orange); }
.stat p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero-trust-strip .sep { color: var(--border-dark); }
.hero-split-image {
  position: relative;
  overflow: hidden;
}
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 8%);
}
.hero-today-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(253,248,240,0.95);
  border: 1px solid var(--border-light);
  padding: 0.9rem 1.1rem;
  max-width: 220px;
}
.badge-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}
.badge-text { font-family: var(--font-heading); font-size: 1rem; line-height: 1.25; color: var(--text-dark); }

/* ── Process: Four Panels ───────────────────────────────── */
.process-section {
  position: relative;
  padding: 0;
}
.process-bg { position: absolute; inset: 0; z-index: 0; }
.process-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.process-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,32,22,0.78) 0%, rgba(44,32,22,0.9) 100%);
}
.process-header {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem 2.5rem;
}
.process-trust-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.process-trust-bar span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.process-trust-bar .sep { margin: 0 0.75rem; color: rgba(255,255,255,0.2); }
.process-header .section-label { text-align: center; }
.process-header .section-title { text-align: center; font-size: clamp(2rem,4vw,3rem); margin: 0 auto; }
.process-four-panels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.process-panel {
  padding: 2.5rem 2rem 2.5rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.process-panel:first-child { border-left: none; }
.process-panel--accent { background: rgba(212,114,42,0.08); }
.panel-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--harvest-orange);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 1rem;
}
.panel-title { font-family: var(--font-heading); font-size: 1.75rem; color: #fff; margin-bottom: 0.25rem; }
.panel-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--harvest-orange);
  margin-bottom: 0.85rem;
}
.process-panel p { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ── Meet Amy: Publisher Profile ────────────────────────── */
.founder-section {
  background: var(--warm-white);
  padding: 0;
}
.founder-split {
  display: grid;
  grid-template-columns: clamp(280px, 32%, 420px) 1fr;
  min-height: 700px;
}
.founder-portrait-col {
  position: relative;
  overflow: hidden;
}
.founder-portrait-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}
.founder-portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44,32,22,0.75) 0%, transparent 50%);
  padding: 2rem 1.75rem 1.5rem;
}
.founder-name-plate strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.founder-name-plate span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.founder-badges-col {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.founder-badges-col span {
  font-size: 0.62rem;
  padding: 0.25rem 0.65rem;
  background: rgba(253,248,240,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.founder-portrait-inset {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.4);
}
.founder-portrait-inset img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.founder-letter-col {
  padding: 4rem 4rem 3.5rem 4rem;
  overflow: hidden;
}
.founder-title { margin-bottom: 1.25rem; }
.founder-pullquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--harvest-orange);
  border-left: 3px solid var(--harvest-orange);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}
.founder-letter { color: var(--text-medium); font-size: 0.9rem; line-height: 1.75; }
.founder-letter p { margin-bottom: 0.9rem; }
.founder-promises {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border-left: 3px solid var(--sage-green);
}
.founder-promises h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}
.promises-list { display: flex; flex-direction: column; gap: 0.5rem; }
.promises-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
}
.promises-list li i { color: var(--sage-green); margin-top: 0.25rem; flex-shrink: 0; }
.letter-closing { margin-top: 1.25rem; font-style: italic; color: var(--text-light); font-size: 0.85rem; }
.founder-signature { margin-top: 0.4rem; }
.sig-script {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--harvest-orange);
  margin-bottom: 0.2rem;
}
.sig-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Story Section ──────────────────────────────────────── */
.story-section { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-image-wrap { position: relative; overflow: hidden; }
.story-image { width: 100%; height: 480px; object-fit: cover; }
.story-image-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--harvest-orange);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}
.story-content { padding: 0.5rem 0; }
.story-content p { margin-bottom: 0.9rem; font-size: 0.92rem; color: var(--text-medium); }
.story-highlights { margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
}
.highlight-item i { color: var(--sage-green); font-size: 0.85rem; }

/* ── Never List: Clean Label ────────────────────────────── */
.never-section { background: var(--warm-white); padding: 0; }
.never-layout {
  display: grid;
  grid-template-columns: clamp(260px, 30%, 400px) 1fr;
  min-height: 500px;
}
.never-manifesto {
  background: var(--text-dark);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.never-manifesto .section-label { color: var(--sage-light); }
.never-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.never-headline em { color: var(--harvest-orange-light); font-style: italic; }
.never-manifesto > p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1.75rem; }
.never-positives { display: flex; flex-direction: column; gap: 0.6rem; }
.never-pos-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.never-pos-item i { color: var(--sage-light); font-size: 0.75rem; }
.never-content-col { padding: 3.5rem 3.5rem; }
.never-table-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--text-dark);
}
.never-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.never-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
  background: transparent;
  border-radius: 0;
}
.never-item:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--border-light); }
.never-item:nth-child(even) { padding-left: 1.5rem; }
.never-x {
  width: 16px;
  height: 16px;
  border: 1px solid var(--harvest-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--harvest-orange);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.never-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.never-item strong { font-weight: 600; color: var(--text-dark); font-size: 0.82rem; }
.never-item span { font-size: 0.72rem; color: var(--text-light); line-height: 1.4; }

/* ── Dog Wellness: Feature Panel ────────────────────────── */
.dog-wellness-teaser { padding: 0; }
.wellness-feature-panel {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32%, 420px);
  min-height: 520px;
}
.wellness-dark-col {
  background: #2D4A32 !important;
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wellness-dark-col .btn,
.wellness-dark-col a.btn {
  align-self: flex-start !important;
  width: auto !important;
  display: inline-flex !important;
}
.wellness-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 1rem;
}
.wellness-feature-item {
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.wf-num {
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--sage-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.wellness-feature-item strong { font-size: 0.85rem; font-weight: 600; color: #fff; }
.wellness-feature-item span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.wellness-korra-col { position: relative !important; overflow: hidden; min-height: 300px; }
.wellness-korra-col img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.wellness-korra-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(253,248,240,0.95);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1rem;
}
.wellness-korra-badge strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.wellness-korra-badge span { font-size: 0.78rem; color: var(--text-medium); line-height: 1.45; }

/* ── Central Valley ─────────────────────────────────────── */
.central-valley-section { background: var(--linen) !important; }
.cv-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.cv-header .section-title { color: #2C2016 !important; }
.cv-header p { color: #7A9E7E; margin: 0 auto; }
.cv-stats-row { display: flex; justify-content: center; gap: 0; max-width: 600px; margin: 0 auto; }
.cv-stat {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border-dark);
}
.cv-stat:last-child { border-right: none; }
.cv-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--harvest-orange); margin-bottom: 0.25rem; }
.cv-stat span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }

/* ── Subscribe & Save ───────────────────────────────────── */
.subscribe-section {
  position: relative;
  background: var(--earth-brown);
  padding: 5rem 0;
}
.subscribe-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.subscribe-header { text-align: center; margin-bottom: 3rem; }
.subscribe-header .section-sub { margin: 0 auto; }
.subscribe-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 3rem;
}
.sub-pillar {
  background: rgba(255,255,255,0.04);
  padding: 1.75rem 1.5rem;
}
.sub-pillar-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.sub-pillar h4 { font-family: var(--font-heading); font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.sub-pillar p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.subscribe-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.sub-plan-card {
  background: rgba(253,248,240,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 4px solid rgba(255,255,255,0.2);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sub-plan-featured {
  background: rgba(253,248,240,0.12);
  border-color: var(--harvest-orange);
  border-top-color: var(--harvest-orange);
  position: relative;
}
.sub-plan-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.featured-tag { color: var(--harvest-orange-light); }
.sub-plan-card img { height: 160px; object-fit: cover; width: 100%; }
.sub-plan-card h3 { font-family: var(--font-heading); font-size: 1.3rem; color: #fff; line-height: 1.1; }
.sub-plan-card > p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.sub-plan-price { font-size: 1rem; color: #fff; }
.sub-plan-price strong { font-family: var(--font-heading); font-size: 1.6rem; }
.sub-plan-was { opacity: 0.5; text-decoration: line-through; margin-right: 0.35rem; font-size: 0.9rem; }
.sub-plan-features { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.sub-plan-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.72); }
.sub-plan-features li i { color: var(--sage-light); font-size: 0.75rem; }
.sub-plan-btn { margin-top: auto; }
.subscribe-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}
.subscribe-guarantee i { color: var(--harvest-orange-light); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.subscribe-guarantee div { flex: 1; min-width: 200px; }
.subscribe-guarantee strong { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 0.2rem; }
.subscribe-guarantee span { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── Korra: Magazine Spread ─────────────────────────────── */
.mascots-section { background: var(--linen); padding: 0; }
.mascot-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.mascot-photo-col { overflow: hidden; }
.mascot-hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.mascot-content-col {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mascot-big-name {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 0.92;
  margin: 0.4rem 0 0.35rem;
}
.mascot-breed-line {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.mascot-content-col p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.65; margin-bottom: 0.85rem; max-width: 440px; }
.mascot-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}
.mascot-fact-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.82rem;
}
.mascot-fact-row span { color: var(--text-light); }
.mascot-fact-row strong { color: var(--text-dark); font-weight: 600; }

/* ── FAQ: Two-column Accordion ──────────────────────────── */
.faq-section { background: var(--cream); }
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.faq-contact { font-size: 0.85rem; color: var(--text-light); text-align: right; max-width: 260px; }
.faq-contact a { color: var(--harvest-orange); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.faq-item { border-top: 1px solid var(--border-light); }
.faq-item:nth-child(-n+2) { border-top: 2px solid var(--text-dark); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
}
.faq-question.open { color: var(--harvest-orange); }
.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 0.15rem;
  font-size: 0.7rem;
  transition: border-color var(--transition);
}
.faq-question.open .faq-icon { border-color: var(--harvest-orange); color: var(--harvest-orange); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.7; }

/* ── Newsletter: Paper Card ─────────────────────────────── */
.newsletter-section { background: var(--linen); }
.newsletter-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-left .section-label { margin-bottom: 0.75rem; }
.newsletter-left h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.05; margin-bottom: 0.9rem; }
.newsletter-left p { font-size: 0.88rem; color: var(--text-medium); line-height: 1.65; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.85rem; }
.nl-field { display: flex; flex-direction: column; gap: 0.3rem; }
.nl-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-dark);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--harvest-orange); }
.newsletter-fine { font-size: 0.72rem; color: var(--text-light); text-align: center; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.footer-logo em { color: var(--harvest-orange-light); font-style: italic; font-weight: 400; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.85rem; }
.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--harvest-orange-light); color: var(--harvest-orange-light); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.footer-bottom strong { color: rgba(255,255,255,0.5); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-text { padding: 2.5rem 2rem; }
  /* Mobile cover photo — taller, immersive, with a soft seam on top
     and a depth scrim at the bottom so the batch badge reads clearly. */
  .hero-split-image { height: clamp(400px, 64vh, 540px); }
  .hero-bg { object-position: center 36%; }
  .hero-image-fade {
    background:
      linear-gradient(to bottom, var(--cream) 0%, transparent 11%),
      linear-gradient(to top, rgba(44,32,22,0.6) 0%, rgba(44,32,22,0.12) 30%, transparent 52%);
  }
  .hero-today-badge {
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
    background: rgba(253,248,240,0.96);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 28px rgba(44,32,22,0.28);
  }
  .process-four-panels { grid-template-columns: 1fr 1fr; }
  .subscribe-pillars { grid-template-columns: 1fr 1fr; }
  .founder-split { grid-template-columns: 1fr; }
  .founder-portrait-col { height: 420px; }
  .founder-portrait-main { object-position: 50% 12%; }
  .never-layout { grid-template-columns: 1fr; }
  .never-manifesto { padding: 3rem 2rem; }
  .wellness-feature-panel { grid-template-columns: 1fr; }
  .wellness-korra-col { height: 280px; }
  .mascot-magazine { grid-template-columns: 1fr; }
  .mascot-photo-col { height: 360px; }
  .newsletter-card { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(n+3) { border-top: none; }
  .process-four-panels { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { height: 300px; }
  .subscribe-plans { grid-template-columns: 1fr; }
  .subscribe-pillars { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-item:nth-child(-n+2) { border-top: 1px solid var(--border-light); }
  .faq-item:first-child { border-top: 2px solid var(--text-dark); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .never-grid { grid-template-columns: 1fr; }
  .never-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .never-item:nth-child(even) { padding-left: 0; }
  .faq-header { flex-direction: column; align-items: flex-start; }
  .faq-contact { text-align: left; }
  .mascot-content-col { padding: 2.5rem 1.5rem; }
  .founder-letter-col { padding: 2.5rem 1.5rem; }
  .wellness-dark-col { padding: 2.5rem 1.5rem; }
  .wellness-feature-grid { grid-template-columns: 1fr; }
  .cv-stats-row { flex-direction: column; }
  .cv-stat { border-right: none; border-bottom: 1px solid var(--border-dark); }
}
