/* ============================================================
   klink. — marketing site shared styles
   Design system: warm amber on cream paper
   Fonts: Agbalumo (wordmark) · Bricolage Grotesque (display)
   ============================================================ */

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

:root {
  /* light-only paper design — opt out of browser forced/auto dark themes */
  color-scheme: only light;

  --amber-50:  #FFFBEB;
  --amber-100: #FEF3C7;
  --amber-200: #FDE68A;
  --amber-300: #FCD34D;
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  --amber-600: #D97706;   /* brand primary  */
  --amber-700: #B45309;
  --amber-800: #92400E;   /* brand secondary */
  --amber-900: #78350F;
  --amber-950: #451A03;

  --paper:     #FAF7F0;   /* warm cream page background */
  --paper-2:   #F4EFE4;
  --card:      #FFFFFF;
  --ink:       #1C1917;
  --ink-2:     #57534E;
  --ink-3:     #8C8680;
  --line:      #E7E0D2;
  --line-ink:  #1C1917;

  --success:   #10B981;

  --shadow-sm: 0 1px 2px rgba(28,25,23,.07);
  --shadow-md: 0 6px 16px rgba(28,25,23,.09);
  --shadow-lg: 0 18px 44px rgba(28,25,23,.14);
  --shadow-pop: 4px 4px 0 var(--ink);

  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* hand-drawn accents: organic, slightly wobbly corner sets */
  --r-wobble:    255px 25px 225px 25px / 25px 225px 25px 255px; /* buttons, pills */
  --r-wobble-md: 26px 15px 24px 17px / 17px 24px 15px 26px;      /* cards, panels */
  --r-wobble-sm: 16px 9px 14px 10px / 10px 14px 9px 16px;        /* icons, chips */

  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-display: 'Bricolage Grotesque', var(--font-body);
  --font-wordmark: 'Agbalumo', cursive;
  --font-hand: 'Kalam', 'Bricolage Grotesque', cursive;

  --w-max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  /* notebook dot grid over warm paper */
  background:
    radial-gradient(rgba(28,25,23,.055) 1.1px, transparent 1.1px) 0 0 / 26px 26px,
    var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.38 0 0 0 0 0.28 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* language visibility */
html[lang="sl"] [data-lang="en"] { display: none !important; }
html[lang="en"] [data-lang="sl"] { display: none !important; }

.wordmark {
  font-family: var(--font-wordmark);
  font-weight: 400;
  color: var(--amber-600);
  text-decoration: none;
  line-height: 1;
  /* Agbalumo has a single weight — thicken it to match the logo */
  -webkit-text-stroke: .032em currentColor;
  paint-order: stroke fill;
}
.pass-wm, .footer-watermark { -webkit-text-stroke: .032em currentColor; paint-order: stroke fill; }

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

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--ink); color: var(--paper);
  padding: .55rem 1.2rem; border-radius: 0 0 10px 10px;
  font-weight: 700; font-size: .875rem; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2.5px solid var(--amber-700); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

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

/* ===================== NAV ===================== */
.topnav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(var(--w-max), calc(100% - 2rem));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem .9rem .6rem 1.25rem;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-pop);
}
.topnav .wordmark { font-size: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  color: var(--ink-2); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline wavy var(--amber-600) 1.5px;
  text-underline-offset: 5px;
}
.nav-actions { display: flex; align-items: center; gap: .6rem; }

.lang-toggle {
  display: inline-flex; border: 1.5px solid var(--ink); border-radius: 999px;
  overflow: hidden; background: var(--paper);
}
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: .76rem; font-weight: 800;
  color: var(--ink-3); padding: .34rem .68rem;
  transition: background .15s, color .15s;
}
.lang-toggle button[aria-pressed="true"] { background: var(--ink); color: var(--amber-300); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700; text-decoration: none; cursor: pointer;
  border-radius: var(--r-wobble); border: 1.5px solid var(--ink);
  transition: transform .12s, box-shadow .12s, background .15s, color .15s;
}
.btn-sm { font-size: .875rem; padding: .5rem 1.15rem; }
.btn-lg { font-size: 1.05rem; padding: .85rem 1.8rem; }
.btn-fill { background: var(--amber-600); color: #fff; box-shadow: var(--shadow-pop); }
.btn-fill:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); background: var(--amber-700); }
.btn-fill:active { transform: translate(2px,2px); box-shadow: none; } /* presses flat */
.btn-ink  { background: var(--ink); color: var(--amber-300); box-shadow: var(--shadow-pop); }
.btn-ink:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(28,25,23,.35); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--amber-100); }

