/* ══════════════════════════════════════
   NO MORE CRITTERS — MAIN STYLESHEET
   ══════════════════════════════════════ */

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

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

:root {
  --cream: #F7F4EE;
  --forest: #2D4A2D;
  --forest-light: #3D5E3D;
  --amber: #C8873A;
  --amber-light: #D99A52;
  --sage: #8FAF8F;
  --sage-light: #B8CEB8;
  --ink: #1A1A1A;
  --muted: #6B7B6B;
  --border: #E2DDD4;
  --white: #FFFFFF;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 18px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a { color: var(--forest); }

.nav-menu .menu-cta a {
  background: var(--forest);
  color: var(--cream);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.nav-menu .menu-cta a:hover {
  background: var(--forest-light);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem clamp(1rem, 5vw, 3rem);
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
}

/* ── PAGE WRAPPER ── */
.site-content {
  min-height: 60vh;
}

/* ── HERO (homepage) ── */
.hero-section {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest);
}

.hero-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-search {
  display: flex;
  max-width: 440px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: transparent;
  color: var(--ink);
}

.hero-search input::placeholder { color: var(--muted); }

.hero-search button {
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.hero-search button:hover { background: var(--forest-light); }

.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust span::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
}

.hero-pest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-pest-tile {
  background: var(--white);
  border-radius: 14px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.hero-pest-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ── SECTION SHARED ── */
.section-wrap {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── PEST GRID ── */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.pest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.pest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.pest-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--cream);
}

.pest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

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

.pest-card-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.pest-card-body {
  padding: 12px 14px;
}

.pest-card-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.pest-card-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.pest-card-reveal {
  position: absolute;
  inset: 0;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.pest-card:hover .pest-card-reveal { opacity: 1; }

.pest-card-reveal-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pest-card-reveal-text {
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* ── GUIDE CARDS ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.guide-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  background: var(--cream);
}

.guide-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.guide-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  color: var(--sage);
  background: var(--cream);
  z-index: 0;
}

.guide-tag {
  position: relative;
  z-index: 1;
  background: rgba(26,26,26,0.55);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  align-self: flex-start;
}

.guide-card-body {
  padding: 20px 22px 24px;
}

.guide-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.guide-card-excerpt {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.guide-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guide-read-time {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 500;
}

.guide-link {
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

/* ── REMEDY CARDS ── */
.remedies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.remedy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.remedy-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.remedy-rating {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 4px;
}

.remedy-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.remedy-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.remedy-badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.remedy-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.remedy-btn {
  display: block;
  width: 100%;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}

.remedy-btn:hover { background: var(--amber-light); }

/* ── PET SAFE BAND ── */
.pet-band {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem);
}

.pet-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .pet-band-inner { grid-template-columns: 1fr; }
}

.pet-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.pet-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pet-body {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.pet-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}

.pet-cta:hover { background: var(--amber-light); }

.pet-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pet-tip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pet-tip::before {
  content: '♡';
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FIND A PRO ── */
.pro-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .pro-section-inner { grid-template-columns: 1fr; }
}

.pro-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.pro-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pro-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.pro-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.pro-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.pro-form input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 16px;
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
}

.pro-form input:focus { border-color: var(--forest); }

.pro-form-btn {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.pro-form-btn:hover { background: var(--forest-light); }

.pro-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* ── SINGLE ARTICLE ── */
.article-hero {
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--forest); }
.breadcrumb-sep { opacity: 0.4; }

.article-tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 780px;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.article-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-excerpt {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
  border-left: 3px solid var(--sage);
  padding-left: 1.25rem;
}

/* ── ARTICLE BODY ── */
.article-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.article-body p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.article-body strong { font-weight: 600; }

.article-body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-callout {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--forest);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 2rem 0;
}

.article-callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.article-callout strong {
  color: var(--forest);
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SIDEBAR ── */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.sidebar-widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.sidebar-product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
}

.sidebar-product-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}

.sidebar-product-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.sidebar-product-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.sidebar-btn {
  display: block;
  background: var(--amber);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.sidebar-btn:hover { background: var(--amber-light); }

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-list li a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toc-list li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.toc-list li a:hover { color: var(--forest); }

/* ── NEWSLETTER BAND ── */
.newsletter-band {
  background: var(--forest);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.newsletter-inner {
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.75rem;
}

.newsletter-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.newsletter-sub {
  font-size: 0.9rem;
  color: rgba(247,244,238,0.7);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 13px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--cream);
}

.newsletter-form input::placeholder { color: rgba(247,244,238,0.45); }

.newsletter-form button {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--amber-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 3rem);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 220px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--forest); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.75rem; color: var(--muted); }
.footer-affiliate { font-size: 0.72rem; color: var(--muted); font-style: italic; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 5vw, 3rem);
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.page-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 680px;
}

.page-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── INLINE PRODUCT CARD (shortcode: [nmc_product ...]) ── */
.nmc-inline-product {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nmc-inline-product__image {
  width: 160px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  box-sizing: border-box;
}

.nmc-inline-product__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nmc-inline-product__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.nmc-inline-product__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.nmc-inline-product__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
}

.nmc-inline-product__btn {
  display: inline-block;
  margin-top: 10px;
  background: var(--amber);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s;
}

.nmc-inline-product__btn:hover {
  background: var(--amber-light);
}

@media (max-width: 560px) {
  .nmc-inline-product {
    grid-template-columns: 1fr;
  }
  .nmc-inline-product__image {
    width: 100%;
    height: 160px;
  }
}
