/* Blaque Arts Tattoo - "Stencil" theme
   stencil paper #f1ece0 / wash #e3d9c2 / ink #17151a / stencil violet #5b3fa8 */

:root {
  --paper: #f1ece0;
  --wash: #e3d9c2;
  --ink: #17151a;
  --violet: #5b3fa8;
  --violet-deep: #462e88;
  --ink-soft: rgba(23, 21, 26, 0.72);
  --ink-faint: rgba(23, 21, 26, 0.14);
  --paper-soft: rgba(241, 236, 224, 0.78);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.75vw, 1.6rem);
  --step-2: clamp(1.6rem, 1.3rem + 1.5vw, 2.3rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-4: clamp(2.4rem, 1.7rem + 3.5vw, 3.75rem);
  --step-6: clamp(3rem, 1.8rem + 6vw, 6rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--violet); color: var(--paper); }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }

/* ---------- typography ---------- */

h1, h2, h3, .brand-word, .footer-brand, .cta-title {
  font-family: "Grenze Gotisch", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; max-width: 68ch; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--violet-deep);
  margin-bottom: 1.25rem;
  max-width: none;
}

.eyebrow-light { color: var(--wash); }

.section-title { font-size: var(--step-4); margin-bottom: 1.25rem; }
.title-light { color: var(--paper); }

.accent-word {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--violet);
  letter-spacing: 0;
}
.accent-word-light {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--wash);
  letter-spacing: 0;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(241, 236, 224, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-faint);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand-word { font-size: 1.5rem; }
.brand-word em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--violet); }

.site-nav { display: flex; gap: 1.75rem; }
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.18s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--ink); }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.header-call:hover {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.9rem;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--violet);
  color: var(--paper);
  box-shadow: 0 6px 24px rgba(91, 63, 168, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(91, 63, 168, 0.38); }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease);
}
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-3px); }

.btn-paper { background: var(--paper); color: var(--violet-deep); }
.btn-paper:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }

.btn-outline-paper { background: transparent; color: var(--paper); border-color: rgba(241,236,224,0.7); }
.btn-outline-paper:hover { border-color: var(--paper); background: rgba(241,236,224,0.12); transform: translateY(-3px); }

/* ---------- hero ---------- */

.hero {
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 12% 8%, rgba(91, 63, 168, 0.10), transparent 62%),
    radial-gradient(44rem 28rem at 88% 90%, rgba(227, 217, 194, 0.9), transparent 60%),
    var(--paper);
}

.grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
  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='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(3.5rem, 6vw, 5rem);
}

