/* ============================================================
   Ink & Intuition Studio
   Palette, type and layout derived from the studio's own brand
   assets (feather-quill logo, watercolour collateral).
   ============================================================ */

:root {
  /* Brand palette — the studio's actual ink colours */
  --ink:        #2e0c60;  /* deep violet — the feather & wordmark (sampled from logo) */
  --ink-deep:   #1c0840;  /* darker anchor for the footer */
  --teal:       #1c8ea2;  /* "Decoding Minds" teal */
  --amber:      #d8a25b;  /* warm brand gold (sampled) */
  --rose:       #d12c72;  /* script accents, hearts */
  --gold:       #c5975b;  /* soft botanical gold (sampled) */

  --cream:      #faf6ee;  /* paper */
  --cream-2:    #f3ead9;  /* deeper paper for alternating bands */
  --lavender:   #efe9f7;  /* watercolour wash */

  --text:       #2b2444;  /* ink text on cream */
  --muted:      #6f6789;
  --line:       #e4dcc9;  /* hairlines on cream */

  /* Type */
  --display: "Cinzel", Georgia, serif;
  --script:  "Dancing Script", "Segoe Script", cursive;
  --body:    "EB Garamond", Georgia, serif;

  --maxw: 1080px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1.02rem, 0.55vw + 0.92rem, 1.18rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2.5px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ───────────────────────── Shared bits ───────────────────────── */

.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 7rem) var(--pad);
}
.section > * { max-width: var(--maxw); margin-inline: auto; }

.section--ink   { background: var(--ink); color: #f3eefc; }
.section--cream2{ background: var(--cream-2); }

.eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 auto 1.1rem;
}
.eyebrow--light { color: var(--amber); }

.section__head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: .01em;
  margin: 0;
  color: var(--ink);
}
.section--ink .section__title { color: #fff; }
.section__lead { max-width: 60ch; margin: 1.1rem auto 0; color: var(--muted); font-size: 1.06rem; line-height: 1.6; }
.section--ink .section__lead { color: rgba(243,238,252,.8); }

/* Buttons */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--b);
  background: var(--b); color: #fff;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(46,12,96,.6); }
.btn--ghost { background: var(--cream); color: var(--ink); border-color: var(--ink); }
.section--ink .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.btn--wa { --b: #1c8ea2; background: var(--teal); border-color: var(--teal); }
.btn--wa:hover { box-shadow: 0 10px 24px -12px rgba(28,142,162,.7); }
.wa-ico { width: 1.1em; height: 1.1em; flex: none; fill: currentColor; }

/* Decorative botanical corners */
.leaf { position: absolute; z-index: 0; width: clamp(70px, 12vw, 130px); color: var(--gold); opacity: .3; pointer-events: none; }
.leaf--tr { top: 1.5rem; right: 1.5rem; transform: scaleX(-1) rotate(6deg); }
.leaf--tl { top: 1.5rem; left: 1.5rem; transform: rotate(-8deg); }
.leaf--br { bottom: 1.5rem; right: 1.5rem; transform: scaleX(-1) rotate(-10deg); }
.leaf--bl { bottom: 1.5rem; left: 1.5rem; transform: rotate(5deg); opacity: .35; color: var(--amber); }
/* keep real content above the decorative leaves in dark sections */
.section--ink > :not(.leaf), .footer > :not(.leaf) { position: relative; z-index: 1; }

/* ───────────────────────── Nav ───────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .7rem var(--pad);
  background: rgba(250,246,238,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__mark { border-radius: 8px; }
.brand__name {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--display); font-weight: 700; font-size: 1.04rem; letter-spacing: .04em;
}
.brand__sub { font-size: .6rem; font-weight: 500; letter-spacing: .42em; color: var(--teal); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu a { text-decoration: none; font-size: .96rem; letter-spacing: .02em; color: var(--text); transition: color .2s; }
.nav__menu a:hover { color: var(--rose); }
.nav__cta { color: #fff; padding: 0; width: 42px; height: 42px; border-radius: 50%; justify-content: center; flex: none; }
.nav__cta .wa-ico { width: 1.35rem; height: 1.35rem; }
.nav__cta:hover { color: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .4rem; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }

@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.2rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .35s var(--ease), opacity .25s;
  }
  .nav__menu a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin-top: .9rem; align-self: center; justify-content: center; border-bottom: 0 !important; }
  .nav[data-open="true"] .nav__menu { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ───────────────────────── Hero ───────────────────────── */

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 880px);
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(60% 50% at 50% 0%, var(--lavender), transparent 70%),
    radial-gradient(40% 40% at 85% 90%, #fae3ef, transparent 70%),
    var(--cream);
  overflow: hidden;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: .94;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline; gap: 0 .35em;
}
.hero__amp { color: var(--amber); font-weight: 400; font-size: .7em; }
.hero__line { color: var(--ink); }
.hero__studio {
  display: flex; align-items: center; justify-content: center; gap: clamp(.6rem, 2vw, 1.1rem);
  margin: .4rem 0 .1rem;
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(.95rem, 2.4vw, 1.5rem);
  letter-spacing: .55em; text-indent: .55em; text-transform: uppercase;
}
.hero__studio::before, .hero__studio::after {
  content: ""; height: 1.5px; width: clamp(28px, 7vw, 66px); background: var(--amber); opacity: .85;
}

