:root {
  color-scheme: light;
  --ink: #282433;
  --muted: #6d6474;
  --line: #eadde0;
  --accent: #e85f73;
  --accent-dark: #9f334b;
  --teal: #2e8f8a;
  --mint: #dff5e9;
  --peach: #ffe1d6;
  --butter: #fff1b8;
  --sky: #d9efff;
  --bg: #fff9f4;
  --panel: #ffffff;
  --shadow: 0 22px 70px rgba(126, 80, 70, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

main {
  flex: 1;
}

a {
  color: var(--accent-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(46, 143, 138, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav,
.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-bottom-color: currentColor;
  color: var(--accent);
}

.topic-nav {
  display: flex;
  gap: 10px;
  width: min(1080px, calc(100% - 32px));
  margin: -8px auto 12px;
  overflow-x: auto;
  padding: 0 0 4px;
  scrollbar-width: thin;
}

.topic-nav::after {
  flex: 0 0 6px;
  content: "";
}

.topic-nav-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topic-nav a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(159, 51, 75, 0.16);
  border-radius: 999px;
  background: #fffaf6;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.topic-nav a:hover,
.topic-nav a:focus-visible,
.topic-nav a[aria-current="location"] {
  border-color: rgba(159, 51, 75, 0.38);
  background: #ffffff;
  color: var(--accent);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.topic-nav .topic-nav-all {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.topic-nav .topic-nav-all:hover,
.topic-nav .topic-nav-all:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

[id] {
  scroll-margin-top: 132px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--accent-dark);
  text-underline-offset: 3px;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #aa9aa1;
}

.breadcrumbs span[aria-current="page"] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-contents {
  margin: 28px 0 36px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(223, 245, 233, 0.58));
}

.article-contents h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.12;
}

.article-contents ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 22px;
}

.article-contents li {
  padding-left: 2px;
  color: var(--muted);
}

.article-contents a {
  color: var(--accent-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.hero {
  padding: 64px 0 40px;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 219, 92, 0.38), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(104, 204, 195, 0.26), transparent 30%),
    linear-gradient(180deg, #fff4ef 0%, #fffaf6 72%, var(--bg) 100%);
}

.home-hero::after {
  position: absolute;
  right: 8%;
  bottom: 22px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(232, 95, 115, 0.13);
  content: "";
  filter: blur(2px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 20px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 24px;
}

.home-guide-search {
  max-width: 620px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(159, 51, 75, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(126, 80, 70, 0.08);
}

.home-guide-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.home-guide-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.home-guide-search input,
.home-guide-search button {
  min-height: 48px;
  border: 1px solid rgba(159, 51, 75, 0.28);
  border-radius: 8px;
  font: inherit;
}

.home-guide-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 13px;
  color: var(--ink);
  background: #ffffff;
}

.home-guide-search button {
  padding: 10px 16px;
  color: #ffffff;
  background: var(--accent-dark);
  font-weight: 850;
  cursor: pointer;
}

.home-guide-search button:hover {
  background: var(--accent);
}

.quick-start {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-start a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(159, 51, 75, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.quick-start a:hover {
  border-color: rgba(159, 51, 75, 0.42);
  background: #ffffff;
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 8px;
  background: var(--butter);
  content: "";
  transform: rotate(2deg);
}

.hero-photo img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 58% center;
}

.hero-sprinkle {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  opacity: 0.68;
  animation: floaty 8s ease-in-out infinite;
}

.sprinkle-one {
  top: 105px;
  left: 5%;
  width: 22px;
  height: 22px;
  background: var(--teal);
}

.sprinkle-two {
  right: 4%;
  bottom: 110px;
  width: 34px;
  height: 34px;
  background: var(--accent);
  animation-delay: -2.5s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: 28px 0 32px;
}

.card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.card:focus-within {
  box-shadow: 0 18px 42px rgba(116, 74, 86, 0.13);
  transform: translateY(-4px);
}

.card h2,
.card h3 {
  margin-top: 0;
}

.guide-grid {
  padding-top: 8px;
  padding-bottom: 56px;
}

.guide-grid .card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.guide-grid .card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.12;
}

.guide-grid .card p {
  margin: 0 0 18px;
  color: #514854;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-dark);
  font-weight: 900;
}

.card-link {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.color-coral {
  background: var(--peach);
}

.color-mint {
  background: var(--mint);
}

.color-yellow {
  background: var(--butter);
}

.color-sky {
  background: var(--sky);
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #ef8a54);
  box-shadow: 0 12px 28px rgba(232, 95, 115, 0.24);
  text-decoration: none;
  font-weight: 900;
}

.button:hover {
  transform: translateY(-1px);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.mood-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 48px rgba(126, 80, 70, 0.08);
}

.mood-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.mood-item span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.mood-item strong {
  display: block;
  font-size: 19px;
  line-height: 1.2;
}

.mood-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pathway-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: start;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 48px rgba(126, 80, 70, 0.08);
}

.article-pathway {
  margin: 28px 0 8px;
}

.pathway-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.06;
}

.pathway-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.pathway-card {
  display: block;
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(159, 51, 75, 0.16);
  border-radius: 8px;
  background: #fffaf6;
  color: var(--ink);
  text-decoration: none;
}

.pathway-card:hover,
.pathway-card:focus-visible {
  border-color: rgba(159, 51, 75, 0.36);
  box-shadow: 0 12px 28px rgba(126, 80, 70, 0.1);
  transform: translateY(-1px);
}

.card:focus-within .card-link,
.pathway-card:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pathway-card strong,
.pathway-card span {
  display: block;
}

.pathway-card strong {
  color: var(--accent-dark);
  line-height: 1.18;
}

.pathway-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section-heading {
  padding: 64px 0 14px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.04;
}

.article {
  max-width: 820px;
  padding: 48px 0 72px;
}

/* Directory pages need more room for category cards while their intro copy stays readable. */
.article.hub-page {
  max-width: 1080px;
}

.hub-page > h1,
.hub-page > .lede,
.hub-page > .note,
.hub-page > p:not([class]) {
  max-width: 820px;
}

.article h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
}

.article-meta {
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta a {
  color: var(--accent-dark);
  font-weight: 800;
}

.disclosure,
.note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
}

.article-hero {
  margin: 28px 0 34px;
}

.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(126, 80, 70, 0.1);
}

.article-hero figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.product-route {
  margin: -12px 0 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.product-route p {
  margin: 0 0 12px;
  color: var(--muted);
}

.product-route ul {
  margin: 0;
}

.affiliate-shopping-guide {
  margin: -12px 0 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(126, 80, 70, 0.08);
}

.affiliate-shopping-guide h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.affiliate-shopping-guide p {
  margin: 0 0 14px;
  color: var(--muted);
}

.shopping-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.shopping-link {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
  color: var(--ink);
  text-decoration: none;
}

.shopping-link[data-pick]::before {
  content: attr(data-pick);
  align-self: flex-start;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  background: var(--accent-dark);
}

.shopping-link:hover {
  border-color: rgba(159, 51, 75, 0.35);
  box-shadow: 0 12px 28px rgba(126, 80, 70, 0.1);
  transform: translateY(-1px);
}

.shopping-link img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.shopping-link strong,
.shopping-link span {
  display: block;
}

.shopping-link strong {
  color: var(--accent-dark);
  line-height: 1.2;
}

.shopping-link span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.product-picks {
  margin-top: 0;
}

.product-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.product-pick-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
  color: var(--ink);
  text-decoration: none;
}

.product-pick-card[data-pick]::before {
  content: attr(data-pick);
  align-self: flex-start;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  background: var(--accent-dark);
}

.product-pick-card:hover {
  border-color: rgba(159, 51, 75, 0.35);
  box-shadow: 0 12px 28px rgba(126, 80, 70, 0.1);
  transform: translateY(-1px);
}

.product-pick-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.product-pick-card strong {
  color: var(--accent-dark);
  line-height: 1.2;
}

.product-pick-card span {
  color: var(--muted);
  font-size: 14px;
}

.product-pick-card em {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.quick-picks {
  margin: 18px 0 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(126, 80, 70, 0.08);
}

.quick-picks h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
}

.quick-picks > p {
  margin: 0 0 16px;
  color: var(--muted);
}

.quick-pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.quick-pick {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  min-height: 132px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.quick-pick img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
}

.quick-pick-label {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-pick h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.18;
}

.quick-pick p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.retailer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.retailer-button:hover {
  background: var(--accent);
  color: #ffffff;
}

.comparison-table-wrap {
  margin: 24px 0 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(126, 80, 70, 0.08);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table caption {
  padding: 16px 18px 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: #fffaf6;
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.affiliate-product-module .button {
  margin-top: 14px;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 60px;
}

.home-callout {
  margin-bottom: 54px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 225, 214, 0.82), rgba(217, 239, 255, 0.76)),
    #ffffff;
  box-shadow: 0 18px 54px rgba(126, 80, 70, 0.09);
}

.split-section h2 {
  margin: 0 0 8px;
}

.split-section p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  width: 100%;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(40, 36, 51, 0.98), rgba(62, 52, 70, 0.98)),
    var(--ink);
  padding: 44px 0 26px;
  color: var(--muted);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) repeat(3, minmax(130px, 0.5fr));
  gap: 34px;
  align-items: start;
}

