:root {
  --paper: #F8F9F6;
  --paper-warm: #F3F0E7;
  --ink: #1f2a24;
  --muted: #647067;
  --soft: #e7eadf;
  --line: rgba(31, 42, 36, .12);
  --leaf: #E66E5C;
  --leaf-deep: #B84D3F;
  --mint: #FFE1D8;
  --gold: #F2A340;
  --clay: #b46a4c;
  --plum: #301038;
  --shadow: 0 24px 80px rgba(31, 42, 36, .14);
  --soft-shadow: 0 14px 38px rgba(31, 42, 36, .1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(216, 153, 36, .18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(230, 110, 92, .14), transparent 30rem),
    linear-gradient(135deg, #fbfaf4 0%, var(--paper) 46%, #FFF1E8 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: -3;
}

a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .45; transform: none !important; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.ambient span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: calc(3.7rem * var(--s));
  opacity: .11;
  filter: saturate(.8);
  transform: rotate(var(--r));
  animation: drift 11s ease-in-out infinite alternate;
}
.ambient span:nth-child(2n) { animation-duration: 14s; }
.ambient span:nth-child(3n) { animation-delay: -4s; }
@keyframes drift { to { transform: translate3d(0, -18px, 0) rotate(calc(var(--r) + 8deg)); } }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 42, 36, .09);
  border-radius: 999px;
  background: rgba(248, 249, 246, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 34px rgba(31, 42, 36, .07);
  position: sticky;
  top: 12px;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #F8F9F6;
  background:
    radial-gradient(circle at 27% 20%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(145deg, #21362b 0%, #E66E5C 62%, #d89924 145%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 14px 28px rgba(31,42,36,.16);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.brand:hover .brand-mark { transform: translateY(-1px) rotate(-1deg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 18px 34px rgba(31,42,36,.2); }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.mark-leaf { fill: none; stroke: currentColor; stroke-width: 2.55; stroke-linecap: round; stroke-linejoin: round; }
.mark-dot { fill: currentColor; opacity: .92; }
.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 1.33rem;
  line-height: 1;
  letter-spacing: -.066em;
  color: var(--ink);
  transform: translateY(-1px);
}
.brand-like { font-weight: 760; }
.brand-hobby { margin-left: 1px; color: #B84D3F; font-weight: 650; }

.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
}
.site-header nav a:hover { background: rgba(230, 110, 92, .09); color: var(--leaf-deep); }

main {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
}
.screen { display: none; }
.screen.active { animation: rise .48s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.hero-shell.active {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
  align-items: stretch;
  gap: 24px;
}
.hero-copy, .hero-panel, .quiz-card, .results-header, .primary-match, .starter-plan, .site-footer, .legal-card {
  border: 1px solid rgba(31, 42, 36, .16);
  background: rgba(248, 249, 246, .97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-copy {
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 68px);
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(230, 110, 92, .19), transparent 68%);
  border-radius: 50%;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--leaf-deep);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow span {
  border: 1px solid rgba(230, 110, 92, .18);
  background: rgba(255, 225, 216, .7);
  border-radius: 999px;
  padding: 7px 10px;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: .98;
}
h1, .results-header h2 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(3.45rem, 8vw, 6.9rem);
  font-weight: 760;
  max-width: 890px;
}
.hero-lede {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  z-index: 1;
}
.button {
  border: 0;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); }
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-deep));
  box-shadow: 0 14px 28px rgba(230, 110, 92, .27);
}
.button.primary:hover:not(:disabled) { box-shadow: 0 18px 36px rgba(230, 110, 92, .32); }
.button.secondary {
  color: var(--leaf-deep);
  background: rgba(255, 225, 216, .8);
  border: 1px solid rgba(230, 110, 92, .18);
}
.button.ghost {
  color: var(--muted);
  background: rgba(248, 249, 246, .55);
  border: 1px solid var(--line);
}
.button.full { width: 100%; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 44px 0 0;
  z-index: 1;
}
.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, .34);
}
.hero-stats dt {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 2.2rem;
  font-weight: 760;
  color: var(--leaf-deep);
}
.hero-stats dd { margin: 3px 0 0; color: var(--muted); font-weight: 700; }

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 580px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(248,249,246,.72)),
    radial-gradient(circle at 18% 18%, rgba(216,153,36,.2), transparent 20rem),
    rgba(248, 249, 246, .85);
}
.panel-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 7px rgba(230, 110, 92, .13);
}
.preview-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(31, 42, 36, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .48);
}
.preview-card.lifted { box-shadow: var(--soft-shadow); transform: rotate(-1.2deg); }
.preview-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--mint), #fff7df);
}
.mini-label {
  margin: 0 0 6px;
  color: var(--leaf-deep);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.preview-card h2 { font-size: 2rem; font-family: "Fraunces", ui-serif, Georgia, serif; }
.preview-card p:last-child { margin: 10px 0 0; color: var(--muted); line-height: 1.5; }
.fit-bars {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(31, 42, 36, .04);
}
.fit-bars span {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(31, 42, 36, .07);
}
.fit-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(230, 110, 92,.34), rgba(216,153,36,.28));
}
.fit-bars b { position: relative; z-index: 1; font-size: .9rem; }
.micro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.micro-grid span {
  padding: 12px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
  background: rgba(255,255,255,.38);
  border: 1px solid var(--line);
}

.value-strip {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.value-strip article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 249, 246, .72);
  backdrop-filter: blur(14px);
}
.value-strip span { color: var(--gold); font-weight: 900; letter-spacing: .08em; }
.value-strip h2 { margin-top: 14px; font-size: 1.18rem; letter-spacing: -.025em; }
.value-strip p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; }

.quiz-shell.active { display: grid; place-items: center; min-height: min(760px, calc(100vh - 120px)); }
.quiz-card {
  width: min(820px, 100%);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 44px);
}
.quiz-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 900;
}
.progress-track {
  height: 12px;
  margin: 12px 0 32px;
  background: rgba(31, 42, 36, .08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
  transition: width .28s ease;
}
#question-text {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 28px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.option-btn {
  width: 100%;
  min-height: 86px;
  border: 1px solid rgba(31, 42, 36, .12);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  text-align: left;
  color: var(--ink);
  background: rgba(255,255,255,.45);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.option-btn:hover, .option-btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(230, 110, 92, .42);
  box-shadow: 0 14px 32px rgba(31, 42, 36, .09);
}
.option-btn.selected {
  border-color: rgba(230, 110, 92, .7);
  background: linear-gradient(135deg, rgba(255, 225, 216,.9), rgba(255,248,222,.58));
  box-shadow: inset 0 0 0 1px rgba(230, 110, 92, .12), 0 12px 26px rgba(230, 110, 92,.12);
}
.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(31, 42, 36, .06);
  font-size: 1.65rem;
}
.option-text strong { display: block; font-weight: 900; }
.option-text span { display: block; margin-top: 2px; color: var(--muted); font-size: .93rem; line-height: 1.35; }
.quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.results-shell.active { display: block; }
.results-header {
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 54px);
  margin-bottom: 18px;
}
.results-header h2 { font-size: clamp(3rem, 7vw, 5.8rem); }
.results-header p:last-child { max-width: 720px; color: #405047; line-height: 1.6; font-size: 1.08rem; }
.primary-match {
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 38px);
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(31,42,36,.91), rgba(184, 77, 63,.9)),
    radial-gradient(circle at 20% 20%, rgba(216,153,36,.35), transparent 28rem);
  color: var(--paper);
  overflow: hidden;
}
.primary-match-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.big-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  font-size: 3rem;
  background: rgba(248, 249, 246, .13);
  border: 1px solid rgba(248, 249, 246, .18);
}
.primary-match h3 { font-family: "Fraunces", ui-serif, Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.4rem); }
.primary-match p { color: rgba(248,249,246,.78); line-height: 1.55; margin: 10px 0 0; }
.score-ring {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) var(--score), rgba(248,249,246,.14) 0);
  position: relative;
}
.score-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #223a2d;
}
.score-ring span { position: relative; z-index: 1; font-weight: 950; font-size: 1.6rem; }

.result-grid { display: grid; gap: 14px; }
.featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 18px 0; }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 18px 0; }
.hobby-card {
  border: 1px solid rgba(31, 42, 36, .16);
  border-radius: 26px;
  padding: 20px;
  background: #F8F9F6;
  box-shadow: 0 16px 46px rgba(31, 42, 36, .13);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hobby-card:hover { transform: translateY(-3px); border-color: rgba(230, 110, 92,.28); box-shadow: 0 20px 48px rgba(31,42,36,.13); }
.hobby-card-header { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 225, 216,.9), rgba(255,248,222,.75));
}
.hobby-card h3 { font-size: 1.28rem; line-height: 1.1; }
.category-pill {
  display: inline-flex;
  margin-top: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--leaf-deep);
  background: rgba(255, 225, 216,.72);
  font-size: .74rem;
  font-weight: 900;
}
.card-score { font-weight: 950; color: var(--leaf-deep); }
.hobby-card p { color: #4d5a51; line-height: 1.55; }
.fit-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.fit-row span {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  color: var(--muted);
  background: rgba(31,42,36,.05);
}
.learn-more-btn { width: 100%; margin-top: 6px; }
.starter-plan {
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 34px);
  margin: 18px 0;
}
.starter-plan h3 { font-family: "Fraunces", ui-serif, Georgia, serif; font-size: clamp(1.8rem, 4vw, 3rem); }
.plan-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.plan-list li {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  background: rgba(255,255,255,.38);
  line-height: 1.45;
}
.plan-list b { display: block; color: var(--leaf-deep); margin-bottom: 6px; }
.results-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.ad-unit {
  border: 1px dashed rgba(31, 42, 36, .28);
  border-radius: 22px;
  background: rgba(248, 249, 246, .96);
  padding: 12px;
  margin: 16px 0;
  box-shadow: 0 10px 30px rgba(31,42,36,.08);
}
.ad-unit[hidden] { display: none !important; }
.hero-shell > .ad-unit { grid-column: 1 / -1; }
.ad-label {
  display: block;
  margin: 0 0 8px;
  color: rgba(100,112,103,.72);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ad-body {
  min-height: 92px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  overflow: hidden;
}
.ad-preview {
  width: 100%;
  min-height: 92px;
  display: grid;
  place-items: center;
  color: #45554b;
  font-weight: 900;
  background:
    repeating-linear-gradient(135deg, rgba(31,42,36,.065) 0 12px, rgba(31,42,36,.025) 12px 24px),
    rgba(255,255,255,.64);
}
.ad-native .ad-body { min-height: 140px; }
.adsbygoogle { width: 100%; min-height: 92px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(31, 42, 36, .46);
  backdrop-filter: blur(12px);
}
.modal[hidden] { display: none; }
.modal-panel {
  width: min(680px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 32px;
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 40px 120px rgba(0,0,0,.28);
  position: relative;
}
.icon-button {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  color: var(--muted);
  font-size: 1.4rem;
}
.modal-title { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding-right: 44px; }
.modal-title > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--mint), #fff7df);
}
.modal-title h2 { font-family: "Fraunces", ui-serif, Georgia, serif; font-size: 2.6rem; }
.modal-description { color: var(--muted); line-height: 1.6; font-size: 1.05rem; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.fact {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.38);
}
.fact b { display: block; color: var(--leaf-deep); margin-bottom: 3px; }
.fact span { color: var(--muted); }
.modal-plan {
  margin: 16px 0 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 225, 216,.5);
}
.modal-plan h3 { font-size: 1.2rem; margin-bottom: 10px; }
.modal-plan ol { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.55; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  box-shadow: none;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--leaf-deep); font-weight: 850; }

.legal-main { width: min(860px, calc(100% - 32px)); margin: 32px auto; }
.legal-card { border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 54px); }
.legal-card h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.legal-card h2 { margin-top: 30px; font-size: 1.45rem; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.7; }

