/* ============================================================
   EARTHYWOOF — styles.css
   Premium eco-lifestyle magazine stylesheet
   Fonts: Playfair Display (headings) + Lato (body/UI)
   ============================================================ */

/* ---- 1. VARIABLES ---- */
:root {
  --forest-green:  #1A4A2E;
  --earth-green:   #2D6A4F;
  --warm-copper:   #A0694A;
  --sage-mid:      #74A478;
  --sage-light:    #B7CDB9;
  --copper-light:  #C8956C;
  --warm-cream:    #F5F0E8;
  --warm-white:    #FDFAF5;
  --light-grey:    #E8E4DE;
  --charcoal:      #2C2C2C;
  --mid-grey:      #6B6B6B;

  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'Lato', 'Helvetica Neue', Helvetica, sans-serif;

  --section-pad:   80px;
  --max-width:     1240px;
  --content-max:   740px;
  --gutter:        24px;

  --shadow-card:       0 2px 16px rgba(44,44,44,.07);
  --shadow-card-hover: 0 8px 32px rgba(44,44,44,.14);
  --radius-card:       12px;
  --radius-btn:        6px;
  --transition:        all .22s ease;
}

/* ---- 2. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background-color: var(--warm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: var(--earth-green); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--warm-copper); }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---- 3. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--warm-copper);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .4em;
}
.section-sub {
  font-size: 17px;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* ---- 4. LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.section--cream  { background: var(--warm-cream); }
.section--white  { background: var(--warm-white); }
.section--green  { background: var(--forest-green); }
.section--sage   { background: var(--sage-light); }
.section--copper { background: var(--warm-copper); }
.text-center { text-align: center; }

/* ---- 5. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--forest-green); color: #fff; border-color: var(--forest-green); }
.btn-primary:hover { background: var(--earth-green); border-color: var(--earth-green); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn-white { background: #fff; color: var(--forest-green); border-color: #fff; }
.btn-white:hover { background: var(--warm-cream); color: var(--forest-green); border-color: var(--warm-cream); }

.btn-copper { background: var(--warm-copper); color: #fff; border-color: var(--warm-copper); }
.btn-copper:hover { background: #8A5A3D; border-color: #8A5A3D; color: #fff; }

.btn-outline-green { background: transparent; color: var(--forest-green); border-color: var(--forest-green); }
.btn-outline-green:hover { background: var(--forest-green); color: #fff; }

.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; }

/* ---- 6. SITE HEADER / NAVIGATION ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--forest-green);
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 8px 11px;
  border-radius: 5px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
/* Explore dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--warm-white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(26,74,46,.2);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  list-style: none;
  z-index: 200;
}
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 9px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown a:hover { background: var(--warm-cream); color: var(--forest-green); text-decoration: none; }
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-arrow { font-size: 9px; transition: transform .2s ease; }
.nav-item-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-social { display: flex; align-items: center; gap: 1px; margin-right: 4px; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: rgba(255,255,255,.72); transition: var(--transition);
}
.nav-social a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.btn-nav-cta {
  background: var(--warm-copper); color: #fff; border-color: var(--warm-copper);
  font-size: 12px; padding: 8px 16px; border-radius: 20px; letter-spacing: .04em;
}
.btn-nav-cta:hover { background: var(--copper-light); border-color: var(--copper-light); color: #fff; transform: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--forest-green);
  z-index: 999;
  overflow-y: auto;
  padding: 24px var(--gutter) 40px;
  transform: translateX(-100%);
  transition: transform .3s ease;
  pointer-events: none;
}
.mobile-menu.active { transform: translateX(0); pointer-events: all; }
.mobile-menu > ul { list-style: none; }
.mobile-menu > ul > li > a,
.mobile-menu > ul > li > button {
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.mobile-submenu { display: none; padding: 8px 0 16px 16px; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { display: block; color: rgba(255,255,255,.75); font-size: 15px; padding: 8px 0; }
.mobile-social { display: flex; gap: 12px; margin-top: 28px; }
.mobile-social a { color: rgba(255,255,255,.75); display: flex; align-items: center; }
.mobile-social svg { width: 22px; height: 22px; fill: currentColor; }
.mobile-cta { margin-top: 24px; }

/* ---- 7. HERO ---- */
.hero {
  position: relative;
  background:
    linear-gradient(
      to right,
      rgba(10,30,17,0.97) 0%,
      rgba(16,48,28,0.91) 27%,
      rgba(24,68,40,0.67) 50%,
      rgba(26,74,46,0.24) 68%,
      rgba(10,25,15,0.05) 100%
    ),
    url('earthywoof-hero.webp') center / cover no-repeat;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
}
.hero > .container {
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 570px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper-light);
  display: block;
  margin-bottom: 22px;
  animation: fadeUp 1s .15s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 1s .3s ease both;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--sage-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 490px;
  animation: fadeUp 1s .45s ease both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeUp 1s .6s ease both;
}