/* mobile nav: hand-drawn burger + dropdown card */
.nav-burger { display: none; }

@media (max-width: 800px) {
  .topnav { padding-left: 1rem; }
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; flex: none; cursor: pointer;
    background: var(--paper); border: 1.5px solid var(--ink);
    border-radius: 46% 54% 50% 50% / 55% 45% 55% 45%;
    box-shadow: 2px 2px 0 var(--ink);
    transition: transform .12s, box-shadow .12s;
  }
  .nav-burger:active { transform: translate(2px,2px); box-shadow: none; }
  .nav-burger svg {
    width: 21px; height: 21px;
    fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round;
  }
  .nav-links {
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--card); border: 1.5px solid var(--ink);
    border-radius: var(--r-wobble-md); box-shadow: var(--shadow-pop);
    padding: .6rem;
  }
  .topnav.nav-open .nav-links { display: flex; }
  .nav-links a {
    padding: .85rem 1rem; font-size: 1rem;
    border-radius: var(--r-wobble-sm);
  }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--amber-100); }

  /* comfortable touch targets */
  .btn { min-height: 44px; }
  .lang-toggle button { padding: .55rem .7rem; }
}

@media (max-width: 480px) {
  .topnav { gap: .5rem; padding: .5rem .6rem .5rem .85rem; }
  .topnav .wordmark { font-size: 1.3rem; }
  .nav-actions { gap: .45rem; }
  .nav-actions .btn-sm { font-size: .78rem; padding: .45rem .8rem; white-space: nowrap; }
}
@media (max-width: 374px) {
  .nav-actions .btn-sm { display: none; } /* hero CTA still on screen */
}

/* ===================== TYPE & SECTIONS ===================== */
.container { max-width: var(--w-max); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

.section { padding: clamp(4rem, 9vh, 6.5rem) 0 0; }

.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-hand);
  font-size: .95rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--amber-800);
  margin-bottom: 1rem;
  transform: rotate(-1deg);
}
.kicker::before {
  content: ""; width: 26px; height: 26px; flex: none;
  border: 2px dashed var(--amber-600); border-radius: 50%;
  background: radial-gradient(circle at center, var(--amber-600) 0 38%, transparent 40%);
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.08; }

.display-xl { font-size: clamp(2.5rem, 6.2vw, 4.4rem); font-weight: 800; }
.display-lg { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-2); max-width: 36rem; }

.squiggle { position: relative; white-space: nowrap; }
.squiggle > svg {
  position: absolute; left: 0; right: 0; bottom: -.18em; width: 100%; height: .32em;
  overflow: visible;
}
.squiggle > svg path {
  fill: none; stroke: var(--amber-500); stroke-width: 7; stroke-linecap: round;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.22,.8,.36,1); }
.reveal.d1.in { transition-delay: .08s; }
.reveal.d2.in { transition-delay: .16s; }
.reveal.d3.in { transition-delay: .24s; }

/* ===================== CARDS / PANELS ===================== */
.panel {
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-wobble-md);
  box-shadow: var(--shadow-pop);
}

.sticker {
  display: inline-block;
  font-family: var(--font-hand); font-weight: 700;
  background: var(--amber-300); color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: var(--r-wobble);
  padding: .3rem 1rem .35rem; font-size: .92rem; line-height: 1.4;
  box-shadow: 2px 2px 0 var(--ink);
}