.footer-brand,
.footer-nav,
.footer-note {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-tagline {
  max-width: 430px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-note p + p {
  margin-top: 8px;
}

.footer-nav h2 {
  margin: 4px 0 12px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.archive-finder {
  margin: 44px 0 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #fff4ef);
  box-shadow: 0 16px 48px rgba(126, 80, 70, 0.08);
}

.archive-finder h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}

.archive-finder p {
  margin: 0;
  color: var(--muted);
}

.archive-field {
  min-width: 0;
}

.archive-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 850;
}

.archive-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 18px;
}

.archive-search-label {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 850;
}

.archive-field input,
.archive-field select,
.archive-search-row > input,
.archive-search-row > select,
.archive-search-row button {
  min-height: 48px;
  border: 1px solid rgba(159, 51, 75, 0.26);
  border-radius: 8px;
  font: inherit;
}

.archive-field input,
.archive-search-row > input {
  width: 100%;
  padding: 10px 14px;
  color: var(--ink);
  background: #ffffff;
}

.archive-field select,
.archive-search-row > select {
  width: 100%;
  padding: 10px 36px 10px 12px;
  color: var(--ink);
  background-color: #ffffff;
  cursor: pointer;
}

.archive-search-row button {
  padding: 10px 18px;
  color: #ffffff;
  background: var(--accent-dark);
  font-weight: 850;
  cursor: pointer;
}

