:root {
  --ink: #17231c;
  --forest: #294936;
  --moss: #526f4d;
  --sage: #a9bda3;
  --paper: #f6f1e7;
  --paper-strong: #fffaf0;
  --sand: #e6d8c3;
  --wood: #b9823a;
  --clay: #8f5b32;
  --border: rgba(41, 73, 54, 0.2);
  --shadow: 0 22px 60px rgba(23, 35, 28, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { min-width: 320px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(169, 189, 163, 0.42), transparent 34rem),
    linear-gradient(180deg, #fbf6ec 0%, var(--paper) 45%, #efe3d0 100%);
  color: var(--ink);
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 1rem; }

.page-shell { overflow-x: clip; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(246, 241, 231, 0.9);
  border-bottom: 1px solid rgba(41, 73, 54, 0.12);
}
.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255,250,240,.9);
  box-shadow: 0 8px 24px rgba(23,35,28,.12);
  object-fit: contain;
}
.brand-copy { min-width: 0; display: grid; gap: 1px; }
.brand-copy strong { font-weight: 900; letter-spacing: -0.04em; white-space: nowrap; }
.brand-copy small { display: none; color: rgba(23,35,28,.62); font-size: .76rem; }
.nav-links { display: none; align-items: center; gap: 1rem; font-size: 0.94rem; color: rgba(23, 35, 28, 0.74); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  padding: .62rem .9rem;
  border-radius: 999px;
  color: #fffaf0 !important;
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(41,73,54,.18);
}

.hero { padding: 34px 0 34px; }
.hero-grid { display: grid; gap: 24px; align-items: center; }
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow img { width: 22px; height: 22px; border-radius: 50%; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--ink); letter-spacing: -0.045em; line-height: 1; text-wrap: balance; }
h1 { margin: 18px 0 16px; font-size: clamp(2.7rem, 11vw, 5.8rem); max-width: 11ch; }
.hero-break { display: none; }
h2 { margin: 0; font-size: clamp(2rem, 8vw, 4rem); }
h3 { margin: 0; font-size: 1.35rem; }
p { line-height: 1.65; color: rgba(23, 35, 28, 0.75); }
.lede { margin: 0; max-width: 650px; font-size: clamp(1.02rem, 3vw, 1.28rem); color: rgba(23, 35, 28, 0.78); }
.cta-row { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 22px; }
.button, button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.92rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button.primary, button.primary { background: var(--forest); color: #fffdf8; box-shadow: 0 12px 30px rgba(41, 73, 54, 0.25); }
.checklist-panel button.primary { background: #f0c25c; color: #17231c; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22); }
.button.secondary { background: rgba(255, 250, 240, 0.78); color: var(--forest); border-color: var(--border); }
.button:hover, button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(185, 130, 58, 0.45); outline-offset: 3px; }
.micro-disclosure { margin-top: 14px; font-size: 0.86rem; color: rgba(23, 35, 28, 0.62); }
.hero-signup {
  margin-top: 18px;
  border: 1px solid rgba(41, 73, 54, 0.16);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 26px rgba(23, 35, 28, 0.08);
}
.hero-signup label { display: grid; gap: 2px; margin-bottom: 9px; color: var(--forest); font-weight: 900; }
.hero-signup label span { color: rgba(23, 35, 28, 0.58); font-size: 0.8rem; font-weight: 700; }
.hero-signup-row { display: grid; gap: 9px; }
.hero-signup input {
  min-height: 48px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(41, 73, 54, 0.2);
  padding: 0.85rem 1rem;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}
.hero-signup .form-error { margin: 10px 0 0; color: #9b2d1c; }

.hero-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.72));
  box-shadow: var(--shadow);
}
.hero-visual > img { border-radius: 23px; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.lead-magnet-visual {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
}
.lead-magnet-visual > img.lead-magnet-cover {
  width: min(100%, 300px);
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(41, 73, 54, 0.14);
  box-shadow: 0 18px 40px rgba(23, 35, 28, 0.14);
}
.lead-magnet-visual .hero-note {
  position: static;
  width: 100%;
  max-width: 340px;
}
.hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(143, 91, 50, 0.18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,248,232,.94);
  box-shadow: 0 16px 40px rgba(23, 35, 28, 0.14);
}
.hero-note strong { display: block; font-family: Georgia, serif; font-size: 1.1rem; }
.hero-note span { color: rgba(23,35,28,.68); font-size: .9rem; }