@media (max-width: 940px) {
  .hero-shell.active { grid-template-columns: 1fr; }
  .hero-copy, .hero-panel { min-height: auto; }
  .featured-grid, .compact-grid, .plan-list { grid-template-columns: 1fr; }
  .primary-match-card { grid-template-columns: auto 1fr; }
  .score-ring { grid-column: 1 / -1; justify-self: start; width: 122px; height: 122px; border-radius: 50%; }
  .score-ring::after { inset: 10px; border-radius: 50%; }
}
@media (max-width: 680px) {
  .site-header { align-items: flex-start; border-radius: 24px; position: static; background: rgba(248, 249, 246, .96); }
  .site-header nav { display: none; }
  main { width: min(100% - 22px, 1180px); margin-top: 18px; }
  .hero-copy { padding: 28px 22px; border-radius: 28px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-panel { padding: 18px; border-radius: 28px; }
  .options-grid { grid-template-columns: 1fr; }
  #question-text { font-size: 2.25rem; }
  .quiz-controls { flex-direction: column-reverse; }
  .quiz-controls .button, .results-actions .button, .hero-actions .button { width: 100%; }
  .value-strip { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .site-footer { display: block; }
  .site-footer p + p { margin-top: 8px; }
  .results-header, .starter-plan, .hobby-card, .site-footer, .quiz-card, .hero-copy, .hero-panel {
    background: rgba(248, 249, 246, .97);
  }
  .results-header p:last-child, .hobby-card p, .site-footer, .ad-preview {
    color: #405047;
  }
  .ad-unit {
    background: rgba(248, 249, 246, .96);
    border-color: rgba(31, 42, 36, .27);
  }
  .ad-preview {
    background:
      repeating-linear-gradient(135deg, rgba(31,42,36,.07) 0 12px, rgba(31,42,36,.025) 12px 24px),
      rgba(255,255,255,.58);
  }
}


/* Marketplace upgrade: hobby commerce + affiliate-ready sections */
.commerce-header nav { gap: 2px; }
.commerce-header nav a { white-space: nowrap; }
.marketplace-home .ad-leaderboard,
.marketplace-home .commerce-strip,
.marketplace-home .market-section {
  grid-column: 1 / -1;
}
.marketplace-hero {
  background:
    linear-gradient(135deg, rgba(248,249,246,.98), rgba(247,240,222,.9)),
    radial-gradient(circle at 12% 18%, rgba(216,153,36,.2), transparent 22rem),
    radial-gradient(circle at 88% 76%, rgba(48,16,56,.13), transparent 24rem);
}
.marketplace-hero h1 {
  max-width: 970px;
  font-size: clamp(3.15rem, 7.2vw, 6.45rem);
}
.marketplace-hero .hero-lede { max-width: 740px; }
.marketplace-stats dt { color: var(--plum); }
.kit-board {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.62), rgba(248,249,246,.82)),
    radial-gradient(circle at 20% 16%, rgba(216,153,36,.2), transparent 18rem),
    radial-gradient(circle at 94% 84%, rgba(230, 110, 92,.16), transparent 21rem);
}
.kit-board::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(31,42,36,.14);
  border-radius: 28px;
  pointer-events: none;
}
.kit-feature-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(31,42,36,.13);
  background: rgba(248,249,246,.78);
  box-shadow: var(--soft-shadow);
}
.kit-feature-card h2 {
  margin: 8px 0 10px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}
.kit-feature-card p:last-child { color: var(--muted); line-height: 1.55; margin: 0; }
.kit-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.kit-stack a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  padding: 14px;
  border: 1px solid rgba(31,42,36,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.5);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.kit-stack a:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); border-color: rgba(230, 110, 92,.3); }
.kit-stack span { grid-row: span 2; font-size: 1.7rem; }
.kit-stack b { font-weight: 900; }
.kit-stack em { color: var(--muted); font-style: normal; font-size: .92rem; }
.affiliate-note {
  color: #6f5a35;
  font-size: .9rem;
  line-height: 1.55;
}
.affiliate-note.compact {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(216,153,36,.12);
  border: 1px solid rgba(216,153,36,.2);
}
.commerce-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.commerce-strip article,
.market-section {
  border: 1px solid rgba(31,42,36,.14);
  background: rgba(248,249,246,.94);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}
.commerce-strip article {
  border-radius: 26px;
  padding: 22px;
}
.commerce-strip span,
.section-kicker,
.guide-grid span {
  color: var(--leaf-deep);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.commerce-strip h2 { margin: 10px 0 8px; font-size: 1.25rem; letter-spacing: -.03em; }
.commerce-strip p { margin: 0; color: var(--muted); line-height: 1.55; }
.market-section {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4.5vw, 44px);
  overflow: hidden;
  position: relative;
}
.market-section::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,153,36,.14), transparent 68%);
  pointer-events: none;
}
.section-heading-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin: 8px 0 24px;
}
.section-heading-row h2 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  max-width: 850px;
}
.section-heading-row p {
  color: var(--muted);
  max-width: 760px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.category-card,
.starter-kit-grid article,
.guide-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.46);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-card:hover,
.starter-kit-grid article:hover,
.guide-grid article:hover { transform: translateY(-3px); box-shadow: var(--soft-shadow); border-color: rgba(230, 110, 92,.24); }
.category-card.feature { grid-column: span 2; background: linear-gradient(135deg, rgba(255, 225, 216,.78), rgba(255,247,223,.58)); }
.category-card > span { font-size: 2rem; }
.category-card h3,
.guide-grid h3 { margin: 14px 0 8px; font-size: 1.28rem; letter-spacing: -.03em; }
.category-card p,
.guide-grid p { color: var(--muted); line-height: 1.55; margin: 0 0 16px; }
.category-card a,
.starter-kit-grid a,
.starter-gear-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--leaf-deep);
  text-decoration: none;
  font-weight: 900;
}
.category-card a::after,
.starter-kit-grid a::after,
.starter-gear-card a::after { content: "→"; }
.starter-kit-grid,
.guide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.starter-kit-grid article { display: grid; gap: 10px; }
.starter-kit-grid b { font-size: 1.08rem; }
.starter-kit-grid span { color: var(--muted); }
.guide-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.guide-grid article { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; }
.primary-match-card .match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.shop-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(216,153,36,.16);
  border: 1px solid rgba(216,153,36,.26);
  color: #7a5014;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}
.shop-link::after { content: "↗"; margin-left: 7px; }
.starter-plan .plan-intro { color: var(--muted); line-height: 1.6; margin: 8px 0 18px; }
.starter-gear-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.starter-gear-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.44);
  padding: 15px;
}
.starter-gear-card b { display: block; margin-bottom: 5px; }
.starter-gear-card span { display: block; color: var(--muted); line-height: 1.45; margin-bottom: 10px; }
.modal-plan .shop-link { margin-top: 12px; }
@media (max-width: 1060px) {
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .starter-kit-grid, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 940px) {
  .commerce-strip { grid-template-columns: 1fr; }
  .section-heading-row { display: block; }
  .section-heading-row .button { margin-top: 16px; }
  .starter-gear-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .marketplace-hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .category-grid, .starter-kit-grid, .guide-grid { grid-template-columns: 1fr; }
  .category-card.feature { grid-column: auto; }
  .market-section { border-radius: 28px; padding: 24px 18px; }
  .commerce-strip article { border-radius: 22px; }
}

.hobby-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hobby-card-actions .button { min-height: 42px; padding: 0 16px; }
@media (max-width: 680px) { .hobby-card-actions .button, .hobby-card-actions .shop-link { width: 100%; justify-content: center; } }

.results-shell.active { animation: resultReveal .24s ease both; }
@keyframes resultReveal { from { opacity: 1; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.primary-match .mini-label { color: rgba(248,249,246,.88); }
.primary-match .fit-row span { color: #fff; background: rgba(248,249,246,.16); border-color: rgba(248,249,246,.28); }
.primary-match .shop-link { color: #4c330e; background: #fff3cf; border-color: rgba(255,243,207,.78); }
.primary-match .button.secondary { color: #fff; background: rgba(248,249,246,.16); border-color: rgba(248,249,246,.32); }
.primary-match .button.secondary:hover:not(:disabled) { background: rgba(248,249,246,.24); }


/* Revenue upgrade: buyer-intent guide pages and high-intent kit shelf */
.quick-start-kits { background: linear-gradient(135deg, rgba(248,249,246,.96), rgba(255,246,218,.66)); }
.revenue-kit-grid article { position: relative; min-height: 190px; }
.revenue-kit-grid article::before {
  content: "Buyer path";
  width: max-content;
  color: #7a5014;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(216,153,36,.26);
  background: rgba(216,153,36,.12);
  border-radius: 999px;
  padding: 5px 8px;
}
.guide-card-link { color: inherit; text-decoration: none; display: block; }
.guide-card-link article { height: 100%; }
.guide-card-link em {
  color: var(--leaf-deep);
  font-style: normal;
  font-weight: 900;
}
.guide-main { display: grid; gap: 20px; margin-top: 28px; }
.guide-hero, .guide-section, .guide-cta {
  border: 1px solid rgba(31,42,36,.14);
  background: rgba(248,249,246,.95);
  box-shadow: var(--soft-shadow);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4.5vw, 50px);
}
.guide-hero {
  background:
    linear-gradient(135deg, rgba(248,249,246,.98), rgba(247,240,222,.86)),
    radial-gradient(circle at 14% 18%, rgba(216,153,36,.18), transparent 22rem),
    radial-gradient(circle at 90% 78%, rgba(230, 110, 92,.14), transparent 24rem);
}
.guide-hero h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.guide-lede { max-width: 760px; color: var(--muted); font-size: 1.18rem; line-height: 1.7; margin: 22px 0 0; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.guide-meta span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; color: var(--muted); font-weight: 800; background: rgba(255,255,255,.42); }
.guide-section h2, .guide-cta h2 { font-family: "Fraunces", ui-serif, Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 12px; }
.guide-section > p { color: var(--muted); line-height: 1.65; max-width: 850px; }
.guide-picks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.guide-pick {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.48);
  padding: 20px;
  display: grid;
  gap: 10px;
}
.guide-pick h3 { font-size: 1.26rem; line-height: 1.15; }
.guide-pick p { color: var(--muted); line-height: 1.55; margin: 0; }
.guide-pick .shop-link { width: max-content; }
.guide-callout {
  border-left: 5px solid var(--gold);
  background: rgba(216,153,36,.12);
  border-radius: 18px;
  padding: 16px 18px;
  color: #6f5a35;
  line-height: 1.6;
}
.guide-cta { display: grid; gap: 16px; background: linear-gradient(135deg, rgba(255, 225, 216,.76), rgba(248,249,246,.95)); }
.guide-cta p { color: var(--muted); line-height: 1.65; max-width: 760px; margin: 0; }
.guide-link-row { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) { .guide-picks { grid-template-columns: 1fr; } .guide-pick .shop-link { width: 100%; justify-content: center; } }


/* Google revenue upgrade: content-rich guide pages and internal browsing loops */
.idea-main .guide-hero { overflow: hidden; }
.idea-summary { background: linear-gradient(135deg, rgba(248,249,246,.98), rgba(244,236,220,.78)); }
.article-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.article-toc a { text-decoration: none; color: #B84D3F; border: 1px solid rgba(230, 110, 92,.2); background: rgba(255,255,255,.54); border-radius: 999px; padding: 9px 12px; font-weight: 900; }
.idea-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.idea-card { border: 1px solid var(--line); background: rgba(255,255,255,.5); border-radius: 24px; padding: 18px; display: grid; gap: 8px; min-height: 164px; }
.idea-card > span { color: rgba(230, 110, 92,.66); font-size: .78rem; font-weight: 950; letter-spacing: .1em; }
.idea-card h3 { font-size: 1.14rem; line-height: 1.15; }
.idea-card p { color: var(--muted); line-height: 1.5; margin: 0; }
.guide-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.guide-related-grid a { text-decoration: none; color: inherit; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.48); padding: 17px; display: grid; gap: 7px; transition: transform .18s ease, box-shadow .18s ease; }
.guide-related-grid a:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(31,42,36,.12); }
.guide-related-grid span { color: #7a5014; font-size: .72rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.guide-related-grid b { color: var(--ink); line-height: 1.18; }
.guide-related-grid small { color: var(--muted); line-height: 1.45; }
.mini-picks { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 900px) { .idea-grid, .guide-related-grid, .mini-picks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .idea-grid, .guide-related-grid, .mini-picks { grid-template-columns: 1fr; } }


/* Calm homepage redesign */
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(216,153,36,.11), transparent 27rem),
    radial-gradient(circle at 86% 0%, rgba(230, 110, 92,.09), transparent 25rem),
    linear-gradient(135deg, #fbfaf4 0%, #F8F9F6 54%, #f2f5ed 100%);
}
.ambient span { display: none; }
.site-header { box-shadow: 0 10px 32px rgba(31,42,36,.055); }
.site-header nav { gap: 2px; }
.site-header nav a { font-size: .9rem; padding: 8px 11px; }
.calm-home.hero-shell.active { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: 18px; }
.calm-home .hero-copy,
.calm-home .hero-panel { min-height: 520px; }
.calm-hero {
  background:
    linear-gradient(142deg, rgba(248,249,246,.99), rgba(244,239,226,.9)),
    radial-gradient(circle at 88% 78%, rgba(230, 110, 92,.13), transparent 20rem);
  padding: clamp(34px, 6vw, 72px);
}
.calm-hero::after { opacity: .38; right: -140px; bottom: -150px; }
.calm-hero .eyebrow { margin-bottom: 20px; }
.calm-hero h1 { max-width: 760px; font-size: clamp(3rem, 7.4vw, 5.9rem); line-height: .96; letter-spacing: -.058em; }
.calm-hero .hero-lede { max-width: 620px; margin-top: 22px; font-size: clamp(1.04rem, 1.8vw, 1.24rem); line-height: 1.62; }
.hero-assurance { z-index: 1; margin: 18px 0 0; color: rgba(100,112,103,.86); font-weight: 800; font-size: .95rem; }
.calm-path-card {
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(160deg, rgba(255,255,255,.58), rgba(248,249,246,.9)),
    radial-gradient(circle at 18% 20%, rgba(216,153,36,.13), transparent 18rem);
}
.calm-path-card::before { display: none; }
.path-card { width: 100%; }
.path-card h2 { font-family: "Fraunces", ui-serif, Georgia, serif; font-size: clamp(2.2rem, 4.4vw, 3.65rem); line-height: 1; margin: 8px 0 26px; }
.path-steps { list-style: none; display: grid; gap: 12px; padding: 0; margin: 0; }
.path-steps li { display: grid; grid-template-columns: auto 1fr; gap: 4px 13px; align-items: center; border: 1px solid rgba(31,42,36,.11); border-radius: 22px; background: rgba(255,255,255,.54); padding: 16px; }
.path-steps span { grid-row: span 2; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(230, 110, 92,.1); color: var(--leaf-deep); font-weight: 950; font-size: .78rem; }
.path-steps b { font-size: 1.05rem; }
.path-steps em { color: var(--muted); font-style: normal; line-height: 1.45; }
.anchor-target { position: relative; top: -110px; display: block; width: 1px; height: 1px; overflow: hidden; }
.calm-home .commerce-strip,
.calm-home .market-section { grid-column: 1 / -1; }
.calm-strip { margin-top: 2px; }
.calm-strip article { padding: 20px; background: rgba(248,249,246,.78); box-shadow: none; }
.calm-section { margin-top: 0; background: rgba(248,249,246,.9); }
.calm-section::after { opacity: .42; }
.calm-home .section-heading-row { align-items: flex-start; margin-bottom: 22px; }
.calm-home .section-heading-row h2 { font-size: clamp(2rem, 4vw, 3.55rem); max-width: 760px; line-height: 1.03; }
.calm-home .section-heading-row p { max-width: 680px; margin-top: 12px; }
.calm-kit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.calm-kit-grid article { min-height: 172px; background: rgba(255,255,255,.5); }
.calm-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.calm-category-grid .category-card { min-height: 210px; }
.calm-category-grid .category-card.feature { grid-column: auto; }
.calm-guide-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.calm-guide-grid article { min-height: 182px; }
.revenue-kit-grid article::before { display: none; }
@media (max-width: 980px) {
  .calm-home.hero-shell.active { grid-template-columns: 1fr; }
  .calm-home .hero-copy, .calm-home .hero-panel { min-height: auto; }
  .calm-kit-grid, .calm-category-grid, .calm-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .site-header { align-items: flex-start; border-radius: 24px; }
  .site-header nav { flex-wrap: wrap; justify-content: flex-end; }
  .calm-home.hero-shell.active { gap: 14px; }
  .calm-hero { padding: 30px 24px; }
  .calm-hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  .hero-actions .button { width: 100%; }
  .calm-strip, .calm-kit-grid, .calm-category-grid, .calm-guide-grid { grid-template-columns: 1fr; }
  .path-steps li { grid-template-columns: 1fr; }
  .path-steps span { grid-row: auto; }
}


/* Calm homepage final tightening */
.calm-hero h1 { line-height: 1.01; letter-spacing: -.045em; font-weight: 650; max-width: 720px; }
.calm-hero .button.secondary { background: rgba(248,249,246,.38); color: rgba(31,42,36,.72); border-color: rgba(31,42,36,.13); box-shadow: none; }
.calm-hero .button.secondary:hover { background: rgba(255, 225, 216,.55); color: var(--leaf-deep); }
.site-header nav a { color: rgba(31,42,36,.76); font-weight: 850; }
.calm-strip { display: none; }
.calm-category-grid .category-card > span,
.calm-kit-grid article b:first-child { filter: saturate(.72); }
.calm-home .market-section { margin-top: 2px; }
@media (max-width: 720px) {
  .calm-hero h1 { letter-spacing: -.035em; line-height: 1.04; }
  .calm-path-card { padding: 22px; }
  .path-card h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .site-header nav a { font-size: .86rem; }
}


/* Calm mobile accessibility polish */
:root { --muted: #566159; }
.calm-home .category-card a,
.calm-home .starter-kit-grid a { min-height: 44px; align-items: center; }
.calm-home .guide-grid p, .calm-home .category-card p, .calm-home .starter-kit-grid span { color: #566159; }

/* LikeHobby production design system pass — 2026-05-11 */
:root {
  --paper: #F8F9F6;
  --paper-warm: #F1F0E6;
  --surface: #FFFDF4;
  --surface-muted: #F1F0E6;
  --ink: #243027;
  --ink-strong: #151C17;
  --muted: #5B665E;
  --faint: #7B847C;
  --line: rgba(36, 48, 39, .14);
  --line-strong: rgba(36, 48, 39, .22);
  --leaf: #E66E5C;
  --leaf-deep: #B84D3F;
  --mint: #FFE1D8;
  --gold: #F2A340;
  --clay: #A86143;
  --plum: #301038;
  --container: 1184px;
  --gutter: clamp(20px, 4vw, 48px);
  --grid-gap: clamp(16px, 2.2vw, 24px);
  --section-gap: clamp(28px, 4.5vw, 56px);
  --section-pad: clamp(30px, 5vw, 58px);
  --card-pad: clamp(18px, 2.4vw, 24px);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 50px rgba(36, 48, 39, .08);
  --soft-shadow: 0 10px 28px rgba(36, 48, 39, .07);
  --focus-ring: 0 0 0 4px rgba(230, 110, 92, .16);
}

html { background: var(--paper); }
body {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,253,244,.88), rgba(248,249,246,.98) 420px),
    radial-gradient(circle at 12% 0%, rgba(185,130,36,.08), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(230, 110, 92,.075), transparent 30rem),
    var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  opacity: .12;
  mix-blend-mode: multiply;
}

.site-header,
main,
.site-footer {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
}
.site-header {
  margin-top: 18px;
  padding: 12px 14px;
  border-color: var(--line);
  background: rgba(255, 253, 244, .92);
  box-shadow: 0 8px 24px rgba(36, 48, 39, .055);
  backdrop-filter: blur(14px);
}
.brand { color: var(--ink-strong); }
.brand strong { color: var(--leaf-deep); }
.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--leaf-deep);
  box-shadow: inset 0 0 0 1px rgba(248,249,246,.24);
}
.site-header nav a {
  color: rgba(36,48,39,.72);
  font-size: .88rem;
  font-weight: 850;
  padding: 8px 11px;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--leaf-deep);
  background: rgba(230, 110, 92,.08);
  outline: none;
}

