/* Single-Netzwerk – Sticker-Pop Style
   Keine Webfonts, nur System-Font-Stacks. */

:root {
  --pink:   #ff2e74;
  --pink-d: #d4155a;
  --yellow: #ffd23f;
  --green:  #16c79a;
  --green-l:#2ee6a6;
  --red:    #ff5a5f;
  --ink:    #1a1130;
  --cream:  #ffe9f0;
  --paper:  #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --radius: 22px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(var(--yellow) 2px, transparent 2px),
    radial-gradient(var(--pink) 2px, transparent 2px);
  background-size: 44px 44px;
  background-position: 0 0, 22px 22px;
  background-attachment: fixed;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* ---------- Kopf ---------- */
.app-header {
  width: 100%;
  max-width: 480px;
  padding: 16px 18px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.logo .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1rem;
}

.logo b { color: var(--pink); }

.badge-count {
  margin-left: auto;
  font-weight: 800;
  font-size: 0.78rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
}

/* ---------- Bühne ---------- */
main {
  width: 100%;
  max-width: 480px;
  flex: 1;
  padding: 6px 18px 22px;
  display: flex;
  flex-direction: column;
}

.tagline {
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 2px 0 14px;
  opacity: 0.85;
}

.stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.25;
  max-height: 66vh;
  margin: 0 auto;
}

/* ---------- Karten ---------- */
.card {
  position: absolute;
  inset: 0;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}

.card.leaving { transition: transform .45s cubic-bezier(.4,1.4,.6,1), opacity .45s; }
@media (prefers-reduced-motion: reduce) {
  .card.leaving { transition: opacity .2s; }
}

.card__photo {
  flex: 1 1 auto;
  min-height: 54%;
  position: relative;
  display: grid;
  place-items: center;
  font-size: 6rem;
  border-bottom: 4px solid var(--ink);
}

/* Stapelkarte im Hintergrund: keine Ribbons/Stempel, damit nichts rausragt */
.card[aria-hidden="true"] .card__ribbon,
.card[aria-hidden="true"] .card__match,
.card[aria-hidden="true"] .stamp { display: none; }

.card__ribbon {
  position: absolute;
  top: 14px; left: -34px;
  transform: rotate(-18deg);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 6px 40px;
  text-transform: uppercase;
}

.card__ribbon.hot { background: var(--pink); }

/* Match-Badge oben rechts auf dem Foto (wie bei echten Dating-Apps) */
.card__match {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  font-weight: 900;
  font-size: 0.74rem;
  padding: 5px 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--green-l);
  box-shadow: 2px 2px 0 var(--ink);
}
.card__match.mid { background: var(--yellow); }
.card__match.low { background: #ffd6e5; }

.card__body {
  flex: 0 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 10px 16px 12px;
}

.card__name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}
.card__name .age { font-size: 1rem; font-weight: 700; opacity: 0.7; }
.card__name .verified { font-size: 0.95rem; }

.card__meta {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.7;
}

