:root {
  --cream: #fbf3de;
  --cream-light: #fff8ea;
  --card: #fffcf5;
  --green: #557b3e;
  --soft-green: #7da86d;
  --light-green: #d8eac9;
  --brown: #744a28;
  --yellow: #f8d660;
  --ink: #382a1d;
  --muted: #665f55;
  --stroke: #e8d8ba;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(56, 42, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 248, 234, 0.9);
  border-bottom: 1px solid rgba(232, 216, 186, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.nav-links,
.button,
.crumbs,
.article-card,
.social-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.93rem;
  font-weight: 850;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.74);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
}

.language-switch button[aria-pressed="true"] {
  background: var(--light-green);
  color: var(--green);
}

.nav-links a:hover,
.footer-inner a:hover,
.article-card:hover h2,
.article-card:hover h3 {
  color: var(--green);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(34, 25, 16, 0.16);
}

.button.primary {
  background: var(--yellow);
  color: var(--ink);
}

.button.secondary {
  background: var(--green);
  color: var(--white);
}

.hero {
  padding: 86px 18px 64px;
  background:
    linear-gradient(120deg, rgba(56, 42, 29, 0.74), rgba(85, 123, 62, 0.50)),
    url("/landing/assets/family.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-comparison {
  background:
    linear-gradient(120deg, rgba(56, 42, 29, 0.82), rgba(85, 123, 62, 0.54)),
    url("/landing/assets/hero.jpg");
  background-size: cover;
  background-position: center;
}

.article-hero {
  background:
    linear-gradient(120deg, rgba(56, 42, 29, 0.84), rgba(85, 123, 62, 0.56)),
    var(--article-image);
  background-size: cover;
  background-position: center;
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-inner {
  max-width: 820px;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
}

.article-date {
  margin: -2px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
}

.kicker {
  color: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5.8vw, 4.9rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 14px;
  color: var(--brown);
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  color: var(--brown);
  font-size: 1.22rem;
  line-height: 1.2;
}

.lead {
  max-width: 68ch;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
}

.hero-actions {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.trust-note {
  display: inline-flex;
  max-width: 720px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(34, 25, 16, 0.30);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.crumbs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.section {
  padding: 72px 18px;
}

.section.light {
  background: var(--cream-light);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.article {
  padding: 38px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(116, 74, 40, 0.08);
}

.article p,
.article li {
  color: var(--muted);
}

.article strong {
  color: var(--ink);
}

.comparison-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.comparison-article {
  overflow: hidden;
}

.winner-card {
  position: relative;
  margin: -12px -12px 34px;
  padding: 34px;
  border: 2px solid rgba(248, 214, 96, 0.86);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8d7 0%, #eef7e8 100%);
  box-shadow: 0 18px 44px rgba(56, 42, 29, 0.13);
}

.winner-card h2 {
  color: var(--ink);
}

.rank-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
}

.comparison-table th {
  white-space: nowrap;
}

.comparison-table td {
  font-size: 0.95rem;
}

.mini-rank {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--green);
  font-weight: 950;
}

.review-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
  box-shadow: 0 10px 24px rgba(56, 42, 29, 0.06);
}

.review-card.is-winner {
  border-color: rgba(85, 123, 62, 0.44);
  background: linear-gradient(180deg, #fffaf0 0%, #eef7e8 100%);
}

.review-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.review-card h4 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 1rem;
}

.pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--light-green);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0;
}

.pros-cons > div {
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.76);
}

.pros-cons ul {
  margin-bottom: 0;
}

.verdict {
  padding: 16px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #eef7e8;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.profile-card {
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
}

.profile-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--light-green);
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--brown);
  font-weight: 950;
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

.legal-note {
  margin: 22px 0;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.article section + section {
  margin-top: 34px;
}

.quick-read {
  margin: -14px -14px 38px;
  padding: 26px;
  border: 1px solid rgba(85, 123, 62, 0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, #eef7e8, #fff8d7);
}

.quick-read h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.quick-read ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-read li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 780;
}

.quick-read li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--green);
  font-weight: 950;
}

.source-list {
  display: grid;
  gap: 10px;
  padding-left: 0 !important;
  list-style: none;
}

.source-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.source-list a:hover {
  border-color: rgba(85, 123, 62, 0.44);
}