.section { padding: 54px 0; }
.section-head { display: grid; gap: 12px; margin-bottom: 24px; }
.section-head p { margin: 0; max-width: 720px; }
.card-grid { display: grid; gap: 14px; }
.category-card, .tool-card, .guide-card, .checklist-panel, .trust-panel, .content-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 14px 34px rgba(23, 35, 28, 0.07);
}
.category-card {
  min-height: 268px;
  padding: 18px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}
.category-card:hover, .tool-card:hover { transform: translateY(-3px); }
.category-card, .tool-card { transition: transform 180ms ease; }
.category-media {
  grid-column: 1 / -1;
  margin: -8px -8px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(41, 73, 54, 0.12);
  background: rgba(230, 216, 195, 0.45);
  aspect-ratio: 16 / 10;
}
.category-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--media-position, center); transform: scale(var(--media-scale, 1.02)); }
.media-water { --media-position: 50% 54%; --media-scale: 1.08; }
.media-food { --media-position: 50% 50%; --media-scale: 1.03; }
.media-power { --media-position: 53% 57%; --media-scale: 1.08; }
.media-backyard { --media-position: 50% 58%; --media-scale: 1.03; }
.media-first-aid { --media-position: 50% 52%; --media-scale: 1.04; }
.category-icon { width: 70px; height: 70px; justify-self: end; }
.card-number { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(169, 189, 163, 0.36); color: var(--forest); font-weight: 900; }
.category-card div { grid-column: 1 / -1; }
.category-card .category-media { grid-column: 1 / -1; }
.category-card p { margin: 10px 0 0; }

.guide-card { display: grid; gap: 22px; padding: 22px; background: linear-gradient(130deg, rgba(255, 250, 240, 0.95), rgba(230, 216, 195, 0.58)); }
.guide-content { align-self: center; }
.badge { display: inline-flex; width: fit-content; border-radius: 999px; padding: 0.38rem 0.72rem; background: rgba(185, 130, 58, 0.16); color: #734415; font-weight: 900; font-size: 0.82rem; }
.guide-content h2 { margin-top: 14px; }
.guide-list { margin: 18px 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.guide-list li { padding-left: 1.8rem; position: relative; color: rgba(23, 35, 28, 0.76); line-height: 1.5; }
.guide-list li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); font-weight: 900; }
.limitation { border-left: 4px solid rgba(185,130,58,.45); padding-left: 14px; }
.affiliate-label { display: block; margin-top: 0.55rem; font-size: 0.78rem; color: rgba(23, 35, 28, 0.58); }
.guide-visual { position: relative; border-radius: 24px; padding: 16px; background: var(--forest); color: white; display: grid; gap: 20px; align-content: start; overflow: hidden; }
.guide-photo-frame { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; min-height: 390px; border: 1px solid rgba(255, 250, 240, 0.18); box-shadow: 0 20px 42px rgba(0,0,0,.16); }
.guide-visual p { color: rgba(255,255,255,.78); font-size: .88rem; margin: 0 4px 2px; position: relative; z-index: 1; }
.guide-photo { width: 100%; height: 100%; border-radius: 0; object-fit: cover; object-position: 50% 52%; }
.guide-book-card { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 16px; margin: 0; border-radius: 18px; padding: 13px; background: rgba(255, 250, 240, 0.96); color: var(--ink); box-shadow: 0 18px 36px rgba(0,0,0,.16); display: grid; gap: 7px; }
.guide-book-card img { border-radius: 50%; box-shadow: 0 8px 20px rgba(23,35,28,.14); }
.guide-book-card span { width: fit-content; border-radius: 999px; padding: .26rem .5rem; background: rgba(82,111,77,.14); color: var(--forest); font-weight: 900; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.guide-book-card strong { font-family: Georgia,serif; font-size: clamp(1.28rem, 5.2vw, 1.55rem); line-height: 1.04; }
.guide-book-card small { color: rgba(23,35,28,.62); }
.product-guide-visual {
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(230, 216, 195, 0.72));
  color: var(--ink);
}
.product-guide-frame {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  min-height: 0;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(41, 73, 54, 0.14);
  background: radial-gradient(circle at 50% 28%, #fffaf0 0%, #eadbc5 100%);
  box-shadow: 0 20px 42px rgba(23, 35, 28, 0.12);
}
.product-guide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 14px;
}
.product-guide-visual p {
  color: rgba(23, 35, 28, 0.72);
  margin: 0 2px 2px;
}