.card__bio {
  margin-top: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 64px;
  overflow: hidden;
}
.tag {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
}
.tag.g { background: var(--green-l); }
.tag.p { background: #ffd6e5; }

/* Swipe-Overlay-Stempel */
.stamp {
  position: absolute;
  top: 26px;
  font-weight: 900;
  font-size: 2rem;
  padding: 6px 16px;
  border: 5px solid;
  border-radius: 12px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}
.stamp.like  { right: 18px; color: var(--green); border-color: var(--green); transform: rotate(14deg); }
.stamp.nope  { left: 18px;  color: var(--red);   border-color: var(--red);   transform: rotate(-14deg); }

/* ---------- Aktionsleiste ---------- */
.actions {
  margin: 20px auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  min-height: 72px;
}

.act {
  font-family: var(--font);
  cursor: pointer;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease, background .2s;
  color: var(--ink);
}
.act:active { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.act:focus-visible { outline: 4px solid var(--ink); outline-offset: 4px; }

.act svg { width: 48%; height: 48%; }

.act--nope  { width: 62px; height: 62px; background: #fff; }
.act--nope:hover { background: #ffe0e1; }
.act--info  { width: 50px; height: 50px; }
.act--like  { width: 76px; height: 76px; background: var(--green-l); }
.act--like:hover { background: var(--green); }

/* Like wird bei Alex größer und glüht (Scale statisch -> Klickfläche bleibt stabil) */
.act--like.tempt { transform: scale(1.14); animation: glow 1s ease-in-out infinite; }
.act--like.tempt:active { transform: translate(3px, 3px) scale(1.06); }
@keyframes glow {
  0%,100% { box-shadow: var(--shadow); }
  50%     { box-shadow: var(--shadow), 0 0 0 10px rgba(46,230,166,.4); }
}
.act--nope.shy { transition: transform .18s cubic-bezier(.34,1.56,.64,1); }
@media (prefers-reduced-motion: reduce) {
  .act--like.tempt { animation: none; }
  .act--nope.shy { transition: none !important; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 60;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
  max-width: 88vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); }
@media (prefers-reduced-motion: reduce) { .toast { transition: opacity .2s; } }

/* ---------- Match-Overlay ---------- */
.overlay {
  position: fixed; inset: 0;
  background: rgba(26,17,48,0.92);
  display: none;
  place-items: center;
  z-index: 100;
  padding: 24px;
  text-align: center;
}
.overlay.show { display: grid; }

.match-card {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 28px 24px 26px;
  max-width: 360px;
  width: 100%;
  animation: pop .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .match-card { animation: none; } }

.match-card .big {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1px var(--ink);
}
.match-card .avatars { font-size: 3.2rem; margin: 10px 0 4px; }
.match-card p { font-weight: 600; margin: 8px 0 18px; }

.btn {
  font-family: var(--font);
  font-weight: 800;
  cursor: pointer;
  border: 4px solid var(--ink);
  border-radius: 14px;
  padding: 12px 18px;
  background: var(--yellow);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .12s, box-shadow .12s;
  width: 100%;
  font-size: 1rem;
}
.btn:active { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--ink); }
.btn:focus-visible { outline: 4px solid #fff; outline-offset: 3px; }
.btn.secondary { background: var(--paper); margin-top: 10px; }

/* Konfetti */
#fx {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 110;
}
.confetti {
  position: absolute;
  top: -20px;
  width: 12px; height: 16px;
  pointer-events: none;
  border: 2px solid var(--ink);
}

/* ---------- Fuß ---------- */
.app-footer {
  width: 100%;
  max-width: 480px;
  padding: 4px 18px 20px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.75;
}
.app-footer a { color: var(--pink-d); text-decoration: underline; text-underline-offset: 2px; font-weight: 800; }
.app-footer a:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* Install-Hinweis */
.install {
  display: none;
  width: 100%; max-width: 480px;
  margin: 0 auto 8px;
  padding: 10px 18px;
}
.install.show { display: block; }
.install button {
  width: 100%;
  font-family: var(--font);
  font-weight: 800;
  cursor: pointer;
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 11px;
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow);
}
.install button:active { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--ink); }

/* visually hidden für Screenreader */
.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;
}

@media (max-width: 380px) {
  .card__photo { font-size: 4.6rem; }
  .card__name { font-size: 1.3rem; }
}

/* ================= Bild-Profile ================= */
.card__photo { overflow: hidden; }
.card__emoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 6rem;
  z-index: 0;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.card__ribbon { z-index: 3; }
.stamp { z-index: 3; }
@media (max-width: 380px) { .card__emoji { font-size: 4.6rem; } }

/* ================= Konto-Button im Header ================= */
.account-btn {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}
.account-btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.account-btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.account-btn svg { width: 60%; height: 60%; }

/* ================= Screens (Auth / Konto) ================= */
.screen {
  position: fixed; inset: 0;
  background: rgba(26,17,48,0.55);
  backdrop-filter: blur(3px);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 20px;
}
.screen.show { display: grid; }