.editorial-note {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
  font-size: 0.88rem;
}

.note {
  padding: 18px;
  border: 1px solid rgba(85, 123, 62, 0.22);
  border-radius: 8px;
  background: #eef7e8;
  color: var(--ink);
}

.note p:last-child {
  margin-bottom: 0;
}

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

.article-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 28px rgba(56, 42, 29, 0.10);
}

.article-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0 8px;
}

.advice-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
}

.advice-table th,
.advice-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
  text-align: left;
  vertical-align: top;
}

.advice-table th {
  background: var(--cream-light);
  color: var(--ink);
  font-size: 0.9rem;
}

.advice-table tr:last-child td {
  border-bottom: 0;
}

.life-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
  padding: 0;
  list-style: none;
  background: transparent;
}

.life-stage {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0 0%, var(--cream-light) 100%);
  box-shadow: 0 10px 24px rgba(56, 42, 29, 0.06);
  overflow: hidden;
}

.life-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--light-green);
}

.life-stage.is-laying::before {
  background: var(--green);
}

.life-stage.is-slowing::before {
  background: var(--soft-green);
}

.life-stage.is-pause::before {
  background: var(--yellow);
}

.life-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--card);
  border-radius: 50%;
  background: var(--light-green);
  box-shadow: 0 10px 20px rgba(56, 42, 29, 0.12);
  font-size: 1.45rem;
}

.life-stage.is-laying .life-icon {
  background: var(--green);
  color: var(--white);
}

.life-stage.is-pause .life-icon {
  background: var(--yellow);
}

.life-stage strong {
  display: block;
  max-width: 12ch;
  color: var(--brown);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.life-stage span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.side-card {
  position: sticky;
  top: 88px;
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(116, 74, 40, 0.08);
}

.side-card p {
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: block;
  padding: 12px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--cream-light);
  text-decoration: none;
  font-weight: 850;
}

.link-list a:hover {
  border-color: rgba(85, 123, 62, 0.4);
  color: var(--green);
}

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

.guide-section + .guide-section {
  padding-top: 0;
}

.guide-heading {
  max-width: 740px;
  margin-bottom: 26px;
}

.guide-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.featured-guide-content {
  padding: clamp(28px, 5vw, 52px);
}

.featured-guide h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.featured-guide p {
  color: var(--muted);
}

.featured-guide-image {
  min-height: 330px;
}

.featured-guide-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-meta {
  margin-top: auto;
  color: var(--green) !important;
  font-size: 0.84rem;
  font-weight: 950;
}

.article-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(116, 74, 40, 0.08);
}

.article-card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--light-green);
  font-size: 1.35rem;
}

.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta {
  padding: 54px 18px;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
}

.cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.88);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 34px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .article-layout,
  .grid,
  .featured-guide {
    grid-template-columns: 1fr;
  }

  .featured-guide-image {
    min-height: 240px;
    order: -1;
  }

  .pros-cons,
  .profile-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .life-timeline {
    grid-template-columns: 1fr;
  }

  .life-stage {
    min-height: 0;
  }

  .life-stage::before {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 8px;
  }

  .side-card {
    position: static;
  }

  .comparison-table-wrap {
    overflow: visible;
  }

  .comparison-table {
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--stroke);
    border-radius: 8px;
    background: var(--card);
    box-shadow: 0 10px 24px rgba(56, 42, 29, 0.06);
    overflow: hidden;
  }

  .comparison-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--stroke);
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--brown);
    font-weight: 950;
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .nav {
    width: min(1120px, calc(100% - 24px));
  }

  .nav .button {
    width: auto;
    min-height: 42px;
    padding: 10px 14px;
  }

  .brand span {
    max-width: 160px;
  }

  .hero {
    padding: 64px 14px 48px;
  }

  .section {
    padding: 54px 14px;
  }

  .article {
    padding: 24px 20px;
  }

  .quick-read {
    margin: -8px -4px 32px;
    padding: 22px 18px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .winner-card {
    margin: -6px -6px 28px;
    padding: 24px 18px;
  }

  .rank-badge {
    position: static;
    margin-bottom: 12px;
  }

  .review-card,
  .profile-card {
    padding: 18px;
  }

  .comparison-table td {
    grid-template-columns: 1fr;
  }
}
