/* ============================================
   AllMind Pets — Brand Stylesheet
   ============================================ */

:root {
  --parchment: #f7f3eb;
  --forest: #2c4a3e;
  --forest-light: #3a6050;
  --amber: #c9853a;
  --warm-brown: #7a5c3e;
  --stone: #8b8178;
  --smoke: #6b6560;
  --offwhite: #faf8f4;
  --white: #ffffff;
  --border: #e6dfd3;
  --border-strong: #ccc4b4;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--parchment);
  color: var(--smoke);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; color: var(--forest); line-height: 1.2; }
a { color: var(--forest); text-decoration: none; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.logo span { color: var(--amber); }
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--forest); }

/* ---- Hero ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--forest);
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.proof-label { font-size: 0.75rem; color: var(--stone); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.proof-divider { width: 1px; height: 40px; background: var(--border-strong); opacity: 0.6; }

/* Hero Visual — product cards */
.hero-visual {
  position: relative;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(44, 74, 62, 0.08), 0 1px 4px rgba(44, 74, 62, 0.04);
  width: 200px;
}
.hero-card-1 { top: 0; left: 0; }
.hero-card-2 { top: 120px; right: 0; }
.hero-card-3 { bottom: 40px; left: 40px; }
.card-tag { font-size: 0.75rem; font-weight: 600; color: var(--stone); letter-spacing: 0.04em; margin-bottom: 6px; }
.card-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--forest); }
.card-note { font-size: 0.75rem; color: var(--stone); margin-top: 6px; line-height: 1.4; }

/* ---- Shared Section Styles ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 48px;
}

/* ---- How It Works ---- */
.how-it-works {
  background: var(--forest);
  padding: 96px 24px;
}
.how-it-works .section-header { text-align: center; margin-bottom: 64px; }
.how-it-works .section-label { color: rgba(255,255,255,0.5); }
.how-it-works .section-title { color: var(--parchment); }
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { position: relative; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 133, 58, 0.4);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 12px;
}
.step-desc { font-size: 0.9375rem; color: rgba(247,243,235,0.65); line-height: 1.6; }
.shipping-note {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.shipping-note p { font-size: 0.875rem; color: rgba(247,243,235,0.45); font-style: italic; }

/* ---- Categories ---- */
.categories {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: block;
}
.category-card:hover {
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(44,74,62,0.1);
  transform: translateY(-2px);
}
.category-card-sale { border-color: var(--amber); background: #fdf8f2; }
.category-icon {
  color: var(--forest);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.category-card-sale .category-icon { color: var(--amber); }
.category-name { font-size: 1.1875rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.category-desc { font-size: 0.875rem; color: var(--stone); line-height: 1.5; }

/* ---- Values ---- */
.values {
  background: var(--offwhite);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.values-content { max-width: 1200px; margin: 0 auto; }
.values-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--forest); margin-bottom: 16px; }
.values-lead { font-size: 1.0625rem; color: var(--stone); margin-bottom: 48px; max-width: 560px; line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  margin-top: 2px;
}
.value-name { font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.value-desc { font-size: 0.9375rem; color: var(--stone); line-height: 1.6; }

/* ---- Closing ---- */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: var(--parchment);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-cta {
  display: inline-block;
  background: var(--forest);
  color: var(--parchment);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.closing-cta:hover { background: var(--forest-light); color: var(--parchment); }

/* ---- Autoship Section ---- */
.autoship-section {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 24px;
}
.autoship-inner { max-width: 1200px; margin: 0 auto; }
.autoship-header { text-align: center; margin-bottom: 48px; }
.autoship-lead {
  font-size: 1.0625rem;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto 0;
  line-height: 1.7;
}
.autoship-offer { text-align: center; margin-bottom: 48px; }
.autoship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf8f2;
  border: 1px solid var(--amber);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--warm-brown);
}
.autoship-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.autoship-product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.autoship-product:hover {
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(44,74,62,0.08);
}
.autoship-product-img {
  background: var(--parchment);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.autoship-product-img svg { width: 100%; max-width: 80px; height: auto; }
.autoship-product-info { padding: 24px; }
.autoship-product-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.autoship-product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.autoship-product-info p {
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.55;
  margin-bottom: 16px;
}
.autoship-product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.autoship-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest);
}
.autoship-per { font-size: 0.875rem; color: var(--stone); font-family: 'DM Sans', sans-serif; }
.autoship-was { font-size: 0.8125rem; color: var(--stone); text-decoration: line-through; }
.autoship-cta-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.autoship-cta-link:hover { color: var(--amber); }

.autoship-email-section {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--border);
}
.autoship-email-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}
.autoship-email-section > p {
  font-size: 0.9375rem;
  color: var(--stone);
  margin-bottom: 28px;
}
.autoship-form { max-width: 560px; margin: 0 auto 16px; }
.autoship-form-row {
  display: flex;
  gap: 12px;
}
.autoship-form-row input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--smoke);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.autoship-form-row input[type="email"]:focus { border-color: var(--forest); }
.autoship-form-row select {
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--smoke);
  background: var(--white);
  cursor: pointer;
}
.autoship-submit-btn {
  background: var(--forest);
  color: var(--parchment);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.autoship-submit-btn:hover { background: var(--forest-light); }
.autoship-success-msg {
  background: #f0f7f4;
  border: 1px solid #b8d9c8;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--forest);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.autoship-error-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  color: #991b1b;
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.autoship-privacy {
  font-size: 0.75rem;
  color: var(--stone);
  margin-top: 12px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--forest);
  padding: 64px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--parchment);
  display: block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--amber); }