/* ===================== HAND-DRAWN ACCENTS ===================== */
/* translucent tape strip across the top edge of a card */
.tape { position: relative; }
.tape::before {
  content: ""; position: absolute; top: -13px; left: 50%; z-index: 2;
  width: 96px; height: 27px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(231, 224, 210, .68);
  border: 1px solid rgba(28, 25, 23, .12);
  border-radius: 2px 4px 3px 2px;
  box-shadow: 0 1px 2px rgba(28,25,23,.08);
}
.tape.tape-tilt-r::before { transform: translateX(-50%) rotate(2.5deg); }

/* pinned thumbtack */
.tack { position: relative; }
.tack::before {
  content: ""; position: absolute; top: -10px; left: 50%; z-index: 2;
  width: 19px; height: 19px; border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, var(--amber-400), var(--amber-700) 72%);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 3px 0 rgba(28, 25, 23, .28);
}

/* handwritten margin note */
.hand-note {
  font-family: var(--font-hand);
  color: var(--amber-900);
  transform: rotate(-.6deg);
}

/* ===================== LOYALTY PASS MOCKUP ===================== */
.pass {
  width: min(340px, 90vw);
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), var(--shadow-pop);
  overflow: hidden;
}
.pass-head {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  color: #fff; padding: 1.05rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1.5px solid var(--ink);
}
.pass-biz { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; }
.pass-type { font-size: .66rem; opacity: .88; text-transform: uppercase; letter-spacing: .1em; }
.pass-wm { font-family: var(--font-wordmark); font-size: 1rem; color: #fff; opacity: .92; }
.pass-body { padding: 1.15rem 1.25rem 1.3rem; }
.pass-count-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .75rem; }
.pass-count { font-family: var(--font-display); font-size: 2rem; font-weight: 800; }
.pass-count .of { color: var(--ink-3); font-size: 1.1rem; font-weight: 700; }
.pass-meta { font-size: .78rem; color: var(--ink-2); font-weight: 600; }
.stamp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; margin-bottom: 1rem; }
.stamp {
  aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed var(--line);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s;
  position: relative;
}
.stamp.filled {
  border: 1.5px solid var(--ink);
  background: var(--amber-600);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.18);
}
.stamp.filled svg { width: 52%; height: 52%; }
.stamp.pop { animation: stampPop .35s cubic-bezier(.2,1.6,.4,1); }
@keyframes stampPop {
  0% { transform: scale(.4) rotate(-14deg); }
  60% { transform: scale(1.18) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.pass-reward {
  font-size: .83rem; font-weight: 700; color: var(--amber-900);
  background: var(--amber-100); border: 1.5px dashed var(--amber-600);
  border-radius: var(--r-md); padding: .5rem .8rem; margin-bottom: 1rem;
  text-align: center;
}
.pass-qr { display: flex; justify-content: center; }
.pass-qr svg { width: 84px; height: 84px; }

/* ===================== MARQUEE ===================== */
.marquee {
  margin-top: clamp(3rem, 7vh, 5rem);
  border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  background: var(--amber-300);
  overflow: hidden; white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track {
  display: inline-block; padding: .65rem 0;
  animation: marquee 65s linear infinite;
}
.marquee span {
  font-family: var(--font-hand); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); margin: 0 1.1rem;
}
.marquee .dot-sep { color: var(--amber-800); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ===================== FOOTER ===================== */
footer.site-footer {
  margin-top: clamp(4.5rem, 10vh, 7rem);
  background: var(--ink); color: #D6D0C8;
  border-top: 1.5px solid var(--ink);
  position: relative; overflow: hidden;
}
.footer-inner {
  max-width: var(--w-max); margin: 0 auto;
  padding: 3.2rem clamp(1.1rem, 4vw, 2rem) 2rem;
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
  position: relative; z-index: 1;
}
.footer-brand .wordmark { font-size: 2rem; color: var(--amber-400); }
.footer-tag { font-size: .88rem; color: #A8A29E; margin-top: .6rem; max-width: 21rem; }
.footer-cols { display: flex; gap: clamp(2rem, 6vw, 4.5rem); flex-wrap: wrap; }
.footer-col h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: #78716C; margin-bottom: .8rem; font-family: var(--font-body); font-weight: 700;
}
.footer-col a { display: block; color: #D6D0C8; text-decoration: none; font-size: .9rem; margin-bottom: .55rem; }
.footer-col a:hover {
  color: var(--amber-300);
  text-decoration: underline wavy var(--amber-600) 1.5px;
  text-underline-offset: 4px;
}
.footer-bottom {
  position: relative; z-index: 1;
  border-top: 1px solid #36312C;
  max-width: var(--w-max); margin: 0 auto;
  padding: 1.1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .8rem; color: #A8A29E;
}
.footer-watermark {
  position: absolute; right: -1rem; bottom: -4.2rem; z-index: 0;
  font-family: var(--font-wordmark);
  font-size: clamp(8rem, 22vw, 16rem);
  color: rgba(217,119,6,.12);
  pointer-events: none; user-select: none; line-height: 1;
}

/* ===================== LEGAL PAGES ===================== */
.legal-layout {
  max-width: var(--w-max); margin: 0 auto;
  padding: clamp(7.5rem, 16vh, 9.5rem) clamp(1.1rem, 4vw, 2rem) 0;
  display: grid; grid-template-columns: 230px 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.legal-toc {
  position: sticky; top: 96px;
  border: 1.5px solid var(--ink); border-radius: var(--r-lg);
  background: var(--card); box-shadow: var(--shadow-pop);
  padding: 1.1rem 1.2rem;
}
.legal-toc h2 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: .7rem; font-family: var(--font-body); }
.legal-toc a { display: block; font-size: .82rem; color: var(--ink-2); text-decoration: none; padding: .22rem 0; }
.legal-toc a:hover { color: var(--amber-700); }
.legal-content h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: .4rem; }
.legal-updated { font-size: .82rem; color: var(--ink-3); margin-bottom: 1.6rem; }
.legal-summary {
  background: var(--amber-100); border: 1.5px dashed var(--amber-700);
  border-radius: var(--r-lg); padding: 1rem 1.25rem;
  font-size: .95rem; margin-bottom: 2.2rem;
}
.legal-content section { margin-bottom: 2.1rem; }
.legal-content h2 + p, .legal-content h2 + ul { margin-top: .6rem; }
.legal-content section > h2 {
  font-size: 1.25rem; font-weight: 700;
  padding-top: .5rem; scroll-margin-top: 100px;
}
.legal-content p { font-size: .95rem; color: var(--ink-2); margin-bottom: .7rem; }
.legal-content ul { padding-left: 1.2rem; margin-bottom: .7rem; }
.legal-content li { font-size: .95rem; color: var(--ink-2); margin-bottom: .35rem; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--amber-700); font-weight: 600; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: .88rem; margin: .8rem 0 1rem; }
.legal-content th, .legal-content td { border: 1.5px solid var(--line); padding: .55rem .7rem; text-align: left; vertical-align: top; color: var(--ink-2); }
.legal-content th { background: var(--paper-2); color: var(--ink); font-weight: 700; }
@media (max-width: 880px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* ===================== MISC ===================== */
.check-li { display: flex; gap: .6rem; align-items: flex-start; }
.check-li svg { width: 18px; height: 18px; flex: none; margin-top: .2rem; stroke: var(--amber-700); }

/* ===================== SCRIBBLE ===================== */
/* Hand-drawn, crossed-out look for "the old way" content.
   Three-level progressive enhancement:
   1. organic border-radius wobble (base fallback)
   2. clip-path: shape() pseudo-element approach
   3. border-shape: shape() — native squiggly border (cleanest, newest) */
.scribble {
  --squiggle-tight: 1.8%;
  --squiggle: 3%;
  --squiggle-wide: 4.8%;
  --shape-corner: 4%;
  position: relative;
  isolation: isolate;
  background: var(--paper-2);
  border: 2px solid var(--ink-2);
  border-radius: 255px 18px 225px 18px / 18px 225px 18px 255px;
  box-shadow: none;
}
@supports (clip-path: shape(from 0% 0%, line to 100% 100%)) {
  .scribble {
    border: none;
    border-radius: 0;
    background: transparent;
  }
  /* ink outline — slightly larger wobbly shape behind */
  .scribble::after {
    content: ""; position: absolute; inset: -4px; z-index: -2;
    background: var(--ink-2);
    clip-path: shape(
      from 1.5% 3%,
      curve to 97% 1% with 25% -2.5% / 60% 4.5%,
      curve to 98.5% 96% with 102.5% 25% / 96.5% 65%,
      curve to 3% 98.5% with 75% 103% / 35% 95.5%,
      curve to 1.5% 3% with -2.5% 70% / 3.5% 30%,
      close
    );
  }
  /* paper fill — its own wobble, offset from the outline */
  .scribble::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: var(--paper-2);
    clip-path: shape(
      from 2% 4%,
      curve to 96.5% 2% with 30% -1.5% / 65% 3.5%,
      curve to 97.5% 95% with 101.5% 30% / 97.5% 60%,
      curve to 4% 97.5% with 70% 102% / 30% 96%,
      curve to 2% 4% with -1.5% 65% / 2.5% 35%,
      close
    );
  }
}
/* border-shape: native wobbly border — overrides clip-path approach where supported */
@supports (border-shape: shape(from 0% 0%, close)) {
  .scribble {
    border: 2.5px solid var(--ink-2);
    background: var(--paper-2);
    border-radius: 0;
    border-shape: shape(
      from var(--shape-corner) calc(0% - var(--squiggle-tight)),
      curve to 27% calc(0% + var(--squiggle-tight)) with 14% calc(0% + var(--squiggle)),
      curve to 54% calc(0% + var(--squiggle)) with 41% calc(0% - var(--squiggle-wide)),
      curve to 79% calc(0% - var(--squiggle-tight)) with 67% calc(0% + var(--squiggle-tight)),
      curve to calc(100% - var(--shape-corner)) calc(0% + var(--squiggle-tight)) with 91% calc(0% + var(--squiggle)),
      curve to calc(100% + var(--squiggle-tight)) var(--shape-corner) with right top,
      curve to calc(100% + var(--squiggle)) 24% with calc(100% - var(--squiggle)) 14%,
      curve to calc(100% + var(--squiggle-wide)) 52% with calc(100% + var(--squiggle-tight)) 38%,
      curve to calc(100% + var(--squiggle-tight)) calc(100% - var(--shape-corner)) with calc(100% + var(--squiggle-wide)) 80%,
      curve to calc(100% - var(--shape-corner)) calc(100% + var(--squiggle-tight)) with right bottom,
      curve to 72% calc(100% - var(--squiggle)) with 87% calc(100% - var(--squiggle-wide)),
      curve to 44% calc(100% + var(--squiggle-tight)) with 58% calc(100% + var(--squiggle)),
      curve to 19% calc(100% - var(--squiggle)) with 31% calc(100% - var(--squiggle-wide)),
      curve to calc(0% - var(--squiggle-tight)) calc(100% - var(--shape-corner)) with 8% calc(100% + var(--squiggle-tight)),
      curve to calc(0% + var(--squiggle)) 70% with left bottom,
      curve to calc(0% - var(--squiggle-tight)) 43% with calc(0% - var(--squiggle)) 56%,
      curve to calc(0% + var(--squiggle)) 18% with calc(0% + var(--squiggle-wide)) 30%,
      curve to var(--shape-corner) calc(0% - var(--squiggle-tight)) with left top,
      close
    );
  }
  .scribble::before, .scribble::after { display: none; }
}

.faq-item {
  border: 1.5px solid var(--ink); border-radius: var(--r-wobble-md);
  background: var(--card); overflow: hidden;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s;
}
.faq-item:hover { transform: rotate(-.25deg); }
.faq-item + .faq-item { margin-top: .8rem; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.45rem; font-weight: 600; color: var(--amber-700);
  transition: transform .2s; flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem 1.15rem; font-size: .92rem; color: var(--ink-2); }