.signature { width: min(560px, 90%); height: auto; margin: .4rem auto .2rem; display: block; }
.signature__path {
  fill: none; stroke: var(--rose); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round;
}
.signature__dot { fill: var(--rose); }

.hero__tagline {
  font-family: var(--script);
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  line-height: 1;
  color: var(--teal);
  margin: .2rem 0 1.4rem;
}
.hero__lead {
  max-width: 46ch; margin: 0 auto 2rem;
  font-size: 1.18rem; color: #4a4364;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Hero flowing-text layer (tangled scrawl → resolved benefits) */
.hero-flow {
  position: absolute; inset: 0;
  width: 100%; height: 100%; max-width: none;
  margin: 0; z-index: 0; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
/* the full-bleed flow layer slice-scales into the content on tablets/phones — desktop only */
@media (max-width: 1200px) { .hero-flow { display: none; } }
.hf-text { font-family: var(--body); font-style: italic; }
.hf-text--faint { font-size: 22px; fill: var(--ink); opacity: .13; letter-spacing: .01em; }
.hf-text--bold  { font-size: 30px; letter-spacing: .015em; }
@media (max-width: 760px) {
  .hf-text--faint { font-size: 17px; }
  .hf-text--bold  { font-size: 23px; }
}

/* ───────────────────────── Mission ───────────────────────── */

.mission { text-align: center; }
.mission__quote {
  font-family: var(--body);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1.32; font-weight: 400;
  margin: 0 auto; max-width: 22ch + 10ch; quotes: none;
}
.mission__quote em { font-family: var(--script); font-style: normal; color: var(--amber); font-size: 1.32em; }
.mission__pillars {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem;
  margin: 2.4rem auto 0; padding: 0;
  font-family: var(--display); font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber);
}
.mission__pillars span { position: relative; }
.mission__pillars span + span::before {
  content: "✦"; position: absolute; left: -1.45rem; color: rgba(255,255,255,.35); font-size: .7em; top: .15em;
}

/* ───────────────────────── Benefits ribbon (flow) ───────────────────────── */

.benefits { text-align: center; overflow: hidden; }
.benefits__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); color: var(--ink);
  margin: 0 0 .2rem; letter-spacing: .01em;
}
.benefits__flow { margin: .4rem auto; max-width: 1080px; }
.flow-svg { width: 100%; height: auto; overflow: visible; }
.flow-path { stroke: rgba(46,12,96,.18); stroke-width: 1.5; stroke-dasharray: 1 8; stroke-linecap: round; }
.flow-text { font-family: var(--body); font-style: italic; font-size: 27px; letter-spacing: .015em; }
.benefits__lead { max-width: 54ch; margin: .2rem auto 0; color: var(--muted); }
@media (max-width: 640px) { .flow-text { font-size: 23px; } }

/* ───────────────────────── Services ───────────────────────── */

