/* ═══════════════════════════════════════════════════════════════
   Oru Filament Story · stylesheet
   Palette from the logo: tangerine, deep green, marigold on paper.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* color tokens */
  --paper: #FFF6EA;        /* warm paper background */
  --card: #FFFFFF;
  --mint: #E3F2EA;         /* soft band */
  --ink: #14493D;          /* deep green — headings */
  --body: #3D5A51;         /* body text */
  --green: #157059;        /* logo green */
  --green-dark: #0E4A3B;
  --orange: #F4511E;       /* logo tangerine */
  --orange-dark: #C93A10;
  --yellow: #FFAF1F;       /* logo marigold */
  --yellow-dark: #DE8F00;
  --wa: #21BE5C;           /* WhatsApp green */
  --wa-dark: #178F44;
  --line: rgba(20, 73, 61, 0.12);

  /* type */
  --display: "Baloo 2", "Trebuchet MS", sans-serif;
  --sans: "Nunito", "Segoe UI", sans-serif;

  /* rhythm */
  --radius: 22px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--green); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* highlighted words inside headings */
.hl-orange { color: var(--orange); }
.hl-yellow { color: var(--yellow); }
.hl-green  { color: var(--green); }

/* squiggle underline — a short length of filament under a key word */
.squiggle {
  position: relative;
  white-space: nowrap;
}
.squiggle > svg {
  position: absolute;
  left: 0;
  bottom: -0.28em;
  width: 100%;
  height: 0.32em;
  overflow: visible;
}
.squiggle path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 6;
  stroke-linecap: round;
}

/* ── buttons: chunky toy buttons with a pressed state ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 5px 0 var(--orange-dark);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--orange-dark); }
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--orange-dark); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--wa { background: var(--wa); box-shadow: 0 5px 0 var(--wa-dark); }
.btn--wa:hover { box-shadow: 0 7px 0 var(--wa-dark); }
.btn--wa:active { box-shadow: 0 1px 0 var(--wa-dark); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  box-shadow: inset 0 0 0 3px var(--green);
}
.btn--ghost:hover { background: var(--mint); box-shadow: inset 0 0 0 3px var(--green); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(1px); }

.btn--sm { font-size: 0.92rem; padding: 0.7em 1.2em; }

/* ── eyebrow pill: little sticker label above headings ────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--card);
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 0.35em 1em;
  margin-bottom: 1.1rem;
  transform: rotate(-1.5deg);
}

/* ═══ header ═══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(20, 73, 61, 0.1); }

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-right: auto;
}
.brand svg { width: 44px; height: 44px; }
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-name .b1 { color: var(--orange); }
.brand-name .b2 { color: var(--green); }
.brand-name .b3 { color: var(--yellow); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a:not(.btn) {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.2em 0.1em;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.site-nav a:not(.btn):hover { color: var(--orange); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--yellow); color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 30px; height: 30px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--yellow);
    padding: 0.5rem var(--gutter) 1.2rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { padding: 0.7em 0.2em; border-bottom: 0; font-size: 1.15rem; }
  .site-nav .btn { margin-top: 0.8rem; justify-content: center; }
}

/* ═══ hero ═════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero-copy p.lede { font-size: 1.2rem; max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

.hero-art { position: relative; z-index: 0; }
/* soft glow so the logo's white sticker outline pops off the paper bg */
.hero-art::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 75%);
  pointer-events: none;
}
.hero-art .logo-sticker {
  width: min(460px, 100%);
  height: auto;
  margin-inline: auto;
  transform: rotate(-3deg);
  filter: drop-shadow(0 14px 24px rgba(20, 73, 61, 0.16));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

/* the filament thread that unspools across the hero */
.hero-thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.hero-thread path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.85;
}
.draw path {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  animation: draw 2.2s ease-out 0.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-copy p.lede { margin-inline: auto; }
  .hero-art { order: -1; }
  .hero-art .logo-sticker { width: min(300px, 80%); }
  .hero-thread { display: none; }
}