.hero-title {
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.mask { display: block; overflow: hidden; padding-bottom: 0.06em; }
.mask > span { display: block; }

.hero-sub {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  max-width: 52ch;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-faint);
  max-width: none;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.trust-row strong { color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }
.trust-row-light { border-top-color: rgba(241,236,224,0.25); }
.trust-row-light li { color: var(--paper-soft); }
.trust-row-light strong { color: var(--paper); }

/* stencil sheet visual */

.hero-visual { position: relative; }

.stencil-sheet {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  border-radius: 4px;
  padding: 2.2rem 1.5rem 1.5rem;
  box-shadow: 12px 14px 0 var(--wash), 12px 14px 0 1px var(--ink-faint), 0 30px 60px rgba(23,21,26,0.10);
  transform: rotate(1.6deg);
  transition: transform 0.35s var(--ease);
}
.hero-visual:hover .stencil-sheet { transform: rotate(0deg) translateY(-6px); }

.sheet-tag {
  position: absolute;
  top: -0.9rem; left: 1.5rem;
  background: var(--violet);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

.sheet-art { width: 100%; height: auto; }
.sheet-art .draw {
  fill: none;
  stroke: var(--violet);
  stroke-width: 3;
  stroke-linecap: round;
}

.sheet-corner { position: absolute; width: 18px; height: 18px; border: 2px solid var(--ink); opacity: 0.35; }
.sheet-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.sheet-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.sheet-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.sheet-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.sheet-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: none;
}

.scroll-hint {
  position: absolute;
  bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: none;
}
.scroll-hint::after {
  content: "";
  display: block;
  width: 1px; height: 2.2rem;
  background: var(--violet);
  margin: 0.5rem auto 0;
}

/* ---------- stencil draw dividers (transition 1) ---------- */

.draw-divider { padding: 0; line-height: 0; }
.divider-line { width: 100%; height: 90px; }
.divider-line .draw {
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* draw-on animation handled in JS by toggling stroke-dashoffset */

/* ---------- about ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.about-text p { margin-bottom: 1.25rem; color: var(--ink-soft); }
.about-text p:first-child { color: var(--ink); font-size: 1.1rem; }
.about-copy .btn { margin-top: 0.75rem; }

.ledger-card {
  background: var(--wash);
  border: 1px solid var(--ink-faint);
  border-radius: 4px;
  padding: 2rem 2rem 1.6rem;
  box-shadow: 0 24px 50px rgba(23,21,26,0.08);
  position: sticky;
  top: 110px;
  transform: rotate(-1.2deg);
  transition: transform 0.35s var(--ease);
}
.ledger-card:hover { transform: rotate(0deg); }

.ledger-head {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--violet);
  max-width: none;
}

.ledger-mini { list-style: none; }
.ledger-mini li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--ink-faint);
  font-size: 0.98rem;
}
.ledger-mini li span:first-child { color: var(--ink-soft); }
.ledger-mini li span:last-child { font-weight: 700; text-align: right; }

.ledger-foot {
  margin-top: 1.25rem;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: none;
}

/* ---------- proof band (transition 2: ledger wipe rows) ---------- */

.proof {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 0;
}
.proof-inner { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; z-index: 2; }

.ledger-wipe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.wipe-row {
  flex: 1;
  background: var(--violet);
  transform: translateX(-101%);
  border-bottom: 1px solid rgba(241,236,224,0.15);
}
.wipe-row.r2 { background: var(--violet-deep); }
.wipe-row.r3 { background: var(--violet); }
.wipe-row.r4 { background: var(--violet-deep); border-bottom: none; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}
.stat {
  border-left: 2px solid var(--violet);
  padding-left: 1.5rem;
}
.stat-num {
  font-family: "Grenze Gotisch", Georgia, serif;
  font-weight: 900;
  font-size: var(--step-6);
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  max-width: none;
}
.stat-max { font-size: 0.45em; color: var(--wash); font-weight: 700; }
.stat-label {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wash);
  opacity: 0.85;
  max-width: none;
}
.proof-source {
  font-size: 0.9rem;
  color: rgba(241, 236, 224, 0.6);
  max-width: none;
}

/* ---------- process ---------- */

.process-ledger { list-style: none; margin-top: 3rem; }

.process-row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.75rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid var(--ink-faint);
  position: relative;
}
.process-row:last-child { border-bottom: 1px solid var(--ink-faint); }

.row-num {
  font-family: "Grenze Gotisch", Georgia, serif;
  font-weight: 900;
  font-size: var(--step-4);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--violet);
}
.process-row h3 {
  font-size: var(--step-2);
  margin-bottom: 0.6rem;
}
.process-row .row-body p { color: var(--ink-soft); max-width: 56ch; }
.row-tag {
  align-self: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--violet);
  padding: 0.55rem 1rem;
  border-radius: 3px;
  white-space: nowrap;
}
.process-row { transition: background 0.25s var(--ease), padding-left 0.25s var(--ease); }
.process-row:hover { background: rgba(91, 63, 168, 0.05); padding-left: 1.25rem; }

/* ---------- service area ---------- */

.service-area { background: var(--wash); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.address {
  font-style: normal;
  font-size: var(--step-1);
  line-height: 1.6;
  margin: 1.5rem 0 1.25rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--violet);
}
.address strong { font-size: 1.1em; }
.area-note { color: var(--ink-soft); }

.area-map svg {
  width: 100%; height: auto;
  background: var(--paper);
  border: 1px solid var(--ink-faint);
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(23,21,26,0.08);
}
.area-map .draw { fill: none; }

/* ---------- faq ---------- */

.faq-narrow { max-width: 860px; }

.faq-list { margin-top: 2.5rem; }

.faq-item {
  border-top: 1px solid var(--ink-faint);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-faint); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  font-family: "Grenze Gotisch", Georgia, serif;
  font-weight: 700;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 2.4rem; height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--violet);
  color: var(--paper);
}
.faq-item summary:hover { color: var(--violet-deep); }