.cards { list-style: none; margin: 0 auto; padding: 0; display: grid; gap: 1.1rem; grid-template-columns: repeat(5, 1fr); max-width: 1240px; }
@media (max-width: 1040px) { .cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .cards { grid-template-columns: 1fr; } }
.card {
  display: flex; flex-direction: column;
  min-height: 322px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.45rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -26px rgba(46,12,96,.5); border-color: #d8cdec; }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.1rem;
  border-radius: 50%; background: var(--lavender); color: var(--ink);
}
.card__icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card:nth-child(2) .card__icon { background: #fce3ee; color: var(--rose); }
.card:nth-child(3) .card__icon { background: #d8eef2; color: var(--teal); }
.card:nth-child(4) .card__icon { background: #fbeacf; color: var(--amber); }
.card:nth-child(5) .card__icon { background: #e6e0f5; color: var(--ink); }
.card__title { font-family: var(--display); font-weight: 600; font-size: 1.12rem; margin: 0 0 .5rem; color: var(--ink); }
.card__body { margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.55; }

/* ───────────────────────── Pricing ───────────────────────── */

.rates { display: grid; gap: 0; max-width: 760px; }
.rate {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.15rem .4rem;
  border-bottom: 1px solid var(--line);
}
.rate:first-child { border-top: 1px solid var(--line); }
.rate__main { display: flex; flex-direction: column; }
.rate__name { font-family: var(--display); font-weight: 500; font-size: 1.08rem; color: var(--ink); letter-spacing: .01em; }
.rate__note { color: var(--muted); font-size: .98rem; font-style: italic; }
.rate__price { font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--rose); white-space: nowrap; }
.rate__price small { font-family: var(--body); font-style: italic; font-weight: 400; font-size: .62em; color: var(--muted); margin-left: .15em; }
.pricing__foot { text-align: center; color: var(--muted); font-style: italic; margin: 1.8rem auto 0; }

/* ───────────────────────── Founders ───────────────────────── */

.founder-list { list-style: none; margin: 0 auto; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 900px; }
.founder {
  flex: 0 1 256px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 2.2rem 1.5rem 1.7rem;
  box-shadow: 0 24px 46px -30px rgba(46,12,96,.45);
}
.founder::before {
  content: ""; width: 46px; height: 2px; border-radius: 2px;
  background: var(--gold); opacity: .75; margin-bottom: .3rem;
}
.founder__name { font-family: var(--display); font-weight: 600; font-size: 1.22rem; color: var(--ink); }
.founder__role { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); }
.founder__creds { list-style: none; margin: .35rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; }
.founder__creds li {
  font-family: var(--display); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); background: rgba(216,162,91,.12); border: 1px solid rgba(216,162,91,.55);
  border-radius: 999px; padding: .32rem .62rem; white-space: nowrap;
}
.founder__creds-wide { text-transform: none; letter-spacing: .02em; font-family: var(--body); font-style: italic; }

/* ───────────────────────── Tarot card trio ───────────────────────── */
.tarot { text-align: center; overflow: hidden; }
.tarot-fan { display: flex; justify-content: center; align-items: center; margin: clamp(2rem, 5vw, 3.4rem) auto 0; }
.tcard { position: relative; width: clamp(98px, 22vw, 208px); transition: transform .45s var(--ease); filter: drop-shadow(0 24px 34px rgba(0,0,0,.45)); }
.tcard__svg { width: 100%; height: auto; display: block; }
.tcard--l { transform: rotate(-10deg); margin-right: -26px; }
.tcard--r { transform: rotate(10deg); margin-left: -26px; }
.tcard--c { transform: translateY(-16px) scale(1.05); z-index: 2; }
.tcard:hover { transform: translateY(-14px) rotate(0deg) scale(1.06); z-index: 3; }
.tarot__cta { margin-top: clamp(2rem, 5vw, 3rem); }
@media (prefers-reduced-motion: reduce) { .tcard, .tcard:hover { transition: none; } }

/* ───────────────────────── Register / form ───────────────────────── */

.section__head--light .register__hint { color: rgba(243,238,252,.75); }
.register__hint { max-width: 44ch; margin: .8rem auto 0; font-size: 1.02rem; }

.form {
  max-width: 760px;
  display: grid; gap: 1.15rem 1.3rem; grid-template-columns: 1fr 1fr;
  text-align: left;
  background: #fbf8f1;
  border: 1px solid #e7ddca;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  box-shadow: 0 34px 70px -34px rgba(20, 8, 40, .6);
}
.field { display: flex; flex-direction: column; gap: .42rem; }
.field--wide { grid-column: 1 / -1; }
.field > label, .services-pick legend {
  font-family: var(--display); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); opacity: .68; padding: 0;
}
.req { color: var(--rose); font-weight: 700; opacity: 1; }
.form input, .form textarea {
  font-family: var(--body); font-size: 1.05rem; color: var(--text);
  background: #fff;
  border: 1.5px solid #e3d9c5;
  border-radius: 10px; padding: .74rem .9rem;
  transition: border-color .2s, box-shadow .2s;
}
.form input::placeholder { color: #b6acc2; }
.form input:focus, .form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,142,162,.16); outline: none; }
.form input[aria-invalid="true"], .form textarea[aria-invalid="true"] { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(209,44,114,.16); }
.phone { display: flex; gap: .5rem; }
.phone input { flex: 1 1 auto; min-width: 0; }
.cc { position: relative; flex: 0 0 auto; }
.cc__btn {
  display: flex; align-items: center; gap: .3rem; height: 100%;
  background: #fff; border: 1.5px solid #e3d9c5; border-radius: 10px;
  padding: .5rem .65rem; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.cc__btn:focus-visible { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,142,162,.16); outline: none; }