/* Tagline ribbon */
.tagline-ribbon { background: var(--warm-copper); padding: 14px 0; text-align: center; }
.tagline-ribbon span {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 300;
  letter-spacing: .36em; text-transform: uppercase; color: #fff;
}

/* ---- 8. INTRO STRIP ---- */
.intro-strip { background: var(--warm-white); padding: 72px 0 60px; }
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.intro-item { text-align: center; }
.intro-icon { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--earth-green); }
.intro-icon svg { width: 100%; height: 100%; }
.intro-item h3 { font-size: 1.2rem; color: var(--forest-green); margin-bottom: 10px; }
.intro-item p { font-size: 15.5px; color: var(--mid-grey); line-height: 1.7; margin: 0; }
.intro-disclosure {
  text-align: center; font-style: italic; font-size: 13px; color: var(--mid-grey);
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--light-grey);
}

/* ---- 9. CONTENT PILLARS ---- */
.pillars-section { background: var(--warm-cream); padding: var(--section-pad) 0; }
.pillars-section .section-heading,
.pillars-section .section-sub { text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); border-color: var(--sage-mid); }
.pillar-emoji { font-size: 28px; margin-bottom: 14px; display: block; }
.pillar-card h3 { font-size: 1.1rem; color: var(--forest-green); margin-bottom: 8px; }
.pillar-card p { font-size: 14.5px; color: var(--mid-grey); line-height: 1.65; margin-bottom: 16px; }
.pillar-link { font-size: 14px; font-weight: 700; color: var(--earth-green); letter-spacing: .02em; display: inline-block; }
.pillar-link .arrow { display: inline-block; transition: transform .18s ease; }
.pillar-card:hover .pillar-link .arrow { transform: translateX(4px); }