.archive-search-row button:disabled {
  color: var(--muted);
  background: #eee7e5;
  cursor: default;
}

.search-suggestions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.search-suggestions span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-suggestions button {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(159, 51, 75, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.search-suggestions button:hover,
.search-suggestions button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--peach);
}

.archive-finder .archive-search-status {
  min-height: 24px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
}

.archive-finder .archive-search-empty {
  margin-top: 10px;
  padding: 12px 14px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: var(--mint);
  color: var(--ink);
}

.archive-search-empty a {
  font-weight: 800;
}

.article-list article[hidden] {
  display: none;
}

.archive-more {
  display: flex;
  justify-content: center;
  margin: 22px 0 46px;
}

.archive-more[hidden] {
  display: none;
}

.button-secondary {
  border: 1px solid rgba(159, 51, 75, 0.3);
  color: var(--accent-dark);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(126, 80, 70, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  background: var(--peach);
}

.list-heading {
  padding: 6px 0 8px;
}

.list-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
}

.list-heading p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.topic-clusters {
  margin-top: 34px;
  padding-top: 10px;
}

.topic-grid > article > a[hidden] {
  display: none;
}

.topic-links-toggle {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px dashed rgba(159, 51, 75, 0.42);
  border-radius: 7px;
  background: rgba(255, 249, 244, 0.78);
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
}

.topic-links-toggle::after {
  float: right;
  content: "＋";
  font-size: 18px;
  line-height: 1;
}

.topic-links-toggle[aria-expanded="true"]::after {
  content: "−";
}

.topic-links-toggle:hover {
  border-style: solid;
  background: var(--peach);
}

.guide-types {
  margin: 42px 0 10px;
}

.fresh-guide-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sky), #ffffff 52%, var(--mint));
}

.fresh-guide-intro,
.fresh-guide-strip article {
  padding: 16px;
  border-radius: 7px;
}

.fresh-guide-intro {
  align-self: center;
}

