:root {
  --yellow: #ffd400;
  --yellow-soft: #fff6b8;
  --pink: #ed0b73;
  --pink-soft: #ffe5f1;
  --blue: #009ee3;
  --blue-dark: #0879ae;
  --blue-soft: #e4f7ff;
  --lime: #b9e900;
  --lime-soft: #efffc4;
  --orange: #ff6b2c;
  --orange-soft: #fff0e5;
  --ink: #111522;
  --muted: #596171;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #e5e6ea;
  --border: 3px solid var(--ink);
  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-soft: 0 24px 65px rgba(17, 21, 34, .13);
  --display: "Fredoka", sans-serif;
  --body: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
summary {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 6.3vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--blue), var(--lime));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(17, 21, 34, .1);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lab-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 45px;
  object-fit: contain;
}

.lab-brand strong,
.lab-brand small {
  display: block;
}

.lab-brand strong {
  font-family: var(--display);
  font-size: 1rem;
}

.lab-brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button i {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--ink);
}

/* Shared controls */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: transform .17s ease, box-shadow .17s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

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

.button-light {
  background: var(--white);
}

.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 9px 2px;
  border: 0;
  background: transparent;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--pink);
}

.section-label,
.site-kind {
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  margin-bottom: 17px;
}

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

.centered {
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: var(--border);
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 212, 0, .28) 0 4px, transparent 5px) 0 0 / 38px 38px,
    var(--paper);
}

.hero-art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(255, 253, 248, .96) 12%, rgba(255, 253, 248, .28) 49%, transparent 72%);
  content: "";
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  align-items: center;
  padding-block: 74px;
}

.hero-copy {
  width: min(57%, 690px);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 25px;
}

.hero h1 mark {
  position: relative;
  z-index: 0;
  padding: 0 .06em;
  color: inherit;
  background: transparent;
  white-space: nowrap;
}

.hero h1 mark::before {
  position: absolute;
  z-index: -1;
  right: -.05em;
  bottom: .03em;
  left: -.05em;
  height: .42em;
  border-radius: 40% 15% 35% 10%;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #30394a;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-facts {
  display: flex;
  width: fit-content;
  margin: 38px 0 0;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 5px 5px 0 var(--ink);
}

.hero-facts div {
  min-width: 120px;
  padding: 13px 18px;
  text-align: center;
}

.hero-facts div + div {
  border-left: 2px solid var(--ink);
}

.hero-facts dt {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 1px 0 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-doodles span {
  position: absolute;
  z-index: 3;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.hero-doodles span:nth-child(1) {
  top: 12%;
  right: 5%;
  color: var(--yellow);
  transform: rotate(12deg);
}

.hero-doodles span:nth-child(2) {
  top: 18%;
  right: 35%;
  color: var(--pink);
  transform: rotate(-9deg);
}

.hero-doodles span:nth-child(3) {
  right: 4%;
  bottom: 13%;
  color: var(--blue);
  transform: rotate(9deg);
}

/* Answer */
.quick-answer {
  padding: 70px 0;
  border-bottom: 2px solid var(--ink);
  background: var(--yellow-soft);
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.answer-grid h2 {
  margin-bottom: 0;
}

.quick-answer-summary {
  padding: 27px 30px;
  border: var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-hard);
}

.quick-answer-summary p:last-child {
  margin-bottom: 0;
}

.quick-answer-summary a {
  font-weight: 700;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Chooser */
.chooser-section {
  padding: 84px 0;
}

.chooser-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 54px;
}

.chooser-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 18px;
  border: var(--border);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.chooser-card:hover,
.chooser-card:focus-visible {
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.chooser-yellow { background: var(--yellow-soft); }
.chooser-blue { background: var(--blue-soft); }
.chooser-pink { background: var(--pink-soft); }
.chooser-lime { background: var(--lime-soft); }
.chooser-orange { background: var(--orange-soft); }

.chooser-icon {
  margin: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
}

.chooser-card strong {
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.2;
}

.chooser-card > span:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.4;
}

.comparison-wrap {
  overflow-x: auto;
  border: var(--border);
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--ink);
}

.comparison-wrap:focus-visible {
  outline: 4px solid rgba(0, 158, 227, .35);
  outline-offset: 5px;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table caption {
  padding: 17px 20px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
}

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

.comparison-table thead th {
  background: var(--yellow-soft);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-family: var(--display);
  font-size: 1rem;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

/* Site cards */
.sites-section {
  padding: 88px 0 98px;
  border-block: 2px solid var(--ink);
  background:
    radial-gradient(circle, rgba(17, 21, 34, .08) 0 2px, transparent 3px) 0 0 / 34px 34px,
    var(--white);
}

.site-list {
  display: grid;
  gap: 58px;
}

.site-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, .75fr) minmax(0, 1.25fr);
  border: var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
  scroll-margin-top: 100px;
  overflow: hidden;
}

.site-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
}

.site-card:nth-child(even) .site-visual {
  grid-column: 2;
  grid-row: 1;
  border-right: 0;
  border-left: var(--border);
}

