/* ============================================================
   Cuter — "Kawaii Scrapbook" design system
   Cream paper + dotted grid, multi-pastel chunky cards with
   ink borders & hard offset shadows, hand-placed rotations,
   washi tape, polaroids, handwriting, custom outline icons.
   Pure CSS interactions (mobile nav + FAQ <details>).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper:    #FFF6EA;
  --paper-2:  #FCEEDC;
  --paper-3:  #FFFDF8;

  --ink:      #3B2A4A;
  --ink-soft: #6F5F80;
  --line:     #EADBC8;

  --lav:      #EBE4FF;  --lav-t:    #B9A4FF;
  --peach:    #FFE6D6;  --peach-t:  #FFAE84;
  --mint:     #DCF4E6;  --mint-t:   #86D9A6;
  --butter:   #FFF0C8;  --butter-t: #FFCD55;
  --cherry-s: #FFDCE7;  --cherry-t: #FF8FB1;
  --cherry:   #FF8FB1;  --cherry-ink: #BE2F66; --cherry-d: #FF6E9C;

  --bd:    3px solid var(--ink);
  --hard:  6px 7px 0 var(--ink);
  --hard-sm: 4px 5px 0 var(--ink);

  --container: 1140px;
  --container-narrow: 760px;

  --f-head: "Fredoka", "Segoe UI", system-ui, sans-serif;
  --f-body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-hand: "Caveat", "Comic Sans MS", cursive;

  --ease: cubic-bezier(0.34, 1.3, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(120, 90, 70, 0.10) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--f-head); font-weight: 700; line-height: 1.12; margin: 0; color: var(--ink); }
p { margin: 0 0 1rem; }
a { color: var(--cherry-ink); text-decoration: none; font-weight: 700; transition: color 0.18s ease; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { color: var(--ink); font-weight: 800; }
em { font-style: italic; }

:focus-visible { outline: 3px solid var(--cherry-d); outline-offset: 3px; border-radius: 6px; }

/* ---------- Icons ---------- */
.ico { width: 1.4em; height: 1.4em; display: inline-block; vertical-align: -0.28em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ico--sm { width: 1.1em; height: 1.1em; vertical-align: -0.2em; }
.ico--xs { width: 0.95em; height: 0.95em; vertical-align: -0.12em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); position: relative; }
.section--paper2 { background: var(--paper-2); border-block: 3px dashed rgba(59, 42, 74, 0.18); }

.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.section__title { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.01em; }
.section__sub { font-family: var(--f-body); color: var(--ink-soft); font-size: 1.12rem; margin-top: 0.7rem; font-weight: 600; }
.lead { color: var(--ink-soft); font-size: 1.12rem; }

.hand-eyebrow { font-family: var(--f-hand); font-weight: 700; font-size: 1.6rem; line-height: 1; color: var(--cherry-ink); margin: 0 0 0.5rem; display: inline-block; transform: rotate(-2.5deg); }

