/* ============================================================
   PostBear.app — Playful illustrated SaaS landing
   Shared stylesheet for EN + PL, landing + legal pages
   Inspiration: Nachotopia (chunky, hand-drawn, bright)
   ============================================================ */

/* Fonts loaded via <link rel="stylesheet"> in HTML head for non-blocking parse */

/* ─── Tokens ─── */
:root {
  /* UI palette — only 5 colors used in CSS, illustrations have more */
  --bg: #FEFCF8;
  --surface: #F4F2ED;
  --ink: #1F1B16;
  --ink-soft: #6B5E4D;
  --accent-purple: #B79CFF;
  --accent-coral: #FF8A4C;
  --accent-coral-deep: #C44A14;
  --accent-yellow: #FFD84D;

  /* Outline + shadows */
  --outline: var(--ink);
  --outline-w: 2.5px;
  --shadow-card: 6px 6px 0 var(--ink);
  --shadow-card-hover: 9px 9px 0 var(--ink);
  --shadow-soft: 0 8px 32px rgba(31, 27, 22, 0.08);

  /* Radii */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1140px;
  --gutter: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, picture { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: 5rem 0;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent-yellow);
  padding: 0.4rem 0.9rem;
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 32em;
  margin: 0 auto;
  text-wrap: balance;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-primary {
  background: var(--accent-coral);
  color: var(--ink);
}

.btn-secondary {
  background: var(--bg);
}

/* ─── Nav ─── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: var(--outline-w) solid var(--ink);
  padding: 1rem 0;
}

nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  line-height: 1;
}

.logo-bear {
  width: 56px;
  height: 56px;
  display: block;
  flex-shrink: 0;
}

nav.site-nav ul {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav.site-nav ul a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}

nav.site-nav ul a:hover {
  color: var(--accent-coral-deep);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  min-block-size: 44px;
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--ink);
}

.lang-toggle .lang-active { color: var(--accent-coral-deep); }
.lang-toggle .lang-sep { opacity: 0.4; }

/* ─── Mobile nav (hamburger) ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  background: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-sm);
  cursor: pointer;
  order: 3;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 900px) {
  nav.site-nav ul { display: flex; }
  .nav-toggle { display: none; }
}

@media (max-width: 899px) {
  nav.site-nav { position: sticky; }
  nav.site-nav .container { position: relative; }
  nav.site-nav ul {
    display: none;
    position: absolute;
    top: calc(100% + 2.5px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
    background: var(--bg);
    border-bottom: var(--outline-w) solid var(--ink);
    box-shadow: var(--shadow-soft);
  }
  nav.site-nav ul[data-open="true"] { display: flex; }
  nav.site-nav ul li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(31, 27, 22, 0.1);
    width: 100%;
  }
  nav.site-nav ul li:last-child { border-bottom: none; }
  nav.site-nav ul a {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
  }
}

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
  position: relative;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-coral-deep);
}

.hero .lead {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-illustration {
  max-width: 640px;
  margin: 0 auto;
}

.hero-illustration img {
  width: 100%;
  height: auto;
}

/* ─── Value-prop sentence ─── */
.value-prop {
  text-align: center;
  padding: 3rem 0 2rem;
}

.value-prop p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  max-width: 22em;
  margin: 0 auto;
}

.value-prop svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.18em;
  color: var(--accent-coral-deep);
  margin: 0 0.1em;
}

