/* ============================================================
   Lingo Lab English — playful sticker-collage aesthetic
   Palette drawn from the Instagram flyer: cream paper, sky blue,
   bubblegum pink, butter yellow, deep indigo ink.
   ============================================================ */

:root {
  --cream: #f6f3ea;
  --paper: #fffdf6;
  --ink: #2c2a6b;
  --blue: #5b9fe3;
  --blue-deep: #2f6cb8;
  --sky: #c6def5;
  --pink: #f7b8c6;
  --pink-soft: #fbd7de;
  --butter: #f6e9bd;
  --yellow: #f2ce56;
  --wa: #1a7f37;

  --border: 2.5px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 18px;
  --page: 1040px; /* header + hero share one content width */

  --font-display: "Anton", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-hand: "Caveat", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image: radial-gradient(rgba(44, 42, 107, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

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

h1, h2, h3 { line-height: 1.15; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--wa); color: #fff; }
.btn-ghost { background: var(--butter); }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn-big { font-size: 1.15rem; padding: 1rem 2rem; }

.link-btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 800;
  color: var(--blue-deep);
  text-decoration: underline wavy var(--pink);
  text-underline-offset: 4px;
  cursor: pointer;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(246, 243, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: var(--border);
}

/* content aligns with the hero (1200px) instead of flying to the screen edges */
.header-inner {
  max-width: var(--page);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

/* nav sits with the brand; the auto margin pushes the CTA right — one gap, not two */
.site-nav { margin-inline-end: auto; }

.brand { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--blue-deep);
  -webkit-text-stroke: 0.5px var(--ink);
}
.brand-mark.light { color: var(--sky); font-size: 1.4rem; }
.brand-chip {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.7rem;
  /* explicit — inheriting cream from the footer made this unreadable */
  color: var(--ink);
  letter-spacing: 0.08em;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  transform: rotate(-4deg);
}

.site-nav { display: flex; gap: clamp(0.75rem, 2vw, 1.75rem); }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* tap target */
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--pink); }

@media (max-width: 640px) {
  .site-nav { display: none; }
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vh, 3rem) clamp(1rem, 5vw, 4rem) clamp(1.5rem, 4vh, 3rem);
  max-width: var(--page);
  margin: 0 auto;
}

.pin-note {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  background: var(--paper);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  transform: rotate(-2deg);
  margin-bottom: 0.9rem;
  animation: drop-in 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: grid;
}
.hero-title .line { display: block; animation: rise-in 0.7s ease both; }
.hero-title .line-1 { color: var(--blue); -webkit-text-stroke: 1.5px var(--ink); animation-delay: 0.05s; }
.hero-title .line-2 {
  color: var(--ink);
  animation-delay: 0.18s;
}
.hero-title .line-3 { color: var(--blue-deep); font-size: 0.62em; animation-delay: 0.3s; }
.hero-title em {
  font-style: normal;
  background: var(--pink);
  border-radius: 10px;
  padding: 0 0.15em;
  box-decoration-break: clone;
}

.hero-sub {
  margin-top: 0.9rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 34rem;
  animation: rise-in 0.7s 0.42s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
  animation: rise-in 0.7s 0.55s ease both;
}

.hero-note {
  margin-top: 0.85rem;
  animation: rise-in 0.7s 0.68s ease both;
}

.handwritten {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--blue-deep);
  transform: rotate(-1.5deg);
  display: inline-block;
}

/* hero collage — a deliberately stacked chat collage: one rhythm, alternating
   tilts, pieces tucked into each other. Flow layout (not absolute positions)
   so nothing drifts and the hero height stays predictable. */
.hero-visual { display: flex; align-items: center; }

.collage {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.collage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sticker {
  border: var(--border);
  box-shadow: var(--shadow);
  background: var(--paper);
  border-radius: var(--radius);
  animation: drop-in 0.7s ease both;
}

.sticker-mascot {
  position: relative;
  flex: none;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--sky);
  display: grid;
  place-items: center;
  transform: rotate(4deg);
  animation-delay: 0.2s;
}
.mascot-img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  /* the art has its own edge — no border/shadow, it sits on the sky disc */
  display: block;
}
.mascot-tag {
  position: absolute;
  bottom: -12px;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0 0.7rem;
  transform: rotate(-5deg);
}