/* tilt helpers */
.tilt-l { transform: rotate(-1.7deg); }
.tilt-r { transform: rotate(1.7deg); }

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: 50%; top: -120px; transform: translateX(-50%); background: var(--cherry); color: var(--ink); border: var(--bd); padding: 0.7rem 1.2rem; border-radius: 0 0 14px 14px; z-index: 300; font-family: var(--f-head); font-weight: 700; transition: top 0.2s ease; }
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem; line-height: 1;
  color: var(--ink); background: var(--paper-3);
  border: var(--bd); border-radius: 999px;
  padding: 0.8rem 1.4rem; cursor: pointer; text-align: center;
  box-shadow: var(--hard-sm);
  transition: transform 0.14s var(--ease), box-shadow 0.14s var(--ease), background 0.18s ease;
}
.btn:hover { color: var(--ink); transform: translate(-1px, -2px) rotate(-1deg); box-shadow: 6px 8px 0 var(--ink); }
.btn:active { transform: translate(2px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary { background: var(--cherry); }
.btn--xl { font-size: 1.18rem; padding: 1rem 1.9rem; }
.btn--nav { padding: 0.55rem 1.1rem; box-shadow: var(--hard-sm); background: var(--cherry); }
.btn .ico { stroke-width: 2.4; }

/* ---------- Crisis bar ---------- */
.crisis-bar { background: var(--mint); border-bottom: var(--bd); font-size: 0.96rem; }
.crisis-bar__inner { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; align-items: center; justify-content: center; padding-block: 0.5rem; text-align: center; }
.crisis-bar__text { color: var(--ink); font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }
.crisis-bar__text .ico { color: var(--cherry-ink); }
.crisis-bar__link { font-family: var(--f-head); color: var(--cherry-ink); white-space: nowrap; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 0.25rem; }
.crisis-bar__link:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 246, 234, 0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: var(--bd); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink); font-family: var(--f-head); font-weight: 700; font-size: 1.5rem; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: var(--bd); box-shadow: 3px 3px 0 var(--ink); }
.brand__name { letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav > a { color: var(--ink-soft); font-family: var(--f-head); font-weight: 600; font-size: 1.02rem; }
.nav > a:hover { color: var(--cherry-ink); }
.nav > a.btn--nav { color: var(--ink); }
.nav-toggle, .nav-burger { display: none; }

/* ---------- Decorative stickers ---------- */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco svg { width: 100%; height: 100%; display: block; }
.deco--blossom { color: var(--cherry); }
.deco--star    { color: var(--butter-t); }
.deco--heart   { color: var(--peach-t); }
.deco--sparkle { color: var(--lav-t); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 6vw, 4.1rem); letter-spacing: -0.02em; margin-bottom: 1.1rem; }
.ul-squiggle { position: relative; white-space: nowrap; display: inline-block; }
.squiggle { position: absolute; left: -2%; bottom: -0.32em; width: 104%; height: 0.5em; color: var(--cherry-d); overflow: visible; }
.hero__subtitle { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 33rem; font-weight: 600; }