/* ---- 10. LEAD MAGNET ---- */
.lead-magnet {
  background: var(--warm-copper);
  padding: var(--section-pad) 0;
  position: relative; overflow: hidden;
}
.lead-magnet::before {
  content: ''; position: absolute; top: -40%; right: -8%;
  width: 500px; height: 500px;
  border: 80px solid rgba(255,255,255,.06); border-radius: 50%; pointer-events: none;
}
.lead-magnet::after {
  content: ''; position: absolute; bottom: -25%; left: -4%;
  width: 380px; height: 380px;
  border: 60px solid rgba(255,255,255,.04); border-radius: 50%; pointer-events: none;
}
.lead-magnet-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; }
.lead-magnet .eyebrow { color: rgba(255,255,255,.55); letter-spacing: .22em; }
.lead-magnet h2 { font-size: clamp(1.8rem,4vw,2.6rem); color: #fff; margin-bottom: 18px; }
.lead-magnet p { color: rgba(255,255,255,.9); font-size: 17.5px; line-height: 1.7; margin-bottom: 32px; }
.lead-magnet em { font-style: italic; color: #fff; }
.opt-in-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 14px; }
.opt-in-form input[type="email"] {
  flex: 1; padding: 13px 18px;
  border: none; border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: #fff; outline: none;
}
.opt-in-form input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.opt-in-form input[type="email"]::placeholder { color: var(--mid-grey); }
.opt-in-privacy { font-size: 12.5px; color: rgba(255,255,255,.6); font-style: italic; }

/* ---- 11. FEATURED ARTICLES ---- */
.featured-articles { background: var(--warm-white); padding: var(--section-pad) 0; }
.featured-articles .section-heading,
.featured-articles .section-sub { text-align: center; }
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.article-card {
  background: var(--warm-white); border: 1px solid var(--light-grey);
  border-radius: var(--radius-card); padding: 28px 24px 24px;
  transition: var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.article-tag {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--earth-green); background: var(--sage-light);
  padding: 4px 10px; border-radius: 20px; margin-bottom: 14px;
  width: fit-content;
}
.article-card h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 12px; line-height: 1.35; flex: 1; }
.article-card h3 a { color: inherit; }
.article-card h3 a:hover { color: var(--earth-green); text-decoration: none; }
.article-excerpt { font-size: 14.5px; color: var(--mid-grey); line-height: 1.65; margin-bottom: 20px; }
.article-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--mid-grey);
  border-top: 1px solid var(--light-grey); padding-top: 14px; margin-top: auto;
}
.article-read-more { font-weight: 700; color: var(--earth-green); }
.view-all { text-align: center; }
.view-all a {
  font-size: 15px; font-weight: 700; color: var(--earth-green);
  border-bottom: 2px solid var(--earth-green); padding-bottom: 2px; transition: var(--transition);
}
.view-all a:hover { color: var(--warm-copper); border-color: var(--warm-copper); text-decoration: none; }

/* ---- 12. BONDO AUTHOR STRIP ---- */
.bondo-strip { background: var(--warm-cream); padding: var(--section-pad) 0; }
.bondo-inner {
  display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.bondo-photo {
  width: 190px; height: 190px;
  border-radius: 50%; object-fit: cover; object-position: center top;
  border: 3px solid var(--forest-green);
  box-shadow: 0 4px 24px rgba(26,74,46,.2);
}
.bondo-text .eyebrow { margin-bottom: 8px; }
.bondo-text h2 { font-size: 2rem; color: var(--charcoal); margin-bottom: 16px; }
.bondo-text > p { color: var(--mid-grey); font-size: 16px; line-height: 1.75; margin-bottom: 20px; }
.bondo-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 14px; }
.bondo-links a { font-weight: 700; font-size: 14.5px; color: var(--earth-green); }
.bondo-links a::after { content: ' →'; }
.bondo-vet-note { font-size: 13px; font-style: italic; color: var(--mid-grey); margin: 0; }

/* ---- 13. GREENWAG SECTION ---- */
.greenwag-section { background: var(--sage-light); padding: 56px 0; }
.greenwag-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.greenwag-label {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--earth-green); background: rgba(45,106,79,.12); border: 1px solid rgba(45,106,79,.25);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.greenwag-section h3 { font-size: 1.7rem; color: var(--charcoal); margin-bottom: 14px; }
.greenwag-section > .container > .greenwag-inner > p { font-size: 16px; color: var(--charcoal); line-height: 1.7; margin-bottom: 14px; }
.greenwag-disclosure { font-size: 13px; font-style: italic; color: var(--mid-grey); margin-bottom: 24px; }
.greenwag-disclosure a { color: var(--earth-green); }

/* ---- 14. FAQ ACCORDION ---- */
.faq-section { background: var(--warm-white); padding: var(--section-pad) 0; }
.faq-section .section-heading,
.faq-section .section-sub { text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--charcoal);
  transition: color .18s ease;
}
.faq-question:hover { color: var(--forest-green); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--warm-cream); border: 2px solid var(--warm-copper);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--warm-copper); font-weight: 300;
  transition: var(--transition); line-height: 1;
}
.faq-item.open .faq-icon { background: var(--warm-copper); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease, padding-bottom .38s ease; }
.faq-item.open .faq-answer { max-height: 320px; padding-bottom: 20px; }
.faq-answer p { font-size: 15.5px; color: var(--mid-grey); line-height: 1.75; margin: 0; }

