:root {
  --ink: #23312b;
  --muted: #64716a;
  --cream: #f8f5ee;
  --cream-deep: #efe8db;
  --white: #fffdf9;
  --sage: #718b74;
  --sage-dark: #3f5d4b;
  --rose: #c96e77;
  --gold: #c5a261;
  --line: rgba(35, 49, 43, .14);
  --shadow: 0 24px 70px rgba(43, 58, 49, .13);
  --radius: 26px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: #dfe8d9; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.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; }
.skip-link { position: fixed; z-index: 9999; left: 20px; top: -80px; padding: 12px 16px; background: var(--ink); color: white; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 20px; }

.eyebrow { margin: 0 0 14px; color: var(--sage-dark); text-transform: uppercase; letter-spacing: .17em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; font-weight: 500; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.9rem); letter-spacing: -.055em; }
h1 em { color: var(--sage); font-weight: 400; }
h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); letter-spacing: -.04em; }
h3 { font-size: 1.6rem; }
p { margin: 0 0 1.2em; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(248,245,238,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(35,49,43,.06); background: rgba(248,245,238,.94); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1.15; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--sage); border-radius: 50%; color: var(--sage-dark); }
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.brand small { color: var(--muted); margin-top: 2px; font-size: .76rem; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav a { text-decoration: none; font-size: .9rem; font-weight: 650; position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--sage-dark); transition: right .25s; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 17px; border: 1px solid var(--sage-dark); border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); margin: 5px; transition: transform .25s, opacity .25s; }

.hero { min-height: 100svh; padding-top: 160px; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(55px, 7vw, 110px); }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 680px; color: var(--muted); margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 40px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 12px 23px; border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 750; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--sage-dark); color: white; box-shadow: 0 14px 30px rgba(63,93,75,.2); }
.button-primary:hover { box-shadow: 0 18px 35px rgba(63,93,75,.3); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.4); }
.hero-facts { display: flex; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; gap: 20px 32px; color: var(--muted); font-size: .86rem; }
.hero-facts li { display: grid; }
.hero-facts span { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; }
.hero-visual { position: relative; min-height: 640px; }
.portrait-frame { position: absolute; inset: 20px 8% 20px 14%; overflow: hidden; border-radius: 220px 220px 35px 35px; box-shadow: var(--shadow); background: var(--cream-deep); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-flower-card { position: absolute; right: -8%; top: 9%; margin: 0; width: 178px; background: var(--white); padding: 10px; border-radius: 18px; box-shadow: var(--shadow); transform: rotate(4deg); }
.hero-flower-card img { aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.hero-flower-card figcaption { padding: 9px 5px 3px; font-family: var(--serif); font-style: italic; font-size: .88rem; }
.hero-note { position: absolute; left: 0; bottom: 10%; max-width: 230px; padding: 18px 21px; border-radius: 18px; background: rgba(255,253,249,.92); box-shadow: var(--shadow); font-family: var(--serif); font-style: italic; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; }
.hero-shape-one { width: 520px; height: 520px; background: rgba(201,110,119,.09); top: 3%; right: -10%; }
.hero-shape-two { width: 400px; height: 400px; background: rgba(113,139,116,.12); bottom: -12%; left: -10%; }

.intro-strip { padding: 34px 0; background: var(--sage-dark); color: white; }
.intro-strip-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; }
.intro-strip blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.2rem,2.3vw,1.8rem); font-style: italic; }
.intro-strip-inner > span:last-child { opacity: .75; font-size: .85rem; }
.leaf-icon { font-size: 2rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.about-images { position: relative; min-height: 620px; }
.about-main { position: absolute; inset: 0 12% 0 0; width: 88%; height: 100%; object-fit: cover; border-radius: 30px 180px 30px 30px; box-shadow: var(--shadow); }
.about-detail { position: absolute; right: 0; bottom: 4%; width: 38%; aspect-ratio: 1; object-fit: cover; border: 9px solid var(--cream); border-radius: 50%; box-shadow: var(--shadow); }
.about-copy .subtitle { color: var(--sage-dark); font-weight: 750; margin: 18px 0 28px; }
.about-copy > p:not(.eyebrow):not(.subtitle) { color: var(--muted); font-size: 1.07rem; }
.signature { margin-top: 30px; color: var(--rose); font-family: "Brush Script MT", "Segoe Script", cursive; font-size: 3rem; transform: rotate(-6deg); transform-origin: left; }

.pillars { background: var(--white); }
.section-heading { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); margin: 22px auto 0; max-width: 670px; }
.section-heading-split { max-width: none; display: grid; grid-template-columns: 1fr .8fr; text-align: left; align-items: end; gap: 70px; }
.section-heading-split > p:last-child { margin: 0; }
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar-card { position: relative; background: var(--cream); padding: 16px 16px 30px; border-radius: var(--radius); overflow: hidden; }
.pillar-image { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; margin-bottom: 26px; }
.pillar-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.pillar-card:hover img { transform: scale(1.05); }
.card-number { position: absolute; right: 24px; top: 25px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,253,249,.92); font-size: .75rem; font-weight: 800; }
.pillar-card h3, .pillar-card p { padding-inline: 13px; }
.pillar-card p { color: var(--muted); margin: 12px 0 0; }
.pillar-source { display: inline; white-space: nowrap; font-style: italic; }

