:root {
  --primary: #b20f12;
  --primary-dark: #8f090c;
  --accent: #c99a3d;
  --accent-pale: #ead5ae;
  --page: #fcfbf8;
  --surface: #fff;
  --surface-warm: #f9f2e6;
  --border: #e8e1d7;
  --ink: #171511;
  --muted: #66655f;
  --success: #3e884d;
  --blue: #2875a2;
  --orange: #dc7627;
  --metal: #92928e;
  --container: 1320px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 22px rgba(72, 52, 28, .06);
  --shadow-lg: 0 14px 34px rgba(72, 52, 28, .1);
  --font-display: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --font-body: Inter, "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
h1, h2, h3, h4, p, dl, dd { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--font-display); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 2.35vw, 2.35rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.25; }
p { color: var(--muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container, .section-shell, .paired-section, .stories-section, .newsletter {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--primary);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.icon {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.czs-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.icon--red { color: var(--primary); }
.icon--gold { color: var(--accent); }
.mobile-only,
.mobile-section-subtitle,
.mobile-animals-section,
.mobile-zodiac-showcase,
.mobile-resource-track,
.finder-card__intro { display: none; }

/* Shared header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 80px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 39px;
  aspect-ratio: 1;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38);
}
.brand__mark--image { object-fit:contain; background:transparent; border-radius:0; box-shadow:none; }
.brand__name { font-family: var(--font-display); font-size: 25px; line-height: 1; }
.main-nav { justify-self: center; }
.main-nav ul { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.main-nav a { font-size: 14px; font-weight: 550; transition: color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"] { color: var(--primary); }
.site-header__actions { display: flex; align-items: center; gap: 14px; }
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.menu-toggle { display: none; }
.mobile-panel { display: none; }
.search-panel {
  position: absolute;
  inset: 80px 0 auto;
  padding: 18px 24px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.search-panel[hidden] { display: none; }
.search-panel form {
  width: min(100%, 760px);
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
}
.search-panel input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 650;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid rgba(178, 15, 18, .22);
  outline-offset: 3px;
}
.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #c51a1d, var(--primary));
  border-color: #a80c0f;
  box-shadow: 0 6px 14px rgba(178, 15, 18, .16);
}
.button--primary:hover { box-shadow: 0 9px 18px rgba(178, 15, 18, .22); }
.button--outline { color: var(--primary); background: #fff; border-color: rgba(178, 15, 18, .55); }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 650; }
.text-link .icon { width: 16px; height: 16px; }

/* Homepage hero */
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: radial-gradient(circle at 70% 22%, #fff 0, rgba(255,255,255,.45) 34%, transparent 60%), var(--page);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 154, 61, .22);
  border-radius: 50%;
  pointer-events: none;
}
.hero::before { width: 420px; height: 180px; top: 74px; right: -180px; }
.hero::after { width: 280px; height: 110px; left: -145px; bottom: 90px; }
.hero__landscape {
  position: absolute;
  inset: auto 0 0;
  height: 175px;
  background:
    linear-gradient(to top, rgba(242,238,229,.82), transparent 82%),
    radial-gradient(ellipse at 8% 100%, rgba(173,166,150,.23), transparent 45%),
    radial-gradient(ellipse at 89% 100%, rgba(107,112,95,.26), transparent 35%);
  clip-path: polygon(0 64%, 8% 48%, 17% 66%, 28% 35%, 39% 63%, 52% 47%, 66% 70%, 79% 42%, 90% 59%, 100% 31%, 100% 100%, 0 100%);
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 20px;
}
.hero__copy { padding-left: 24px; padding-bottom: 18px; }
.eyebrow { margin-bottom: 14px; color: var(--primary); font-size: 12px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { margin-bottom: 22px; font-size: clamp(4.25rem, 6vw, 5.4rem); line-height: .96; letter-spacing: -.045em; }
.hero__lede { max-width: 545px; margin-bottom: 28px; font-size: clamp(1.05rem, 1.4vw, 1.22rem); line-height: 1.55; }
.mobile-hero-cta { display: none; }
.hero__visual { align-self: stretch; display: grid; place-items: center; }
.hero__visual img { width: min(100%, 750px); filter: drop-shadow(0 12px 22px rgba(70,50,20,.08)); }
.finder-card {
  max-width: 590px;
  padding: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.finder-card__heading, .card-title-row { display: flex; align-items: center; gap: 10px; }
.finder-card__heading { margin-bottom: 16px; }
.finder-card__heading h2 { margin: 0; font-size: 20px; }
.finder-card__fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.finder-card label { color: var(--ink); font-size: 12px; font-weight: 650; }
.finder-card select {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 0 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
}
.finder-card__trust { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.finder-card__trust .icon { color: var(--success); }

/* Shared section shells */
.section-shell, .paired-section, .stories-section, .newsletter { margin-top: 18px; }
.section-shell, .feature-card, .stories-section, .newsletter {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.section-shell, .stories-section { padding: 28px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.section-heading h2 { margin: 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(72,52,28,.045);
}
.card-title-row h3, .card-title-row h2 { margin: 0; }

/* Glance */
.glance-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 20px; }
.daily-card, .finder-result { padding: 22px; }
.daily-card__content { display: grid; grid-template-columns: 1fr 1.18fr; margin-top: 14px; }
.daily-card__animal { padding: 2px 18px 0 4px; text-align: center; border-right: 1px solid var(--border); }
.daily-card__animal img { width: 145px; height: 108px; margin: 0 auto 4px; object-fit: cover; object-position: center; border-radius: 50%; }
.annual-card .daily-card__animal img { object-fit: contain; border-radius: 0; }
.daily-card__animal h4 { margin-bottom: 4px; font-size: 28px; }
.daily-card__animal h4 span { margin-left: 5px; font-size: 20px; }
.daily-card__animal p { margin-bottom: 3px; font-size: 13px; }
.daily-card__animal small { color: var(--muted); font-size: 11px; }
.fact-list { margin: 0; padding-left: 20px; }
.fact-list > div { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border); }
.fact-list > div:last-child { border: 0; }
.fact-list dt { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.fact-list dd { font-family: var(--font-display); font-size: 16px; }
.fact-dot { width: 17px; height: 17px; border-radius: 50%; }
.fact-dot--green { background: var(--success); }
.finder-result__content { display: grid; grid-template-columns: 40% 60%; margin-top: 14px; }
.finder-result__animal { display: grid; place-content: center; min-height: 190px; text-align: center; border-right: 1px solid var(--border); }
.finder-result__animal img { width: 145px; height: 130px; object-fit: contain; margin: auto; border-radius: 50%; background: var(--surface-warm); }
.finder-result__animal h4 { margin: 0; font-size: 27px; }
.finder-result__animal span { font-family: var(--font-display); }
.result-list { margin: 0; padding-left: 20px; }
.result-list > div { display: grid; grid-template-columns: 120px 1fr; min-height: 39px; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.result-list > div:last-child { border: 0; }
.result-list dt { color: var(--muted); font-size: 12px; }
.result-list dd { color: var(--muted); font-size: 12px; text-align: right; }
.result-list > div:nth-child(-n+3) dd { color: var(--success); font-weight: 650; }
.color-chip { display: inline-block; width: 14px; height: 14px; margin-left: 6px; border-radius: 50%; }
.color-chip--green { background: var(--success); }
.color-chip--blue { background: var(--blue); }
.color-chip--orange { background: var(--orange); }

/* Animals */
.animals-layout { display: grid; grid-template-columns: 29% 71%; gap: 16px; }
.animal-feature { padding: 18px 22px; background: linear-gradient(145deg, #fffaf0, #fff); border-color: rgba(201,154,61,.5); }
.animal-feature img { width: 100%; height: 192px; object-fit: cover; object-position: center; border-radius: 12px; }
.home-page .animal-feature img { object-fit: contain; background: #fffaf2; }
.animal-feature h3 { margin: 8px 0 4px; font-size: 31px; }
.animal-feature h3 span { font-size: 21px; }
.animal-feature p { margin-bottom: 12px; font-size: 14px; }
.year-list { display: flex; flex-wrap: wrap; gap: 4px 12px; color: var(--muted); font-size: 11px; }
.animal-grid { display: grid; width: 100%; min-width: 0; max-width: 100%; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.animal-card {
  min-height: 137px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(72,52,28,.035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.animal-card:hover { transform: translateY(-4px); border-color: var(--accent-pale); box-shadow: var(--shadow); }
.animal-card img { width: 96px; height: 82px; object-fit: contain; }
.animal-card span { font-family: var(--font-display); font-size: 16px; }
.animal-card b { font-weight: 400; margin-left: 4px; }

/* Paired feature rows */
.paired-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; }
.feature-card { min-width: 0; min-height: 330px; padding: 26px; }
.compatibility-card { display: grid; grid-template-columns: 34% 66%; gap: 20px; }
.compatibility-card > img { width: 100%; height: 250px; object-fit: contain; align-self: center; }
.feature-card h2 { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: 27px; }
.feature-card p { font-size: 14px; }
.score-list { margin: 18px 0; }
.score-list > div { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 12px; margin: 8px 0; }
.score-list dt { color: var(--muted); font-size: 12px; }
.score-list dd { display: grid; grid-template-columns: 1fr 42px; align-items: center; gap: 10px; }
.score-list dd > span { height: 7px; overflow: hidden; background: #e6e6e2; border-radius: 10px; }
.score-list b { font-size: 11px; color: var(--muted); }
.bar { display: block; height: 100%; border-radius: inherit; }
.bar--green { background: #4e9b68; }.bar--green-dark { background: #287a4d; }.bar--red { background: var(--primary); }.bar--blue { background: var(--blue); }
.bar--80 { width: 80%; }.bar--70 { width: 70%; }.bar--85 { width: 85%; }.bar--75 { width: 75%; }
.years-card { position: relative; }
.timeline { margin: 28px 0 18px; }
.timeline__labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.timeline input { width: 100%; accent-color: var(--primary); }
.timeline output { display: block; margin-top: 5px; color: var(--primary); font-size: 13px; font-weight: 650; text-align: center; }
.year-result {
  width: min(100%, 390px);
  min-height: 116px;
  margin: 0 auto 18px;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #fffdf9, #f9f1e4);
  border: 1px solid var(--accent-pale);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(72, 52, 28, .06);
}
.year-result__art { display: grid; place-items: center; }
.year-result__art img { width: 112px; height: 94px; object-fit: contain; }
.year-result__copy { min-width: 0; display: grid; justify-items: start; }
.year-result__copy small { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.year-result__copy strong { color: var(--ink); font-family: var(--font-display); font-size: 27px; font-weight: 500; line-height: 1.2; }
.year-result__copy strong b { margin-left: 4px; color: var(--primary); font-weight: 500; }
.year-result__copy > span { color: var(--muted); font-size: 12px; }
.years-card > .button { display: flex; width: max-content; margin: auto; }

.editorial-pair { grid-template-columns: .88fr 1.12fr; }
.elements-card { display: grid; grid-template-columns: 58% 42%; gap: 15px; }
.elements-card h2 { font-size: 24px; white-space: nowrap; }
.elements-card img { width: min(100%, 280px); margin: 18px auto 0; }
.element-key { margin: 0; }
.element-key > div { margin-bottom: 13px; }
.element-key dt { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 650; }
.element-key dd { margin-left: 23px; color: var(--muted); font-size: 12px; }
.element-dot { display: inline-block; width: 14px; height: 14px; border-radius: 50%; }
.element-dot--wood { background: var(--success); }.element-dot--fire { background: #d64029; }.element-dot--earth { background: #d99c22; }.element-dot--metal { background: var(--metal); }.element-dot--water { background: var(--blue); }
.culture-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 52% 48%; background: linear-gradient(135deg, #fff, #f9f1df); }
.culture-card__copy { position: relative; z-index: 2; }
.culture-card > img { position: absolute; right: 0; bottom: 0; width: 58%; height: 100%; object-fit: cover; object-position: right center; mix-blend-mode: multiply; }

/* Stories */
.stories-grid { display: grid; grid-template-columns: 2.35fr repeat(4, 1fr); gap: 14px; }
.story-feature, .story-card { overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.story-feature { position: relative; min-height: 235px; color: #fff; background: #24312a; }
.story-feature > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); }
.story-feature__overlay { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(transparent 25%, rgba(10,15,12,.86)); }
.story-feature h3 { max-width: 320px; margin: 0 0 6px; color: #fff; font-size: 25px; }
.story-feature p { max-width: 350px; margin-bottom: 8px; color: rgba(255,255,255,.8); font-size: 12px; }
.story-feature a { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 12px; font-weight: 700; }
.badge { width: max-content; margin-bottom: auto; padding: 4px 8px; color: #3c2911; background: #e1b959; border-radius: 5px; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.story-card { display: flex; min-width: 0; flex-direction: column; }
.story-card img { width: 100%; aspect-ratio: 1.85 / 1; object-fit: cover; }
.story-card div { padding: 14px; }
.story-card h3 { min-height: 48px; margin-bottom: 7px; font-size: 17px; }
.story-card p { font-size: 11px; line-height: 1.5; }
.story-card a { color: var(--primary); font-size: 11px; font-weight: 700; }

/* Newsletter and footer */
.newsletter {
  min-height: 118px;
  padding: 18px 30px;
  display: grid;
  grid-template-columns: 170px 1fr minmax(360px, .9fr);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(100deg, #fbf4e7, #fffdf7);
}
.newsletter__art {
  position: relative;
  display: grid;
  width: 150px;
  height: 92px;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}
.newsletter__art::before {
  position: absolute;
  z-index: -1;
  inset: 7px 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 185, 117, .18), rgba(251, 244, 231, 0) 70%);
  content: "";
}
.newsletter__art img {
  width: 150px;
  max-width: none;
  transform: translateY(-34px);
  opacity: .9;
  mix-blend-mode: multiply;
  filter: sepia(.12) saturate(.82) contrast(.94);
  -webkit-mask-image: radial-gradient(ellipse 72% 67% at 50% 52%, #000 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 67% at 50% 52%, #000 62%, transparent 100%);
}
.newsletter h2 { margin: 0 0 4px; font-size: 27px; }
.newsletter p { margin: 0; font-size: 13px; }
.newsletter__form { display: grid; grid-template-columns: 1fr auto; }
.newsletter__form input { min-width: 0; min-height: 46px; padding: 0 16px; border: 1px solid var(--border); border-right: 0; border-radius: 10px 0 0 10px; background: #fff; }
.newsletter__form .button { border-radius: 0 10px 10px 0; }
.form-message { margin: 8px 0 0; color: var(--success); font-size: 12px; }
.form-message--error { color: var(--primary); }
.csi-newsletter-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.csi-compatibility-embed { margin: 36px 0; padding: 28px; border: 1px solid #ecd6aa; border-radius: 18px; background: linear-gradient(135deg, #fffaf0, #fbf2df); }
.csi-compatibility-embed h2 { margin: 6px 0 8px; font-size: clamp(25px, 3vw, 34px); }
.csi-compatibility-embed > p { max-width: 760px; }
.csi-compatibility-embed form { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; gap: 12px; align-items: end; margin-top: 20px; }
.csi-compatibility-embed label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 700; }
.csi-compatibility-embed input { min-height: 46px; padding: 0 12px; border: 1px solid var(--border); border-radius: 9px; background: #fff; color: var(--ink); font: inherit; }
.csi-compatibility-embed__result { margin: 16px 0 0; color: #356f45; font-weight: 700; }
.csi-compatibility-embed__result.is-error { color: var(--primary); }
.csi-compatibility-embed__link { display: inline-flex; margin-top: 15px; color: var(--primary); font-weight: 750; }
.site-footer { margin-top: 18px; background: #fff; border-top: 1px solid var(--border); }
.site-footer__grid { width: min(calc(100% - 64px), var(--container)); margin: auto; padding: 42px 0 28px; display: grid; grid-template-columns: 1.45fr .75fr .8fr 1fr 1fr; gap: 38px; }
.footer-brand p { max-width: 300px; margin: 18px 0; font-size: 13px; }
.footer-column h2 { margin-bottom: 14px; font-family: var(--font-body); font-size: 13px; font-weight: 750; }
.footer-column li + li { margin-top: 7px; }
.footer-column a { color: var(--muted); font-size: 12px; }
.footer-column a:hover { color: var(--primary); }
.footer-column p { font-size: 12px; }
.social-list { display: flex; gap: 8px; }
.social-link { display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: #42484a; border-radius: 50%; }
.social-link .icon { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.footer-social { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.footer-social__link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #1d332d;
  border: 1px solid rgba(29, 51, 45, .8);
  border-radius: 50%;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.footer-social__link:hover,
.footer-social__link:focus-visible { color: #fff; background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-social__link svg { width: 19px; height: 19px; fill: currentColor; }
.footer-social__link--youtube svg { width: 21px; height: 21px; }
.site-footer__legal { width: min(calc(100% - 64px), var(--container)); margin: auto; padding: 16px 0 24px; display: flex; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--border); font-size: 11px; }

/* Interior page foundations */
.mobile-detail-bar, .mobile-detail-tabs, .mobile-zodiac-meta { display: none; }
.content-layout {
  width: min(100%, calc(var(--container) + 230px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  align-items: start;
}
.page-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 22px 18px 40px;
  border-right: 1px solid var(--border);
}
.reading-progress { display: grid; grid-template-columns: 1fr auto; gap: 7px; color: var(--muted); font-size: 11px; }
.reading-progress strong { font-weight: 500; }
.reading-progress i { grid-column: 1 / -1; height: 4px; overflow: hidden; background: #ede8de; border-radius: 9px; }
.reading-progress i b { display: block; width: 12%; height: 100%; background: var(--primary); }
.toc-nav { margin: 20px -18px 28px; }
.toc-nav a { position: relative; display: block; padding: 9px 18px 9px 34px; color: var(--muted); font-size: 12px; }
.toc-nav a::before { content: ""; position: absolute; left: 20px; top: 50%; width: 4px; height: 4px; background: var(--border); border-radius: 50%; transform: translateY(-50%); }
.toc-nav a.is-active { color: var(--primary); font-weight: 700; }
.toc-nav a.is-active::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--primary); }
.toc-nav a.is-active::before { background: var(--primary); }
.sidebar-cta, .editor-card { margin-top: 18px; padding: 18px 14px; text-align: center; }
.sidebar-cta p { font-family: var(--font-display); font-size: 14px; }
.sidebar-cta .button { width: 100%; padding-inline: 10px; font-size: 12px; }
.editor-card { text-align: left; }
.editor-card h2 { margin-bottom: 12px; font-size: 16px; }
.editor-card p, .editor-card small { font-size: 11px; }
.page-main { min-width: 0; padding: 22px 28px 50px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; color: var(--muted); font-size: 12px; }
.breadcrumbs strong { color: var(--primary); }
.content-card, .topic-card, .page-cta {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.content-card { margin-top: 18px; padding: 26px; }
.content-card > h2, .content-section > h2 { margin-bottom: 20px; }
.detail-hero { min-height: 440px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 26px; }
.detail-hero__copy { padding-left: 24px; }
.detail-hero h1 { margin-bottom: 5px; font-size: clamp(4.5rem, 6vw, 6rem); line-height: .94; letter-spacing: -.04em; }
.detail-hero__character { display: block; margin: 6px 0 16px; color: var(--primary); font-family: var(--font-display); font-size: 48px; }
.detail-hero__copy > p:not(.eyebrow) { max-width: 430px; font-family: var(--font-display); font-size: 19px; line-height: 1.55; }
.detail-hero__art { display: grid; place-items: center; align-self: stretch; overflow: hidden; }
.detail-hero__art img { width: min(100%, 600px); height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 25px; }
.quick-facts-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; }
.quick-facts-grid > div { min-height: 142px; padding: 8px 18px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid var(--border); }
.quick-facts-grid > div:nth-child(5), .quick-facts-grid > div:last-child { border-right: 0; }
.quick-facts-grid > div:nth-child(n+6) { border-top: 1px solid var(--border); }
.quick-facts-grid dt { display: flex; flex-direction: column; align-items: center; gap: 7px; color: var(--ink); font-weight: 650; }
.quick-facts-grid dd { margin-top: 5px; color: var(--muted); font-size: 13px; }
.fact-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--accent); font-family: var(--font-display); font-size: 20px; border: 1px solid var(--accent-pale); border-radius: 50%; }
.zodiac-years-timeline { position: relative; display: grid; grid-template-columns: repeat(8, 1fr); margin: 25px 0 0; }
.zodiac-years-timeline::before { content: ""; position: absolute; left: 5%; right: 5%; top: 28px; height: 1px; background: var(--accent-pale); }
.zodiac-years-timeline li { position: relative; z-index: 1; display: grid; place-items: center; gap: 5px; }
.zodiac-years-timeline i { display: grid; place-items: center; width: 58px; height: 58px; color: var(--accent); background: #fff; border: 1px solid var(--accent); border-radius: 50%; font-family: var(--font-display); font-style: normal; }
.zodiac-years-timeline strong { color: var(--primary); font-family: var(--font-display); font-size: 18px; font-weight: 500; }
.zodiac-years-timeline span { color: var(--muted); font-size: 12px; }
.zodiac-years-timeline .is-current i { color: var(--primary); border: 3px solid var(--primary); }
.timeline-note { margin: 18px 0 0; text-align: center; }
.content-section { margin-top: 30px; }
.personality-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; overflow: hidden; }
.personality-grid article { padding: 24px; text-align: center; border-right: 1px solid var(--border); }
.personality-grid article:last-child { border: 0; }
.round-icon { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 10px; color: var(--accent); background: var(--surface-warm); border-radius: 50%; font-family: var(--font-display); font-size: 26px; }
.personality-grid h3 { color: var(--primary); }
.personality-grid p, .personality-grid li { color: var(--muted); font-size: 12px; text-align: left; }
.personality-grid li { margin: 7px 0; }
.check-list li::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 800; }
.plain-list li::before { content: "○"; margin-right: 7px; color: var(--accent); }
.topic-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.topic-card { overflow: hidden; padding-bottom: 20px; text-align: left; }
.topic-card__media { position: relative; height: 150px; margin: 0; overflow: hidden; isolation: isolate; background: linear-gradient(135deg, #fdf4e4, #fffdf9); border-bottom: 1px solid rgba(196, 152, 76, .18); }
.topic-card__media::after { position: absolute; z-index: -1; top: -56px; right: -42px; width: 205px; height: 205px; border: 1px solid rgba(179, 15, 18, .17); border-radius: 50%; content: ""; }
.topic-card__media > span { position: absolute; z-index: 1; top: 20px; left: 20px; color: var(--primary); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.topic-card__media > b { position: absolute; z-index: 1; bottom: 16px; left: 20px; color: rgba(177, 16, 19, .78); font-family: var(--font-display); font-size: 37px; font-weight: 400; line-height: 1; }
.topic-card__media > img { position: absolute; right: 8px; bottom: -7px; width: 62%; height: 100%; object-fit: contain; object-position: right bottom; filter: drop-shadow(0 10px 12px rgba(66, 42, 14, .12)); }
.topic-card__media--career { background: linear-gradient(135deg, #f4f8ed, #fffdf8); }
.topic-card__media--career::after { border-color: rgba(81, 122, 83, .2); }
.topic-card__media--career > span, .topic-card__media--career > b { color: #486d4a; }
.topic-card__media--elements { background: linear-gradient(135deg, #f7f1e8, #fffdf8); }
.topic-card__media--elements > span, .topic-card__media--elements > b { color: #a8751f; }
.topic-card__media--horoscope { background: linear-gradient(135deg, #f9efe5, #fffaf3); }
.topic-card__media--horoscope > span, .topic-card__media--horoscope > b { color: #9b3f2a; }
.topic-card h2, .topic-card p, .topic-card a { margin-inline: 20px; }
.topic-card h2 { margin-top: 14px; margin-bottom: 8px; color: var(--primary); font-size: 21px; }
.topic-card p { min-height: 84px; font-size: 12px; }
.topic-card a { color: var(--primary); font-size: 12px; font-weight: 700; }
.faq-related-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:first-child { border-top: 0; }
.accordion-item button { width: 100%; min-height: 46px; padding: 10px 0; display: flex; justify-content: space-between; gap: 15px; color: var(--ink); background: transparent; border: 0; text-align: left; }
.accordion-item button span { color: var(--accent); font-size: 20px; }
.accordion-item div p { padding: 0 18px 12px 0; font-size: 13px; }
.related-card a { display: grid; padding: 12px 0; border-top: 1px solid var(--border); }
.related-card a:first-of-type { border-top: 0; }
.related-card span { font-family: var(--font-display); font-size: 16px; }
.related-card small { color: var(--muted); }
.page-cta { min-height: 140px; margin-top: 18px; padding: 24px 36px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; text-align: center; background: linear-gradient(120deg, #f8f1e5, #fff); }
.page-cta .round-icon { margin: 0; }
.page-cta h2 { margin-bottom: 4px; }
.page-cta p { max-width: 580px; margin: 0 auto; font-size: 12px; }

@media (max-width: 1120px) {
  .site-header__inner { gap: 14px; }
  .main-nav ul { gap: 12px; }
  .main-nav a { font-size: 12px; }
  .site-header__actions { gap: 8px; }
  .site-header__actions .button { padding-inline: 14px; font-size: 12px; }
  .brand__name { font-size: 21px; }
  .hero { min-height: 560px; }
  .hero__grid { min-height: 560px; }
  .hero h1 { font-size: clamp(3.7rem, 6vw, 4.4rem); }
  .hero__copy { padding-left: 0; }
  .finder-card__fields { grid-template-columns: repeat(3, 1fr); }
  .finder-card__submit { grid-column: 1 / -1; width: 100%; }
  .animal-grid { grid-template-columns: repeat(4, 1fr); }
  .stories-grid { grid-template-columns: 2fr repeat(2, 1fr); }
  .story-card:nth-child(n+4) { display: none; }
  .newsletter { grid-template-columns: 110px 1fr minmax(300px, .8fr); }
  .site-footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .content-layout { grid-template-columns: 185px minmax(0, 1fr); }
  .quick-facts-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-facts-grid > div:nth-child(3n) { border-right: 0; }
  .quick-facts-grid > div:nth-child(n+4) { border-top: 1px solid var(--border); }
  .topic-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1120px) {
  .site-header__inner { width: calc(100% - 40px); min-height: 70px; grid-template-columns: 1fr auto; }
  .main-nav, .site-header__actions > .icon-button, .site-header__actions > .button { display: none; }
  .site-header__actions > .menu-toggle { display: grid; }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 70px 0 auto;
    padding: 18px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-panel a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--border); }
  .mobile-panel .button { margin-top: 16px; color: #fff; }
  .search-panel { inset-block-start: 70px; }
}

@media (max-width: 900px) {
  .container, .section-shell, .paired-section, .stories-section, .newsletter { width: min(calc(100% - 40px), var(--container)); }
  .site-header__inner { width: calc(100% - 40px); min-height: 70px; grid-template-columns: 1fr auto; }
  .main-nav, .site-header__actions > .icon-button, .site-header__actions > .button { display: none; }
  .site-header__actions > .menu-toggle { display: grid; }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 70px 0 auto;
    padding: 18px 20px 28px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-panel a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--border); }
  .mobile-panel .button { margin-top: 16px; color: #fff; }
  .search-panel { inset-block-start: 70px; }
  .hero { min-height: auto; padding: 58px 0 44px; }
  .hero__grid { min-height: auto; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
  .hero h1 { font-size: clamp(3.5rem, 8vw, 4.3rem); }
  .hero__visual { padding-top: 25px; }
  .finder-card { max-width: none; margin-top: 18px; }
  .hero__copy { display: block; min-width: 0; }
  .glance-grid, .paired-section, .editorial-pair { grid-template-columns: minmax(0, 1fr); }
  .animals-layout { grid-template-columns: minmax(0, 1fr); }
  .animal-feature { display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: center; }
  .animal-feature img { grid-row: 1 / 5; height: 190px; }
  .animal-grid { grid-template-columns: repeat(11, 130px); overflow-x: auto; overscroll-behavior-inline: contain; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .animal-card { scroll-snap-align: start; }
  .stories-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .newsletter { grid-template-columns: 100px 1fr; gap: 18px; }
  .newsletter__form { grid-column: 1 / -1; width: 100%; }
  .site-footer__grid { width: calc(100% - 40px); grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__legal { width: calc(100% - 40px); }
  .content-layout { width: min(calc(100% - 40px), var(--container)); display: block; }
  .page-sidebar { display: none; }
  .page-main { padding: 20px 0 45px; }
  .detail-hero { min-height: 400px; }
  .detail-hero__copy { padding-left: 0; }
  .detail-hero h1 { font-size: clamp(3.5rem, 7vw, 4.75rem); }
  .zodiac-years-timeline { overflow-x: auto; grid-template-columns: repeat(8, 105px); padding-bottom: 10px; }
  .personality-grid { grid-template-columns: repeat(2, 1fr); }
  .personality-grid article:nth-child(2) { border-right: 0; }
  .personality-grid article:nth-child(n+3) { border-top: 1px solid var(--border); }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container, .section-shell, .paired-section, .stories-section, .newsletter { width: calc(100% - 32px); }
  .site-header__inner { width: calc(100% - 32px); }
  .brand__mark { width: 34px; }
  .brand__name { font-size: 19px; }
  .hero { padding-top: 46px; }
  .hero__grid { display: block; text-align: center; }
  .hero__copy { display: block; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.45rem); line-height: .98; }
  .hero__lede { margin-inline: auto; }
  .mobile-hero-cta { width: 100%; margin: 0 auto 16px; display: inline-flex; }
  .hero__visual { display: none; }
  .finder-card { margin-top: 24px; padding: 20px; text-align: left; border-radius: 18px; }
  .finder-card__heading { justify-content: center; text-align: center; }
  .finder-card__heading .icon { display: none; }
  .finder-card__fields { display: grid; grid-template-columns: 1fr; }
  .finder-card__submit { grid-column: auto; }
  .finder-card__trust { align-items: flex-start; flex-wrap: wrap; }
  .section-shell, .stories-section { padding: 20px; }
  .section-heading { align-items: flex-start; }
  .section-heading .text-link { font-size: 12px; }
  .glance-grid { grid-template-columns: 1fr; }
  .daily-card__content, .finder-result__content { grid-template-columns: 1fr; }
  .daily-card__animal, .finder-result__animal { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .fact-list, .result-list { padding: 10px 0 0; }
  .result-list > div { grid-template-columns: 110px 1fr; }
  .animal-feature { display: block; }
  .animal-feature img { height: 180px; }
  .animal-grid { grid-template-columns: repeat(11, 118px); margin-right: -20px; }
  .animal-card { min-height: 124px; }
  .feature-card { min-height: 0; padding: 20px; }
  .compatibility-card, .elements-card { grid-template-columns: 1fr; }
  .elements-card img { width: min(100%, 270px); }
  .compatibility-card > img { height: 180px; }
  .year-result { width: 100%; grid-template-columns: 96px minmax(0, 1fr); padding: 10px 16px; gap: 14px; }
  .year-result__art img { width: 88px; height: 78px; }
  .culture-card { min-height: 360px; grid-template-columns: 1fr; }
  .culture-card > img { width: 100%; height: 65%; opacity: .76; }
  .stories-grid { display: grid; grid-template-columns: 1fr; }
  .story-feature { min-height: 270px; }
  .story-card, .story-card:nth-child(n+4) { display: grid; grid-template-columns: 120px 1fr; }
  .story-card img { height: 100%; aspect-ratio: auto; }
  .story-card h3 { min-height: 0; }
  .newsletter { padding: 22px; grid-template-columns: 1fr; text-align: center; }
  .newsletter__art { display: none; }
  .newsletter__form { grid-column: auto; grid-template-columns: 1fr; gap: 10px; }
  .newsletter__form input, .newsletter__form .button { border: 1px solid var(--border); border-radius: 10px; }
  .newsletter__form .button { border-color: var(--primary); }
  .csi-compatibility-embed { padding: 22px; }
  .csi-compatibility-embed form { grid-template-columns: 1fr; }
  .site-footer__grid { width: calc(100% - 32px); padding: 32px 0; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer__legal { width: calc(100% - 32px); flex-direction: column; gap: 5px; }
  .content-layout { width: calc(100% - 32px); }
  .detail-page .site-header__inner { display: none; }
  .detail-page .mobile-panel { inset-block-start: 52px; }
  .detail-page .content-layout { width: 100%; }
  .mobile-detail-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 52px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
  }
  .mobile-detail-bar a { font-size: 22px; }
  .mobile-detail-bar strong { font-family: var(--font-display); font-weight: 600; }
  .mobile-detail-bar button { padding: 8px; background: transparent; border: 0; font-size: 18px; }
  .mobile-detail-tabs {
    margin: -20px -16px 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .mobile-detail-tabs a { position: relative; padding: 12px 4px; text-align: center; font-size: 11px; }
  .mobile-detail-tabs a.is-active { color: #fff; background: var(--primary); }
  .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .detail-page .breadcrumbs { display: none; }
  .detail-hero { min-height: auto; grid-template-columns: 1fr; text-align: center; }
  .detail-hero__copy { display: flex; flex-direction: column; align-items: center; }
  .detail-page .page-main { padding: 20px 16px 45px; }
  .detail-page .detail-hero { gap: 8px; text-align: left; }
  .detail-page .detail-hero__copy { align-items: flex-start; }
  .detail-page .detail-hero .eyebrow, .detail-page .detail-hero__character { display: none; }
  .detail-hero h1 { margin: 0; font-size: 2.1rem; letter-spacing: -.02em; }
  .detail-hero__copy > p:not(.eyebrow) { margin: 10px 0 0; font-family: var(--font-body); font-size: 14px; line-height: 1.55; }
  .detail-hero__art { grid-row: 1; height: 172px; }
  .detail-hero__art picture { width: 100%; height: 100%; }
  .detail-hero__art img { width: 100%; height: 172px; object-fit: contain; mix-blend-mode: multiply; }
  .mobile-zodiac-meta { display: block; }
  .mobile-zodiac-meta > p { margin: 2px 0 8px !important; color: var(--ink); font-size: 12px !important; line-height: 1.4 !important; }
  .mobile-zodiac-meta div { display: flex; flex-wrap: wrap; gap: 5px; }
  .mobile-zodiac-meta span { padding: 4px 9px; color: #554b3d; background: var(--surface-warm); border-radius: 999px; font-size: 10px; }
  .detail-page .button-row { width: 100%; display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
  .detail-page .button-row .button { width: 100%; }
  .button-row { justify-content: center; }
  .content-card { padding: 20px; }
  .quick-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-facts-grid > div, .quick-facts-grid > div:nth-child(3n) { border-right: 1px solid var(--border); }
  .quick-facts-grid > div:nth-child(2n) { border-right: 0; }
  .quick-facts-grid > div:nth-child(n+3) { border-top: 1px solid var(--border); }
  .personality-grid, .topic-card-grid, .faq-related-grid { grid-template-columns: 1fr; }
  .personality-grid article { border-right: 0; border-top: 1px solid var(--border); }
  .personality-grid article:first-child { border-top: 0; }
  .topic-card__media { height: 190px; }
  .topic-card p { min-height: 0; }
  .page-cta { grid-template-columns: 1fr; }
  .page-cta .round-icon { margin: auto; }
}

@media (max-width: 620px) {
  .home-page main > section { min-width: 0; }
  .home-page .desktop-only { display: none; }
  .home-page .mobile-only { display: inline; }

  .home-page .site-header__inner {
    min-height: 58px;
  }
  .home-page .site-header .brand { gap: 9px; }
  .home-page .site-header .brand__mark {
    width: 30px;
    font-size: 17px;
  }
  .home-page .site-header .brand__name {
    width: 108px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .015em;
    text-transform: uppercase;
  }
  .home-page .site-header .brand__name span { display: block; }
  .home-page .site-header__actions,
  .home-page .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .home-page .mobile-panel { inset-block-start: 58px; }

  .home-page .hero {
    padding: 30px 0 26px;
    background: radial-gradient(circle at 76% 18%, #fff 0, rgba(255,255,255,.5) 38%, transparent 64%), var(--page);
  }
  .home-page .hero::before {
    width: 250px;
    height: 100px;
    top: 95px;
    right: -150px;
  }
  .home-page .hero::after {
    width: 210px;
    height: 82px;
    left: -140px;
    bottom: 60px;
  }
  .home-page .hero__landscape { display: none; }
  .home-page .hero__copy { padding: 0; }
  .home-page .hero .eyebrow { display: none; }
  .home-page .hero h1 {
    max-width: 340px;
    margin: 0 auto 18px;
    font-size: clamp(2.2rem, 9.6vw, 2.45rem);
    line-height: 1.03;
    letter-spacing: -.035em;
  }
  .home-page .hero__lede {
    max-width: 320px;
    margin: 0 auto 24px;
    font-size: 12px;
    line-height: 1.55;
  }
  .home-page .mobile-hero-cta {
    min-height: 46px;
    margin: 0 auto 20px;
    border-radius: 7px;
    font-size: 14px;
  }
  .home-page .finder-card {
    margin-top: 0;
    padding: 20px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(72,52,28,.08);
  }
  .home-page .finder-card__heading {
    margin-bottom: 10px;
  }
  .home-page .finder-card__heading h2 {
    width: 100%;
    font-size: 22px;
    line-height: 1.12;
  }
  .home-page .finder-card__intro {
    display: block;
    margin: 0 0 14px;
    text-align: center;
    font-size: 12px;
  }
  .home-page .finder-card__fields { gap: 12px; }
  .home-page .finder-card label {
    font-size: 11px;
  }
  .home-page .finder-card select {
    min-height: 44px;
    margin-top: 4px;
    border-radius: 7px;
    font-size: 12px;
  }
  .home-page .finder-card__submit {
    min-height: 46px;
    margin-top: 0;
    border-radius: 7px;
    font-size: 14px;
  }
  .home-page .finder-card__trust { display: none; }

  .home-page .animals-section { display: none; }
  .home-page .mobile-animals-section {
    width: 100%;
    margin-top: 0;
    padding: 32px 0 26px;
    display: block;
    background: rgba(255,255,255,.68);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .home-page .mobile-animals-section .section-heading {
    display: block;
    margin: 0 16px 24px;
    text-align: center;
  }
  .home-page .mobile-animals-section .section-heading h2 {
    font-size: 24px;
  }
  .home-page .mobile-section-subtitle {
    display: block;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
  }
  .home-page .mobile-zodiac-showcase {
    position: relative;
    display: block;
    padding: 0 34px;
  }
  .home-page .mobile-zodiac-track {
    width: min(100%, 300px);
    margin: auto;
    padding: 3px 6px 6px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82px;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .home-page .mobile-zodiac-track::-webkit-scrollbar { display: none; }
  .home-page .mobile-zodiac-item {
    display: grid;
    justify-items: center;
    gap: 7px;
    scroll-snap-align: start;
  }
  .home-page .mobile-zodiac-item > span {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(201,154,61,.65);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(72,52,28,.06);
  }
  .home-page .mobile-zodiac-item img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
  .home-page .mobile-zodiac-item--dragon img { width: 72px; height: 72px; }
  .home-page .mobile-zodiac-item--horse img { width: 76px; height: 76px; }
  .home-page .mobile-zodiac-item--filtered img {
    filter: sepia(1) saturate(7) hue-rotate(315deg) brightness(.72) contrast(1.25);
  }
  .home-page .mobile-zodiac-item strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
  }
  .home-page .mobile-carousel-arrow {
    position: absolute;
    top: 27px;
    z-index: 2;
    width: 34px;
    height: 34px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--muted);
    background: rgba(255,255,255,.95);
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow);
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1;
  }
  .home-page .mobile-carousel-arrow--prev { left: 8px; }
  .home-page .mobile-carousel-arrow--next { right: 8px; }
  .home-page .mobile-carousel-arrow:disabled {
    opacity: .45;
    cursor: default;
  }
  .home-page .mobile-carousel-dots {
    margin-top: 17px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .home-page .mobile-carousel-dots i {
    width: 7px;
    height: 7px;
    background: #ddd9d1;
    border-radius: 50%;
  }
  .home-page .mobile-carousel-dots i.is-active { background: var(--primary); }

  .home-page .mobile-resource-track {
    width: calc(100% - 32px);
    margin: 26px auto 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .home-page .mobile-resource-track::-webkit-scrollbar { display: none; }
  .home-page .mobile-resource-card {
    min-width: 100%;
    min-height: 148px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
  }
  .home-page .mobile-resource-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
  }
  .home-page .mobile-resource-card__icon .icon {
    width: 23px;
    height: 23px;
  }
  .home-page .mobile-resource-card > span:last-child {
    display: grid;
    gap: 5px;
  }
  .home-page .mobile-resource-card strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
  }
  .home-page .mobile-resource-card small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
  }
  .home-page .mobile-resource-card b {
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 11px;
  }
  .home-page .mobile-resource-card b .icon {
    width: 14px;
    height: 14px;
  }
  .home-page .glance-section .section-heading {
    min-width: 0;
    flex-wrap: wrap;
  }
}

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

/* Administrator-configured advertising placements. Empty slots do not render. */
.csi-ad-slot {
  width: min(calc(100% - 64px), var(--container));
  box-sizing: border-box;
  margin: clamp(26px, 3vw, 42px) auto;
  padding: 12px clamp(12px, 2vw, 22px) 16px;
  overflow: hidden;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.csi-ad-slot__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.csi-ad-slot__content {
  display: flex;
  min-width: 0;
  justify-content: center;
  overflow: hidden;
}
.csi-ad-slot__content > * {
  max-width: 100%;
}
.csi-entry-card .csi-ad-slot,
.csi-year-main-column .csi-ad-slot {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.csi-ad-slot ins,
.csi-ad-slot iframe,
.csi-ad-slot img {
  max-width: 100%;
}
@media (max-width: 720px) {
  .csi-ad-slot { width: calc(100% - 32px); margin: 24px auto; border-radius: 12px; }
  .csi-entry-card .csi-ad-slot,
  .csi-year-main-column .csi-ad-slot { width: 100%; }
}