.screen__card {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 26px 22px 22px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  max-height: 92dvh;
  overflow-y: auto;
}
.screen__logo { font-size: 3rem; line-height: 1; }
.screen__title { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; margin-top: 6px; }
.screen__sub { font-weight: 600; opacity: 0.8; margin: 6px 0 16px; }

.field { display: block; text-align: left; margin-bottom: 12px; }
.field span { display: block; font-weight: 800; font-size: 0.85rem; margin-bottom: 5px; }
.field input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.field input:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }
.field-err { color: var(--pink-d); font-weight: 800; font-size: 0.85rem; min-height: 1.1em; margin-bottom: 8px; text-align: left; }

.privacy-note {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  background: #fff6fa;
  border: 2.5px dashed var(--ink);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 14px;
  text-align: left;
}
.privacy-note a { color: var(--pink-d); font-weight: 800; }

.acc-row { font-weight: 600; margin: 6px 0; }
.acc-row strong { font-weight: 900; }
.acc-mail { font-size: 0.9rem; opacity: 0.8; word-break: break-all; }

.btn.danger { background: var(--red); color: #fff; }

/* ================= Rechtslinks im Footer ================= */
.legal-links { margin-top: 8px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; align-items: center; }
.legal-links a { color: var(--pink-d); text-decoration: underline; text-underline-offset: 2px; font-weight: 800; }
.legal-links a:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* Buttons in Screens: Abstand */
.screen__card .btn + .btn { margin-top: 10px; }

/* ================= Rechtsseiten (Impressum/Datenschutz) ================= */
.doc {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 40px;
}
.doc .back {
  display: inline-block;
  font-weight: 800;
  color: var(--pink-d);
  text-decoration: none;
  border: 3px solid var(--ink);
  background: var(--paper);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 18px;
}
.doc .back:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.doc-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 26px 24px;
}
.doc-card h1 { font-size: 1.7rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 4px; }
.doc-card h2 { font-size: 1.15rem; font-weight: 900; margin: 22px 0 6px; }
.doc-card h3 { font-size: 1rem; font-weight: 800; margin: 16px 0 4px; }
.doc-card p, .doc-card li { font-weight: 500; line-height: 1.55; margin-bottom: 8px; }
.doc-card ul { padding-left: 20px; margin-bottom: 8px; }
.doc-card a { color: var(--pink-d); font-weight: 700; text-underline-offset: 2px; }
.doc-card .muted { font-size: 0.85rem; opacity: 0.75; }
.doc-card address { font-style: normal; font-weight: 600; }

/* Kompatibilitäts-Zeile im Match-Overlay */
.compat {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--green);
  margin: 2px 0 4px;
  -webkit-text-stroke: 0.5px var(--ink);
}

/* ================= Fake-Online-Zähler ================= */
:root { --blue: #5aa9ff; }
.online {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
}
.online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); border: 1.5px solid var(--ink);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@media (prefers-reduced-motion: reduce){ .online-dot{animation:none} }
.account-btn { margin-left: 8px; }
.account-btn[hidden] { display: none; }
@media (max-width: 380px){ .online{ font-size: 0.68rem; padding: 4px 8px; } }