.hero__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.cta-note { font-family: var(--f-hand); font-weight: 700; font-size: 1.5rem; color: var(--ink); display: inline-flex; align-items: center; gap: 0.1rem; transform: rotate(-7deg); }
.cta-arrow { width: 64px; height: 48px; color: var(--cherry-ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.chip { font-family: var(--f-head); font-weight: 600; font-size: 0.92rem; color: var(--ink); border: 2.5px solid var(--ink); border-radius: 999px; padding: 0.35rem 0.95rem; box-shadow: 2px 3px 0 var(--ink); }
.chip--mint { background: var(--mint); } .chip--lav { background: var(--lav); } .chip--peach { background: var(--peach); } .chip--butter { background: var(--butter); }

.hero__media { display: flex; justify-content: center; }
.polaroid { background: #fff; border: var(--bd); border-radius: 10px; padding: 14px 14px 0; box-shadow: 9px 11px 0 var(--ink); transform: rotate(3deg); position: relative; max-width: 350px; }
.polaroid img { border-radius: 5px; width: 100%; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption { font-family: var(--f-hand); font-weight: 700; font-size: 1.55rem; text-align: center; padding: 0.45rem 0 0.75rem; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 0.35rem; }
.polaroid figcaption .ico { color: var(--cherry-ink); }

.tape { position: absolute; width: 96px; height: 30px; background: rgba(255, 143, 177, 0.55); border-left: 1px dashed rgba(255,255,255,0.6); border-right: 1px dashed rgba(255,255,255,0.6); }
.tape--top { top: -14px; left: 50%; transform: translateX(-50%) rotate(-4deg); }

/* hero sticker placement */
.d1 { width: 58px; height: 58px; top: 6%; left: 2%; transform: rotate(-12deg); animation: bob 6s ease-in-out infinite; }
.d2 { width: 46px; height: 46px; top: 4%; right: 6%; animation: bob 7s ease-in-out infinite 0.4s; }
.d3 { width: 40px; height: 40px; bottom: 10%; left: 46%; transform: rotate(8deg); animation: bob 5.5s ease-in-out infinite 0.8s; }
.d4 { width: 50px; height: 50px; bottom: 6%; right: 3%; transform: rotate(6deg); animation: bob 6.5s ease-in-out infinite 0.2s; }

/* ---------- Marquee ---------- */
.marquee { background: var(--cherry); border-block: var(--bd); overflow: hidden; transform: rotate(-1.4deg); width: 108%; margin-left: -4%; margin-block: clamp(1.5rem, 4vw, 2.5rem); }
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; padding-block: 0.5rem; font-family: var(--f-head); font-weight: 700; font-size: 1.25rem; color: var(--ink); animation: marquee 24s linear infinite; }
.marquee__track > span { padding-inline: 0.9rem; }
.marquee__dot { color: #fff; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1.55fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.about__text .lead { font-size: 1.16rem; }

.sticky-note { position: relative; background: var(--butter); border: var(--bd); border-radius: 6px; box-shadow: var(--hard); padding: 1.5rem 1.4rem 1.6rem; }
.sticky-note p { color: var(--ink); margin: 0 0 0.4rem; }
.sticky-note p:last-child { margin: 0; }
.sticky-note__big { font-family: var(--f-hand); font-weight: 700; font-size: 1.75rem; line-height: 1.2; }
.sticky-note--note { background: #FFF3C9; max-width: 660px; margin-bottom: 2.2rem; }

/* ---------- Cards (bento + grids) ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.bento--wide { grid-column: span 2; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.card-grid--compact { grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); }

.cardz {
  --card-bg: var(--paper-3); --tile: var(--lav-t);
  background: var(--card-bg); border: var(--bd); border-radius: 22px;
  box-shadow: var(--hard); padding: 1.5rem 1.4rem;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.cardz:hover { transform: translate(-2px, -4px) rotate(0deg); box-shadow: 9px 12px 0 var(--ink); }
.cardz__ico { display: inline-grid; place-items: center; width: 54px; height: 54px; border: var(--bd); border-radius: 16px; background: var(--tile); box-shadow: 3px 3px 0 var(--ink); margin-bottom: 1rem; transform: rotate(-4deg); }
.cardz__ico .ico { width: 28px; height: 28px; color: var(--ink); stroke-width: 2; }
.cardz__title { font-size: 1.22rem; margin-bottom: 0.4rem; }
.cardz__text { font-family: var(--f-body); color: var(--ink-soft); font-size: 1rem; margin: 0; }
.cardz__text a { text-decoration: underline; text-underline-offset: 2px; }
.cardz__link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.85rem; font-family: var(--f-head); font-weight: 700; color: var(--cherry-ink); }

.cardz--lav    { --card-bg: var(--lav);      --tile: var(--lav-t); }
.cardz--peach  { --card-bg: var(--peach);    --tile: var(--peach-t); }
.cardz--mint   { --card-bg: var(--mint);     --tile: var(--mint-t); }
.cardz--butter { --card-bg: var(--butter);   --tile: var(--butter-t); }
.cardz--cherry { --card-bg: var(--cherry-s); --tile: var(--cherry-t); }
.cardz--ghost  { --card-bg: var(--paper-3);  --tile: #EADFF6; }

/* ---------- Crisis block ---------- */
.crisis-block { margin-top: 2.5rem; background: #fff; border: var(--bd); border-radius: 22px; box-shadow: var(--hard); padding: clamp(1.4rem, 4vw, 2.2rem); }
.crisis-block__head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem; }
.crisis-block__ico { display: inline-grid; place-items: center; width: 54px; height: 54px; flex: none; border: var(--bd); border-radius: 16px; background: var(--cherry-t); box-shadow: 3px 3px 0 var(--ink); transform: rotate(-5deg); }
.crisis-block__ico .ico { width: 28px; height: 28px; color: var(--ink); }
.crisis-block__title { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.crisis-block__lead { color: var(--ink-soft); margin: 0.25rem 0 0; font-weight: 600; }
.crisis-block__note { margin: 1.4rem 0 0; font-size: 0.92rem; color: var(--ink-soft); border-top: 2px dashed var(--line); padding-top: 1.1rem; }

.crisis-list { display: grid; gap: 0.85rem; margin-top: 1.3rem; }
.crisis-list > li { display: grid; gap: 0.18rem; background: var(--paper); border: 2.5px solid var(--ink); border-left-width: 9px; border-radius: 14px; padding: 0.9rem 1.1rem; }
.crisis-list > li:nth-child(1) { border-left-color: var(--lav-t); }
.crisis-list > li:nth-child(2) { border-left-color: var(--mint-t); }
.crisis-list > li:nth-child(3) { border-left-color: var(--peach-t); }
.crisis-list > li:nth-child(4) { border-left-color: var(--butter-t); }
.crisis-list > li:nth-child(5) { border-left-color: var(--lav-t); }
.crisis-list > li:nth-child(6) { border-left-color: var(--mint-t); }
.crisis-list__name { font-family: var(--f-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.crisis-list__tag { display: inline-block; font-family: var(--f-head); font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); background: var(--cherry-t); border: 2px solid var(--ink); border-radius: 999px; padding: 0.05rem 0.5rem; margin-left: 0.35rem; vertical-align: middle; }
.crisis-list__region { font-size: 0.84rem; color: var(--cherry-ink); font-weight: 700; }
.crisis-list__contact { font-family: var(--f-body); font-size: 0.97rem; color: var(--ink-soft); }
.crisis-list__contact a { text-decoration: underline; text-underline-offset: 2px; }
.crisis-list__emergency { background: #FFE9EE; border-left-color: var(--cherry-d) !important; }

/* ---------- Promise (lined paper) ---------- */
.promise-paper {
  position: relative; background: #fff; border: var(--bd); border-radius: 14px; box-shadow: var(--hard);
  padding: 1.4rem 1.6rem 1.5rem 3.3rem;
  background-image: repeating-linear-gradient(transparent, transparent 2.69rem, rgba(120,150,210,0.16) 2.7rem, rgba(120,150,210,0.16) 2.74rem);
}
.promise-paper::before { content: ""; position: absolute; top: 0; bottom: 0; left: 2.5rem; width: 2px; background: rgba(255, 130, 160, 0.6); }
.promise-paper li { display: flex; align-items: center; gap: 0.8rem; min-height: 2.7rem; color: var(--ink); font-size: 1.06rem; font-weight: 600; }
.promise-paper em { color: var(--cherry-ink); font-style: normal; font-weight: 800; }
.check { display: inline-grid; place-items: center; width: 32px; height: 32px; flex: none; border: 2.5px solid var(--ink); border-radius: 9px; box-shadow: 2px 2px 0 var(--ink); transform: rotate(-4deg); }
.check .ico { color: var(--ink); }
.promise-paper li:nth-child(1) .check { background: var(--cherry-t); }
.promise-paper li:nth-child(2) .check { background: var(--butter-t); }
.promise-paper li:nth-child(3) .check { background: var(--lav-t); }
.promise-paper li:nth-child(4) .check { background: var(--mint-t); }
.promise-paper li:nth-child(5) .check { background: var(--peach-t); }
.promise-paper li:nth-child(6) .check { background: var(--cherry-t); }
.hand-note { font-family: var(--f-hand); font-weight: 700; font-size: 1.6rem; color: var(--cherry-ink); text-align: right; margin: 1.1rem 0 0; transform: rotate(-2deg); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.9rem; }
.faq__item { background: #fff; border: var(--bd); border-radius: 16px; box-shadow: var(--hard-sm); overflow: hidden; transition: box-shadow 0.18s var(--ease); }
.faq__item[open] { box-shadow: var(--hard); background: var(--paper-3); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; font-family: var(--f-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--f-head); font-size: 1.6rem; line-height: 1; color: var(--cherry-ink); transition: transform 0.2s var(--ease); flex: none; }
.faq__item[open] summary::after { transform: rotate(135deg); }
.faq__answer { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__answer p { margin: 0; }
.faq__answer a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Final CTA ---------- */
.final-cta__card {
  position: relative; overflow: hidden; text-align: center;
  background: var(--butter);
  background-image: radial-gradient(rgba(120, 90, 70, 0.12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border: var(--bd); border-radius: 28px; box-shadow: 9px 11px 0 var(--ink);
  padding: clamp(2.2rem, 6vw, 3.6rem) clamp(1.4rem, 5vw, 3rem);
}
.final-cta__card .hand-eyebrow { color: var(--cherry-ink); }
.final-cta__title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.6rem; }
.final-cta__sub { color: var(--ink-soft); font-size: 1.15rem; font-weight: 600; max-width: 460px; margin: 0 auto 1.8rem; }
.final-cta__reassure { font-family: var(--f-hand); font-weight: 700; font-size: 1.45rem; color: var(--ink-soft); margin: 1.1rem 0 0; }
.f1 { width: 56px; height: 56px; top: 14px; left: 18px; transform: rotate(-14deg); }
.f2 { width: 46px; height: 46px; top: 22px; right: 20px; transform: rotate(10deg); }

/* ---------- Footer ---------- */
.site-footer { background: #F4E4D0; border-top: var(--bd); padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; }
.site-footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.7fr; gap: 2rem; margin-bottom: 2.25rem; }
.site-footer__brand p { color: var(--ink-soft); margin: 0.75rem 0 1.1rem; font-weight: 600; }
.site-footer__links h3, .site-footer__crisis h3 { font-family: var(--f-head); font-size: 1.15rem; color: var(--ink); margin-bottom: 0.85rem; }
.site-footer__links a { display: block; color: var(--ink-soft); padding: 0.26rem 0; font-size: 0.98rem; font-weight: 600; }
.site-footer__links a:hover { color: var(--cherry-ink); }
.site-footer__crisis { background: #fff; border: 2.5px solid var(--ink); border-radius: 16px; box-shadow: var(--hard-sm); padding: 1.1rem 1.2rem; }
.site-footer__crisis p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; margin: 0; font-weight: 600; }
.site-footer__crisis strong { color: var(--ink); }

.disclaimer { background: #fff; border: 2.5px solid var(--ink); border-radius: 14px; padding: 0.3rem 1.2rem; margin-bottom: 1.4rem; }
.disclaimer summary { cursor: pointer; padding: 0.7rem 0; font-family: var(--f-head); font-weight: 600; color: var(--ink-soft); }
.disclaimer summary:hover { color: var(--ink); }
.disclaimer__body p { color: var(--ink-soft); font-size: 0.87rem; line-height: 1.55; }
.site-footer__copy { text-align: center; color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; margin: 0; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.site-footer__copy .ico { color: var(--cherry-ink); }

/* ============================================================
   Sub-pages (Code of Conduct, Privacy, 404)
   ============================================================ */
.subpage { padding-block: clamp(2.5rem, 6vw, 4.5rem); min-height: 60vh; }
.subpage__title { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: 0.3rem; }
.subpage__meta { color: var(--ink-soft); margin-bottom: 2rem; font-size: 0.95rem; font-weight: 600; }
.prose h2 { font-size: 1.4rem; margin: 2.1rem 0 0.6rem; }
.prose h3 { font-size: 1.12rem; margin: 1.4rem 0 0.4rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin: 0 0 1.1rem; display: grid; gap: 0.45rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.back-home { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2.5rem; }

.notfound { text-align: center; display: grid; place-items: center; min-height: 70vh; padding-block: 3rem; }
.notfound__code { font-family: var(--f-head); font-weight: 700; font-size: clamp(4.5rem, 18vw, 9rem); line-height: 1; color: var(--cherry); -webkit-text-stroke: 3px var(--ink); }
.notfound__logo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: var(--bd); box-shadow: var(--hard); margin-bottom: 1.5rem; transform: rotate(-3deg); }
.notfound .btn { margin-top: 1.5rem; }

.footer-mini { background: #F4E4D0; border-top: var(--bd); padding-block: 2rem; text-align: center; }
.footer-mini p { color: var(--ink-soft); font-size: 0.9rem; margin: 0.4rem 0; font-weight: 600; }
.footer-mini strong { color: var(--ink); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento--wide { grid-column: span 2; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand, .site-footer__crisis { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 2; }
  .hero__media { order: 1; margin-bottom: 0.5rem; }
  .hand-eyebrow, .hero__subtitle { margin-inline: auto; }
  .hero__cta, .chip-row { justify-content: center; }
  .about__inner { grid-template-columns: 1fr; }
  .sticky-note { max-width: 560px; }
}

@media (max-width: 720px) {
  .nav-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 11px; cursor: pointer; border: var(--bd); border-radius: 13px; background: var(--cherry-s); box-shadow: var(--hard-sm); z-index: 110; }
  .nav-burger span { display: block; height: 3px; width: 100%; background: var(--ink); border-radius: 3px; transition: transform 0.25s var(--ease), opacity 0.2s ease; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.15rem; background: var(--paper); border-bottom: var(--bd); padding: 0.7rem clamp(1.1rem, 4vw, 2.5rem) 1.2rem; box-shadow: 0 18px 30px rgba(59,42,74,0.18); display: none; }
  .nav > a { padding: 0.75rem 0.25rem; border-bottom: 2px dashed rgba(59,42,74,0.18); font-size: 1.15rem; }
  .nav > a.btn--nav { margin-top: 0.7rem; border-bottom: var(--bd); padding: 0.8rem 1.25rem; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 3px solid var(--cherry-d); outline-offset: 3px; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento--wide { grid-column: span 1; }
  body { font-size: 1rem; }
  .btn--xl { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .cta-note { justify-content: center; }
  .d1, .d2 { display: none; }
}

/* ============================================================
   Motion preferences
   ============================================================ */
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

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