main {
  margin-top: clamp(20px, 3vw, 34px);
}
.screen.active { animation-duration: .32s; }
.calm-home.hero-shell.active,
.hero-shell.active {
  grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr);
  gap: var(--grid-gap);
  align-items: stretch;
}
.calm-home .commerce-strip,
.calm-home .market-section,
.marketplace-home .ad-leaderboard,
.marketplace-home .commerce-strip,
.marketplace-home .market-section {
  grid-column: 1 / -1;
}

.hero-copy,
.hero-panel,
.quiz-card,
.results-header,
.primary-match,
.starter-plan,
.market-section,
.commerce-strip article,
.hobby-card,
.guide-hero,
.guide-section,
.guide-cta,
.legal-card,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255,253,244,.9);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}
.hero-copy,
.hero-panel,
.quiz-card,
.results-header,
.primary-match,
.starter-plan,
.market-section,
.legal-card {
  border-radius: var(--radius-xl);
}
.calm-home .hero-copy,
.calm-home .hero-panel {
  min-height: clamp(500px, 48vw, 600px);
}
.calm-hero,
.marketplace-hero,
.guide-hero {
  background:
    linear-gradient(145deg, rgba(255,253,244,.98), rgba(248,249,246,.94)),
    radial-gradient(circle at 86% 78%, rgba(230, 110, 92,.09), transparent 22rem);
}
.calm-hero {
  padding: clamp(36px, 6vw, 76px);
}
.calm-hero::after,
.market-section::after,
.hero-copy::after {
  display: none;
}
.eyebrow,
.section-kicker,
.commerce-strip span,
.guide-grid span,
.guide-related-grid span {
  color: var(--leaf-deep);
  font-size: .75rem;
  letter-spacing: .095em;
}
.eyebrow span {
  border-color: rgba(230, 110, 92,.18);
  background: rgba(255, 225, 216,.72);
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  text-wrap: balance;
}
h1,
.results-header h2 {
  letter-spacing: -.045em;
}
.calm-hero h1,
.marketplace-hero h1,
h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.8vw, 5.7rem);
  line-height: .99;
  font-weight: 650;
}
.hero-lede,
.calm-hero .hero-lede,
.guide-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  line-height: 1.66;
}
.hero-assurance {
  color: var(--faint);
  font-size: .92rem;
}

.button {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 22px;
  font-weight: 900;
  letter-spacing: -.015em;
}
.button:focus-visible,
.shop-link:focus-visible,
.category-card a:focus-visible,
.starter-kit-grid a:focus-visible,
.guide-card-link:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--leaf), var(--leaf-deep));
  box-shadow: 0 12px 24px rgba(184, 77, 63,.20);
}
.button.primary:hover:not(:disabled) {
  box-shadow: 0 15px 30px rgba(184, 77, 63,.23);
}
.button.secondary,
.calm-hero .button.secondary {
  color: var(--leaf-deep);
  background: rgba(255, 225, 216,.62);
  border: 1px solid rgba(230, 110, 92,.18);
}
.button.ghost {
  color: var(--ink);
  background: rgba(255,253,244,.68);
  border: 1px solid var(--line);
}
.button:hover:not(:disabled) { transform: translateY(-1px); }

.calm-path-card {
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(155deg, rgba(255,253,244,.94), rgba(241,240,230,.72)),
    radial-gradient(circle at 18% 16%, rgba(185,130,36,.08), transparent 18rem);
}
.path-card h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.3rem);
  line-height: 1.03;
  margin-bottom: 28px;
}
.path-steps {
  gap: 14px;
}
.path-steps li {
  border-color: var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,253,244,.74);
  padding: 17px;
}
.path-steps span {
  background: rgba(230, 110, 92,.1);
  color: var(--leaf-deep);
}
.path-steps em {
  color: var(--muted);
  line-height: 1.5;
}

.calm-strip { display: none !important; }
.calm-home .market-section,
.market-section {
  margin-top: 0;
  padding: var(--section-pad);
  background: rgba(255,253,244,.78);
}
.calm-home .section-heading-row,
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  margin: 10px 0 clamp(20px, 3vw, 30px);
}
.calm-home .section-heading-row h2,
.section-heading-row h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 3.8vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.calm-home .section-heading-row p,
.section-heading-row p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.64;
  margin-top: 12px;
}

.calm-kit-grid,
.starter-kit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.calm-category-grid,
.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.calm-guide-grid,
.guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.category-card,
.starter-kit-grid article,
.guide-grid article,
.guide-pick,
.idea-card,
.guide-related-grid a,
.starter-gear-card,
.plan-list li,
.fact {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,253,244,.74);
  box-shadow: none;
  padding: var(--card-pad);
}
.category-card,
.starter-kit-grid article,
.guide-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
}
.guide-grid article {
  min-height: 184px;
}
.category-card:hover,
.starter-kit-grid article:hover,
.guide-grid article:hover,
.guide-related-grid a:hover,
.hobby-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(230, 110, 92,.25);
}
.category-card > span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(36,48,39,.08);
  border-radius: 14px;
  background: var(--surface-muted);
  font-size: 1.35rem;
  filter: saturate(.72);
}
.category-card h3,
.guide-grid h3,
.starter-kit-grid b,
.idea-card h3,
.guide-pick h3 {
  color: var(--ink-strong);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.16;
  letter-spacing: -.025em;
  margin: 0;
}
.category-card p,
.guide-grid p,
.starter-kit-grid span,
.idea-card p,
.guide-pick p,
.guide-related-grid small {
  color: var(--muted);
  line-height: 1.56;
  margin: 0;
}
.category-card a,
.starter-kit-grid a,
.starter-gear-card a,
.guide-card-link em {
  color: var(--leaf-deep);
  font-weight: 950;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.revenue-kit-grid article::before { display: none !important; }

.quiz-card,
.results-header,
.starter-plan,
.hobby-card {
  background: rgba(255,253,244,.86);
}
.quiz-card,
.results-header,
.starter-plan {
  padding: clamp(26px, 4.5vw, 46px);
}
#question-text,
.results-header h2,
.starter-plan h3,
.guide-section h2,
.guide-cta h2 {
  color: var(--ink-strong);
  letter-spacing: -.04em;
}
.option-btn,
.hobby-card {
  border-color: var(--line);
  background: rgba(255,253,244,.72);
  box-shadow: none;
}
.option-btn:hover,
.option-btn:focus-visible {
  box-shadow: var(--soft-shadow);
}
.option-icon,
.card-icon,
.modal-title > span {
  background: var(--surface-muted);
}
.primary-match {
  color: var(--paper);
  border-color: rgba(36,48,39,.18);
  background:
    linear-gradient(135deg, rgba(28,46,35,.96), rgba(184, 77, 63,.92)),
    radial-gradient(circle at 20% 10%, rgba(185,130,36,.22), transparent 28rem);
}
.primary-match h3 { color: var(--paper); }
.primary-match p { color: rgba(248,249,246,.78); }

.ad-unit {
  border-color: rgba(36,48,39,.18);
  background: rgba(255,253,244,.64);
  box-shadow: none;
}
.ad-preview {
  color: var(--faint);
  background:
    repeating-linear-gradient(135deg, rgba(36,48,39,.04) 0 12px, rgba(36,48,39,.018) 12px 24px),
    rgba(255,253,244,.54);
}

.guide-main {
  gap: var(--grid-gap);
}
.guide-hero,
.guide-section,
.guide-cta {
  padding: var(--section-pad);
  background: rgba(255,253,244,.82);
}
.guide-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
}
.guide-picks,
.idea-grid,
.guide-related-grid,
.mini-picks {
  gap: var(--grid-gap);
}
.article-toc a,
.guide-meta span {
  background: rgba(255,253,244,.64);
  border-color: var(--line);
}
.guide-callout {
  border-left-color: var(--gold);
  background: rgba(185,130,36,.1);
  color: #684C1F;
}
.guide-cta {
  background:
    linear-gradient(135deg, rgba(255, 225, 216,.62), rgba(255,253,244,.9));
}
.site-footer {
  margin-top: var(--section-gap);
  border-radius: var(--radius-lg);
  background: rgba(255,253,244,.7);
  box-shadow: none;
}