.site-card:nth-child(even) .site-copy {
  grid-column: 1;
  grid-row: 1;
}

.site-number {
  position: absolute;
  top: 18px;
  left: 19px;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--white);
  transform: rotate(-7deg);
}

.site-card:nth-child(even) .site-number {
  right: 19px;
  left: auto;
  transform: rotate(7deg);
}

.site-visual {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 62px 34px;
  border-right: var(--border);
  text-align: center;
  overflow: hidden;
}

.site-visual::before,
.site-visual::after {
  position: absolute;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.2rem;
  content: "✦";
}

.site-visual::before {
  top: 22%;
  left: 10%;
  transform: rotate(-14deg);
}

.site-visual::after {
  right: 9%;
  bottom: 18%;
  content: "↗";
  transform: rotate(13deg);
}

.card-yellow .site-visual { background: var(--yellow-soft); }
.card-blue .site-visual { background: var(--blue-soft); }
.card-pink .site-visual { background: var(--pink-soft); }
.card-lime .site-visual { background: var(--lime-soft); }
.card-orange .site-visual { background: var(--orange-soft); }

.site-emoji {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 42% 58% 48% 52%;
  background: var(--white);
  font-size: 4.7rem;
  line-height: 1;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-3deg);
}

.free-pill {
  display: inline-block;
  padding: 5px 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(2deg);
}

.site-visual p {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
}

.site-copy {
  padding: clamp(32px, 5vw, 62px);
}

.site-copy h3 {
  margin: 0 0 18px;
}

.site-verdict {
  color: #394254;
}

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

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  font-weight: 600;
}

.feature-list li span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-size: .72rem;
}

.try-box {
  margin: 26px 0 30px;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: var(--yellow-soft);
  box-shadow: 4px 4px 0 rgba(17, 21, 34, .15);
}

.try-box > span {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.try-box p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
}

.button-site {
  background: var(--yellow);
}

.card-blue .button-site { background: var(--blue); color: var(--white); }
.card-pink .button-site { background: var(--pink); color: var(--white); }
.card-lime .button-site { background: var(--lime); }
.card-orange .button-site { background: var(--orange); }

/* Method and safety */
.method-section {
  padding: 90px 0;
  background: var(--blue-soft);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: clamp(36px, 7vw, 85px);
  align-items: center;
}

.method-copy > p:not(.section-label) {
  max-width: 670px;
  color: var(--muted);
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 15px;
  background: var(--white);
}

.method-steps li > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-weight: 700;
}

.method-steps strong {
  display: block;
  font-family: var(--display);
}

.method-steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.safety-note {
  position: relative;
  padding: 34px 32px 32px 84px;
  border: var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow-hard);
}

.safety-note h3 {
  margin-bottom: 17px;
  font-size: 2rem;
}

.safety-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.safety-icon {
  position: absolute;
  top: -22px;
  left: 25px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--white);
  background: var(--pink);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}

/* Save */
.save-section {
  padding: 86px 0;
  background: var(--yellow);
}

.save-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px 40px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.save-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
}

.save-card p:not(.section-label):not(.share-status) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.bookmark {
  position: absolute;
  top: -22px;
  right: 38px;
  display: grid;
  width: 56px;
  height: 78px;
  place-items: end center;
  padding-bottom: 6px;
  border: 3px solid var(--ink);
  border-radius: 7px 7px 20px 20px;
  color: var(--white);
  background: var(--pink);
  font-size: 2.1rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.save-actions {
  display: grid;
  gap: 14px;
  min-width: 210px;
}

.share-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: -10px 0 0;
  color: #126238;
  font-size: .82rem;
  font-weight: 700;
  text-align: right;
}

/* More resources */
.more-resources {
  padding: 88px 0;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.resource-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: var(--border);
  border-radius: 24px;
  background: var(--blue-soft);
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.resource-card-pink {
  background: var(--pink-soft);
}

.resource-art {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 3.5rem;
}

.resource-card small {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 7px 0 10px;
  font-size: 1.7rem;
}

.resource-card p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: .88rem;
}

.resource-card strong {
  font-family: var(--display);
}