/* ─── Tilted feature cards (3) ─── */
.feature-cards {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow-x: hidden;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.feature-card {
  background: var(--accent-purple);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card--coral { background: var(--accent-coral); }
.feature-card--yellow { background: var(--accent-yellow); }

.feature-card-illustration {
  width: 256px;
  height: 256px;
  margin: 0 auto 1rem;
}

.feature-card-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .feature-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card--tilt-l { transform: rotate(-2deg); }
  .feature-card--tilt-l:hover { transform: rotate(-2deg) translate(-3px, -3px); }
  .feature-card--tilt-r { transform: rotate(2deg); }
  .feature-card--tilt-r:hover { transform: rotate(2deg) translate(-3px, -3px); }
}

/* ─── Services grid (6 cards) ─── */
.services {
  padding: 5rem 0;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header p {
  margin-top: 1rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-card-hover);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  color: var(--ink);
}

.service-card:nth-child(2) .service-icon { background: var(--accent-coral); }
.service-card:nth-child(3) .service-icon { background: var(--accent-purple); }
.service-card:nth-child(4) .service-icon { background: var(--accent-yellow); }
.service-card:nth-child(5) .service-icon { background: var(--accent-coral); }
.service-card:nth-child(6) .service-icon { background: var(--accent-purple); }

.service-icon svg { width: 32px; height: 32px; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Split section ─── */
.split {
  padding: 5rem 0;
  background: var(--surface);
  border-top: var(--outline-w) solid var(--ink);
  border-bottom: var(--outline-w) solid var(--ink);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.split-content h2 { margin-bottom: 1.25rem; }
.split-content p { margin-bottom: 1.5rem; }

.split-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.split-content li {
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--ink);
}

.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.split-illustration {
  background: var(--accent-purple);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.split-illustration img { width: 100%; height: auto; }

@media (min-width: 900px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ─── Wide banner (alpha invite) ─── */
.banner {
  padding: 5rem 0;
}

.banner-inner {
  background: var(--accent-coral);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.banner-content h2 { margin-bottom: 1rem; color: var(--ink); }
.banner-content .eyebrow { background: var(--bg); }
.banner-content p { color: var(--ink); }

.banner-illustration img { width: 100%; max-width: 440px; height: auto; }

@media (min-width: 768px) {
  .banner-inner { grid-template-columns: 1.5fr 1fr; }
}

/* ─── Pricing ─── */
.pricing {
  padding: 5rem 0;
  background: var(--surface);
  border-top: var(--outline-w) solid var(--ink);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-banner {
  background: var(--accent-yellow);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.price-card--featured {
  background: var(--accent-purple);
  position: relative;
}

.badge-popular {
  display: inline-block;
  background: var(--accent-yellow);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0.5rem 0 0.25rem;
}

.price-card .price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-card .audience {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.price-card li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.price-card li::before {
  content: '✓ ';
  color: var(--accent-coral-deep);
  font-weight: 700;
}

.price-card--featured .audience { color: var(--ink); }
.price-card--featured li::before { color: var(--ink); }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 1.5rem auto 0;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── FAQ ─── */
.faq {
  padding: 5rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-category {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: var(--ink);
}

.faq-list details {
  background: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.faq-list details[open] {
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

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

.faq-list summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-coral-deep);
  transition: transform 0.2s;
}

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

.faq-list details > p {
  padding: 0 1.5rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 5rem 0;
  background: var(--surface);
  border-top: var(--outline-w) solid var(--ink);
  border-bottom: var(--outline-w) solid var(--ink);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.testimonial-card .stars {
  color: var(--accent-coral-deep);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Wordmark section ─── */
.wordmark-section {
  padding: 6rem 0 4rem;
  text-align: center;
  overflow-x: hidden;
}

.wordmark-section h2 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.wordmark-section h2 em {
  font-style: normal;
  color: var(--accent-coral-deep);
}

.wordmark-bear {
  width: 160px;
  height: 160px;
  display: block;
  margin: 1.5rem auto 0;
}

/* ─── Footer ─── */
footer.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 0 2rem;
}

footer.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

footer.site-footer ul {
  list-style: none;
}

footer.site-footer li { padding: 0.25rem 0; }

footer.site-footer a {
  color: var(--bg);
  font-size: 0.95rem;
  opacity: 0.85;
}

footer.site-footer a:hover {
  opacity: 1;
  color: var(--accent-coral);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-contact p {
  color: rgba(254, 252, 248, 0.85);
  margin-bottom: 1rem;
}

.footer-contact .email {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 252, 248, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(254, 252, 248, 0.6);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ─── Legal pages (privacy, terms) ─── */
.legal {
  padding: 5rem 0;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal .updated {
  display: inline-block;
  background: var(--accent-yellow);
  border: 2px solid var(--ink);
  border-radius: var(--r-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
}

.legal p, .legal ul, .legal ol {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.legal ul, .legal ol {
  padding-left: 1.5rem;
}

.legal li { margin-bottom: 0.4rem; }

.legal strong {
  color: var(--ink);
  font-weight: 700;
}

.legal a {
  color: var(--accent-coral-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ─── Animations (subtle, mobile-friendly) ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero .lead, .hero-ctas { animation: fadeUp 0.7s ease-out both; }
.hero .lead { animation-delay: 0.1s; }
.hero-ctas { animation-delay: 0.2s; }
.hero-illustration { animation: fadeUp 0.8s ease-out 0.3s both; }

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

/* ─── Skip to content (a11y) — visually-hidden until focused ─── */
.skip-link {
  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:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.85rem 1.4rem;
  background: var(--ink);
  color: var(--bg);
  border: var(--outline-w) solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 1000;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
}

/* ─── Focus rings (a11y) ─── */
:focus { outline: none; }

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}

.btn:focus-visible,
.lang-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* ─── Mailto fallback line ─── */
.btn-fallback {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  text-align: center;
}

.btn-fallback a {
  color: var(--accent-coral-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* ─── Inline bear glyph (replaces 🐻 emoji in body copy) ─── */
.inline-bear {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  vertical-align: -0.35em;
  margin: 0 0.1em;
}