@media (max-width: 1080px) {
  .calm-kit-grid,
  .starter-kit-grid,
  .calm-guide-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calm-category-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .calm-home.hero-shell.active,
  .hero-shell.active {
    grid-template-columns: 1fr;
  }
  .calm-home .hero-copy,
  .calm-home .hero-panel,
  .hero-copy,
  .hero-panel {
    min-height: auto;
  }
  .primary-match-card { grid-template-columns: auto 1fr; }
  .score-ring { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  :root {
    --gutter: 14px;
    --grid-gap: 14px;
    --section-pad: 22px;
  }
  .site-header,
  main,
  .site-footer {
    width: calc(100% - (var(--gutter) * 2));
  }
  .site-header {
    position: static;
    border-radius: 22px;
  }
  .site-header nav { display: none; }
  .calm-hero,
  .hero-copy {
    padding: 28px 22px;
  }
  .calm-hero h1,
  .marketplace-hero h1,
  h1 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
    line-height: 1.04;
    letter-spacing: -.035em;
  }
  .hero-actions .button,
  .results-actions .button,
  .quiz-controls .button,
  .section-heading-row .button {
    width: 100%;
  }
  .section-heading-row,
  .calm-home .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .calm-kit-grid,
  .starter-kit-grid,
  .calm-category-grid,
  .category-grid,
  .calm-guide-grid,
  .guide-grid,
  .idea-grid,
  .guide-related-grid,
  .mini-picks,
  .guide-picks {
    grid-template-columns: 1fr;
  }
  .category-card,
  .starter-kit-grid article,
  .guide-grid article {
    min-height: auto;
  }
  .path-steps li {
    grid-template-columns: auto 1fr;
  }
  .path-steps span { grid-row: span 2; }
  .primary-match-card {
    grid-template-columns: 1fr;
  }
  .big-icon,
  .score-ring {
    width: 82px;
    height: 82px;
  }
}
/* End LikeHobby production design system pass */

/* LikeHobby production mobile polish — 2026-05-11 */
.section-heading-row > .button {
  align-self: end;
  margin-bottom: 4px;
}

@media (max-width: 720px) {
  :root {
    --grid-gap: 12px;
    --section-pad: 20px;
  }
  .calm-hero h1,
  .marketplace-hero h1,
  .guide-hero h1,
  h1 {
    font-size: clamp(2.45rem, 11.2vw, 3.85rem);
    line-height: 1.07;
    letter-spacing: -.032em;
  }
  .hero-lede,
  .calm-hero .hero-lede,
  .guide-lede {
    font-size: 1rem;
    line-height: 1.62;
  }
  .path-card h2,
  .guide-section h2,
  .guide-cta h2,
  .starter-plan h3 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
    line-height: 1.08;
  }
  .category-card,
  .starter-kit-grid article,
  .guide-grid article,
  .guide-pick,
  .idea-card,
  .guide-related-grid a,
  .starter-gear-card,
  .plan-list li,
  .fact {
    padding: 18px;
  }
  .section-heading-row > .button {
    align-self: stretch;
    margin-bottom: 0;
  }
  .shop-link,
  .category-card a,
  .starter-kit-grid a,
  .starter-gear-card a {
    min-height: 44px;
    align-items: center;
  }
}
/* End LikeHobby production mobile polish */

/* LikeHobby SEO expansion — 2026-05-11 */
.seo-link-cloud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.seo-link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,244,.68);
  color: var(--leaf-deep);
  text-decoration: none;
  font-weight: 900;
  font-size: .9rem;
}
.seo-link-cloud a:hover {
  border-color: rgba(230, 110, 92,.25);
  background: rgba(255, 225, 216,.62);
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.faq-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,253,244,.72);
  padding: var(--card-pad);
}
.faq-list h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.2;
}
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
  margin: 8px 0 0;
}
@media (max-width: 720px) {
  .seo-link-cloud { gap: 8px; }
  .seo-link-cloud a { width: 100%; justify-content: center; }
}
/* End LikeHobby SEO expansion */



/* Guide item Amazon CTA pass */
.idea-card { align-content: start; }
.idea-shop-link {
  margin-top: auto;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(230, 110, 92, .18);
  background: rgba(255, 225, 216, .56);
  color: #B84D3F;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.idea-shop-link::after { content: "↗"; margin-left: 6px; font-size: .9em; }
.idea-shop-link:hover {
  transform: translateY(-1px);
  background: rgba(216, 153, 36, .16);
  border-color: rgba(216, 153, 36, .32);
  color: #6f4b12;
  box-shadow: 0 10px 22px rgba(31, 42, 36, .08);
}
.idea-shop-link:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.guide-shop-note {
  margin: 16px 0 0;
  max-width: 880px;
  border: 1px solid rgba(216, 153, 36, .22);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 246, 218, .5);
  color: #6f5a35;
  padding: 13px 15px;
  line-height: 1.55;
}
@media (max-width: 620px) { .idea-shop-link { width: 100%; } }
/* End guide item Amazon CTA pass */

@media (max-width: 520px) { .brand-mark { width: 38px; height: 38px; border-radius: 14px; } .brand-word { font-size: 1.18rem; } }