/* ═══ ticker: scrolling strip of things we print ═══════════════ */
.ticker {
  background: var(--yellow);
  color: var(--ink);
  overflow: hidden;
  padding-block: 0.7rem;
  border-block: 3px solid var(--ink);
  transform: rotate(-0.6deg) scale(1.02);
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.ticker span::after { content: "✿"; color: var(--orange); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══ sections & waves ═════════════════════════════════════════ */
.section { padding-block: var(--section); }
.section--white { background: var(--card); }
.section--mint { background: var(--mint); }
.section--green { background: var(--green-dark); }
.section--green h2, .section--green h3 { color: #fff; }
.section--green { color: #DDEEE6; }

.section-head { max-width: 620px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; }

.wave { display: block; width: 100%; height: 60px; margin-bottom: -1px; }

/* ═══ category tiles ═══════════════════════════════════════════ */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem 1.6rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tile:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 14px 26px rgba(20, 73, 61, 0.18); }
.tile h3 { color: #fff; margin: 0; font-size: 1.35rem; }
.tile p { margin: 0; opacity: 0.92; font-size: 0.95rem; }
.tile .tile-icon { width: 52px; height: 52px; margin-bottom: 0.6rem; }
.tile .tile-go {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.tile--orange { background: var(--orange); }
.tile--green { background: var(--green); }
.tile--yellow { background: var(--yellow); }
.tile--yellow, .tile--yellow h3 { color: var(--ink); }
.tile--ink { background: var(--ink); }

/* ═══ product cards: stickers on the fridge ════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 0.9rem 0.9rem 1.3rem;
  box-shadow: 0 6px 18px rgba(20, 73, 61, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.grid .card:nth-child(odd) { transform: rotate(-1.2deg); }
.grid .card:nth-child(even) { transform: rotate(1.2deg); }
.grid .card:hover {
  transform: rotate(0) translateY(-8px);
  box-shadow: 0 18px 32px rgba(20, 73, 61, 0.16);
  z-index: 2;
}

.card-art {
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mint);
  margin-bottom: 1rem;
}
.card-art img { width: 100%; height: 100%; object-fit: cover; }

.card h3 { margin: 0 0 0.2em; font-size: 1.18rem; padding-inline: 0.4rem; }
.card .desc { font-size: 0.92rem; margin: 0 0 1rem; padding-inline: 0.4rem; flex-grow: 1; }

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-inline: 0.4rem;
}
.price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green);
}

.badge {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  transform: rotate(3deg);
  box-shadow: 0 3px 8px rgba(20, 73, 61, 0.18);
}

/* ═══ steps (how it's made) ════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.7rem;
  position: relative;
  box-shadow: 0 6px 18px rgba(20, 73, 61, 0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 0 var(--orange-dark);
}
.step h3 { margin-top: 0.3rem; }
.step p { margin: 0; font-size: 0.97rem; }
.steps--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .steps--6 { grid-template-columns: 1fr; } }

/* ═══ quotes ═══════════════════════════════════════════════════ */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.quote {
  background: var(--card);
  color: var(--body);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  box-shadow: 0 6px 18px rgba(20, 73, 61, 0.08);
  margin: 0;
}
.quote::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 34px;
  border: 14px solid transparent;
  border-top-color: var(--card);
  border-bottom: 0;
}
.quote p { font-size: 1rem; margin: 0; }
.quote .who {
  margin-top: 1rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
}
.quote .stars { color: var(--yellow); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 0.6rem; }

/* ═══ instagram strip ══════════════════════════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
}
@media (max-width: 860px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

.insta-grid a {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  transition: transform 0.15s ease;
}
.insta-grid a:hover { transform: scale(1.05) rotate(1deg); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ shipping banner ══════════════════════════════════════════ */
.ship-banner {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 2.6rem var(--gutter);
}
.ship-banner h2 { color: #fff; margin-bottom: 0.2em; }
.ship-banner p { margin: 0 0 1.4rem; opacity: 0.95; font-size: 1.1rem; }

/* ═══ footer ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark);
  color: #C9E2D8;
  padding: 3.5rem 0 2rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 780px) { .footer-cols { grid-template-columns: 1fr; } }

.site-footer .brand-name { font-size: 1.5rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.8em; }
.site-footer a { color: #C9E2D8; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55em; }
.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ═══ page hero (inner pages) ══════════════════════════════════ */
.page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero .wrap { max-width: 760px; text-align: center; }
.page-hero p { font-size: 1.15rem; }

/* ═══ shop filters ═════════════════════════════════════════════ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.8rem;
}
.filter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--green);
  background: var(--card);
  border: 3px solid var(--green);
  border-radius: 999px;
  padding: 0.5em 1.3em;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter:hover { transform: translateY(-2px); }
.filter.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 0 var(--green-dark);
}

/* ═══ forms ════════════════════════════════════════════════════ */
.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 10px 30px rgba(20, 73, 61, 0.1);
  max-width: 640px;
  margin-inline: auto;
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35em;
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--line);
  border-radius: 14px;
  padding: 0.75em 1em;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--yellow);
}
.field .hint { font-size: 0.85rem; margin-top: 0.35em; opacity: 0.75; }

/* ═══ FAQ ══════════════════════════════════════════════════════ */
.faq { max-width: 720px; margin-inline: auto; display: grid; gap: 1rem; }
.faq details {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(20, 73, 61, 0.08);
  overflow: hidden;
}
.faq summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1;
  transition: transform 0.2s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.2rem; margin: 0; }

/* ═══ about page ═══════════════════════════════════════════════ */
.sisters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 760px;
  margin-inline: auto;
}
@media (max-width: 640px) { .sisters { grid-template-columns: 1fr; } }

.sister-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.6rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(20, 73, 61, 0.1);
}
.sister-card:first-child { transform: rotate(-1.5deg); }
.sister-card:last-child { transform: rotate(1.5deg); }
.sister-card .avatar {
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--mint);
  margin-bottom: 1.1rem;
}
.sister-card h3 { margin-bottom: 0.15em; }
.sister-card .role { font-size: 0.9rem; color: var(--green); font-weight: 700; margin: 0; }

.story-prose { max-width: 640px; margin-inline: auto; font-size: 1.12rem; }
.story-prose .big-quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--green);
  text-align: center;
  padding: 1.4rem 0;
}

/* ═══ contact cards ════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 920px;
  margin-inline: auto;
}
@media (max-width: 820px) { .contact-cards { grid-template-columns: 1fr; max-width: 420px; } }

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(20, 73, 61, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.contact-card .cc-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
}
.contact-card .cc-icon svg { width: 28px; height: 28px; }
.contact-card h3 { margin: 0; }
.contact-card p { margin: 0 0 1rem; font-size: 0.95rem; }
.contact-card .btn { margin-top: auto; }

/* ═══ reveal on scroll ═════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1.2, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ═══ floating WhatsApp bubble ═════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ═══ motion & misc ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .draw path { stroke-dashoffset: 0; }
  .ticker-track { animation: none; }
}

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