.bubble {
  position: relative;
  padding: 0.8rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  /* narrower than the column on purpose: the leftover width is what makes the
     left/right alternation readable. Full-width bubbles just look like slabs. */
  max-width: 78%;
}
/* student speaks from the left, mentor answers from the right. They overlap
   only slightly, and later messages sit on top — like a real thread. */
.bubble-student {
  align-self: flex-start;
  background: var(--paper);
  border-bottom-left-radius: 4px;
  transform: rotate(-1.5deg);
  animation-delay: 0.4s;
}
.bubble-mentor {
  align-self: flex-end;
  margin-top: -0.5rem;
  background: var(--pink);
  border-bottom-right-radius: 4px;
  transform: rotate(1.5deg);
  animation-delay: 0.6s;
}

.sticker-word {
  font-family: var(--font-display);
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.w-1 { background: var(--butter); transform: rotate(-6deg); animation-delay: 0.5s; }
.w-2 {
  align-self: flex-start;
  margin-left: 1.25rem;
  background: var(--sky);
  font-family: var(--font-hand);
  font-size: 1.35rem;
  transform: rotate(-3deg);
  animation-delay: 0.7s;
}

.doodle path { fill: var(--yellow); stroke: var(--ink); stroke-width: 2; }
/* tucked into the mentor bubble's corner, not floating in empty space */
/* underlines the last chip, aligned to it */
.doodle-squiggle {
  align-self: flex-start;
  margin-left: 2.75rem;
  margin-top: -0.3rem;
  width: 120px;
  height: 24px;
}
.doodle-squiggle path { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 0.5rem; }
}

/* landscape phones: the collage is decorative and would push the CTA two
   screens down, so drop it and keep the headline + buttons in view */
@media (max-height: 520px) and (orientation: landscape) {
  .hero-visual { display: none; }
  .hero { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  /* size to the short axis so the buttons stay above the fold */
  .hero-title { font-size: clamp(1.6rem, 7vh, 2.4rem); }
  .hero-sub { font-size: 0.95rem; margin-top: 0.5rem; }
  .pin-note { margin-bottom: 0.5rem; }
  .hero-actions { margin-top: 0.75rem; }
  .hero-note { margin-top: 0.5rem; font-size: 1.15rem; }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--blue-deep);
  padding: 0.6rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-x 22s linear infinite;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.08em;
}

/* ---------- sections ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}
.section-tinted {
  max-width: none;
  background: var(--paper);
  border-top: var(--border);
  border-bottom: var(--border);
}
.section-tinted > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
}
.hl-blue { color: var(--blue); -webkit-text-stroke: 1px var(--ink); }
.hl-pink { color: var(--pink); -webkit-text-stroke: 1px var(--ink); }
.section-sub { margin-top: 0.6rem; font-size: 1.05rem; }

/* benefit cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.card {
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.4rem;
  transition: transform 0.2s ease;
}
.card:nth-child(odd) { transform: rotate(-0.8deg); }
.card:nth-child(even) { transform: rotate(0.8deg); }
.card:hover { transform: rotate(0deg) translateY(-6px); }
.card-icon { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; }
.card p { font-size: 0.95rem; }
.card-sky { background: var(--sky); }
.card-pink { background: var(--pink-soft); }
.card-butter { background: var(--butter); }
.card-white { background: var(--paper); }

/* skills */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.skill {
  border: var(--border);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  padding: 1.4rem 1rem;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.skill:hover { transform: translateY(-5px) rotate(-1deg); background: var(--butter); }
.skill-big { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.05em; color: var(--blue-deep); }
.skill-small { font-size: 0.9rem; }

/* pricing */
.price-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--paper);
  border: var(--border);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transform: rotate(-0.6deg);
}
.price-label {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 1.1rem;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-block;
  padding: 0.25rem 1.1rem;
  transform: rotate(1.5deg);
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 5.5rem);
  color: var(--blue);
  -webkit-text-stroke: 1.5px var(--ink);
  margin: 0.75rem 0 0.25rem;
  line-height: 1;
}
.price-value .currency { font-size: 0.35em; vertical-align: super; -webkit-text-stroke: 0.8px var(--ink); }
.price-value .per {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  -webkit-text-stroke: 0;
  margin-top: 0.4rem;
}
.price-includes {
  list-style: none;
  text-align: left;
  margin: 1.5rem auto;
  max-width: 320px;
  display: grid;
  gap: 0.5rem;
  font-weight: 500;
}
.price-note { margin-top: 1rem; }