/* LikeHobby cute toy brand override */
.site-header .brand {
  gap: 9px;
  min-width: max-content;
  color: #17233b;
  font-weight: 800;
}
.site-header .brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: #17233b;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateY(-1px);
}
.site-header .brand:hover .brand-mark { transform: translateY(-2px) rotate(-1deg); box-shadow: none; }
.site-header .brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 9px 13px rgba(31, 42, 36, .14));
}
.toy-block { fill: #FFD86E; stroke: #17233b; stroke-width: 2.5; }
.toy-eye { fill: #17233b; }
.toy-smile { fill: none; stroke: #17233b; stroke-width: 2.6; stroke-linecap: round; }
.toy-blush { fill: #F28B78; opacity: .9; }
.toy-spark { fill: #FFE1A6; stroke: #17233b; stroke-width: 2.1; stroke-linejoin: round; }
.site-header .brand-word {
  display: inline-flex;
  align-items: baseline;
  font-family: "DynaPuff", "Fraunces", ui-serif, Georgia, serif;
  font-size: 1.36rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: #17233b;
  transform: translateY(-1px) rotate(-.5deg);
  text-shadow: 0 1px 0 rgba(255, 249, 227, .9);
}
.site-header .brand-like { color: #17233b; font-weight: 700; }
.site-header .brand-hobby { margin-left: 2px; color: #E66E5C; font-weight: 700; }
.site-header .brand:hover .brand-word { transform: translateY(-2px) rotate(-.5deg); }
@media (max-width: 520px) {
  .site-header .brand { gap: 7px; }
  .site-header .brand-mark { width: 40px; height: 40px; }
  .site-header .brand-word { font-size: 1.18rem; letter-spacing: -.045em; }
}
/* End LikeHobby cute toy brand override */


/* LikeHobby orange toy palette override */
:root {
  --ink: #17233B;
  --ink-strong: #111A2E;
  --muted: #6B625D;
  --faint: #91847B;
  --line: rgba(151, 91, 70, .14);
  --line-strong: rgba(151, 91, 70, .24);
  --leaf: #E66E5C;
  --leaf-deep: #B84D3F;
  --mint: #FFE1D8;
  --gold: #F2A340;
  --clay: #F28B78;
  --surface-muted: #FFF0DA;
  --shadow: 0 18px 50px rgba(184, 77, 63, .09);
  --soft-shadow: 0 10px 28px rgba(184, 77, 63, .08);
  --focus-ring: 0 0 0 4px rgba(230, 110, 92, .22);
}
body {
  background:
    linear-gradient(180deg, rgba(255,253,244,.9), rgba(248,249,246,.98) 420px),
    radial-gradient(circle at 10% 0%, rgba(255,216,110,.16), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(230,110,92,.13), transparent 30rem),
    radial-gradient(circle at 76% 72%, rgba(242,139,120,.08), transparent 28rem),
    var(--paper);
}
.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--leaf-deep); background: rgba(230,110,92,.10); }
.calm-hero,
.marketplace-hero,
.guide-hero {
  background:
    linear-gradient(145deg, rgba(255,253,244,.98), rgba(255,244,235,.94)),
    radial-gradient(circle at 86% 78%, rgba(230,110,92,.12), transparent 22rem);
}
.eyebrow span,
.button.secondary,
.calm-hero .button.secondary { background: rgba(255,225,216,.68); border-color: rgba(230,110,92,.22); color: var(--leaf-deep); }
.button.primary { background: linear-gradient(135deg, #F28B78 0%, #E66E5C 52%, #B84D3F 100%); box-shadow: 0 12px 24px rgba(184,77,63,.22); }
.button.primary:hover:not(:disabled) { box-shadow: 0 15px 30px rgba(184,77,63,.26); }
.path-steps span { background: rgba(230,110,92,.12); color: var(--leaf-deep); }
.category-card:hover,
.starter-kit-grid article:hover,
.guide-grid article:hover,
.guide-related-grid a:hover,
.hobby-card:hover { border-color: rgba(230,110,92,.28); }
.category-card a,
.starter-kit-grid a,
.starter-gear-card a,
.guide-card-link em,
.site-footer a { color: var(--leaf-deep); }
.primary-match {
  background:
    linear-gradient(135deg, rgba(23,35,59,.97), rgba(92,44,47,.94)),
    radial-gradient(circle at 20% 10%, rgba(255,216,110,.22), transparent 28rem),
    radial-gradient(circle at 86% 86%, rgba(230,110,92,.22), transparent 26rem);
}
.guide-cta { background: linear-gradient(135deg, rgba(255,225,216,.68), rgba(255,253,244,.92)); }
.guide-callout { border-left-color: var(--leaf); background: rgba(230,110,92,.09); color: #784234; }
.article-toc a { color: #8F4639; border-color: rgba(230,110,92,.22); }
.idea-card > span { color: rgba(184,77,63,.72); }
.idea-shop-link { border-color: rgba(230,110,92,.22); background: rgba(255,225,216,.58); color: var(--leaf-deep); }
.idea-shop-link:hover { background: rgba(255,216,110,.2); border-color: rgba(242,163,64,.36); color: #7B4318; }
.toy-spark { fill: #FFE1A6; stroke: #17233b; }
/* End LikeHobby orange toy palette override */


/* LikeHobby orange contrast tuck */
.eyebrow,
.section-kicker,
.commerce-strip span,
.guide-grid span,
.guide-related-grid span,
.idea-card > span {
  color: #B84D3F;
}
.idea-shop-link {
  background: rgba(255,225,216,.74);
  color: #B84D3F;
}
/* End LikeHobby orange contrast tuck */


/* LikeHobby fresh tangerine palette override */
:root {
  --leaf: #FF7A3D;
  --leaf-deep: #B84216;
  --mint: #FFE4D3;
  --gold: #FFD86E;
  --clay: #FF8A5C;
  --line: rgba(255, 122, 61, .15);
  --line-strong: rgba(255, 122, 61, .26);
  --shadow: 0 18px 50px rgba(255, 122, 61, .10);
  --soft-shadow: 0 10px 28px rgba(255, 122, 61, .09);
  --focus-ring: 0 0 0 4px rgba(255, 122, 61, .25);
}
body {
  background:
    linear-gradient(180deg, rgba(255,253,244,.92), rgba(248,249,246,.98) 420px),
    radial-gradient(circle at 10% 0%, rgba(255,216,110,.18), transparent 34rem),
    radial-gradient(circle at 92% 4%, rgba(255,122,61,.15), transparent 30rem),
    radial-gradient(circle at 76% 72%, rgba(255,138,92,.09), transparent 28rem),
    var(--paper);
}
.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--leaf-deep); background: rgba(255,122,61,.11); }
.site-header .brand-hobby { color: #FF7A3D; }
.toy-blush { fill: #FF8A5C; }
.toy-spark { fill: #FFD86E; stroke: #17233b; }
.calm-hero,
.marketplace-hero,
.guide-hero {
  background:
    linear-gradient(145deg, rgba(255,253,244,.98), rgba(255,245,238,.95)),
    radial-gradient(circle at 86% 78%, rgba(255,122,61,.14), transparent 22rem);
}
.eyebrow,
.section-kicker,
.commerce-strip span,
.guide-grid span,
.guide-related-grid span,
.idea-card > span { color: #B84216; }
.eyebrow span,
.button.secondary,
.calm-hero .button.secondary { background: rgba(255,228,211,.78); border-color: rgba(255,122,61,.26); color: #B84216; }
.button.primary { background: linear-gradient(135deg, #FFB052 0%, #FF7A3D 48%, #E85E23 100%); box-shadow: 0 12px 24px rgba(255,122,61,.25); }
.button.primary:hover:not(:disabled) { box-shadow: 0 15px 30px rgba(255,122,61,.30); }
.path-steps span { background: rgba(255,122,61,.13); color: #B84216; }
.category-card:hover,
.starter-kit-grid article:hover,
.guide-grid article:hover,
.guide-related-grid a:hover,
.hobby-card:hover { border-color: rgba(255,122,61,.32); }
.category-card a,
.starter-kit-grid a,
.starter-gear-card a,
.guide-card-link em,
.site-footer a { color: #B84216; }
.primary-match {
  background:
    linear-gradient(135deg, rgba(23,35,59,.97), rgba(116,53,33,.94)),
    radial-gradient(circle at 20% 10%, rgba(255,216,110,.24), transparent 28rem),
    radial-gradient(circle at 86% 86%, rgba(255,122,61,.26), transparent 26rem);
}
.guide-cta { background: linear-gradient(135deg, rgba(255,228,211,.76), rgba(255,253,244,.93)); }
.guide-callout { border-left-color: #FF7A3D; background: rgba(255,122,61,.10); color: #7A3816; }
.article-toc a { color: #B84216; border-color: rgba(255,122,61,.25); }
.idea-shop-link { border-color: rgba(255,122,61,.26); background: rgba(255,228,211,.80); color: #B84216; }
.idea-shop-link:hover { background: rgba(255,216,110,.24); border-color: rgba(255,176,82,.42); color: #88410F; }
/* End LikeHobby fresh tangerine palette override */

/* LikeHobby card CTA bottom alignment pass */
.category-card,
.starter-kit-grid article,
.guide-grid article,
.guide-pick,
.idea-card,
.starter-gear-card,
.hobby-card {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
}

.category-card > a,
.starter-kit-grid article > a,
.guide-grid article > a,
.guide-card-link article > em,
.guide-pick > .shop-link,
.idea-card > .idea-shop-link,
.starter-gear-card > a {
  margin-top: auto;
  align-self: flex-start;
}

.hobby-card-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.hobby-card .fit-row { margin-bottom: 0; }
@media (max-width: 680px) {
  .category-card > a,
  .starter-kit-grid article > a,
  .guide-pick > .shop-link,
  .idea-card > .idea-shop-link,
  .starter-gear-card > a {
    width: 100%;
    justify-content: center;
  }
}
/* End LikeHobby card CTA bottom alignment pass */


/* SEO helpful-content fit section */
.search-fit-section {
  background: linear-gradient(135deg, rgba(255,253,244,.94), rgba(255,244,230,.68));
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap, 16px);
  margin: 22px 0 20px;
}
.fit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  background: rgba(255,253,244,.76);
  padding: var(--card-pad, 20px);
}
.fit-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: #B84216;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.fit-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}
@media (max-width: 900px) { .fit-grid { grid-template-columns: 1fr; } }
.search-fit-section .guide-callout { max-width: none; }
/* End SEO helpful-content fit section */


/* SEO contextual guide images */
.guide-visual {
  margin: calc(var(--section-gap, 28px) * -0.15) auto var(--section-gap, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl, 34px);
  overflow: hidden;
  background: rgba(255,253,244,.86);
  box-shadow: var(--shadow);
}
.guide-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.guide-visual figcaption {
  padding: 16px 20px 18px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.55;
  background: rgba(255,253,244,.82);
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) {
  .guide-visual { border-radius: 24px; margin-bottom: 20px; }
  .guide-visual figcaption { padding: 13px 15px 15px; font-size: .9rem; }
}
/* End SEO contextual guide images */


/* SEO breadcrumbs and contextual links */
.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  max-width: var(--container, 1180px);
  margin: 0 auto -4px;
  padding: 0 2px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}
.breadcrumb-nav a {
  color: #B84216;
  text-decoration: none;
}
.breadcrumb-nav a:hover { text-decoration: underline; }
.breadcrumb-nav span[aria-current="page"] {
  color: var(--ink);
  max-width: min(70vw, 520px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contextual-link-section {
  background: linear-gradient(135deg, rgba(255,253,244,.94), rgba(240,247,235,.72));
}
.contextual-link-section > p {
  max-width: 900px;
}
.context-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap, 16px);
  margin-top: 22px;
}
.context-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: var(--card-pad, 20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  background: rgba(255,253,244,.78);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.context-link-grid a:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
  border-color: rgba(255,122,61,.32);
}
.context-link-grid span {
  color: #B84216;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.context-link-grid b {
  color: var(--ink-strong);
  font-size: 1.05rem;
  line-height: 1.2;
}
.context-link-grid small {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}
@media (max-width: 980px) { .context-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .breadcrumb-nav { font-size: .84rem; margin-bottom: -8px; }
  .context-link-grid { grid-template-columns: 1fr; }
  .context-link-grid a { min-height: auto; }
}
.context-link-grid em {
  align-self: end;
  color: #B84216;
  font-size: .86rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: -.01em;
}
/* End SEO breadcrumbs and contextual links */


/* SEO unique decision checklist sections */
.decision-checklist-section {
  background: linear-gradient(135deg, rgba(255,253,244,.95), rgba(255,235,216,.56));
}
.decision-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.decision-list li {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,244,.72);
  padding: 15px 17px;
  color: var(--muted);
  line-height: 1.58;
}
.decision-list b { color: var(--ink-strong); }
/* End SEO unique decision checklist sections */


/* SEO comparison tables and visible FAQ */
.comparison-table-section { background: linear-gradient(135deg, rgba(255,253,244,.94), rgba(255,241,224,.62)); }
.comparison-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  background: rgba(255,253,244,.84);
}
.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: var(--ink);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.48;
}
.comparison-table th {
  color: #B84216;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .095em;
  text-transform: uppercase;
  background: rgba(255,228,211,.52);
}
.comparison-table td:first-child {
  color: var(--ink-strong);
  font-weight: 950;
}
.comparison-table tr:last-child td { border-bottom: 0; }
.visible-faq-section { background: rgba(255,253,244,.9); }
.visible-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.visible-faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,253,244,.74);
  padding: 0;
  overflow: hidden;
}
.visible-faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink-strong);
  font-weight: 950;
  line-height: 1.35;
}
.visible-faq-list p {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--muted);
  line-height: 1.58;
}
@media (max-width: 720px) {
  .comparison-table th,
  .comparison-table td { padding: 13px 14px; }
  .comparison-table { min-width: 760px; }
}
/* End SEO comparison tables and visible FAQ */


/* Mobile stacked comparison table */
@media (max-width: 720px) {
  .comparison-table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
  }
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .comparison-table thead { display: none; }
  .comparison-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,253,244,.82);
    overflow: hidden;
  }
  .comparison-table td {
    display: grid;
    grid-template-columns: minmax(92px, .38fr) 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 13px 14px;
    font-size: .92rem;
  }
  .comparison-table td::before {
    content: attr(data-label);
    color: #B84216;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .07em;
    text-transform: uppercase;
  }
  .comparison-table td:first-child { font-weight: 800; }
  .comparison-table td:last-child { border-bottom: 0; }
  .visible-faq-list details[open] {
    border-color: rgba(255,122,61,.28);
    box-shadow: 0 10px 26px rgba(31,42,36,.06);
  }
}
/* End mobile stacked comparison table */


/* LikeHobby premium kids-magazine design pass */
:root {
  --mag-ink: #17231C;
  --mag-copy: #2F3B32;
  --mag-muted: #5B685F;
  --mag-paper: #FFFDF4;
  --mag-paper-2: #F8F9F6;
  --mag-cream: #F2E9D7;
  --mag-orange: #F06F2F;
  --mag-orange-deep: #B84216;
  --mag-yellow: #FFD86E;
  --mag-green: #6B8F58;
  --mag-sky: #9FCAD0;
  --mag-red: #D94D3D;
  --mag-line: rgba(23, 35, 28, .14);
  --mag-hairline: rgba(23, 35, 28, .08);
  --mag-shadow: 0 18px 48px rgba(23,35,28,.10);
}
body {
  color: var(--mag-copy);
  background:
    radial-gradient(circle at 7% 12%, rgba(255,216,110,.26), transparent 20rem),
    radial-gradient(circle at 91% 6%, rgba(159,202,208,.22), transparent 24rem),
    radial-gradient(circle at 82% 82%, rgba(240,111,47,.12), transparent 28rem),
    linear-gradient(135deg, #FFFDF4 0%, #F8F9F6 52%, #F4EBD9 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .18;
  background-image:
    radial-gradient(circle, rgba(23,35,28,.16) 1px, transparent 1.4px),
    linear-gradient(90deg, rgba(23,35,28,.045) 1px, transparent 1px);
  background-size: 18px 18px, 96px 96px;
  mask-image: linear-gradient(to bottom, #000, rgba(0,0,0,.3));
}
.site-header {
  max-width: 1200px;
  padding: 12px 14px;
  border: 1px solid rgba(23,35,28,.16);
  border-radius: 24px;
  background: rgba(255,253,244,.88);
  box-shadow: 0 10px 28px rgba(23,35,28,.07);
  position: relative;
}
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(23,35,28,.16);
  pointer-events: none;
}
.site-header::before { top: 7px; }
.site-header::after { bottom: 7px; }
.brand { gap: 9px; }
.brand-mark { width: 46px; height: 46px; box-shadow: none; }
.brand-word { font-size: 1.25rem; letter-spacing: -.05em; }
.site-header nav { gap: 6px; }
.site-header nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #405044;
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: -.01em;
}
.site-header nav a:first-child {
  background: var(--mag-orange);
  color: #fffaf0;
  box-shadow: 0 8px 18px rgba(240,111,47,.24);
}
.site-header nav a:first-child::after { content: " →"; }
.screen.hero-shell,
.guide-main,
.legal-main { max-width: 1200px; }
.hero-shell.marketplace-home.calm-home {
  margin-top: 18px;
  padding: clamp(24px, 4.4vw, 58px);
  border: 1px solid rgba(23,35,28,.16);
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(255,216,110,.36) 0 8px, transparent 8px 22px) left top / 46px 100% no-repeat,
    radial-gradient(circle at 78% 14%, rgba(159,202,208,.36), transparent 19rem),
    linear-gradient(135deg, rgba(255,253,244,.96), rgba(248,249,246,.88));
  box-shadow: 0 26px 70px rgba(23,35,28,.12);
  overflow: hidden;
}
.calm-hero { position: relative; z-index: 1; }
.calm-hero::before {
  content: "LIKEHOBBY JUNIOR FIELD GUIDE · ISSUE 01";
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px 6px;
  border-top: 2px solid var(--mag-ink);
  border-bottom: 2px solid var(--mag-ink);
  color: var(--mag-ink);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .13em;
}
.calm-hero::after {
  content: "quiz\A first";
  white-space: pre;
  position: absolute;
  right: clamp(-8px, -1vw, -2px);
  top: 34px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mag-yellow);
  color: var(--mag-ink);
  border: 2px solid var(--mag-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  line-height: .92;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 6px 8px 0 rgba(23,35,28,.12);
}
.calm-hero .eyebrow { display: none; }
.calm-hero h1,
.guide-hero h1,
.idea-hero h1 {
  color: var(--mag-ink);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.calm-hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7.7vw, 7rem);
  line-height: .91;
}
.hero-lede,
.guide-lede,
.guide-section > p,
.guide-cta p,
.legal-card p {
  color: var(--mag-muted);
}
.hero-lede {
  max-width: 650px;
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.62;
}
.hero-actions { align-items: center; gap: 12px; }
.button.primary {
  min-height: 52px;
  border: 2px solid var(--mag-ink);
  background: linear-gradient(135deg, #FFB85D, #F06F2F 58%, #D94D3D);
  color: #FFFDF4;
  box-shadow: 6px 8px 0 rgba(23,35,28,.14), 0 13px 28px rgba(240,111,47,.25);
}
.button.primary:hover:not(:disabled) { transform: translate(-1px, -2px); box-shadow: 8px 10px 0 rgba(23,35,28,.14), 0 18px 34px rgba(240,111,47,.30); }
.button.secondary,
.calm-hero .button.secondary {
  border: 0;
  background: transparent;
  color: var(--mag-orange-deep);
  box-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.hero-assurance {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 9px 11px;
  border: 1px dashed rgba(23,35,28,.24);
  border-radius: 16px;
  background: rgba(255,253,244,.64);
  color: var(--mag-copy);
  font-size: .92rem;
  font-weight: 900;
}
.path-card,
.calm-path-card .path-card {
  border: 2px solid rgba(23,35,28,.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,253,244,.94), rgba(255,246,226,.84));
  box-shadow: 12px 14px 0 rgba(23,35,28,.07);
}
.path-card h2 { font-size: clamp(2rem, 3.2vw, 3.6rem); line-height: .98; }
.path-steps li { border-radius: 18px; background: rgba(255,253,244,.76); border: 1px solid rgba(23,35,28,.1); }
.commerce-strip article,
.category-card,
.starter-kit-grid article,
.guide-grid article,
.guide-hero,
.guide-section,
.guide-cta,
.legal-card,
.site-footer {
  border-color: rgba(23,35,28,.12);
  background: rgba(255,253,244,.86);
  box-shadow: var(--mag-shadow);
}
.category-card,
.starter-kit-grid article,
.guide-grid article,
.guide-related-grid a,
.context-link-grid a,
.guide-pick,
.idea-card,
.fit-grid article,
.comparison-table-wrap,
.visible-faq-list details,
.decision-list li {
  border-radius: 20px;
}
.section-kicker,
.mini-label,
.context-link-grid span,
.guide-related-grid span,
.comparison-table th,
.fit-grid span,
.idea-card > span {
  color: var(--mag-orange-deep);
  letter-spacing: .11em;
}
.guide-main { gap: clamp(18px, 3vw, 34px); }
.breadcrumb-nav {
  margin-top: 4px;
  color: #6A766C;
}
.guide-hero {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,216,110,.28), transparent 17rem),
    linear-gradient(135deg, rgba(255,253,244,.95), rgba(248,249,246,.88));
}
.guide-hero::before {
  content: "FIELD GUIDE";
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(23,35,28,.2);
  border-radius: 999px;
  color: var(--mag-orange-deep);
  background: rgba(255,216,110,.22);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.guide-hero .eyebrow { margin-bottom: 10px; }
.eyebrow span,
.guide-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,253,244,.58);
  border-color: rgba(23,35,28,.12);
  color: #5A674F;
  font-size: .72rem;
}
.guide-meta { gap: 7px; }
.guide-hero h1 {
  max-width: 940px;
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  line-height: .98;
}
.guide-lede {
  max-width: 820px;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.68;
}
.guide-visual {
  border-radius: 30px;
  box-shadow: 10px 12px 0 rgba(23,35,28,.08), 0 18px 44px rgba(23,35,28,.09);
}
.comparison-table th { background: rgba(255,216,110,.24); }
.visible-faq-list summary::marker { color: var(--mag-orange-deep); }
.context-link-grid a:hover,
.guide-related-grid a:hover,
.category-card:hover,
.starter-kit-grid article:hover,
.guide-card-link:hover article {
  border-color: rgba(23,35,28,.22);
  box-shadow: 7px 8px 0 rgba(23,35,28,.07), 0 18px 34px rgba(23,35,28,.08);
}
@media (min-width: 920px) {
  .hero-shell.marketplace-home.calm-home {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  }
  .commerce-strip.calm-strip { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .site-header {
    width: min(100% - 22px, 1180px);
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 20px;
  }
  .site-header::before,
  .site-header::after { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-word { font-size: 1.08rem; }
  .site-header nav a { padding: 7px 8px; font-size: .78rem; }
  .hero-shell.marketplace-home.calm-home {
    width: min(100% - 22px, 1180px);
    margin-top: 12px;
    padding: 24px 18px 22px;
    border-radius: 28px;
    background:
      linear-gradient(90deg, rgba(255,216,110,.34) 0 6px, transparent 6px 18px) left top / 35px 100% no-repeat,
      linear-gradient(135deg, rgba(255,253,244,.96), rgba(248,249,246,.9));
  }
  .calm-hero::before { font-size: .62rem; letter-spacing: .09em; margin-bottom: 12px; }
  .calm-hero::after { width: 66px; height: 66px; right: -3px; top: 28px; font-size: .82rem; }
  .calm-hero h1 { font-size: clamp(3.05rem, 15vw, 4.9rem); line-height: .93; padding-right: 26px; }
  .hero-lede { font-size: 1rem; line-height: 1.58; }
  .hero-actions { gap: 8px; }
  .hero-actions .button.primary { width: 100%; justify-content: center; }
  .hero-actions .button.secondary { width: 100%; justify-content: center; padding-top: 4px; padding-bottom: 4px; }
  .hero-assurance { font-size: .82rem; line-height: 1.45; }
  .guide-hero { padding: 24px 18px; border-radius: 28px; }
  .guide-hero::before { font-size: .62rem; margin-bottom: 10px; }
  .guide-hero .eyebrow span:nth-child(n+3) { display: none; }
  .guide-hero h1 { font-size: clamp(2.35rem, 11.5vw, 3.55rem); line-height: 1.02; }
  .guide-lede { font-size: .98rem; line-height: 1.62; }
  .guide-meta span { font-size: .68rem; padding: 5px 8px; }
  .breadcrumb-nav { font-size: .78rem; }
  .guide-visual { border-radius: 22px; }
}
/* End LikeHobby premium kids-magazine design pass */


/* LikeHobby premium kids-magazine polish pass */
.hero-shell.marketplace-home.calm-home { position: relative; }
.hero-shell.marketplace-home.calm-home::before {
  content: "✦";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(110px, 16vw, 210px);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px 26px 18px 26px;
  background: #9FCAD0;
  color: #17231C;
  border: 2px solid rgba(23,35,28,.55);
  font-size: 1.55rem;
  transform: rotate(-11deg);
  box-shadow: 5px 6px 0 rgba(23,35,28,.1);
  z-index: 0;
}
.hero-shell.marketplace-home.calm-home::after {
  content: "try\A small";
  white-space: pre;
  position: absolute;
  right: clamp(82px, 10vw, 145px);
  bottom: clamp(42px, 8vw, 94px);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #CBB7FF;
  color: #17231C;
  border: 2px solid rgba(23,35,28,.55);
  font-family: "Fraunces", Georgia, serif;
  font-size: .9rem;
  line-height: .88;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 5px 6px 0 rgba(23,35,28,.1);
  z-index: 0;
}
.calm-hero,
.calm-path-card,
.commerce-strip { position: relative; z-index: 1; }
.calm-hero::after {
  top: 58px;
  right: 10px;
  width: 76px;
  height: 76px;
  font-size: .9rem;
}
.path-card::before {
  content: "ADVENTURE MAP";
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(159,202,208,.28);
  color: #31545A;
  border: 1px solid rgba(49,84,90,.2);
  font-size: .7rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.path-card h2 { color: #17231C; }
.path-steps li span {
  border: 1px solid rgba(23,35,28,.18);
  box-shadow: 3px 4px 0 rgba(23,35,28,.08);
}
.guide-hero { position: relative; overflow: hidden; }
.guide-hero::after {
  content: "✎\A✦\A●";
  white-space: pre;
  position: absolute;
  right: clamp(24px, 5vw, 62px);
  top: clamp(28px, 5vw, 54px);
  width: 112px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 25%, #FFD86E 0 18px, transparent 19px),
    linear-gradient(135deg, rgba(159,202,208,.36), rgba(255,253,244,.74));
  border: 2px solid rgba(23,35,28,.12);
  color: rgba(23,35,28,.62);
  font-size: 1.15rem;
  line-height: 1.1;
  transform: rotate(6deg);
  box-shadow: 7px 8px 0 rgba(23,35,28,.06);
  pointer-events: none;
}
.guide-hero h1,
.guide-lede,
.guide-meta,
.guide-hero .eyebrow,
.guide-hero::before { position: relative; z-index: 1; }
.guide-hero h1 { max-width: 850px; }
.guide-lede { color: #4E5B52; }
.hero-assurance {
  padding: 12px 14px;
  line-height: 1.45;
  background: rgba(255,253,244,.78);
}
.button.primary { box-shadow: 4px 5px 0 rgba(23,35,28,.14), 0 12px 24px rgba(240,111,47,.22); }
.button.primary:hover:not(:disabled) { box-shadow: 6px 7px 0 rgba(23,35,28,.14), 0 16px 28px rgba(240,111,47,.28); }
.site-header { transform: translateZ(0); }
@media (min-width: 900px) {
  .calm-path-card { transform: rotate(.35deg); }
  .calm-hero { padding-right: 76px; }
}
@media (max-width: 760px) {
  .hero-shell.marketplace-home.calm-home::before {
    right: 14px;
    bottom: 118px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 1.05rem;
  }
  .hero-shell.marketplace-home.calm-home::after { display: none; }
  .calm-hero::after {
    top: 74px;
    right: 2px;
    width: 58px;
    height: 58px;
    font-size: .74rem;
    box-shadow: 4px 5px 0 rgba(23,35,28,.1);
  }
  .calm-hero h1 {
    font-size: clamp(2.76rem, 13.7vw, 4.45rem);
    line-height: .97;
    padding-right: 18px;
  }
  .site-header nav a:nth-child(n+4) { display: none; }
  .site-header nav { gap: 4px; }
  .site-header nav a:first-child { padding-left: 10px; padding-right: 10px; }
  .hero-assurance { padding: 11px 12px; font-size: .84rem; }
  .guide-hero::after {
    right: 14px;
    top: 18px;
    width: 62px;
    height: 74px;
    border-radius: 20px;
    font-size: .84rem;
    opacity: .72;
  }
  .guide-hero h1 {
    font-size: clamp(2.2rem, 10.3vw, 3.28rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    padding-right: 34px;
  }
  .guide-hero .eyebrow { gap: 5px; }
  .guide-hero .eyebrow span { font-size: .65rem; }
  .guide-meta { gap: 5px; }
  .guide-meta span { max-width: 100%; }
  .breadcrumb-nav { flex-wrap: wrap; row-gap: 4px; }
  .breadcrumb-nav span[aria-current="page"] { max-width: 100%; white-space: normal; }
}
@media (max-width: 360px) {
  .calm-hero::after { transform: rotate(9deg) scale(.9); right: -5px; }
  .calm-hero h1 { font-size: clamp(2.52rem, 13vw, 3.7rem); }
  .guide-hero h1 { font-size: clamp(2.05rem, 9.8vw, 3rem); }
}
/* End LikeHobby premium kids-magazine polish pass */


/* LikeHobby final magazine density polish */
.calm-hero::after { transform: rotate(11deg) scale(.92); opacity: .94; }
.calm-hero .button.secondary { color: #455348; text-decoration-color: rgba(69,83,72,.48); }
.hero-assurance { border-style: solid; border-color: rgba(23,35,28,.13); }
.guide-hero::after { transform: rotate(6deg) scale(.88); opacity: .62; }
.guide-visual {
  overflow: hidden;
  border: 1px solid rgba(23,35,28,.13);
  background: rgba(255,253,244,.86);
}
.guide-visual img { display: block; }
.guide-visual figcaption {
  padding: 13px 16px 15px;
  color: #4F5B52;
  background: rgba(255,253,244,.92);
  border-top: 1px solid rgba(23,35,28,.08);
  font-size: .9rem;
  line-height: 1.48;
}
@media (max-width: 760px) {
  .calm-hero::after { top: 82px; right: -4px; transform: rotate(11deg) scale(.82); }
  .calm-hero h1 { font-size: clamp(2.62rem, 13vw, 4.18rem); line-height: .99; }
  .hero-lede { margin-top: 14px; }
  .guide-hero::after { transform: rotate(6deg) scale(.76); opacity: .46; top: 22px; right: 10px; }
  .guide-hero h1 { font-size: clamp(2.08rem, 9.7vw, 3.05rem); line-height: 1.055; padding-right: 18px; }
  .guide-visual figcaption { font-size: .84rem; padding: 11px 13px 13px; }
}
/* End LikeHobby final magazine density polish */


/* LikeHobby hero grid precision pass */
.hero-shell.marketplace-home.calm-home.active {
  display: block;
  padding: clamp(30px, 3.8vw, 48px);
}
.hero-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .85fr);
  gap: clamp(20px, 2.2vw, 30px);
  align-items: stretch;
  margin-bottom: clamp(18px, 2vw, 26px);
  position: relative;
  z-index: 1;
}
.hero-top-grid > .hero-copy,
.hero-top-grid > .hero-panel {
  min-height: clamp(560px, 48vw, 650px);
}
.hero-top-grid > .calm-hero {
  padding: clamp(46px, 4.4vw, 64px);
  justify-content: center;
}
.hero-top-grid > .calm-path-card {
  padding: clamp(26px, 2.8vw, 36px);
  justify-content: stretch;
  align-items: stretch;
}
.hero-top-grid .path-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 2.6vw, 38px);
  box-shadow: 8px 10px 0 rgba(23,35,28,.065), 0 18px 38px rgba(23,35,28,.07);
}
.hero-top-grid .path-card::before {
  align-self: flex-start;
}
.hero-top-grid .path-card h2 {
  margin: 10px 0 clamp(22px, 2.4vw, 30px);
  max-width: 9ch;
}
.hero-top-grid .path-steps {
  gap: clamp(11px, 1.2vw, 15px);
}
.hero-top-grid .path-steps li {
  padding: clamp(13px, 1.35vw, 17px);
}
.hero-top-grid .path-steps em {
  font-size: .94rem;
}
.hero-top-grid .calm-hero::before {
  margin-bottom: clamp(18px, 2.2vw, 26px);
}
.hero-top-grid .calm-hero::after {
  top: clamp(58px, 5.2vw, 76px);
  right: clamp(14px, 2vw, 26px);
}
.hero-top-grid .calm-hero h1 {
  max-width: 620px;
  font-size: clamp(4.35rem, 5.95vw, 6rem);
  line-height: .92;
  letter-spacing: -.052em;
  padding-right: 48px;
}
.hero-top-grid .hero-lede {
  max-width: 590px;
  margin-top: 24px;
  line-height: 1.58;
}
.hero-top-grid .hero-actions {
  margin-top: 30px;
  gap: 14px;
}
.hero-top-grid .hero-assurance {
  max-width: 590px;
  margin-top: 20px;
}
.hero-shell.marketplace-home.calm-home > .market-section,
.hero-shell.marketplace-home.calm-home > .commerce-strip {
  position: relative;
  z-index: 1;
}
@media (min-width: 1180px) {
  .hero-top-grid > .calm-hero { padding-left: 58px; padding-right: 58px; }
  .hero-top-grid .calm-hero h1 { padding-right: 56px; }
}
@media (max-width: 1120px) {
  .hero-top-grid {
    grid-template-columns: minmax(0, 1.26fr) minmax(318px, .84fr);
  }
  .hero-top-grid .calm-hero h1 {
    font-size: clamp(3.75rem, 6.3vw, 5rem);
  }
}
@media (max-width: 980px) {
  .hero-top-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-top-grid > .hero-copy,
  .hero-top-grid > .hero-panel {
    min-height: auto;
  }
  .hero-top-grid .path-card h2 { max-width: none; }
}
@media (max-width: 760px) {
  .hero-shell.marketplace-home.calm-home.active {
    padding: 18px;
  }
  .hero-top-grid {
    gap: 14px;
    margin-bottom: 14px;
  }
  .hero-top-grid > .calm-hero {
    padding: 26px 22px 24px;
  }
  .hero-top-grid .calm-hero::before {
    margin-bottom: 18px;
  }
  .hero-top-grid .calm-hero::after {
    top: 78px;
    right: -2px;
    transform: rotate(11deg) scale(.78);
  }
  .hero-top-grid .calm-hero h1 {
    max-width: 7.6ch;
    padding-right: 18px;
    font-size: clamp(2.42rem, 11.4vw, 3.55rem);
    line-height: .99;
    letter-spacing: -.043em;
  }
  .hero-top-grid .hero-lede {
    margin-top: 16px;
    font-size: .97rem;
    line-height: 1.52;
  }
  .hero-top-grid .hero-actions {
    margin-top: 24px;
    gap: 7px;
  }
  .hero-top-grid .hero-assurance {
    margin-top: 17px;
    padding: 10px 11px;
    font-size: .8rem;
    line-height: 1.38;
  }
  .hero-top-grid > .calm-path-card {
    padding: 18px;
  }
  .hero-top-grid .path-card {
    padding: 24px 22px;
  }
}
@media (max-width: 370px) {
  .hero-shell.marketplace-home.calm-home.active { padding: 16px; }
  .hero-top-grid > .calm-hero { padding-inline: 20px; }
  .hero-top-grid .calm-hero h1 {
    max-width: 7.1ch;
    font-size: clamp(2.28rem, 10.8vw, 3.15rem);
  }
  .hero-top-grid .hero-assurance { font-size: .78rem; }
}
/* End LikeHobby hero grid precision pass */


/* LikeHobby hero grid tightening pass */
.hero-top-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(400px, .94fr);
}
.hero-top-grid > .hero-copy,
.hero-top-grid > .hero-panel {
  min-height: clamp(520px, 44vw, 610px);
}
.hero-top-grid > .calm-hero {
  padding-block: clamp(42px, 3.8vw, 54px);
}
.hero-top-grid > .calm-path-card {
  padding: clamp(22px, 2.3vw, 30px);
}
.hero-top-grid .path-card {
  padding: clamp(24px, 2.2vw, 32px);
}
.hero-top-grid .calm-hero::before {
  margin-bottom: clamp(14px, 1.5vw, 20px);
}
.hero-top-grid .calm-hero h1 {
  max-width: 600px;
  font-size: clamp(4.15rem, 5.75vw, 5.7rem);
  line-height: .93;
}
.hero-top-grid .hero-lede {
  margin-top: 20px;
  max-width: 570px;
}
.hero-top-grid .hero-actions {
  margin-top: 26px;
}
.hero-top-grid .hero-assurance {
  margin-top: 15px;
  padding-block: 9px;
}
@media (max-width: 1120px) {
  .hero-top-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, .9fr);
  }
}
@media (max-width: 980px) {
  .hero-top-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-top-grid { gap: 18px; }
  .hero-top-grid > .calm-hero {
    padding: 25px 22px 23px;
  }
  .hero-top-grid .calm-hero::after {
    top: 72px;
    right: -8px;
    transform: rotate(11deg) scale(.72);
    opacity: .86;
  }
  .hero-top-grid .calm-hero h1 {
    max-width: none;
    padding-right: 22px;
    font-size: clamp(2.34rem, 10.8vw, 3.36rem);
    line-height: 1.01;
  }
  .hero-top-grid .hero-lede {
    margin-top: 14px;
    font-size: .95rem;
    line-height: 1.5;
  }
  .hero-top-grid .hero-actions {
    margin-top: 21px;
    gap: 6px;
  }
  .hero-top-grid .hero-assurance {
    display: none;
  }
  .hero-top-grid .path-card h2 {
    margin-bottom: 20px;
  }
}
@media (max-width: 370px) {
  .hero-top-grid .calm-hero h1 {
    max-width: none;
    padding-right: 14px;
    font-size: clamp(2.18rem, 10.4vw, 3rem);
  }
}
/* End LikeHobby hero grid tightening pass */


/* LikeHobby premium hero-panel + section rhythm fix */
/* Remove unintended masthead rule lines */
.site-header::before,
.site-header::after {
  display: none !important;
  content: none !important;
}
.site-header {
  padding-block: 12px;
  background:
    linear-gradient(180deg, rgba(255,253,244,.94), rgba(248,249,246,.88));
  border-color: rgba(23,35,28,.11);
  box-shadow: 0 10px 26px rgba(23,35,28,.06);
}

/* Large section cards need a consistent editorial rhythm */
.hero-shell.marketplace-home.calm-home > .market-section {
  margin-top: clamp(28px, 3vw, 42px) !important;
}
.hero-shell.marketplace-home.calm-home > .market-section + .market-section {
  margin-top: clamp(34px, 3.5vw, 52px) !important;
}
.hero-shell.marketplace-home.calm-home > .market-section:last-of-type {
  margin-bottom: 0;
}

/* Premium right-side hero panel: more field-guide spread, less sidebar card */
.hero-top-grid > .calm-path-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,35,28,.12);
  background:
    radial-gradient(circle at 86% 8%, rgba(255,216,110,.34), transparent 9.5rem),
    radial-gradient(circle at 16% 92%, rgba(159,202,208,.24), transparent 12rem),
    linear-gradient(145deg, rgba(255,253,244,.92), rgba(241,235,219,.78));
  box-shadow: 0 20px 52px rgba(23,35,28,.095);
}
.hero-top-grid > .calm-path-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(23,35,28,.065);
  border-radius: 26px;
  pointer-events: none;
}
.hero-top-grid > .calm-path-card::after {
  content: "fieldA notes";
  white-space: pre;
  position: absolute;
  right: clamp(18px, 2.2vw, 30px);
  top: clamp(18px, 2.2vw, 30px);
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(23,35,28,.18);
  background: rgba(255,253,244,.76);
  color: #31545A;
  font-family: "Fraunces", Georgia, serif;
  font-size: .82rem;
  line-height: .88;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 4px 5px 0 rgba(23,35,28,.06);
  pointer-events: none;
}
.hero-top-grid .path-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(23,35,28,.14);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(240,111,47,.16) 0 7px, transparent 7px 100%),
    radial-gradient(circle at 92% 20%, rgba(203,183,255,.22), transparent 9rem),
    linear-gradient(180deg, rgba(255,253,244,.96), rgba(255,247,229,.9));
  box-shadow:
    10px 12px 0 rgba(23,35,28,.065),
    0 18px 44px rgba(23,35,28,.085);
}
.hero-top-grid .path-card::before {
  content: "ADVENTURE MAP · NO. 01";
  margin-bottom: clamp(12px, 1.4vw, 18px);
  padding: 7px 10px 6px;
  border: 1px solid rgba(23,35,28,.18);
  border-radius: 999px;
  background: rgba(159,202,208,.22);
  color: #31545A;
  font-size: .66rem;
  font-weight: 1000;
  letter-spacing: .13em;
}
.hero-top-grid .path-card::after {
  content: "✦";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #FFD86E;
  border: 1px solid rgba(23,35,28,.2);
  color: rgba(23,35,28,.68);
  transform: rotate(-10deg);
  z-index: -1;
}
.hero-top-grid .path-card .mini-label {
  margin: 0 0 8px;
  color: #A94C25;
  font-size: .68rem;
  letter-spacing: .12em;
}
.hero-top-grid .path-card h2 {
  max-width: 10.6ch;
  color: #17231C;
  font-size: clamp(2.28rem, 3.15vw, 3.15rem);
  line-height: .97;
  letter-spacing: -.045em;
}
.hero-top-grid .path-steps {
  position: relative;
  margin-top: auto;
}
.hero-top-grid .path-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(240,111,47,.28), rgba(49,84,90,.18));
  pointer-events: none;
}
.hero-top-grid .path-steps li {
  position: relative;
  border: 1px solid rgba(23,35,28,.095);
  border-radius: 20px;
  background: rgba(255,253,244,.72);
  box-shadow: 0 8px 18px rgba(23,35,28,.045);
}
.hero-top-grid .path-steps li:nth-child(2) { background: rgba(255,248,230,.74); }
.hero-top-grid .path-steps li:nth-child(3) { background: rgba(241,249,246,.72); }
.hero-top-grid .path-steps span {
  position: relative;
  z-index: 1;
  background: #FFFDF4;
  border: 1px solid rgba(240,111,47,.26);
  color: #B84216;
  box-shadow: 3px 4px 0 rgba(23,35,28,.065);
}
.hero-top-grid .path-steps b {
  color: #17231C;
  letter-spacing: -.015em;
}
.hero-top-grid .path-steps em {
  color: #566459;
}
@media (max-width: 980px) {
  .hero-shell.marketplace-home.calm-home > .market-section,
  .hero-shell.marketplace-home.calm-home > .market-section + .market-section {
    margin-top: clamp(24px, 4vw, 38px) !important;
  }
  .hero-top-grid .path-card h2 { max-width: none; }
}
@media (max-width: 760px) {
  .site-header { padding-block: 10px; }
  .hero-shell.marketplace-home.calm-home > .market-section,
  .hero-shell.marketplace-home.calm-home > .market-section + .market-section {
    margin-top: 24px !important;
  }
  .hero-top-grid > .calm-path-card::before { inset: 12px; border-radius: 22px; }
  .hero-top-grid > .calm-path-card::after {
    width: 54px;
    height: 54px;
    right: 16px;
    top: 16px;
    font-size: .68rem;
    opacity: .82;
  }
  .hero-top-grid .path-card {
    border-radius: 28px;
    box-shadow: 7px 8px 0 rgba(23,35,28,.055), 0 14px 30px rgba(23,35,28,.065);
  }
  .hero-top-grid .path-card::after { display: none; }
  .hero-top-grid .path-card h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    max-width: 9.5ch;
  }
}
/* End LikeHobby premium hero-panel + section rhythm fix */