.tools-grid { display: grid; gap: 14px; }
.tool-card { padding: 18px; display: flex; flex-direction: column; height: 100%; }
.tool-media { margin: -8px -8px 14px; border-radius: 20px; overflow: hidden; border: 1px solid rgba(41, 73, 54, 0.12); background: rgba(230, 216, 195, 0.45); aspect-ratio: 16 / 10; }
.tool-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--media-position, center); transform: scale(var(--media-scale, 1.02)); }
.tool-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.tool-top img { width: 62px; height: 62px; }
.tool-kicker { color: var(--wood); font-weight: 900; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.criteria-panel { margin: -8px 0 22px; border: 1px solid var(--border); border-radius: 22px; padding: 16px; background: rgba(255,250,240,.66); }
.criteria-panel strong { display: block; margin-bottom: 10px; font-family: Georgia,serif; font-size: 1.2rem; }
.criteria-panel ul { display: grid; gap: 8px; margin: 0; padding-left: 1.1rem; color: rgba(23,35,28,.72); }
.use-case { margin: 10px 0 14px; }
.tool-points { border-top: 1px solid rgba(41,73,54,.12); padding-top: 12px; margin-top: 10px; }
.tool-points strong, .avoid strong { color: var(--ink); }
.tool-points ul { margin: 8px 0 0; padding-left: 1.15rem; color: rgba(23,35,28,.72); line-height: 1.55; }
.avoid { margin: 14px 0 18px; }
.tool-card .button { margin-top: auto; }

@media (min-width: 860px) {
  .tool-card h3 { min-height: 2.8rem; }
  .tool-card .use-case { min-height: 3.35rem; }
  .tool-points { min-height: 7.2rem; }
  .tool-points + .tool-points { min-height: 7.75rem; }
  .avoid { min-height: 4.4rem; }
}

.checklist-panel { display: grid; gap: 22px; padding: 22px; background: linear-gradient(135deg, var(--forest), #1b3024); color: white; overflow: hidden; }
.checklist-copy { align-self: center; }
.checklist-panel h2, .checklist-panel h3 { color: white; }
.checklist-panel p { color: rgba(255,255,255,0.78); }
.checklist-panel .eyebrow { background: rgba(255,255,255,.08); color: #fffaf0; border-color: rgba(255,255,255,.2); }
.inside-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.inside-list li { color: rgba(255,255,255,.86); padding-left: 1.45rem; position: relative; line-height: 1.45; }
.inside-list li::before { content: "•"; position: absolute; left: .3rem; color: #f0c25c; }
.checklist-form-wrap { display: grid; gap: 16px; align-self: center; }
.checklist-mockup { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 50%; margin: 0 auto; border-radius: 24px; box-shadow: 0 24px 46px rgba(0,0,0,.24); transform: rotate(-0.4deg); border: 1px solid rgba(255,255,255,.16); }
.checklist-cover-preview {
  width: min(100%, 250px);
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 10px;
  background: #fffaf0;
  justify-self: center;
}
.form-grid { display: grid; gap: 12px; }
.form-grid label { display: grid; gap: 7px; font-weight: 800; color: rgba(255,255,255,0.9); }
.form-grid input, .form-grid textarea { min-height: 48px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.22); padding: 0.9rem 1rem; font: inherit; background: rgba(255,255,255,0.95); color: var(--ink); }
.form-error { color: #ffd0b9; font-weight: 800; }
.preview-note { font-size: 0.82rem; color: rgba(255,255,255,0.66) !important; margin: 0; }
.content-card .preview-note, .next-step-panel .preview-note, .related-panel .preview-note {
  color: rgba(23, 35, 28, 0.66) !important;
}
.next-step-panel .preview-note { margin-top: 12px; }
.next-step-panel .preview-note a { color: var(--forest); font-weight: 900; text-decoration-thickness: 2px; }

.trust-panel { padding: 22px; display: grid; gap: 18px; }
.trust-panel > img { border-radius: 50%; box-shadow: 0 12px 26px rgba(23,35,28,.12); object-fit: contain; }
.trust-panel h2 { margin-top: 14px; }
.trust-bullets { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.trust-bullets li { border: 1px solid var(--border); border-radius: 999px; padding: .55rem .75rem; background: rgba(255,250,240,.72); color: var(--forest); font-weight: 850; font-size: .9rem; }
.footer { padding: 40px 0; background: rgba(23, 35, 28, 0.96); color: #fffaf0; }
.footer p { color: rgba(255,250,240,0.7); margin: .45rem 0; }
.footer-grid { display: grid; gap: 22px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img { border-radius: 50%; flex: 0 0 auto; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: #fffaf0; }

.content-page { padding: 70px 0; }
.content-card { padding: 24px; max-width: 860px; }
.content-card h1 { max-width: 12ch; font-size: clamp(2.6rem, 10vw, 5rem); }
.content-card h2 { font-size: clamp(1.8rem, 6vw, 2.6rem); margin-top: 28px; }
.content-card li { margin: 0.7rem 0; color: rgba(23, 35, 28, 0.74); line-height: 1.6; }
.notice { margin-top: 18px; border-radius: 16px; padding: 14px; background: rgba(185, 130, 58, 0.12); color: #724513; }

.recommended-guides { display: grid; gap: 22px; }
.guide-card-primary { border-color: rgba(185, 130, 58, 0.34); box-shadow: 0 22px 52px rgba(23, 35, 28, 0.1); }
.review-hero { padding: 42px 0 30px; }
.review-hero-grid { display: grid; gap: 24px; align-items: center; }
.review-hero-copy h1 { max-width: 13.8ch; }
.review-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.72));
  box-shadow: var(--shadow);
}
.review-visual > img { width: 100%; height: 100%; min-height: 396px; border-radius: 23px; object-fit: cover; object-position: 50% 54%; }
.review-card-overlay { left: 28px; right: 28px; bottom: 28px; }
.product-showcase {
  display: grid;
  align-content: center;
  gap: 16px;
  background: radial-gradient(circle at 50% 25%, rgba(255, 250, 240, 0.98), rgba(230, 216, 195, 0.74));
}
.product-showcase > img.product-mockup {
  min-height: 0;
  width: 100%;
  max-height: 360px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.7);
  box-shadow: 0 22px 46px rgba(23, 35, 28, 0.14);
}
.product-showcase-photo > img.product-mockup {
  aspect-ratio: 16 / 10;
  max-height: 320px;
  object-fit: contain;
  background: #fffaf0;
}
.product-fact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.product-fact-strip span {
  border: 1px solid rgba(41, 73, 54, 0.16);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.18;
}
.product-details-card {
  display: grid;
  gap: 20px;
}
.product-side-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}
.product-side-stack img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: 1px solid rgba(41, 73, 54, 0.14);
  border-radius: 20px;
  padding: 8px;
  background: #fffaf0;
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(23, 35, 28, 0.09);
}
.inside-grid, .facts-grid { display: grid; gap: 12px; }
.price-box { background: rgba(255, 250, 240, 0.9); }
.price-box p { margin: 8px 0 0; }
.compact-cta { margin-top: 14px; width: fit-content; }
.disclosure-box {
  margin: 18px 0 0;
  border: 1px solid rgba(41, 73, 54, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 250, 240, 0.76);
  color: rgba(23, 35, 28, 0.68);
  font-size: 0.9rem;
}
.review-layout { display: grid; gap: 18px; }
.review-section {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 34px rgba(23, 35, 28, 0.07);
}
.review-section h2 { font-size: clamp(1.8rem, 5.5vw, 3rem); margin: 10px 0 14px; }
.review-section p:first-child { margin-top: 0; }
.verdict-card { background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.72)); }
.verdict-grid, .comparison-grid, .review-two-col, .mini-card-grid { display: grid; gap: 14px; }
.verdict-grid,
.comparison-grid,
.facts-grid {
  align-items: start;
}
.verdict-grid p,
.comparison-grid p,
.facts-grid p {
  margin-block: 0;
}
.mini-card {
  border: 1px solid rgba(41, 73, 54, 0.16);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.66);
}
.mini-card strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; line-height: 1.1; }
.mini-card p { margin: 8px 0 0; }
.cta-panel { background: linear-gradient(135deg, var(--forest), #1b3024); color: #fffaf0; }
.cta-panel h2, .cta-panel p, .cta-panel .eyebrow { color: #fffaf0; }
.cta-panel p { color: rgba(255, 250, 240, 0.78); }
.cta-panel .button.primary { background: #f0c25c; color: #17231c; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22); }
.related-panel .button, .cta-panel .button { margin-top: 10px; }
.content-card.wide { max-width: 1040px; }
.thank-you-card h1 { max-width: 12.5ch; }
.download-row { margin-top: 24px; }
.back-link { margin-top: 26px; }
.next-step-panel {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  border: 1px solid rgba(41, 73, 54, 0.18);
  border-radius: 26px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.58));
}
.next-step-panel h2 { margin-top: 14px; }
.next-step-panel img { width: 100%; border-radius: 22px; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 55%; box-shadow: 0 18px 34px rgba(23, 35, 28, 0.12); }
.next-step-panel img.next-step-product-image {
  aspect-ratio: 1 / 1;
  height: min(320px, 72vw);
  object-fit: contain;
  padding: 12px;
  background: #fffaf0;
}

.water-guide-hero { padding: 42px 0 36px; }
.water-hero-grid { display: grid; gap: 26px; align-items: start; }
.water-hero-copy h1 { max-width: 12.5ch; }
.water-hero-copy > p:not(.lede) { margin: 14px 0 0; max-width: 650px; }
.water-fact-card {
  margin-top: 18px;
  border: 1px solid rgba(41, 73, 54, 0.16);
  border-radius: 20px;
  padding: 15px 16px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 14px 34px rgba(23, 35, 28, 0.08);
  color: rgba(23, 35, 28, 0.72);
  line-height: 1.55;
  font-weight: 750;
}
.water-hero-visual {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(230, 216, 195, 0.72));
  box-shadow: var(--shadow);
}
.water-hero-visual img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; object-position: 48% 54%; border-radius: 23px; }
.water-hero-visual figcaption { margin: 12px 6px 2px; color: rgba(23, 35, 28, 0.66); font-size: .9rem; font-weight: 800; }
.water-narrow { max-width: 1120px; }
.water-narrow > h2,
.water-text-stack,
.water-pullquote,
.water-mistake-grid { max-width: 940px; }
.water-text-stack { display: grid; gap: 12px; margin-top: 18px; }
.water-text-stack p { margin: 0; }
.water-pullquote {
  margin: 22px 0;
  border-left: 5px solid rgba(185, 130, 58, 0.55);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.08;
}
.water-mistake-grid, .water-ladder, .water-compare-grid, .water-decision-grid, .water-product-grid, .water-two-col { display: grid; gap: 14px; align-items: start; }
.water-mistake-grid article, .water-ladder-card, .water-compare-card, .water-decision-grid article, .water-product-slot, .water-math-panel, .water-safety-note, .water-sources, .water-bottom-nav {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 34px rgba(23, 35, 28, 0.07);
}
.water-mistake-grid article { padding: 18px; }
.water-mistake-grid span, .water-decision-grid span, .water-decision-grid .scenario-jump-link {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: .36rem .68rem;
  background: rgba(185, 130, 58, 0.14);
  color: #734415;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.water-decision-grid .scenario-jump-link {
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}
.water-decision-grid .scenario-jump-link:hover,
.water-decision-grid .scenario-jump-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(185, 130, 58, 0.22);
  box-shadow: 0 8px 18px rgba(115, 68, 21, 0.10);
}
.water-mistake-grid p, .water-compare-grid p, .water-compare-grid ul, .water-ladder-card p, .water-product-slot p { margin-block: 0; }
.water-story-visual,
.water-card-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(41, 73, 54, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(230, 216, 195, 0.58));
  box-shadow: 0 16px 36px rgba(23, 35, 28, 0.09);
}
.water-story-visual {
  position: relative;
  margin-top: 22px;
  max-width: 940px;
}
.water-story-visual img,
.water-card-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.water-story-visual img { aspect-ratio: 16 / 10; height: auto; }
.water-card-visual { aspect-ratio: 16 / 10; margin-bottom: 14px; }
.water-card-visual img { aspect-ratio: 16 / 10; height: 100%; }
.water-ladder-visual {
  max-width: none;
  margin: 0 0 22px;
}
.water-ladder-visual img { aspect-ratio: auto; }
.water-split-labels,
.water-step-labels {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.2;
}
.water-split-labels { grid-template-columns: 1fr; }
.water-step-labels span,
.water-split-labels span {
  border: 1px solid rgba(41, 73, 54, 0.14);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255, 250, 240, 0.84);
}
.water-step-labels strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  line-height: 1;
  margin-bottom: 3px;
}
.water-step-labels-four { grid-template-columns: 1fr; }
.water-math-visual { margin-bottom: 16px; }
.water-ladder-card, .water-compare-card, .water-product-slot, .water-decision-grid article { padding: 18px; display: flex; flex-direction: column; height: 100%; }
.water-ladder-card h3, .water-compare-card h3, .water-product-slot h3, .water-decision-grid h3 { margin: 10px 0 12px; }
.water-ladder-card p, .water-decision-grid p, .water-product-slot p { margin-top: 0; }
.water-ladder-card div, .water-compare-card strong + ul, .water-product-slot strong + ul { border-top: 1px solid rgba(41,73,54,.12); padding-top: 12px; margin-top: 12px; }
.water-ladder-card strong, .water-compare-card strong, .water-product-slot strong { color: var(--ink); }
.water-ladder-card ul, .water-compare-card ul, .water-product-slot ul { margin: 8px 0 0; padding-left: 1.15rem; color: rgba(23,35,28,.72); line-height: 1.55; }
.water-product-slot ul { margin-bottom: 22px; }
.product-disclosure {
  max-width: 920px;
  margin: -6px auto 20px;
  border: 1px solid rgba(41, 73, 54, 0.14);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 250, 240, 0.72);
  color: rgba(23, 35, 28, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}