.faq-item p {
  padding: 0 0.25rem 1.75rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- final CTA (transition 3: violet color wipe) ---------- */

.final-cta {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 0;
  text-align: left;
}
.color-wipe {
  position: absolute;
  inset: 0;
  background: var(--violet);
  transform: translateX(-101%);
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--violet);
  margin: 0 auto;
  max-width: none;
}
.cta-inner .container { padding: 0; }

.cta-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.cta-title em {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.cta-sub {
  color: rgba(241, 236, 224, 0.85);
  font-size: var(--step-1);
  margin-bottom: 2.5rem;
}
.cta-phone {
  display: inline-block;
  font-family: "Grenze Gotisch", Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--paper);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  margin-bottom: 2.5rem;
  border-bottom: 4px solid rgba(241, 236, 224, 0.35);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.cta-phone:hover { border-color: var(--paper); transform: translateY(-3px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(241, 236, 224, 0.72);
  padding: 3rem 0 6rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand { font-size: 1.6rem; color: var(--paper); }
.footer-brand em { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--wash); }
.footer-line, .footer-note { font-size: 0.92rem; max-width: none; }
.footer-line a { color: var(--paper); }
.footer-note { color: rgba(241, 236, 224, 0.45); font-size: 0.82rem; }

/* ---------- mobile call bar ---------- */

.mobile-callbar { display: none; }

/* ---------- reveal motion (JS-gated) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* hero entrance choreography */
.js .mask > span {
  transform: translateY(110%);
  animation: rise 0.75s var(--ease) forwards;
}
.js .hero-title .mask:nth-child(1) > span { animation-delay: 0.10s; }
.js .hero-title .mask:nth-child(2) > span { animation-delay: 0.20s; }
.js .hero-title .mask:nth-child(3) > span { animation-delay: 0.30s; }
.js .hero .reveal { transition-delay: 0.55s; }
/* staggered per-item delays are set inline by script.js for a wave effect */

@keyframes rise { to { transform: translateY(0); } }

/* stencil draw-on-scroll: JS sets dasharray, CSS animates offset */
.js .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.js .drawn .draw { stroke-dashoffset: 0; }

/* ledger wipe rows (transition 2) */
.js .wipe-row { transition: transform 0.9s var(--ease); }
.js .wiped .wipe-row.r1 { transform: translateX(0); transition-delay: 0s; }
.js .wiped .wipe-row.r2 { transform: translateX(0); transition-delay: 0.10s; }
.js .wiped .wipe-row.r3 { transform: translateX(0); transition-delay: 0.20s; }
.js .wiped .wipe-row.r4 { transform: translateX(0); transition-delay: 0.30s; }
/* rows slide back off to the right, revealing the ink band */
.js .wiped .wipe-row { animation: wipeOut 0.7s var(--ease) 0.9s forwards; }
@keyframes wipeOut { to { transform: translateX(101%); } }

/* violet color wipe into final CTA (transition 3) */
.js .color-wipe { transition: transform 0.9s var(--ease); }
.js .cta-wiped .color-wipe { transform: translateX(0); }
.js .cta-wiped .color-wipe { animation: wipeOut 0.7s var(--ease) 1s forwards; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero { min-height: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .ledger-card { position: static; transform: rotate(0deg); }
  .area-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 4.5rem 1fr; }
  .row-tag { grid-column: 2; justify-self: start; margin-top: 0.75rem; }
}

@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-header { gap: 0.75rem; }
  .brand { gap: 0.45rem; }
  .brand-word { font-size: 1.08rem; white-space: nowrap; }
  .header-call { font-size: 0.88rem; padding: 0.5rem 0.7rem; white-space: nowrap; }
  .header-call svg { width: 13px; height: 13px; }
  .stats-row { grid-template-columns: 1fr; gap: 2rem; }
  .scroll-hint { display: none; }

  .mobile-callbar {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: var(--ink);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(241, 236, 224, 0.2);
  }
  .mobile-callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--violet);
    color: var(--paper);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    font-variant-numeric: tabular-nums;
    padding: 0.9rem;
    border-radius: 6px;
    min-height: 48px;
  }
  body { padding-bottom: 76px; }
  .site-footer { padding-bottom: 2rem; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .mask > span { transform: none; }
  .js .draw { stroke-dasharray: none; stroke-dashoffset: 0; }
  .js .wipe-row, .js .color-wipe { display: none; }
}