.cc__flag { font-size: 1.4rem; line-height: 1; }
.cc__caret { font-size: .58rem; color: var(--muted); }
.cc__list {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 30;
  width: max-content; max-width: 80vw; max-height: 288px; overflow-y: auto;
  margin: 0; padding: .3rem; list-style: none;
  background: #fff; border: 1.5px solid #e3d9c5; border-radius: 12px;
  box-shadow: 0 24px 50px -20px rgba(20, 8, 40, .4);
}
.cc__list[hidden] { display: none; }
.cc__opt {
  padding: .5rem .7rem; border-radius: 8px; cursor: pointer;
  font-size: .95rem; white-space: nowrap; color: var(--text);
}
.cc__opt:hover, .cc__opt.is-active { background: rgba(28,142,162,.12); }
.cc__opt[aria-selected="true"] { font-weight: 600; color: var(--ink); }
.form textarea { resize: vertical; }

.services-pick { border: 0; padding: 0; margin: 0; }
.services-pick legend { margin-bottom: .7rem; }
.picks { display: grid; gap: .6rem; grid-template-columns: 1fr 1fr; }
.pick {
  display: flex; align-items: center; gap: .65rem; height: 100%;
  min-height: 56px;
  background: #fff; border: 1.5px solid #e3d9c5;
  border-radius: 10px; padding: .55rem .85rem; cursor: pointer;
  font-size: .95rem; line-height: 1.2;
  transition: border-color .2s, background .2s;
}
.pick:hover { border-color: var(--teal); }
.pick input { width: 18px; height: 18px; accent-color: var(--teal); flex: none; }
.pick span { display: flex; justify-content: space-between; align-items: center; gap: .7rem; width: 100%; color: var(--text); }
.pick em { font-style: normal; color: var(--rose); font-family: var(--display); font-size: .92em; white-space: nowrap; }
.pick em { display: none; } /* prices hidden per request — delete this line to show them again */
.pick:has(input:checked) { border-color: var(--teal); background: rgba(28,142,162,.09); }

.form__actions { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.form__error { color: #b23b6b; font-style: italic; margin: 0; }

@media (max-width: 620px) { .form, .picks { grid-template-columns: 1fr; } }

/* ───────────────────────── Footer ───────────────────────── */

.footer {
  position: relative; overflow: hidden;
  background: var(--ink-deep); color: #e8e1f5;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.5rem;
  text-align: center;
  display: grid; gap: 1.6rem; justify-items: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.footer__brand img { border-radius: 14px; background: #fbf7ef; padding: 10px; }
.footer__tag { font-family: var(--script); font-size: 1.7rem; color: var(--amber); margin: 0; }
.footer__contact { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.footer__call { text-decoration: none; font-family: var(--display); letter-spacing: .1em; font-size: .9rem; color: #cdbff0; }
.footer__call:hover { color: #fff; }
.footer__avail { margin: .2rem 0 0; font-size: .92rem; color: rgba(232,225,245,.7); }
.footer__line { font-family: var(--script); font-size: clamp(1.4rem, 3.6vw, 2rem); line-height: 1.25; color: #fff; margin: 1rem 0 0; }
.footer__line span { color: var(--rose); }
.footer__copy { font-size: .82rem; letter-spacing: .04em; color: rgba(232,225,245,.55); margin: 0; }

/* the script face (Dancing Script) reads better with a touch more weight */
.hero__tagline, .mission__quote em, .footer__tag, .footer__line { font-weight: 600; }

/* ───────────────────────── Motion ───────────────────────── */

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

.signature__path {
  stroke-dasharray: var(--len, 1400);
  stroke-dashoffset: var(--len, 1400);
  animation: write 2.4s var(--ease) .35s forwards;
}
.signature__dot { opacity: 0; animation: dot .01s linear 2.7s forwards; }
@keyframes write { to { stroke-dashoffset: 0; } }
@keyframes dot { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .signature__path { animation: none; stroke-dashoffset: 0; }
  .signature__dot { animation: none; opacity: 1; }
  .btn:hover, .card:hover, .founder__monogram { transform: none; }
}
