/* =========================================================
   Light and Sound Spa — stylesheet
   Dark, atmospheric. No build step.
   ========================================================= */

:root {
  --bg:        #0a0b10;
  --bg-elev:   #101119;
  --surface:   #15172130;
  --surface-solid: #141621;
  --text:      #edeef4;
  --text-dim:  #a2a6b6;
  --text-faint:#6f7385;
  --line:      rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);

  --gold:   #d8b06a;
  --gold-bright: #ecc880;
  --violet: #8a6cff;
  --teal:   #33d1bd;

  --accent: var(--gold);
  --accent-ink: #1c150a;

  --radius:   16px;
  --radius-lg:22px;
  --maxw:     1140px;
  --pad:      clamp(20px, 5vw, 40px);

  --ease: cubic-bezier(.4, 0, .1, 1);

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

::selection { background: var(--gold); color: #17130a; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.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; top: 10px; left: 10px; z-index: 200;
  background: var(--gold); color: #17130a;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 600; text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: 13px 24px;
  border-radius: 999px;
  font: inherit; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .25s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: .9rem; }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--accent-ink);
  box-shadow: 0 8px 30px -10px rgba(216, 176, 106, .55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(216, 176, 106, .7);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.32);
  transform: translateY(-2px);
  background: rgba(255,255,255,.05);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header[data-state="scrolled"] {
  background: rgba(10, 11, 16, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--text);
  font-family: var(--font-display); font-size: 1.16rem; letter-spacing: -.01em;
}
.brand-mark { color: var(--gold); flex: none; }
.brand-amp { color: var(--gold); font-style: italic; }

.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a:not(.btn) {
  display: inline-block;
  padding: 9px 14px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: .93rem; font-weight: 500;
  border-radius: 999px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-list a:not(.btn):hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.nav-toggle-bar::before { transform: translate(-50%, -7px); }
.nav-toggle-bar::after  { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: clamp(140px, 24vh, 236px) 0 clamp(40px, 6vh, 68px);
  overflow: hidden;
  isolation: isolate;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%;
  opacity: .5;
}
.hero-blobs { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  will-change: transform;
}
.blob-1 { width: 46vw; height: 46vw; left: -10vw; top: -8vw;
  background: radial-gradient(circle at 30% 30%, var(--gold), transparent 70%);
  animation: drift1 26s var(--ease) infinite alternate; }
.blob-2 { width: 40vw; height: 40vw; right: -8vw; top: 6vw;
  background: radial-gradient(circle at 60% 40%, var(--violet), transparent 70%);
  opacity: .38;
  animation: drift2 32s var(--ease) infinite alternate; }
.blob-3 { width: 34vw; height: 34vw; left: 28vw; bottom: -14vw;
  background: radial-gradient(circle at 50% 50%, var(--teal), transparent 70%);
  opacity: .26;
  animation: drift3 38s var(--ease) infinite alternate; }
@keyframes drift1 { to { transform: translate(8vw, 6vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vw, 9vw) scale(1.1); } }
@keyframes drift3 { to { transform: translate(5vw, -8vw) scale(1.2); } }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(10,11,16,.4) 78%, var(--bg) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 20px;
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  font-weight: 400;
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  list-style: none; margin: 0; padding: 28px 0 0;
  border-top: 1px solid var(--line-soft);
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong { font-weight: 600; font-size: .95rem; }
.hero-facts span { color: var(--text-faint); font-size: .88rem; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
}
.hero-scroll-line {
  width: 2px; height: 10px; border-radius: 2px;
  background: var(--gold);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { transform: translateY(-6px); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translateY(8px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 11vw, 128px) 0; position: relative; }
.section-experience {
  padding-top: clamp(44px, 6vw, 72px);
  background: linear-gradient(180deg, var(--bg), var(--bg-elev) 50%, var(--bg));
}
.section-services   { border-block: 1px solid var(--line-soft); background: var(--bg-elev); }
.section-quotes     { background: var(--bg-elev); border-block: 1px solid var(--line-soft); }

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-kicker {
  text-transform: uppercase; letter-spacing: .2em;
  font-size: .73rem; font-weight: 600; color: var(--gold);
  margin: 0 0 14px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 400; }
.section-sub { color: var(--text-dim); margin: 16px 0 0; font-size: 1.06rem; }
.section-sub a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(216,176,106,.35); }
.section-sub a:hover { border-bottom-color: var(--gold); }

.draft-note {
  margin: 22px auto 0;
  max-width: 46ch;
  font-size: .86rem;
  color: var(--text-dim);
  background: rgba(138, 108, 255, .09);
  border: 1px dashed rgba(138, 108, 255, .4);
  padding: 10px 16px; border-radius: 12px;
}
.section-head--left .draft-note { margin-inline: 0; }
.draft-note strong { color: var(--text); }

/* ---------- Wave stage ---------- */
.wave-stage {
  position: relative;
  height: 190px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  max-width: 900px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 120% at 50% 120%, rgba(216,176,106,.14), transparent 60%),
    rgba(255,255,255,.015);
  overflow: hidden;
}
.wave-canvas { width: 100%; height: 100%; display: block; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(216,176,106,.45);
  box-shadow: 0 24px 60px -30px rgba(216,176,106,.5);
}
.pillar-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(216,176,106,.1);
  border: 1px solid rgba(216,176,106,.25);
  margin-bottom: 20px;
}
.pillar h3 { font-size: 1.32rem; margin-bottom: 8px; }
.pillar p { color: var(--text-dim); margin: 0; font-size: .98rem; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px; margin: 0 auto;
}
.pricing--two { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
.price-card {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.25); }
.price-card--feature {
  border-color: rgba(216,176,106,.5);
  background: linear-gradient(180deg, rgba(216,176,106,.1), var(--surface));
}
.price-len { font-size: .9rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .12em; }
.price-amt { font-family: var(--font-display); font-size: 2.7rem; color: var(--text); line-height: 1; }
.price-desc { color: var(--text-dim); font-size: .92rem; }