.therapies { overflow: hidden; }
.therapy-feature-grid { display: grid; gap: 25px; }
.therapy-feature { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 35px; min-height: 270px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,249,.48); }
.therapy-feature.reverse { grid-template-columns: 1fr 210px; }
.therapy-feature.reverse img { order: 2; }
.therapy-feature img { width: 100%; height: 220px; object-fit: cover; border-radius: 20px; }
.therapy-feature > div > span, .offer-card div > span { display: block; color: var(--rose); font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; margin-bottom: 8px; }
.therapy-feature p { color: var(--muted); max-width: 700px; margin: 12px 0; }
.text-link { border: 0; background: none; padding: 0; cursor: pointer; color: var(--sage-dark); font-weight: 800; }
.text-link span { display: inline-block; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.therapy-disclaimer { max-width: 900px; margin: 35px auto 0; padding: 18px 22px; border-left: 3px solid var(--gold); background: rgba(255,253,249,.72); color: var(--muted); font-size: .9rem; border-radius: 0 14px 14px 0; }

.nature-break { position: relative; height: min(70vw, 720px); min-height: 480px; overflow: hidden; display: grid; align-items: end; }
.nature-break > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nature-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,33,26,.73), rgba(20,33,26,.08) 65%); }
.nature-content { position: relative; color: white; padding-bottom: 65px; }
.nature-content p { max-width: 790px; font-family: var(--serif); font-size: clamp(2rem,4.5vw,4.7rem); line-height: 1.05; margin-bottom: 15px; }
.nature-content span { opacity: .82; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; }