/* LikeHobby hero sticker correction */
/* Remove the extra right-card round badge entirely; it read as clutter. */
.hero-top-grid > .calm-path-card::after {
  display: none !important;
  content: none !important;
}
/* Lift the yellow quiz sticker back toward the magazine masthead/title corner. */
.hero-top-grid .calm-hero::after {
  top: clamp(42px, 3.7vw, 56px);
  right: clamp(12px, 1.8vw, 24px);
  transform: rotate(10deg) scale(.9);
}
@media (max-width: 760px) {
  .hero-top-grid .calm-hero::after {
    top: 56px;
    right: -7px;
    transform: rotate(10deg) scale(.7);
  }
}
@media (max-width: 370px) {
  .hero-top-grid .calm-hero::after {
    top: 54px;
    right: -10px;
    transform: rotate(10deg) scale(.66);
  }
}
/* End LikeHobby hero sticker correction */


/* LikeHobby hero label line removal */
/* The issue label keeps the magazine cue but loses the odd top/bottom rule lines. */
.calm-hero::before {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 1px solid rgba(23,35,28,.16);
  border-right: 1px solid rgba(23,35,28,.16);
  border-radius: 999px;
  background: rgba(255,253,244,.68);
  padding: 7px 11px 6px;
}
/* End LikeHobby hero label line removal */