/* ================= Aktionsleiste: 4 Buttons + Super-Like ================= */
.actions { gap: 12px; }
.act--nope  { width: 58px; height: 58px; }
.act--info  { width: 46px; height: 46px; }
.act--super { width: 52px; height: 52px; background: var(--blue); }
.act--super:hover { background: #3d93f5; }
.act--like  { width: 70px; height: 70px; }
.act--super.super-tempt { animation: glow-blue 1s ease-in-out infinite; }
@keyframes glow-blue {
  0%,100% { box-shadow: var(--shadow); }
  50%     { box-shadow: var(--shadow), 0 0 0 8px rgba(90,169,255,.4); }
}
@media (prefers-reduced-motion: reduce){ .act--super.super-tempt{animation:none} }

/* ================= Melden-Button auf der Karte ================= */
.card__report {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.card__report:active { transform: translate(2px,2px); box-shadow: none; }
.card__report:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.card[aria-hidden="true"] .card__report { display: none; }

/* ================= Ladescreen ================= */
.loader {
  position: fixed; inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: var(--cream);
  background-image:
    radial-gradient(var(--yellow) 2px, transparent 2px),
    radial-gradient(var(--pink) 2px, transparent 2px);
  background-size: 44px 44px;
  background-position: 0 0, 22px 22px;
  text-align: center;
  padding: 24px;
}
.loader.show { display: grid; }
.loader__inner { max-width: 320px; width: 100%; }
.loader__heart { font-size: 4rem; animation: beat 0.9s ease-in-out infinite; }
@keyframes beat { 0%,100%{transform:scale(1)} 50%{transform:scale(1.18)} }
@media (prefers-reduced-motion: reduce){ .loader__heart{animation:none} }
.loader__text { font-weight: 800; font-size: 1.05rem; margin: 14px 0 16px; }
.loader__bar {
  height: 20px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--pink);
  transition: width .2s linear;
}

/* ================= Ex-Anruf ================= */
.call {
  position: fixed; inset: 0;
  z-index: 115;
  display: none;
  place-items: center;
  background: rgba(26,17,48,0.96);
  padding: 24px;
  text-align: center;
}
.call.show { display: grid; }
.call__inner { color: #fff; max-width: 320px; }
.call__label { font-weight: 700; opacity: .7; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }
.call__avatar {
  font-size: 5rem; margin: 16px 0 8px;
  animation: shake 1.2s ease-in-out infinite;
}
@keyframes shake { 0%,100%{transform:rotate(-4deg)} 50%{transform:rotate(4deg)} }
@media (prefers-reduced-motion: reduce){ .call__avatar{animation:none} }
.call__name { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.02em; }
.call__sub { opacity: .75; font-weight: 600; margin-top: 4px; }
.call__actions { display: flex; justify-content: center; gap: 60px; margin-top: 34px; }
.call-btn {
  width: 66px; height: 66px; border-radius: 50%;
  border: 4px solid var(--ink);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow);
}
.call-btn svg { width: 46%; height: 46%; }
.call-btn.decline { background: var(--red); }
.call-btn.accept { background: var(--green); animation: ring 0.9s ease-in-out infinite; }
@keyframes ring {
  0%,100% { box-shadow: var(--shadow); }
  50%     { box-shadow: var(--shadow), 0 0 0 8px rgba(46,230,166,.45); }
}
@media (prefers-reduced-motion: reduce){ .call-btn.accept{animation:none} }
.call-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.call-btn:focus-visible { outline: 4px solid #fff; outline-offset: 3px; }

/* ================= Easter Egg ================= */
.egg {
  position: fixed; inset: 0;
  z-index: 118;
  display: none;
  place-items: center;
  background: rgba(26,17,48,0.88);
  padding: 24px;
}
.egg.show { display: grid; }
.egg__card {
  background: var(--paper);
  border: 5px solid var(--ink);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 24px 22px;
  max-width: 360px; width: 100%;
  text-align: center;
  animation: pop .4s cubic-bezier(.34,1.56,.64,1);
}
@media (prefers-reduced-motion: reduce){ .egg__card{animation:none} }
.egg__from { font-size: 3rem; }
.egg__title { font-size: 1.2rem; font-weight: 900; margin: 4px 0 12px; }
.egg__bubble {
  background: var(--green-l);
  border: 3px solid var(--ink);
  border-radius: 18px 18px 18px 4px;
  padding: 14px 16px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  margin-bottom: 16px;
}

/* ================= Match-Kontakt ================= */
.match-card { max-height: 92dvh; overflow-y: auto; }
.match-contact { display: flex; flex-direction: column; gap: 10px; margin: 2px 0 16px; }
.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  font-family: inherit; font-weight: 800; font-size: 1rem;
  color: var(--ink); text-decoration: none;
  padding: 13px 16px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.contact-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.contact-btn.wa   { background: var(--green-l); }
.contact-btn.mail { background: var(--blue); }
.contact-btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.contact-btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.contact-fallback { font-size: .82rem; font-weight: 600; margin: 2px 0 0; }
.contact-fallback a { color: var(--ink); font-weight: 800; text-decoration: underline; }