.footer-brand p { font-size: 0.875rem; color: rgba(247,243,235,0.55); line-height: 1.6; max-width: 280px; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(247,243,235,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(247,243,235,0.35);
}

/* ---- Pledge Page ---- */
.pledge-hero {
  background: var(--forest);
  padding: 96px 24px 80px;
  text-align: center;
}
.pledge-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.pledge-hero .section-label { color: rgba(255,255,255,0.5); }
.pledge-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--parchment);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.pledge-subhead {
  font-size: 1.125rem;
  color: rgba(247,243,235,0.7);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

.pledge-promises {
  padding: 80px 24px;
  background: var(--parchment);
}
.pledge-promises-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pledge-block {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.pledge-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  margin-top: 4px;
}
.pledge-content { flex: 1; }
.pledge-promise-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
}
.pledge-promise-body {
  font-size: 1rem;
  color: var(--smoke);
  line-height: 1.75;
}

.pledge-cta-section {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
  text-align: center;
}
.pledge-cta-inner { max-width: 560px; margin: 0 auto; }
.pledge-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.pledge-cta-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 32px;
}
.pledge-cta-btn {
  display: inline-block;
  background: var(--forest);
  color: var(--parchment);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.pledge-cta-btn:hover { background: var(--forest-light); color: var(--parchment); }

@media (max-width: 600px) {
  .pledge-hero { padding: 64px 20px 56px; }
  .pledge-promises { padding: 56px 20px; }
  .pledge-block { flex-direction: column; gap: 16px; }
  .pledge-icon { width: 48px; height: 48px; border-radius: 12px; }
  .pledge-cta-section { padding: 64px 20px; }
}

/* ---- Products Page ---- */
.products-hero {
  background: var(--forest);
  padding: 96px 24px 80px;
  text-align: center;
}
.products-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.products-hero .section-label { color: rgba(255,255,255,0.5); }
.products-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--parchment);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.products-subhead {
  font-size: 1.0625rem;
  color: rgba(247,243,235,0.72);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.products-subhead a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.products-subhead a:hover { color: var(--parchment); }

.products-grid-section {
  padding: 80px 24px;
  background: var(--parchment);
}
.products-grid-inner { max-width: 1200px; margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  border-color: var(--forest);
  box-shadow: 0 8px 32px rgba(44,74,62,0.1);
  transform: translateY(-2px);
}

.product-card-img {
  background: #edf2ef;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  opacity: 0.55;
}
.product-img-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: 'DM Sans', sans-serif;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.product-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  margin: 0;
  line-height: 1.25;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
}
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}
.product-cadence {
  font-size: 0.875rem;
  color: var(--stone);
}
.product-why {
  font-size: 0.8125rem;
  color: var(--smoke);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-why strong { color: var(--forest); font-weight: 600; }

/* Product card CTA buttons */
.product-shipping {
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.product-cta-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.product-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex: 1;
}
.product-btn-once {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.product-btn-once:hover {
  background: var(--forest);
  color: var(--parchment);
}
.product-btn-subscribe {
  background: var(--forest);
  color: var(--parchment);
  border: 1.5px solid var(--forest);
}
.product-btn-subscribe:hover {
  background: var(--forest-light);
  color: var(--parchment);
  border-color: var(--forest-light);
}

/* Autoship page product CTA pair */
.autoship-cta-pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.autoship-cta-primary {
  display: block;
  text-align: center;
  padding: 10px 16px;
  background: var(--forest);
  color: var(--parchment);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.autoship-cta-primary:hover { background: var(--forest-light); color: var(--parchment); }
.autoship-cta-secondary {
  display: block;
  text-align: center;
  padding: 8px 16px;
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.autoship-cta-secondary:hover { background: var(--forest); color: var(--parchment); }

.products-cta-section {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  padding: 96px 24px;
  text-align: center;
}
.products-cta-inner { max-width: 560px; margin: 0 auto; }
.products-cta-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  margin: 12px 0 16px;
}
.products-cta-body {
  font-size: 1.0625rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 32px;
}
.products-cta-btn {
  display: inline-block;
  background: var(--forest);
  color: var(--parchment);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.products-cta-btn:hover { background: var(--forest-light); color: var(--parchment); }

/* Active nav link state */
.site-nav a.nav-active { color: var(--forest); font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px 72px; }
  .hero-visual { height: 280px; }
  .hero-card { width: 160px; padding: 16px; }
  .hero-card-1 { top: 0; left: 0; }
  .hero-card-2 { top: 80px; right: 0; }
  .hero-card-3 { bottom: 20px; left: 20px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .hero { padding: 40px 20px 56px; }
  .hero-headline { font-size: 2rem; }
  .hero-proof { gap: 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .how-it-works, .categories, .values, .closing { padding: 64px 20px; }
  .section-title { font-size: 1.75rem; }
  .footer-links { flex-direction: column; gap: 32px; }
  .products-hero { padding: 64px 20px 56px; }
  .products-grid-section { padding: 56px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-cta-section { padding: 64px 20px; }
}

/* ---- Product Detail Page ---- */
.pd-breadcrumb {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.pd-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--stone);
}
.pd-breadcrumb a { color: var(--forest); }
.pd-breadcrumb a:hover { text-decoration: underline; }
.pd-breadcrumb-sep { color: var(--stone); }

.pd-hero {
  padding: 64px 24px;
  background: var(--offwhite);
}
.pd-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pd-hero-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.pd-hero-info { display: flex; flex-direction: column; gap: 16px; }
.pd-name {
  font-size: 2.25rem;
  color: var(--forest);
  line-height: 1.15;
  margin-top: 8px;
}
.pd-tagline { font-size: 1.1rem; color: var(--smoke); font-style: italic; }

.pd-pricing-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
.pd-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: 1;
}
.pd-price-block.pd-price-monthly { border-color: var(--forest-light); background: #f0f5f2; }
.pd-price-amount { font-size: 1.25rem; font-weight: 600; color: var(--forest); font-family: 'DM Sans', sans-serif; }
.pd-price-label { font-size: 0.8rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; }

.pd-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pd-cta-btn { flex: 1; min-width: 160px; text-align: center; }
.pd-shipping {
  font-size: 0.85rem;
  color: var(--stone);
  padding-top: 4px;
}

/* Detail section */
.pd-detail-section {
  padding: 80px 24px;
  background: var(--parchment);
}
.pd-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.pd-section-title {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Honesty grid */
.pd-honesty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pd-honesty-block {
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
}
.pd-what-it-isnt { border-left: 3px solid var(--amber); }
.pd-pledge-link { margin-top: 12px; font-size: 0.9rem; color: var(--stone); }
.pd-pledge-link a { color: var(--forest); text-decoration: underline; }

/* Specs table */
.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pd-specs-table tr { border-bottom: 1px solid var(--border); }
.pd-specs-table tr:last-child { border-bottom: none; }
.pd-spec-key {
  padding: 12px 16px 12px 0;
  font-weight: 600;
  color: var(--forest);
  width: 35%;
  text-align: left;
  vertical-align: top;
}
.pd-spec-val {
  padding: 12px 0;
  color: var(--smoke);
}

/* Why block */
.pd-why-text {
  font-size: 1.05rem;
  color: var(--smoke);
  line-height: 1.7;
  padding: 24px;
  background: var(--offwhite);
  border-left: 3px solid var(--forest);
  border-radius: 6px;
}

/* Logistics grid */
.pd-logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pd-logistics-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-logistics-block p { font-size: 0.95rem; color: var(--smoke); }
.pd-logistics-block a { color: var(--forest); text-decoration: underline; }

/* Back link */
.pd-back-section {
  padding: 32px 24px 56px;
  background: var(--parchment);
}
.pd-back-inner { max-width: 900px; margin: 0 auto; }
.pd-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
}
.pd-back-link:hover { text-decoration: underline; }

/* Product detail responsive */
@media (max-width: 860px) {
  .pd-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .pd-honesty-grid { grid-template-columns: 1fr; }
  .pd-logistics-grid { grid-template-columns: 1fr; }
  .pd-pricing-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .pd-hero { padding: 40px 20px; }
  .pd-name { font-size: 1.75rem; }
  .pd-detail-section { padding: 56px 20px; }
  .pd-cta-row { flex-direction: column; }
}