/* FAQ */
.faq-section {
  padding: 88px 0;
  border-top: 2px solid var(--ink);
  background: var(--yellow-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(35px, 7vw, 90px);
  align-items: start;
}

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

.faq-list details {
  border: 2px solid var(--ink);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(17, 21, 34, .13);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 19px 62px 19px 21px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  content: "+";
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 21px;
  color: var(--muted);
  font-size: .9rem;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 45px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer p {
  margin: 7px 0 0;
  font-size: .78rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.footer-links a {
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.copyright {
  text-align: right;
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: .78rem;
  }

  .chooser-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .chooser-card:nth-child(4),
  .chooser-card:nth-child(5) {
    min-height: 185px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 15px;
    border: var(--border);
    border-radius: 0 0 20px 20px;
    background: var(--white);
    box-shadow: 7px 7px 0 var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    border-bottom: 2px solid var(--ink);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 390px;
  }

  .hero-art {
    inset: 0 0 auto;
    width: 100%;
    height: 430px;
  }

  .hero-art::after {
    background: linear-gradient(180deg, transparent 35%, rgba(255, 253, 248, .2) 55%, var(--paper) 96%);
  }

  .hero-inner {
    min-height: auto;
    padding: 35px 0 74px;
  }

  .hero-copy {
    width: min(100%, 690px);
  }

  .hero h1,
  .hero-lead {
    max-width: 720px;
  }

  .hero-doodles {
    display: none;
  }

  .answer-grid,
  .method-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .site-card,
  .site-card:nth-child(even) {
    grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  }

  .site-card:nth-child(even) .site-visual {
    grid-column: 1;
    border-right: var(--border);
    border-left: 0;
  }

  .site-card:nth-child(even) .site-copy {
    grid-column: 2;
  }

  .site-card:nth-child(even) .site-number {
    right: auto;
    left: 19px;
    transform: rotate(-7deg);
  }

  .site-visual {
    padding-inline: 24px;
  }

  .site-emoji {
    width: 105px;
    height: 105px;
    font-size: 3.7rem;
  }

  .save-card {
    grid-template-columns: 1fr;
  }

  .save-actions {
    grid-template-columns: 1fr 1fr;
  }

  .share-status {
    text-align: left;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, 560px);
  }

  .lab-brand small {
    display: none;
  }

  .hero {
    padding-top: 280px;
  }

  .hero-art {
    height: 320px;
  }

  .hero-art img {
    object-position: 57% center;
  }

  .hero-inner {
    padding-bottom: 56px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.7rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    width: 100%;
  }

  .hero-facts div {
    min-width: 0;
    flex: 1;
    padding-inline: 8px;
  }

  .hero-facts dd {
    font-size: 1rem;
  }

  .quick-answer,
  .chooser-section,
  .sites-section,
  .method-section,
  .save-section,
  .more-resources,
  .faq-section {
    padding-block: 56px;
  }

  .quick-answer-summary {
    padding: 23px 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .chooser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chooser-card,
  .chooser-card:nth-child(4),
  .chooser-card:nth-child(5) {
    min-height: 180px;
  }

  .site-list {
    gap: 42px;
  }

  .site-card,
  .site-card:nth-child(even) {
    grid-template-columns: 1fr;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .site-card .site-visual,
  .site-card:nth-child(even) .site-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 330px;
    border-right: 0;
    border-bottom: var(--border);
  }

  .site-card .site-copy,
  .site-card:nth-child(even) .site-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .site-copy {
    padding: 29px 21px 34px;
  }

  .button-site {
    width: 100%;
    text-align: center;
  }

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

  .safety-note {
    padding: 48px 22px 26px;
  }

  .safety-icon {
    left: 21px;
  }

  .save-card {
    padding: 36px 22px 27px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .save-actions {
    grid-template-columns: 1fr;
  }

  .bookmark {
    right: 25px;
  }

  .resource-card {
    grid-template-columns: 82px 1fr;
    gap: 17px;
    padding: 22px 18px;
  }

  .resource-art {
    width: 78px;
    height: 78px;
    font-size: 2.35rem;
  }

  .resource-card h3 {
    font-size: 1.35rem;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .chooser-grid {
    grid-template-columns: 1fr;
  }

  .chooser-card,
  .chooser-card:nth-child(4),
  .chooser-card:nth-child(5) {
    min-height: 155px;
  }

  .site-visual {
    min-height: 290px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 13mm;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10pt;
  }

  .site-header,
  .reading-progress,
  .hero-art,
  .hero-doodles,
  .hero-actions,
  .chooser-grid,
  .method-section,
  .save-section,
  .more-resources,
  .faq-section,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 0;
    border: 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 0 0 10mm;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 30pt;
  }

  .hero-facts {
    box-shadow: none;
  }

  .quick-answer,
  .chooser-section,
  .sites-section {
    padding: 7mm 0;
    border: 0;
    background: #fff;
  }

  .quick-answer-summary,
  .comparison-wrap,
  .site-card {
    box-shadow: none;
  }

  .site-list {
    gap: 6mm;
  }

  .site-card,
  .site-card:nth-child(even) {
    display: block;
    break-inside: avoid;
    border: 1.5pt solid #000;
  }

  .site-visual,
  .site-number {
    display: none;
  }

  .site-copy {
    padding: 5mm;
  }

  .site-copy h3 {
    font-size: 18pt;
  }

  .try-box {
    margin: 3mm 0;
    padding: 3mm;
    border: 1pt solid #000;
    background: #fff;
    box-shadow: none;
  }

  .button-site {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    color: #000 !important;
    background: transparent !important;
    font-family: var(--body);
    font-size: 0;
    text-align: left;
    box-shadow: none;
  }

  .button-site[href]::before {
    content: "Link: ";
    font-size: 8pt;
    font-weight: 700;
  }

  .button-site[href]::after {
    content: attr(href);
    font-family: ui-monospace, monospace;
    font-size: 8pt;
    font-weight: 400;
    overflow-wrap: anywhere;
  }
}