.offers { background: var(--white); }
.offer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.offer-card { background: var(--cream); border: 1px solid rgba(110, 132, 116, .18); border-radius: 22px; overflow: hidden; box-shadow: 0 10px 26px rgba(44, 67, 53, .08); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.offer-card:hover { transform: translateY(-7px); box-shadow: 0 18px 34px rgba(44, 67, 53, .16); border-color: rgba(110, 132, 116, .32); }
.offer-card img { width: 100%; aspect-ratio: 1.15; object-fit: cover; }
.offer-card > div { padding: 24px; }
.offer-card h3 { font-size: 1.38rem; }
.offer-card p { color: var(--muted); font-size: .92rem; margin: 12px 0 0; }

.therapy-card-grid { margin-top: 10px; }
.offer-card > div { display: flex; flex-direction: column; height: 100%; }
.offer-card .text-link { margin-top: auto; padding-top: 16px; align-self: flex-start; }
.therapy-card .text-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; margin-top: 18px; border: 1px solid rgba(110, 132, 116, .28); border-radius: 999px; background: rgba(110, 132, 116, .08); box-shadow: 0 6px 14px rgba(44, 67, 53, .06); transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.therapy-card .text-link:hover { background: rgba(110, 132, 116, .14); border-color: rgba(110, 132, 116, .42); transform: translateY(-1px); box-shadow: 0 10px 18px rgba(44, 67, 53, .12); }
.therapy-card .text-link:focus-visible { outline: 2px solid rgba(110, 132, 116, .35); outline-offset: 2px; }
.therapy-card h3 { font-size: 1.32rem; }
.therapy-card p { margin-bottom: 0; }

.gallery { background: var(--cream-deep); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 15px; }
.gallery-item { padding: 0; border: 0; border-radius: 18px; overflow: hidden; cursor: zoom-in; background: #ddd; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08); }

.contact { background: var(--sage-dark); color: white; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px,8vw,110px); align-items: start; }
.contact .eyebrow { color: #d8e6d5; }
.contact-copy > p { color: rgba(255,255,255,.74); margin-top: 24px; }
.contact-copy address { display: grid; margin: 35px 0; font-style: normal; }
.contact-copy address a { display: grid; grid-template-columns: 95px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.contact-copy address strong { color: #d8e6d5; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-note { font-size: .9rem; }
.contact-form { display: grid; gap: 18px; padding: clamp(25px,4vw,48px); background: var(--white); color: var(--ink); border-radius: var(--radius); box-shadow: 0 30px 70px rgba(20,32,25,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; font-size: .82rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); padding: 13px 14px; outline: none; color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(113,139,116,.15); }
.checkbox { grid-template-columns: auto 1fr !important; align-items: start; font-weight: 500 !important; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; }
.contact-form .button { justify-self: start; }
.form-hint { color: var(--muted); font-size: .77rem; margin: 0; }

.site-footer { padding: 70px 0 25px; background: #1d2a24; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .6fr; gap: 50px; padding-bottom: 50px; }
.footer-brand { color: white; }
.footer-grid p { color: rgba(255,255,255,.58); max-width: 330px; margin-top: 15px; }
.footer-grid h2 { font-family: var(--sans); font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid button { color: white; text-decoration: none; margin: 4px 0; }
.footer-grid button { background: none; border: 0; padding: 0; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 35px; color: rgba(255,255,255,.45); font-size: .75rem; }
.footer-bottom p { margin: 0; }

.info-dialog, .lightbox { width: min(720px, calc(100% - 32px)); max-height: min(860px, calc(100svh - 40px)); overflow: auto; overscroll-behavior: contain; border: 0; border-radius: 24px; padding: clamp(30px,5vw,55px); color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.info-dialog::backdrop, .lightbox::backdrop { background: rgba(18,27,23,.72); backdrop-filter: blur(7px); }
.info-dialog h2 { font-size: clamp(2.2rem,5vw,3.8rem); margin-bottom: 25px; }
.info-dialog h3 { font-family: var(--sans); font-weight: 800; font-size: 1rem; margin: 25px 0 8px; }
.info-dialog p { color: var(--muted); }
.dialog-list { margin: 10px 0 22px; padding-left: 1.25rem; color: var(--muted); columns: 2; column-gap: 32px; }
.dialog-list li { break-inside: avoid; margin: 0 0 8px; padding-left: 3px; }
.dialog-quote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: var(--sage-dark) !important; }
.info-dialog a:not(.button) { color: var(--sage-dark); }
.dialog-close { position: absolute; top: 16px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: 1.6rem; line-height: 1; }
.dialog-note { padding: 14px 16px; border-left: 3px solid var(--gold); background: var(--cream); font-size: .86rem; }
.legal-dialog { max-height: min(820px, calc(100svh - 40px)); overflow: auto; }
.lightbox { width: min(1100px, calc(100% - 30px)); padding: 14px; background: #101713; }
.lightbox img { max-height: 82svh; width: 100%; object-fit: contain; border-radius: 14px; }
.lightbox .dialog-close { z-index: 2; color: white; background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.35); }

.butterfly-layer { position: fixed; inset: 0; z-index: 20; pointer-events: none; overflow: hidden; }
.butterfly {
  position: absolute;
  width: clamp(42px, 4vw, 68px);
  height: clamp(42px, 4vw, 68px);
  opacity: .82;
  filter: drop-shadow(0 8px 10px rgba(31,49,38,.16));
  will-change: transform;
  animation: butterfly-flight var(--duration, 34s) linear var(--delay, 0s) infinite;
}
.butterfly svg {
  overflow: visible;
  animation: butterfly-bob var(--bob-duration, 3.4s) ease-in-out infinite alternate;
}
.butterfly .wing-left { transform-origin: 49% 55%; animation: flap-left var(--flap-duration, .95s) ease-in-out infinite alternate; }
.butterfly .wing-right { transform-origin: 51% 55%; animation: flap-right var(--flap-duration, .95s) ease-in-out infinite alternate; }
.butterfly .wing-pattern,
.butterfly .wing-highlight { pointer-events: none; }
@keyframes butterfly-flight {
  0% { transform: translate3d(var(--x-start,-12vw), 108vh, 0) rotate(-9deg) scale(var(--scale,1)); }
  20% { transform: translate3d(calc(var(--x-mid,30vw) - 10vw), 82vh, 0) rotate(6deg) scale(var(--scale,1)); }
  46% { transform: translate3d(var(--x-end,74vw), 54vh, 0) rotate(-5deg) scale(var(--scale,1)); }
  72% { transform: translate3d(calc(var(--x-mid,30vw) + 8vw), 24vh, 0) rotate(7deg) scale(var(--scale,1)); }
  100% { transform: translate3d(calc(var(--x-start,-12vw) + 6vw), -16vh, 0) rotate(-3deg) scale(var(--scale,1)); }
}
@keyframes butterfly-bob {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(0, -12px, 0) rotate(2deg); }
}
@keyframes flap-left { from { transform: rotateY(6deg) rotate(-4deg); } to { transform: rotateY(58deg) rotate(-10deg); } }
@keyframes flap-right { from { transform: rotateY(-6deg) rotate(4deg); } to { transform: rotateY(-58deg) rotate(10deg); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { height: 76px; }
  .nav-toggle { display: block; z-index: 2; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; background: var(--cream); transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-family: var(--serif); font-size: 1.8rem; }
  .main-nav .nav-cta { font-family: var(--sans); font-size: 1rem; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 600px; max-width: 620px; width: 100%; margin: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 650px; max-width: 650px; width: 100%; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card:last-child { grid-column: span 2; }
  .section-heading-split { grid-template-columns: 1fr; gap: 20px; }
  .offer-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 75px 0; }
  .brand strong { font-size: .9rem; }
  .brand small { font-size: .68rem; }
  .brand-mark { width: 33px; height: 33px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero { min-height: auto; }
  .hero-visual { min-height: 500px; }
  .portrait-frame { inset: 10px 5% 20px 10%; }
  .hero-flower-card { width: 135px; right: -2%; }
  .hero-note { max-width: 185px; bottom: 2%; font-size: .9rem; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .intro-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .leaf-icon { display: none; }
  .about-images { min-height: 500px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card:last-child { grid-column: auto; }
  .therapy-feature, .therapy-feature.reverse { grid-template-columns: 1fr; gap: 22px; }
  .therapy-feature.reverse img { order: 0; }
  .therapy-feature img { height: 250px; }
  .therapy-disclaimer { margin-top: 25px; }
  .dialog-list { columns: 1; }
  .nature-break { min-height: 520px; }
  .offer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .butterfly-layer { display: none; }
  .reveal { opacity: 1; transform: none; }
}