/* LikeHobby clickable quiz sticker */
/* The quiz sticker is now a real button, not a decorative pseudo-element. */
.hero-top-grid .calm-hero::after {
  display: none !important;
  content: none !important;
}
.quiz-sticker-button {
  position: absolute;
  right: clamp(12px, 1.8vw, 24px);
  top: clamp(42px, 3.7vw, 56px);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #17231C;
  background: #FFD86E;
  color: #17231C;
  font-family: "Fraunces", Georgia, serif;
  font-size: .86rem;
  font-weight: 760;
  line-height: .88;
  text-align: center;
  box-shadow: 5px 6px 0 rgba(23,35,28,.11), 0 10px 20px rgba(23,35,28,.08);
  transform: rotate(10deg) scale(.9);
  z-index: 3;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.quiz-sticker-button span {
  display: block;
  transform: translateY(1px);
}
.quiz-sticker-button:hover {
  transform: rotate(8deg) scale(.94) translateY(-1px);
  box-shadow: 6px 7px 0 rgba(23,35,28,.12), 0 14px 24px rgba(23,35,28,.1);
  filter: saturate(1.04);
}
.quiz-sticker-button:focus-visible {
  outline: 3px solid rgba(240,111,47,.38);
  outline-offset: 4px;
}
@media (max-width: 760px) {
  .quiz-sticker-button {
    top: 56px;
    right: -7px;
    width: 60px;
    height: 60px;
    font-size: .7rem;
    transform: rotate(10deg) scale(.92);
  }
  .quiz-sticker-button:hover {
    transform: rotate(8deg) scale(.96) translateY(-1px);
  }
}
@media (max-width: 370px) {
  .quiz-sticker-button {
    top: 54px;
    right: -10px;
    width: 56px;
    height: 56px;
    font-size: .66rem;
  }
}
/* End LikeHobby clickable quiz sticker */


/* LikeHobby hero activity-page right panel */
.hero-top-grid > .calm-path-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(255,216,110,.30), transparent 9rem),
    radial-gradient(circle at 14% 90%, rgba(159,202,208,.24), transparent 12rem),
    linear-gradient(145deg, rgba(255,253,244,.94), rgba(241,235,219,.78));
}
.hero-top-grid .path-card.activity-page {
  justify-content: flex-start;
  gap: clamp(16px, 1.6vw, 20px);
  padding: clamp(25px, 2.3vw, 34px);
  background:
    linear-gradient(90deg, rgba(240,111,47,.14) 0 7px, transparent 7px 100%),
    linear-gradient(180deg, rgba(255,253,244,.98), rgba(255,248,232,.9));
}
.hero-top-grid .path-card.activity-page::before,
.hero-top-grid .path-card.activity-page::after {
  display: none !important;
  content: none !important;
}
.activity-page__mast {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.activity-page__mast .mini-label {
  margin: 0;
  padding: 7px 10px 6px;
  border-radius: 999px;
  border: 1px solid rgba(49,84,90,.18);
  background: rgba(159,202,208,.2);
  color: #31545A;
  font-size: .64rem;
  font-weight: 1000;
  letter-spacing: .12em;
  white-space: nowrap;
}
.activity-page__stamp {
  width: 62px;
  min-width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  border: 1px solid rgba(23,35,28,.2);
  background: #FFD86E;
  color: #17231C;
  font-family: "Fraunces", Georgia, serif;
  font-size: .76rem;
  font-weight: 760;
  line-height: .88;
  text-align: center;
  transform: rotate(7deg);
  box-shadow: 4px 5px 0 rgba(23,35,28,.075);
}
.activity-page h2 {
  max-width: 10.7ch !important;
  margin: 0 !important;
  color: #17231C;
  font-size: clamp(2.08rem, 2.75vw, 2.86rem) !important;
  line-height: .96 !important;
  letter-spacing: -.045em;
}
.activity-page__intro {
  margin: -2px 0 0;
  color: #566459;
  font-size: .96rem;
  line-height: 1.55;
}
.activity-page__worksheet {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  position: relative;
}
.activity-page__worksheet::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(240,111,47,.28), rgba(49,84,90,.16));
}
.activity-page__worksheet article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(23,35,28,.09);
  border-radius: 18px;
  background: rgba(255,253,244,.74);
  box-shadow: 0 8px 18px rgba(23,35,28,.04);
}
.activity-page__worksheet article:nth-child(2) { background: rgba(255,249,231,.78); }
.activity-page__worksheet article:nth-child(3) { background: rgba(241,249,246,.76); }
.activity-page__worksheet span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240,111,47,.24);
  background: #FFFDF4;
  color: #B84216;
  font-weight: 1000;
  font-size: .74rem;
  box-shadow: 3px 4px 0 rgba(23,35,28,.055);
  z-index: 1;
}
.activity-page__worksheet b {
  color: #17231C;
  font-size: 1rem;
  letter-spacing: -.015em;
}
.activity-page__worksheet em {
  color: #5C695E;
  font-size: .9rem;
  font-style: normal;
  line-height: 1.35;
}
.activity-page__tear {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 14px 15px 14px 17px;
  border: 1px dashed rgba(23,35,28,.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 50%, rgba(23,35,28,.12) 0 3px, transparent 4px) left 11px top 0 / 1px 13px repeat-y,
    rgba(255,253,244,.72);
}
.activity-page__tear span {
  color: #A94C25;
  font-size: .66rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.activity-page__tear b {
  color: #17231C;
  font-size: .98rem;
  line-height: 1.28;
  letter-spacing: -.015em;
}
.activity-page__button {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(23,35,28,.18);
  border-radius: 999px;
  background: #17231C;
  color: #FFFDF4;
  font-weight: 950;
  letter-spacing: -.01em;
  box-shadow: 4px 5px 0 rgba(23,35,28,.11);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.activity-page__button:hover {
  transform: translateY(-1px);
  background: #24352A;
  box-shadow: 5px 6px 0 rgba(23,35,28,.12);
}
.activity-page__button:focus-visible {
  outline: 3px solid rgba(240,111,47,.36);
  outline-offset: 4px;
}
@media (max-width: 1120px) {
  .activity-page h2 { font-size: clamp(1.95rem, 3.1vw, 2.6rem) !important; }
  .activity-page__intro { font-size: .93rem; }
}
@media (max-width: 980px) {
  .activity-page h2 { max-width: none !important; }
}
@media (max-width: 760px) {
  .activity-page__mast .mini-label { white-space: normal; line-height: 1.1; }
  .activity-page__stamp { width: 54px; min-width: 54px; height: 54px; font-size: .66rem; border-radius: 17px; }
  .activity-page__intro { font-size: .91rem; }
  .activity-page__worksheet article { padding: 11px 12px; }
}
/* End LikeHobby hero activity-page right panel */


/* LikeHobby activity-page compact fold polish */
.activity-page__button { font-size: .96rem; }
@media (min-width: 981px) {
  .hero-top-grid > .calm-path-card { padding: 20px; }
  .hero-top-grid .path-card.activity-page {
    gap: 12px;
    padding: 24px 25px;
  }
  .activity-page__mast .mini-label {
    padding: 6px 9px 5px;
    font-size: .6rem;
  }
  .activity-page__stamp {
    width: 54px;
    min-width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: .67rem;
  }
  .activity-page h2 {
    font-size: clamp(1.98rem, 2.35vw, 2.48rem) !important;
    max-width: 11.4ch !important;
  }
  .activity-page__intro {
    font-size: .88rem;
    line-height: 1.44;
  }
  .activity-page__worksheet { gap: 8px; }
  .activity-page__worksheet article {
    padding: 9px 11px;
    border-radius: 16px;
  }
  .activity-page__worksheet span {
    width: 34px;
    height: 34px;
    font-size: .66rem;
  }
  .activity-page__worksheet b { font-size: .94rem; }
  .activity-page__worksheet em { font-size: .82rem; line-height: 1.28; }
  .activity-page__worksheet::before { left: 17px; top: 12px; bottom: 12px; }
  .activity-page__tear {
    padding: 10px 12px 10px 15px;
    border-radius: 16px;
  }
  .activity-page__tear span { font-size: .6rem; }
  .activity-page__tear b { font-size: .89rem; }
  .activity-page__button { min-height: 42px; font-size: .9rem; }
}
/* End LikeHobby activity-page compact fold polish */


/* LikeHobby activity-page CTA hierarchy polish */
.activity-page__button {
  background: rgba(255,253,244,.84);
  color: #B84216;
  border-color: rgba(184,66,22,.24);
  box-shadow: 3px 4px 0 rgba(23,35,28,.065);
}
.activity-page__button:hover {
  background: rgba(255,247,229,.96);
  color: #8F3512;
  box-shadow: 4px 5px 0 rgba(23,35,28,.075);
}
@media (max-width: 760px) {
  .hero-top-grid { gap: 22px; }
}
/* End LikeHobby activity-page CTA hierarchy polish */


/* LikeHobby mobile width rhythm fix */
@media (max-width: 760px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 22px), 1180px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-shell.marketplace-home.calm-home,
  .hero-shell.marketplace-home.calm-home.active {
    width: 100% !important;
    margin: 12px auto 0 !important;
    padding: 12px !important;
    border-radius: 26px;
  }
  .hero-top-grid,
  .hero-top-grid > .hero-copy,
  .hero-top-grid > .hero-panel,
  .hero-shell.marketplace-home.calm-home > .market-section {
    width: 100% !important;
  }
  .hero-top-grid > .calm-hero {
    padding: 24px 20px 22px;
  }
  .hero-top-grid > .calm-path-card {
    padding: 14px;
  }
  .hero-top-grid .path-card.activity-page {
    padding: 20px;
  }
  .hero-shell.marketplace-home.calm-home > .market-section {
    padding: 20px;
  }
}
@media (max-width: 370px) {
  .site-header,
  main,
  .site-footer {
    width: min(calc(100% - 18px), 1180px) !important;
  }
  .hero-shell.marketplace-home.calm-home,
  .hero-shell.marketplace-home.calm-home.active {
    padding: 10px !important;
  }
  .hero-top-grid > .calm-hero {
    padding: 23px 18px 21px;
  }
  .hero-top-grid > .calm-path-card {
    padding: 12px;
  }
  .hero-top-grid .path-card.activity-page {
    padding: 18px;
  }
  .hero-shell.marketplace-home.calm-home > .market-section {
    padding: 18px;
  }
}
/* End LikeHobby mobile width rhythm fix */


/* LikeHobby remove quiz sticker + start-here action */
/* Remove the yellow quiz-first sticker entirely; Start here now owns that action. */
.quiz-sticker-button,
#quiz-sticker-btn,
.hero-top-grid .calm-hero::after {
  display: none !important;
  content: none !important;
}
.hero-top-grid .calm-hero h1 {
  padding-right: 0 !important;
}
/* Slightly stronger magazine-card borders. */
.hero-copy,
.hero-panel,
.market-section,
.guide-hero,
.guide-section,
.guide-cta,
.legal-card {
  border-width: 1.5px;
}
.hero-top-grid .path-card.activity-page,
.category-card,
.starter-kit-grid article,
.guide-grid article,
.activity-page__worksheet article,
.activity-page__tear {
  border-width: 1.5px;
}
.activity-page__stamp {
  appearance: none;
  padding: 0;
  cursor: pointer;
  border-width: 2px;
  border-color: rgba(23,35,28,.30);
}
.activity-page__stamp:hover {
  transform: rotate(5deg) translateY(-1px);
  box-shadow: 5px 6px 0 rgba(23,35,28,.09);
  filter: saturate(1.04);
}
.activity-page__stamp:focus-visible {
  outline: 3px solid rgba(240,111,47,.36);
  outline-offset: 4px;
}
.activity-page__button {
  display: none !important;
}
@media (max-width: 760px) {
  .hero-top-grid .calm-hero h1 {
    padding-right: 0 !important;
  }
}
/* End LikeHobby remove quiz sticker + start-here action */


/* LikeHobby card border strength fix */
.hero-copy,
.hero-panel,
.market-section,
.guide-hero,
.guide-section,
.guide-cta,
.legal-card,
.hero-top-grid .path-card.activity-page {
  border-width: 2px !important;
}
.activity-page__worksheet article,
.activity-page__tear,
.category-card,
.starter-kit-grid article,
.guide-grid article {
  border-width: 1.5px !important;
}
/* End LikeHobby card border strength fix */