/* ---- 15. NEWSLETTER STRIP ---- */
.newsletter-strip { background: var(--forest-green); padding: 72px 0; position: relative; overflow: hidden; }
.newsletter-strip::before {
  content: ''; position: absolute; top: -60%; right: -4%;
  width: 420px; height: 420px; border: 70px solid rgba(255,255,255,.04); border-radius: 50%; pointer-events: none;
}
.newsletter-inner { max-width: 580px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.newsletter-strip h2 { color: #fff; margin-bottom: 14px; font-size: clamp(1.6rem,3vw,2.2rem); }
.newsletter-strip > .container > .newsletter-inner > p { color: var(--sage-light); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.newsletter-fine { font-size: 12.5px; color: rgba(183,205,185,.65); font-style: italic; margin-top: 12px; }

/* ---- 16. SITE FOOTER ---- */
.site-footer { background: var(--forest-green); border-top: 1px solid rgba(255,255,255,.08); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { height: 38px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 11px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--warm-copper); margin-bottom: 14px; display: block; }
.footer-mission { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 6px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.72); transition: var(--transition);
}
.footer-social a:hover { background: var(--warm-copper); color: #fff; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-bottom { background: #112A1B; padding: 18px 0; }
.footer-bottom-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-copyright { font-size: 12.5px; color: rgba(255,255,255,.38); white-space: nowrap; }
.footer-affiliate-note { font-size: 11.5px; color: rgba(255,255,255,.32); line-height: 1.55; text-align: center; flex: 1; font-style: italic; }
.footer-greenwag-note { font-size: 11.5px; color: rgba(255,255,255,.32); font-style: italic; white-space: nowrap; }

/* ---- 17. LEAF DIVIDER ---- */
.leaf-divider { display: flex; align-items: center; gap: 14px; margin: 0 auto 32px; max-width: 200px; }
.leaf-divider-line { flex: 1; height: 1px; background: var(--light-grey); }
.leaf-divider-icon { color: var(--sage-mid); opacity: .7; }
.leaf-divider-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* ---- 18. AFFILIATE DISCLOSURE BOX ---- */
.affiliate-box {
  background: var(--warm-cream); border-left: 4px solid var(--sage-mid);
  border-radius: 0 6px 6px 0; padding: 14px 18px;
  display: flex; gap: 12px; align-items: flex-start; margin: 24px 0;
}
.affiliate-box-icon { color: var(--sage-mid); flex-shrink: 0; margin-top: 2px; }
.affiliate-box-icon svg { width: 16px; height: 16px; fill: currentColor; }
.affiliate-box p { font-size: 13px; font-style: italic; color: var(--mid-grey); line-height: 1.6; margin: 0; }

/* ---- 19. PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(140deg, #0E2A1B 0%, #1A4A2E 55%, #265C3C 100%);
  padding: 120px 0 72px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .05; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero p { color: var(--sage-light); font-size: 18px; max-width: 560px; margin: 0 auto; line-height: 1.65; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .4; }

/* ---- 20. CONTENT / LEGAL PAGES ---- */
.content-page { background: var(--warm-white); padding: 64px 0; }
.content-body { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.content-body h2 { font-size: 1.6rem; color: var(--forest-green); margin-top: 48px; margin-bottom: 16px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.15rem; color: var(--charcoal); margin-top: 28px; margin-bottom: 10px; }
.content-body p { color: var(--charcoal); font-size: 16px; line-height: 1.8; margin-bottom: 1em; }
.content-body ul,
.content-body ol { padding-left: 24px; margin-bottom: 1.2em; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li { font-size: 16px; line-height: 1.7; color: var(--charcoal); margin-bottom: 6px; }
.content-body a { color: var(--earth-green); text-decoration: underline; }
.content-body strong { font-weight: 700; }
.last-updated { font-size: 13px; color: var(--mid-grey); font-style: italic; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--light-grey); }

/* ---- 21. ABOUT PAGE ---- */
.about-values { background: var(--warm-cream); padding: var(--section-pad) 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.value-card { background: var(--warm-white); border-radius: var(--radius-card); padding: 30px 24px; border-top: 3px solid var(--forest-green); }
.value-card h3 { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--warm-copper); margin-bottom: 12px; }
.value-card p { font-size: 15.5px; color: var(--charcoal); line-height: 1.7; margin: 0; }

.bondo-about { background: var(--warm-white); padding: var(--section-pad) 0; }
.bondo-about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.bondo-about-photos { position: relative; }
.bondo-photo-main { width: 100%; border-radius: var(--radius-card); object-fit: cover; max-height: 400px; }
.bondo-photo-secondary { width: 55%; border-radius: var(--radius-card); margin-top: -48px; margin-left: auto; box-shadow: var(--shadow-card-hover); position: relative; z-index: 1; }
.bondo-about-text h2 { color: var(--charcoal); margin-bottom: 20px; }
.bondo-about-text p { font-size: 16px; color: var(--mid-grey); line-height: 1.8; margin-bottom: 18px; }
.bondo-about-text a { font-weight: 700; color: var(--earth-green); }

.is-isnt { background: var(--warm-cream); padding: var(--section-pad) 0; }
.is-isnt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 40px auto 0; }
.is-card { background: var(--warm-white); border-radius: var(--radius-card); padding: 30px 26px; }
.is-card.is   { border-top: 3px solid var(--forest-green); }
.is-card.isnt { border-top: 3px solid var(--warm-copper); }
.is-card h3 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.is-card.is h3   { color: var(--forest-green); }
.is-card.isnt h3 { color: var(--warm-copper); }
.is-card ul { list-style: none; padding: 0; }
.is-card ul li { font-size: 15px; color: var(--charcoal); line-height: 1.6; margin-bottom: 10px; padding-left: 22px; position: relative; }
.is-card.is ul li::before   { content: '✓'; position: absolute; left: 0; color: var(--forest-green); font-weight: 700; }
.is-card.isnt ul li::before { content: '✕'; position: absolute; left: 0; color: var(--warm-copper); font-weight: 700; }

.greenwag-about { background: var(--warm-white); padding: var(--section-pad) 0; }
.greenwag-about-inner { max-width: 700px; margin: 0 auto; }
.disclosure-box {
  background: var(--warm-cream); border: 1px solid var(--light-grey);
  border-radius: var(--radius-card); padding: 28px 30px; margin-top: 28px;
}
.disclosure-box h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 12px; }
.disclosure-box p { font-size: 15px; color: var(--mid-grey); line-height: 1.75; margin-bottom: 12px; }

/* ---- 22. START HERE PAGE ---- */
.start-welcome { background: var(--warm-white); padding: var(--section-pad) 0; }
.start-welcome-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.start-pillars { background: var(--warm-cream); padding: var(--section-pad) 0; }
.start-pillar-card {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start;
  background: var(--warm-white); border-radius: var(--radius-card);
  padding: 24px; border: 1px solid var(--light-grey); margin-bottom: 16px; transition: var(--transition);
}
.start-pillar-card:hover { box-shadow: var(--shadow-card-hover); transform: translateX(4px); }
.start-pillar-emoji { font-size: 30px; padding-top: 4px; }
.start-pillar-card h3 { font-size: 1.1rem; color: var(--forest-green); margin-bottom: 6px; }
.start-pillar-card p { font-size: 14.5px; color: var(--mid-grey); margin: 0; line-height: 1.6; }
.first-read { font-size: 13px; color: var(--earth-green); font-weight: 700; display: block; margin-top: 8px; }
.start-questions { background: var(--warm-white); padding: var(--section-pad) 0; }
.start-questions-inner { max-width: 700px; margin: 0 auto; }
.start-qa { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--light-grey); }
.start-qa:last-child { border-bottom: none; }
.start-qa h3 { font-size: 1.05rem; color: var(--forest-green); margin-bottom: 10px; }
.start-qa p { font-size: 15.5px; color: var(--mid-grey); margin: 0; line-height: 1.75; }

/* ---- 23. CONTACT PAGE ---- */
.contact-section { background: var(--warm-white); padding: var(--section-pad) 0; }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-inner h2 { color: var(--forest-green); margin-bottom: 16px; }
.contact-inner > p { font-size: 17px; color: var(--mid-grey); margin-bottom: 32px; }
.contact-email-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: var(--forest-green);
  padding: 16px 28px; background: var(--warm-cream);
  border: 1px solid var(--light-grey); border-radius: var(--radius-card);
  margin-bottom: 40px; transition: var(--transition);
}
.contact-email-link:hover { background: var(--forest-green); color: #fff; border-color: var(--forest-green); text-decoration: none; }
.contact-email-link svg { width: 22px; height: 22px; fill: currentColor; }
.contact-social-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.contact-social-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  border-radius: 8px; background: var(--warm-cream); border: 1px solid var(--light-grey);
  font-size: 14px; font-weight: 700; color: var(--charcoal); transition: var(--transition);
}
.contact-social-btn:hover { background: var(--forest-green); color: #fff; border-color: var(--forest-green); text-decoration: none; }
.contact-social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.contact-notes { text-align: left; }
.contact-note {
  background: var(--warm-cream); border: 1px solid var(--light-grey);
  border-radius: var(--radius-card); padding: 20px 24px; margin-bottom: 16px;
  font-size: 14.5px; color: var(--mid-grey); line-height: 1.65; font-style: italic;
}
.contact-note strong { font-style: normal; color: var(--charcoal); font-weight: 700; }

/* ---- 24. EDITORIAL STANDARDS ---- */
.standards-section { background: var(--warm-white); padding: var(--section-pad) 0; }
.standards-inner { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.standard-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--light-grey); }
.standard-block:last-child { border-bottom: none; }
.standard-block h2 { font-size: 1.5rem; color: var(--forest-green); margin-bottom: 16px; }
.standard-block p,
.standard-block li { font-size: 15.5px; color: var(--charcoal); line-height: 1.8; margin-bottom: .8em; }
.standard-block ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.standard-block li { margin-bottom: 6px; }