.pricing-foot {
  text-align: center; color: var(--text-dim);
  font-size: .95rem; margin: 24px auto 0; max-width: 46ch;
}

.chip {
  font-family: var(--font-body);
  font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--violet);
  border: 1px solid rgba(138,108,255,.4);
  background: rgba(138,108,255,.1);
  padding: 3px 8px; border-radius: 999px;
}

/* ---------- Session flow ---------- */
.flow {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: flow;
}
.flow-step {
  padding: 30px 24px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.flow-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  display: inline-block; margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(216,176,106,.3);
}
.flow-step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.flow-step p { margin: 0; color: var(--text-dim); font-size: .93rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.about-portrait { position: relative; }
.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-solid);
}
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 -70px 90px -40px rgba(10, 11, 16, .8);
  pointer-events: none;
}
.about-body p { color: var(--text-dim); }
.about-body .section-title { margin-bottom: 20px; }
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  color: var(--text);
  margin: 28px 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}
.pull-quote em { color: var(--gold); font-style: italic; }
.cred-list {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cred-list li {
  font-size: .84rem; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px;
}

/* ---------- Testimonials ---------- */
.quote-slider { max-width: 760px; margin: 0 auto; overflow: hidden; }
.quote-track { display: flex; transition: transform .5s var(--ease); }
.quote {
  flex: 0 0 100%;
  margin: 0; padding: 0 clamp(4px, 3vw, 40px);
  text-align: center;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.4; color: var(--text);
  margin: 0 0 18px;
}
.quote figcaption { color: var(--gold); font-size: .88rem; letter-spacing: .04em; }
.quote-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 34px;
}
.quote-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--text); font-size: 1.1rem; cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.quote-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.quote-dots { display: flex; gap: 8px; }
.quote-dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: 0; background: var(--text-faint); cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.quote-dots button[aria-selected="true"] { background: var(--gold); transform: scale(1.4); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 42px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.12rem;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.4rem; color: var(--gold);
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 40px 24px 0; }
.faq-answer p { margin: 0; color: var(--text-dim); font-size: .97rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-intro p { color: var(--text-dim); }
.contact-intro .section-title { margin-bottom: 18px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 34px; }
.contact-meta { margin: 0; display: grid; gap: 18px; }
.contact-meta dt {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--text-faint); margin-bottom: 4px;
}
.contact-meta dd { margin: 0; color: var(--text); }
.contact-meta a { color: var(--gold); text-decoration: none; }
.contact-meta a:hover { text-decoration: underline; }
.contact-meta .meta-note { display: block; margin-top: 5px; color: var(--text-faint); font-size: .84rem; line-height: 1.5; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
}
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,176,106,.18);
}
.field select { appearance: none; background-image:
  linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
  linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form .btn { width: 100%; margin-top: 6px; }
.form-status { margin: 14px 0 0; font-size: .92rem; min-height: 1.2em; }
.form-status[data-tone="ok"] { color: var(--teal); }
.form-status[data-tone="err"] { color: #ff8f8f; }
.form-fineprint { margin: 14px 0 0; font-size: .78rem; color: var(--text-faint); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 44px;
  background: var(--bg-elev);
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.1rem;
}
.footer-brand .brand-mark { color: var(--gold); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 22px; justify-content: center; }
.footer-nav a {
  color: var(--text-dim); text-decoration: none; font-size: .9rem;
  transition: color .18s var(--ease);
}
.footer-nav a:hover { color: var(--text); }
.footer-fine { color: var(--text-faint); font-size: .8rem; margin: 0; line-height: 1.7; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .pillars, .flow { grid-template-columns: 1fr 1fr; }
  .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 360px; }
  .faq-grid .section-head--left { text-align: left; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(12, 13, 20, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--pad) 24px;
    transform: translateY(-140%);
    transition: transform .32s var(--ease);
  }
  .nav-list[data-open="true"] { transform: translateY(0); }
  .nav-list a:not(.btn) { padding: 14px 8px; font-size: 1rem; }
  .nav-list a:not(.btn):hover { background: transparent; }
  .nav-cta { margin: 10px 8px 0; text-align: center; }

  .pricing, .pricing--two, .pillars, .flow, .field-row { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-facts { gap: 14px 28px; }
  body { font-size: 16px; }
}

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .blob { animation: none; }
  .hero-canvas { opacity: .35; }
}