.fresh-guide-strip article {
  border: 1px solid rgba(159, 51, 75, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.fresh-guide-strip h3,
.fresh-guide-strip p {
  margin: 0;
}

.fresh-guide-strip h3 {
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.18;
}

.fresh-guide-strip article p:last-child {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.fresh-guide-strip a {
  color: var(--ink);
  text-decoration-color: rgba(159, 51, 75, 0.35);
  text-underline-offset: 4px;
}

.fresh-guide-strip a:hover,
.fresh-guide-strip a:focus-visible {
  color: var(--accent-dark);
  text-decoration-color: currentColor;
}

.pet-shortcuts {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: center;
  margin: 32px 0 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), #ffffff 58%, var(--sky));
}

.pet-shortcuts h2,
.pet-shortcuts p {
  margin: 0;
}

.pet-shortcuts h2 {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
}

.pet-shortcuts div > p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.pet-shortcut-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pet-shortcut-links a {
  display: block;
  min-height: 112px;
  padding: 15px;
  border: 1px solid rgba(159, 51, 75, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
}

.pet-shortcut-links a:hover,
.pet-shortcut-links a:focus-visible {
  border-color: rgba(159, 51, 75, 0.36);
  box-shadow: 0 10px 24px rgba(126, 80, 70, 0.1);
}

.pet-shortcut-links strong,
.pet-shortcut-links span {
  display: block;
}

.pet-shortcut-links strong {
  color: var(--accent-dark);
  font-size: 18px;
}

.pet-shortcut-links span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.guide-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guide-type-grid a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(126, 80, 70, 0.06);
}

.guide-type-grid a:hover,
.guide-type-grid a:focus-visible {
  border-color: rgba(159, 51, 75, 0.34);
  box-shadow: 0 16px 36px rgba(126, 80, 70, 0.1);
  transform: translateY(-2px);
}

.guide-type-grid span {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-type-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.guide-type-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.topic-clusters h2 {
  font-size: 28px;
  line-height: 1.15;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.topic-grid article {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(126, 80, 70, 0.06);
}

.topic-grid article:target {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 143, 138, 0.16), 0 18px 42px rgba(126, 80, 70, 0.1);
}

.topic-grid article::before {
  width: 44px;
  height: 5px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  content: "";
}

.topic-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  line-height: 1.18;
}

.topic-grid p {
  margin: 0 0 14px;
  color: var(--muted);
}

.topic-grid a {
  display: block;
  margin-top: 0;
  padding: 8px 0;
  border-top: 1px solid rgba(234, 221, 224, 0.74);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.topic-grid article > p + a {
  margin: 1px 0 7px;
  padding: 11px 12px;
  border: 1px solid rgba(46, 143, 138, 0.22);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(223, 245, 233, 0.76), #ffffff);
  color: var(--ink);
}

.topic-grid article > p + a::before {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  content: "Start here";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topic-grid a:hover,
.topic-grid a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.guide-finder {
  margin: 30px 0 34px;
}

.guide-finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.guide-finder-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(126, 80, 70, 0.06);
}

.guide-finder-grid article:target {
  border-color: rgba(159, 51, 75, 0.45);
  box-shadow: 0 0 0 4px rgba(232, 95, 115, 0.14), 0 14px 38px rgba(126, 80, 70, 0.08);
}

.guide-finder-grid h3 {
  margin: 0 0 8px;
  color: var(--accent-dark);
  line-height: 1.18;
}

.guide-finder-grid p {
  margin: 0 0 12px;
  color: var(--muted);
}

.guide-finder-grid a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid rgba(234, 221, 224, 0.74);
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.guide-finder-grid a:hover,
.guide-finder-grid a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.article-list article {
  display: grid;
  grid-template-columns: minmax(92px, 0.22fr) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.article-list article:hover,
.article-list article:focus-within {
  border-color: rgba(159, 51, 75, 0.28);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(126, 80, 70, 0.08);
}

.article-list article .eyebrow {
  margin: 2px 0 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 225, 214, 0.72);
  text-align: center;
}

.article-list h2 {
  margin: 0 0 8px;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.14;
}

.article-list article p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.article > article > p,
.article > article > ul,
.article > article > ol {
  max-width: 68ch;
  font-size: 1.04rem;
}

.article > article > h2 {
  margin-top: 2.1em;
  margin-bottom: 0.55em;
  line-height: 1.16;
}

.article > article > h3 {
  margin-top: 1.7em;
  margin-bottom: 0.45em;
  line-height: 1.22;
}

.article > article a:not(.button):not(.retailer-button):not(.product-pick-card):not(.shopping-link) {
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.article-list h2 a {
  color: inherit;
  text-decoration: none;
}

.article-list h2 a:hover {
  color: var(--accent);
}

.article-next-steps {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  margin: 54px 0 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff, rgba(223, 245, 233, 0.72));
  box-shadow: 0 16px 48px rgba(126, 80, 70, 0.08);
}

.article-next-steps h2 {
  margin: 0 0 10px;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
}

.article-next-steps p {
  margin: 0;
  color: var(--muted);
}

.article-next-step-links {
  display: grid;
  gap: 10px;
}

.article-next-step-links a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid rgba(46, 143, 138, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-decoration: none;
}

.article-next-step-links a:hover,
.article-next-step-links a:focus-visible {
  border-color: var(--teal);
  background: #ffffff;
}

.article-next-step-links strong {
  color: var(--accent-dark);
}

.article-next-step-links span {
  color: var(--muted);
  font-size: 14px;
}

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

  .hero-copy {
    max-width: 720px;
  }

  .hero-photo {
    max-width: 720px;
  }

  .guide-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-next-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    box-shadow: 0 8px 24px rgba(40, 36, 51, 0.08);
  }

  [id] {
    scroll-margin-top: 128px;
  }

  .nav {
    min-height: 58px;
    padding: 7px 0 5px;
  }

  .nav-links {
    width: auto;
    max-width: calc(100% - 142px);
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 9px 8px;
    border-radius: 6px;
    border-bottom: 0;
  }

  .nav-links a:first-child {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    background: var(--peach);
  }

  .brand {
    gap: 7px;
    font-size: 15px;
    white-space: nowrap;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .topic-nav {
    width: 100%;
    margin: 0;
    padding: 6px 34px 10px 16px;
    border-top: 1px solid rgba(234, 221, 224, 0.75);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0) calc(100% - 38px), rgba(232, 95, 115, 0.18)),
      #ffffff;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .topic-nav-label {
    position: sticky;
    left: 0;
    z-index: 1;
    min-height: 40px;
    padding-right: 8px;
    background: #ffffff;
  }

  .topic-nav a {
    min-height: 40px;
    padding: 9px 13px;
    scroll-snap-align: start;
  }

  .nav-links::-webkit-scrollbar,
  .topic-nav::-webkit-scrollbar {
    display: none;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .home-hero {
    padding-top: 42px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .hero-photo img {
    aspect-ratio: 4 / 3;
  }

  .home-guide-search div {
    grid-template-columns: 1fr;
  }

  .home-guide-search button {
    width: 100%;
  }

  .mood-strip {
    grid-template-columns: 1fr;
  }

  .pathway-strip,
  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .guide-type-grid {
    grid-template-columns: 1fr;
  }

  .pet-shortcuts,
  .pet-shortcut-links,
  .fresh-guide-strip {
    grid-template-columns: 1fr;
  }

  .fresh-guide-intro {
    padding-bottom: 6px;
  }

  .guide-type-grid a {
    min-height: 0;
  }

  .split-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-list article {
    grid-template-columns: 1fr;
  }

  .article-list article .eyebrow {
    justify-self: start;
  }

  .article-list article p:not(.eyebrow) {
    grid-column: auto;
  }

  .archive-search-row {
    grid-template-columns: 1fr;
  }

  .archive-field input,
  .archive-field select,
  .archive-search-row > input,
  .archive-search-row > select {
    min-height: 48px;
  }

  .archive-search-row button {
    width: auto;
    justify-self: start;
    min-height: 42px;
  }

  .search-suggestions {
    align-items: flex-start;
  }

  .article-contents ol {
    grid-template-columns: 1fr;
  }

  .article-next-steps {
    margin-top: 40px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.product-first-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
  gap: 20px;
  align-items: stretch;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, Canvas 88%, currentColor 4%);
}

.product-first-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: color-mix(in srgb, currentColor 8%, transparent);
}

.product-first-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.product-first-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.product-first-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.72;
}

.product-first-copy h2,
.product-first-copy p {
  margin: 0;
}

.product-first-links {
  display: grid;
  gap: 10px;
}

.product-first-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: color-mix(in srgb, currentColor 18%, #0f5f4a 82%);
}

.product-first-related {
  font-size: 0.95rem;
}

.product-first-related a {
  font-weight: 700;
}

@media (max-width: 760px) {
  .product-first-hero {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .product-first-image img {
    min-height: 210px;
  }
}


/* portfolio-content-standard-v1 */
.editorial-meta,.editorial-policy{border:1px solid color-mix(in srgb,currentColor 18%,transparent);border-radius:14px;background:color-mix(in srgb,currentColor 4%,transparent);padding:1rem 1.15rem;margin:1rem 0 1.5rem}.editorial-meta p,.editorial-policy p{margin:.35rem 0}.editorial-policy-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem}.editorial-policy-grid>div{min-width:0}.editorial-policy h3{margin-bottom:.35rem}.category-route-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;margin-right:.45rem;opacity:.78}img{max-width:100%;height:auto}