.product-disclosure strong { color: var(--ink); }
.water-product-slot .product-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.water-two-col { gap: 20px; }
.water-math-panel { padding: 20px; background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.64)); }
.water-math-panel h3 { margin-bottom: 14px; }
.water-math-panel ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.water-math-panel li { display: grid; gap: 3px; border-radius: 16px; padding: 12px; background: rgba(255, 250, 240, 0.82); border: 1px solid rgba(41, 73, 54, 0.12); }
.water-math-panel span { color: rgba(23, 35, 28, 0.66); }
.water-math-panel p { margin-bottom: 0; }
.water-compare-card p { margin-top: 14px; border-top: 1px solid rgba(41,73,54,.12); padding-top: 12px; }
.water-decision-grid article .scenario-jump-link,
.water-decision-grid article span { margin-top: auto; line-height: 1.25; }
.water-product-grid { grid-template-columns: 1fr; }
.water-product-slot .placeholder-button {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(41, 73, 54, 0.18);
  padding: .82rem 1rem;
  background: rgba(82, 111, 77, 0.1);
  color: var(--forest);
  font-weight: 900;
  cursor: default;
  user-select: none;
}
.water-product-slot .placeholder-button::before {
  content: "Status: ";
  font-weight: 800;
  opacity: .72;
}
.water-safety-note, .water-sources, .water-bottom-nav { padding: 22px; }
.water-safety-note { background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(230, 216, 195, 0.66)); }
.water-safety-note h2, .water-bottom-nav h2 { margin-top: 14px; }
.water-sources ul { columns: 1; margin: 16px 0 0; padding-left: 1.1rem; color: rgba(23,35,28,.74); line-height: 1.65; }
.water-sources a { color: var(--forest); font-weight: 800; }