/* steps */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  counter-reset: step;
  text-align: left;
}
.step {
  position: relative;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.4rem 1.4rem;
}
.step-num {
  position: absolute;
  top: -18px;
  left: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-6deg);
}
.step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.9rem;
  text-align: left;
}
.faq-list details {
  border: var(--border);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
}
.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  min-height: 44px; /* tap target */
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-deep);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 0.6rem; font-size: 0.95rem; }

/* final CTA */
.final-cta { padding-bottom: clamp(4rem, 8vw, 6rem); }
.final-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  /* bottom padding clears the fixed chat button */
  padding: 2.5rem 1rem 6rem;
  border-top: var(--border);
}
.footer-brand { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: none;
}
.social-icon--mail { font-size: 1.05rem; line-height: 1; display: grid; place-items: center; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px; /* tap target */
  padding: 0 0.25rem;
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}
.footer-links a:hover { color: var(--yellow); }
.footer-note { font-size: 0.85rem; opacity: 0.75; }

/* ---------- Lingo chat widget ---------- */
.chat-fab[hidden] { display: none; }

.chat-fab {
  position: fixed;
  right: clamp(0.9rem, 3vw, 1.75rem);
  bottom: clamp(0.9rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  background: var(--yellow);
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  animation: bob 3.5s ease-in-out infinite;
}
.chat-fab:hover { animation-play-state: paused; transform: scale(1.05); }
.chat-fab-emoji {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  display: block;
}

/* mascot at text size, inside a button label */
.lingo-icon {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  flex: none;
}

.chat-panel[hidden] { display: none; }

.chat-panel {
  position: fixed;
  right: clamp(0.6rem, 3vw, 1.75rem);
  bottom: clamp(0.6rem, 3vw, 1.75rem);
  z-index: 100;
  width: min(380px, calc(100vw - 1.2rem));
  height: min(560px, calc(100dvh - 2rem));
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: var(--border);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  animation: pop-up 0.25s ease both;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  background: var(--blue-deep);
  border-bottom: var(--border);
  color: var(--paper);
}
.chat-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.chat-avatar img { width: 32px; height: 32px; object-fit: contain; }
.chat-headline { display: grid; line-height: 1.25; }
.chat-headline strong { font-size: 1.05rem; }
.chat-headline small { font-size: 0.75rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #6ee7a0; border: 1px solid var(--ink); display: inline-block; }
.chat-close {
  margin-left: auto;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
}

.chat-demo-banner {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  background: var(--butter);
  border-bottom: 2px solid var(--ink);
  padding: 0.35rem 0.75rem;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-size: 0.92rem;
  animation: pop-up 0.2s ease both;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.msg-bot { align-self: flex-start; background: var(--paper); border-bottom-left-radius: 4px; }
.msg-user { align-self: flex-end; background: var(--sky); border-bottom-right-radius: 4px; }
.msg-typing { font-family: var(--font-hand); font-size: 1.1rem; color: var(--blue-deep); }

.chat-chips[hidden] { display: none; }

.chat-chips {
  display: flex;
  gap: 0.45rem;
  padding: 0 1rem 0.6rem;
  flex-wrap: wrap;
}
.chat-chips button {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
}
.chat-chips button:hover { background: var(--yellow); }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: var(--border);
  background: var(--paper);
}
#chat-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
}
#chat-input:focus { outline: 3px solid var(--yellow); outline-offset: 1px; }
.chat-send {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.chat-send:active { transform: translate(2px, 2px); box-shadow: none; }

@media (max-width: 480px) {
  .chat-fab-label { display: none; }
  .chat-fab { padding: 0.8rem; }
}

/* landscape phones: give the transcript the room the chips were eating */
@media (max-height: 480px) {
  .chat-chips { display: none; }
}

/* ---------- animations ---------- */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-16px) rotate(0deg); }
}
@keyframes pop-up {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

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

/* accessible focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 2px;
}