/* ---- 25. RESPONSIVE ---- */
@media (max-width: 1023px) {
  .nav-links, .nav-social, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .bondo-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .bondo-photo-secondary { display: none; }
}

@media (max-width: 767px) {
  :root { --section-pad: 56px; }
  body { font-size: 16px; }
  .hero {
    background:
      linear-gradient(to bottom,
        rgba(10,30,17,0.95) 0%,
        rgba(16,48,28,0.88) 45%,
        rgba(24,68,40,0.82) 100%
      ),
      url('earthywoof-hero.webp') 62% center / cover no-repeat;
  }
  .hero > .container { padding-top: 110px; padding-bottom: 64px; min-height: 92vh; justify-content: center; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-sub { max-width: 100%; }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-affiliate-note, .footer-greenwag-note { white-space: normal; text-align: center; }
  .bondo-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .bondo-photo { width: 150px; height: 150px; margin: 0 auto; }
  .bondo-links { justify-content: center; }
  .opt-in-form { flex-direction: column; }
  .opt-in-form .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .is-isnt-grid { grid-template-columns: 1fr; }
  .contact-social-grid { flex-direction: column; align-items: center; }
  .contact-social-btn { width: 100%; max-width: 280px; justify-content: center; }
  .start-pillar-card { grid-template-columns: 1fr; }
  .page-hero { padding: 96px 0 52px; }
  .bondo-about-inner { grid-template-columns: 1fr; }
}

/* ---- 26. ACCESSIBILITY ---- */
:focus-visible { outline: 2px solid var(--warm-copper); outline-offset: 3px; }
.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; }