@media (min-width: 520px) {
  .brand-copy small { display: block; }
}
@media (min-width: 640px) and (max-width: 859px) {
  .hero-copy { max-width: 560px; margin-inline: auto; }
  .cta-row, .hero-signup { max-width: 460px; }
}
@media (min-width: 860px) {
  .container { width: min(1120px, calc(100% - 56px)); }
  .nav-links { display: flex; }
  .hero { padding: 68px 0 44px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 48px; }
  h1 { font-size: clamp(3rem, 5.4vw, 4.15rem); line-height: .96; max-width: 13.2ch; }
  .cta-row { flex-direction: row; align-items: center; }
  .hero-signup-row { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .guide-card { grid-template-columns: minmax(0, 1.1fr) 330px; padding: 28px 32px; align-items: center; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .checklist-panel { grid-template-columns: minmax(0, 1fr) 360px; padding: 30px 34px; align-items: center; }
  .checklist-mockup { max-height: 232px; }
  .checklist-cover-preview { width: min(100%, 240px); max-height: none; }
  .trust-panel { grid-template-columns: 90px 1fr; padding: 28px; }
  .review-hero { padding: 72px 0 38px; }
  .water-guide-hero { padding: 72px 0 44px; }
  .water-hero-grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 44px; }
  .water-hero-copy h1 { font-size: clamp(3.2rem, 5vw, 4.45rem); line-height: .96; max-width: 12.8ch; }
  .water-mistake-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .water-split-labels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .water-step-labels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .water-step-labels-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .water-ladder { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .water-ladder-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .water-ladder-card h3 { min-height: 3.1rem; }
  .water-ladder-four .water-ladder-card h3 { min-height: 4.35rem; }
  .water-ladder-card > p { min-height: 185px; }
  .water-ladder-four .water-ladder-card > p { min-height: 225px; }
  .water-ladder-card > div:first-of-type { min-height: 164px; }
  .water-ladder-four .water-ladder-card > div:first-of-type { min-height: 172px; }
  .water-two-col { grid-template-columns: minmax(0, 1fr) 360px; gap: 30px; }
  .water-compare-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .water-compare-card h3 { min-height: 3.15rem; }
  .water-compare-card > ul:nth-of-type(1) { min-height: 113px; }
  .water-compare-card > ul:nth-of-type(2) { min-height: 187px; }
  .water-decision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .water-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .water-product-slot > p { min-height: 4.9rem; }
  .water-product-slot > ul { min-height: 150px; }
  .water-product-slot-wide { grid-column: 1 / -1; }
  .water-product-slot-wide .water-card-visual { max-height: 320px; }
  .water-sources ul { columns: 2; }
  .review-hero-grid { grid-template-columns: minmax(0, 1fr) 430px; gap: 44px; }
  .review-hero-copy h1 { font-size: clamp(3.2rem, 5.1vw, 4.7rem); line-height: .96; max-width: 12.5ch; }
  .verdict-grid, .comparison-grid, .review-two-col, .facts-grid, .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .product-details-card { grid-template-columns: minmax(0, 1.25fr) 340px; align-items: center; }
  .mini-card-grid { grid-template-columns: repeat(3, 1fr); }
  .next-step-panel { grid-template-columns: minmax(0, 1fr) 330px; align-items: center; padding: 26px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
}
@media (min-width: 1020px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 44px; }
  h1 { font-size: clamp(3.25rem, 4.55vw, 3.75rem); max-width: none; }
  .hero-break { display: block; }
  .tools-grid { grid-template-columns: repeat(6, 1fr); }
  .tool-card { grid-column: span 2; }
  .tool-card:nth-child(4) { grid-column: 2 / span 2; }
}
@media (max-width: 859px) {
  .site-header { position: static; }
  .nav { min-height: 58px; }
  .brand-logo { width: 40px; height: 40px; }
  .hero { padding: 24px 0 26px; }
  .hero-copy { min-width: 0; }
  .eyebrow { max-width: 100%; border-radius: 18px; line-height: 1.18; text-wrap: balance; }
  h1 { margin: 14px 0 12px; font-size: clamp(2.15rem, 8vw, 3rem); line-height: .98; max-width: 13.5ch; }
  .water-hero-copy h1 { line-height: 1.02; max-width: 13.8ch; }
  .lede { font-size: 1rem; line-height: 1.52; }
  .cta-row { gap: 0.65rem; margin-top: 16px; }
  .button, button { width: 100%; padding: 0.82rem 1rem; }
  .micro-disclosure { margin-top: 10px; font-size: 0.8rem; }
  .hero-visual { padding: 9px; border-radius: 24px; }
  .hero-visual > img { max-height: 238px; border-radius: 18px; }
  .lead-magnet-visual > img.lead-magnet-cover { max-height: none; width: min(100%, 220px); }
  .lead-magnet-visual .hero-note { max-width: 300px; }
  .hero-note { left: 16px; right: 16px; bottom: 16px; padding: 10px 12px; }
  .section { padding: 36px 0; }
  .section-head { margin-bottom: 18px; }
  .category-card { min-height: 0; padding: 14px; gap: 10px; }
  .category-media { margin: -5px -5px 0; border-radius: 16px; }
  .category-media { aspect-ratio: 4 / 3; }
  .guide-card, .checklist-panel, .trust-panel { padding: 18px; border-radius: 22px; }
  .guide-photo-frame { min-height: 390px; }
  .product-guide-frame { aspect-ratio: 1 / 1; }
  .product-guide-image { padding: 12px; }
  .guide-book-card { left: 10px; right: 10px; bottom: 10px; padding: 12px; }
  .recommended-guides { gap: 18px; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; padding: 0.35rem 0.1rem; }
  .review-hero { padding: 30px 0 20px; }
  .review-hero-copy h1 { font-size: clamp(2.3rem, 9vw, 3.2rem); line-height: .98; max-width: 13.4ch; }
  .review-visual { min-height: 360px; padding: 9px; border-radius: 24px; }
  .review-visual > img { min-height: 342px; border-radius: 18px; }
  .product-showcase { min-height: 0; }
  .product-showcase > img.product-mockup { min-height: 0; max-height: 300px; padding: 10px; }
  .product-fact-strip { grid-template-columns: 1fr; }
  .product-side-stack img { min-height: 132px; }
  .review-card-overlay { left: 18px; right: 18px; bottom: 18px; }
  .review-section { padding: 18px; border-radius: 22px; }
  .next-step-panel { padding: 18px; border-radius: 22px; }
  .thank-you-card h1 { max-width: 13.2ch; }
  .criteria-panel { margin-bottom: 16px; padding: 14px; }
  .tool-card { padding: 15px; }
  .tool-media { margin: -5px -5px 12px; border-radius: 16px; }
  .tool-media { aspect-ratio: 4 / 3; }
  .tool-points, .avoid { display: none; }
  .tool-card .button { margin-top: 8px; }
  .checklist-mockup { max-height: 260px; object-position: center; }
  .checklist-cover-preview { max-height: none; width: min(100%, 238px); }
  .inside-list { gap: 6px; }
}
@media (max-width: 639px) {
  .brand-copy small { display: none; }
}
@media (max-width: 430px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav { min-height: 56px; }
  .brand { gap: .58rem; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1rem; letter-spacing: -0.035em; }
  .hero { padding-top: 20px; }
  .eyebrow { padding: .38rem .58rem; font-size: .66rem; letter-spacing: .06em; }
  .eyebrow img { width: 18px; height: 18px; }
  h1 { font-size: clamp(2.05rem, 9.4vw, 2.55rem); max-width: 12.8ch; }
  .button, button { font-size: .92rem; line-height: 1.15; }
}
@media (max-width: 380px) {
  .brand-copy strong { font-size: .94rem; }
  h1 { font-size: 2.15rem; }
  .container { width: min(100% - 24px, 1120px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}
