/* ============================================================
   燈 TOMOSHIBI — fictional sake brand demo
   "One lamp in the dark." Vanilla CSS only, no frameworks.
   Naming theme: the brewery at night (urushi/susu/kasumi/washi/kohaku).
   ============================================================ */

:root {
  --urushi: #0C0A08;          /* lacquer black — page bg */
  --susu: #16120E;            /* soot — raised surface */
  --kasumi: #2A241C;          /* haze — hairlines */
  --washi: #F2EDE3;           /* washi paper — text on dark */
  --kohaku: #C9A24B;          /* amber lamp — default accent */
  --ruri: #5B7DB1;            /* lapis — "宵" ambient */
  --hakugin: #C9CDD2;         /* silver — "雫" ambient */
  --ambient: #C9A24B;         /* current lamp color, switched by JS */
  --serif: "Shippori Mincho", serif;
  --roman: "Cormorant Garamond", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --pace: 0.9s;               /* everything moves at pouring speed */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--urushi);
  color: rgba(242, 237, 227, .72);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 2.1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
figure { margin: 0; }

::selection { background: var(--kohaku); color: var(--urushi); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--urushi); }
::-webkit-scrollbar-thumb { background: var(--kasumi); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--kohaku); }

.serif-caps {
  font-family: var(--roman);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.serif-num { font-family: var(--roman); font-weight: 300; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 1px solid var(--ambient);
  outline-offset: 4px;
}

/* scroll reveal — slow bloom, never bouncy */
.js [data-fade-in] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
}
.js [data-fade-in].is-in { opacity: 1; transform: none; }

/* ---------- age gate ---------- */
.gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(640px 640px at 50% 38%, rgba(201, 162, 75, .08), transparent 66%),
    var(--urushi);
  transition: opacity 1.2s ease, visibility 1.2s;
}
.gate.is-open-sesame { opacity: 0; visibility: hidden; }
.gate__inner { text-align: center; padding: 24px; }
.gate__mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--washi);
  text-shadow: 0 0 48px rgba(201, 162, 75, .55);
  margin-bottom: 14px;
}
.gate__brand { font-size: 11px; color: var(--kohaku); margin-bottom: 56px; }
.gate__q {
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(242, 237, 227, .9);
  margin-bottom: 32px;
}
.gate__actions { display: flex; justify-content: center; gap: 18px; }
.gate__btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .2em;
  color: rgba(242, 237, 227, .6);
  background: none;
  border: 1px solid var(--kasumi);
  padding: 13px 46px;
  cursor: pointer;
  transition: color var(--pace), border-color var(--pace), background-color var(--pace);
}
.gate__btn:hover { color: var(--washi); border-color: rgba(242, 237, 227, .4); }
.gate__btn--yes { color: var(--kohaku); border-color: rgba(201, 162, 75, .6); }
.gate__btn--yes:hover { background: var(--kohaku); color: var(--urushi); border-color: var(--kohaku); }
.gate__deny { margin-top: 26px; font-size: 12px; color: rgba(242, 237, 227, .55); }
.gate__note {
  position: fixed;
  left: 0; right: 0; bottom: 26px;
  font-size: 10.5px;
  letter-spacing: .08em;
  color: rgba(242, 237, 227, .3);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 72px;
  padding-inline: clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background-color .6s ease, border-color .6s ease;
}
.nav.is-scrolled {
  background: rgba(12, 10, 8, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--kasumi);
}
.nav__brand { display: inline-flex; align-items: baseline; gap: 12px; font-size: 10px; color: rgba(242, 237, 227, .6); }
.nav__mark {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--washi);
  text-shadow: 0 0 22px color-mix(in srgb, var(--ambient) 60%, transparent);
  transition: text-shadow var(--pace);
}
.nav__links { display: flex; gap: 34px; margin-left: auto; }
.nav__links a {
  font-family: var(--serif);
  font-size: 12.5px;
  letter-spacing: .3em;
  color: rgba(242, 237, 227, .55);
  transition: color .6s ease;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--washi); }
.nav__store {
  font-size: 10.5px;
  color: var(--kohaku);
  border: 1px solid rgba(201, 162, 75, .5);
  padding: 10px 22px;
  transition: background-color var(--pace), color var(--pace);
}
.nav__store:hover { background: var(--kohaku); color: var(--urushi); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero__photo, .hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__photo img { object-fit: cover; object-position: 62% center; }
.js .hero__photo {
  opacity: 0;
  transition: opacity 2.4s ease;
}
.js .hero.is-lit .hero__photo { opacity: 1; }
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(46vmax 46vmax at 62% 52%, color-mix(in srgb, var(--ambient) 14%, transparent), transparent 68%);
  opacity: 0;
  transition: opacity 2.8s ease .6s, background var(--pace);
  pointer-events: none;
}
.hero.is-lit .hero__glow { opacity: 1; }
.hero__name {
  position: absolute;
  top: 50%;
  right: clamp(22px, 7vw, 110px);
  transform: translateY(-52%);
  writing-mode: vertical-rl;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.hero__kanji {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(84px, 15vw, 168px);
  line-height: 1;
  color: var(--washi);
  text-shadow: 0 0 64px color-mix(in srgb, var(--ambient) 45%, transparent);
}
.hero__yomi { font-size: 12px; letter-spacing: .58em; color: rgba(242, 237, 227, .5); padding-top: 10px; }
.js .hero__name { opacity: 0; transform: translateY(calc(-52% + 14px)); transition: opacity 2s ease .9s, transform 2s ease .9s; }
.js .hero.is-lit .hero__name { opacity: 1; transform: translateY(-52%); }
.hero__copy {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(96px, 18vh, 180px);
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: .12em;
  color: var(--washi);
  line-height: 1.7;
}
.hero__copy span { display: block; }
.js .hero__copy span { opacity: 0; transform: translateY(16px); transition: opacity 1.6s ease, transform 1.6s ease; }
.js .hero.is-lit .hero__copy span:nth-child(1) { transition-delay: 1.5s; }
.js .hero.is-lit .hero__copy span:nth-child(2) { transition-delay: 1.9s; }
.js .hero.is-lit .hero__copy span { opacity: 1; transform: none; }
.hero__sub {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(56px, 10vh, 108px);
  font-size: 12.5px;
  letter-spacing: .14em;
  color: rgba(242, 237, 227, .55);
}
.js .hero__sub { opacity: 0; transition: opacity 1.6s ease 2.4s; }
.js .hero.is-lit .hero__sub { opacity: 1; }
.hero__scroll {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: rgba(242, 237, 227, .4);
}
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--ambient), transparent);
  animation: pour 2.6s ease infinite;
}
@keyframes pour {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ---------- statement (vertical writing) ---------- */
.statement {
  padding-block: clamp(120px, 18vw, 240px);
  display: flex;
  justify-content: center;
}
.statement__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 72px);
}
.statement__label { font-size: 11px; color: var(--ambient); writing-mode: vertical-rl; letter-spacing: .5em; transition: color var(--pace); }
.statement__text {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 2.6;
  letter-spacing: .16em;
  color: rgba(242, 237, 227, .92);
  max-height: 30em;
}
.statement__text .char { opacity: .1; transition: opacity 1.4s ease; }
.statement__text .char.is-lit { opacity: 1; }

/* ---------- collection (washi inversion) ---------- */
.collection {
  background: var(--washi);
  color: rgba(24, 20, 14, .78);
  padding: clamp(96px, 13vw, 190px) clamp(20px, 5vw, 72px);
}
.collection__head { max-width: 1240px; margin: 0 auto clamp(56px, 8vw, 110px); }
.collection__label { font-size: 11px; color: color-mix(in srgb, var(--ambient) 78%, #1a1610); transition: color var(--pace); }
.collection__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: .1em;
  color: #181008;
  margin-block: 18px 14px;
}
.collection__lead { font-size: 13.5px; }
.collection__hint { display: inline-block; margin-left: 14px; font-size: 11px; color: rgba(24, 20, 14, .45); }
.collection__grid {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.collection__sub {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}
.meigara {
  display: block;
  border-top: 1px solid rgba(24, 20, 14, .18);
  padding-top: clamp(18px, 2vw, 28px);
  cursor: pointer;
}
.meigara__photo {
  overflow: hidden;
  background: var(--urushi);
}
.meigara__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.meigara--main .meigara__photo img { aspect-ratio: 4 / 4.6; object-position: center; }
.meigara:hover .meigara__photo img, .meigara:focus-visible .meigara__photo img { transform: scale(1.035); }
.meigara__meta { padding-top: 20px; display: grid; grid-template-columns: auto 1fr; gap: 4px 22px; align-items: baseline; }
.meigara__class { grid-column: 1 / -1; font-size: 10px; color: rgba(24, 20, 14, .5); }
.meigara__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.2;
  color: #181008;
}
.meigara__yomi { font-size: 11px; font-weight: 400; letter-spacing: .3em; margin-left: 14px; color: rgba(24, 20, 14, .5); }
.meigara__desc { grid-column: 2; font-size: 13px; align-self: center; }
.meigara__price { grid-column: 1 / -1; font-size: 13px; letter-spacing: .18em; color: #181008; margin-top: 8px; }
.meigara__price span { font-size: 10.5px; color: rgba(24, 20, 14, .5); margin-left: 8px; }
.meigara--main .meigara__name { font-size: clamp(2.6rem, 4.6vw, 4rem); }

/* ---------- terroir (fullbleed parallax) ---------- */
.terroir {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.terroir__photo, .terroir__photo img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
}
.terroir__photo img { object-fit: cover; will-change: transform; }
.terroir::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, .82), transparent 55%);
}
.terroir__text {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 9vw, 130px);
  max-width: 720px;
}
.terroir__label { font-size: 11px; color: var(--ambient); transition: color var(--pace); }
.terroir__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: .1em;
  color: var(--washi);
  margin-block: 16px 18px;
}
.terroir__desc { font-size: 13.5px; color: rgba(242, 237, 227, .8); max-width: 34em; }

/* ---------- kura + numbers ---------- */
.kura {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: clamp(110px, 15vw, 210px) clamp(20px, 5vw, 72px);
  max-width: 1400px;
  margin-inline: auto;
}
.kura__photo img { width: 100%; }
.kura__label { font-size: 11px; color: var(--ambient); transition: color var(--pace); }
.kura__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: .1em;
  color: var(--washi);
  margin-block: 16px 18px;
}
.kura__desc { font-size: 13.5px; max-width: 32em; margin-bottom: clamp(40px, 5vw, 64px); }
.kura__nums { display: flex; gap: clamp(28px, 4vw, 64px); }
.num dt { font-size: 10px; color: rgba(242, 237, 227, .45); margin-bottom: 6px; }
.num dd { display: flex; align-items: baseline; gap: 6px; }
.num__val {
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 1;
  color: var(--washi);
}
.num__unit { font-size: 13px; color: var(--ambient); transition: color var(--pace); }

/* ---------- hands ---------- */
.hands {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: 0 clamp(20px, 5vw, 72px) clamp(110px, 15vw, 210px);
  max-width: 1400px;
  margin-inline: auto;
}
.hands__label { font-size: 11px; color: var(--ambient); margin-bottom: 22px; transition: color var(--pace); }
.hands__quote p {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 2.3;
  letter-spacing: .1em;
  color: rgba(242, 237, 227, .92);
  margin-bottom: 22px;
}
.hands__quote cite { font-style: normal; font-size: 12px; color: rgba(242, 237, 227, .5); }
.hands__photo img { width: 100%; }

/* ---------- cta ---------- */
.cta {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  background: var(--susu);
  border-block: 1px solid var(--kasumi);
  padding: clamp(96px, 12vw, 170px) clamp(20px, 5vw, 72px);
}
.cta__photo { max-width: 520px; justify-self: end; }
.cta__photo img { width: 100%; }
.cta__label { font-size: 11px; color: var(--ambient); transition: color var(--pace); }
.cta__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: .1em;
  color: var(--washi);
  margin-block: 16px 14px;
}
.cta__desc { font-size: 13.5px; margin-bottom: 36px; }
.btn {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--urushi);
  background: var(--kohaku);
  border: 1px solid var(--kohaku);
  padding: 17px 52px;
  cursor: pointer;
  transition: background-color var(--pace), color var(--pace);
}
.btn:hover { background: transparent; color: var(--kohaku); }
.cta__note { margin-top: 18px; font-size: 11px; color: rgba(242, 237, 227, .4); }

/* ---------- footer ---------- */
.footer { text-align: center; padding: clamp(72px, 9vw, 120px) 24px 100px; }
.footer__mark {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--washi);
  text-shadow: 0 0 30px color-mix(in srgb, var(--ambient) 50%, transparent);
  margin-bottom: 26px;
  transition: text-shadow var(--pace);
}
.footer__legal { font-size: 11px; color: rgba(242, 237, 227, .45); margin-bottom: 20px; }
.footer__demo { font-size: 11px; line-height: 2.2; color: rgba(242, 237, 227, .45); margin-bottom: 30px; }
.footer__demo a { color: var(--kohaku); border-bottom: 1px solid rgba(201, 162, 75, .4); }
.footer__copy { font-size: 9.5px; color: rgba(242, 237, 227, .3); }

/* ---------- demo badge / toast ---------- */
.demo-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  font-size: 9px;
  letter-spacing: .24em;
  color: rgba(242, 237, 227, .55);
  background: rgba(12, 10, 8, .6);
  border: 1px solid var(--kasumi);
  padding: 7px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 8px);
  z-index: 200;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--washi);
  background: rgba(22, 18, 14, .95);
  border: 1px solid var(--kasumi);
  padding: 14px 28px;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ---------- product page (kiwami) ---------- */
.phero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.phero__photo, .phero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.phero__photo img { object-fit: cover; }
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 8, .86), transparent 52%);
}
.phero__text {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 110px);
}
.phero__class { font-size: 11px; color: var(--kohaku); }
.phero__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  letter-spacing: .08em;
  color: var(--washi);
  margin-block: 14px 18px;
}
.phero__yomi { font-size: 13px; letter-spacing: .5em; color: rgba(242, 237, 227, .5); margin-left: 22px; }
.phero__lead { font-size: 13.5px; color: rgba(242, 237, 227, .82); }

.spec {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 72px);
  max-width: 1400px;
  margin-inline: auto;
}
.spec__label { font-size: 11px; color: var(--kohaku); margin-bottom: 34px; display: block; }
.spec__table div {
  display: grid;
  grid-template-columns: 9em 1fr;
  gap: 20px;
  padding-block: 15px;
  border-top: 1px solid var(--kasumi);
  font-size: 13.5px;
}
.spec__table div:last-child { border-bottom: 1px solid var(--kasumi); }
.spec__table dt { color: rgba(242, 237, 227, .5); letter-spacing: .12em; }
.spec__table dd { color: rgba(242, 237, 227, .88); }
.spec__photo img { width: 100%; }

.taste {
  background: var(--susu);
  border-block: 1px solid var(--kasumi);
  padding: clamp(96px, 12vw, 170px) clamp(20px, 5vw, 72px);
}
.taste__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.taste__label { font-size: 11px; color: var(--kohaku); }
.taste__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: .1em;
  color: var(--washi);
  margin-block: 16px 20px;
}
.taste__desc { font-size: 13.5px; text-align: left; margin-bottom: 40px; }
.taste__pairing {
  font-size: 13px;
  color: rgba(242, 237, 227, .78);
  border-top: 1px solid var(--kasumi);
  padding-top: 22px;
}
.taste__pairing .serif-caps { display: block; font-size: 10px; color: var(--kohaku); margin-bottom: 10px; }

.pback { text-align: center; padding: clamp(80px, 10vw, 140px) 24px; }
.pback .cta__note { margin-top: 20px; }

@media (max-width: 1023px) {
  .spec { grid-template-columns: 1fr; }
  .spec__photo { max-width: 480px; }
}

/* ---------- responsive ---------- */
@media (max-width: 1023px) {
  .kura, .hands, .cta { grid-template-columns: 1fr; }
  .hands__body { order: 2; }
  .cta__photo { justify-self: start; max-width: 420px; }
}

@media (max-width: 768px) {
  .nav { gap: 20px; height: 62px; }
  .nav__links { display: none; }
  .nav__store { margin-left: auto; }

  .hero__photo img { object-position: 58% center; }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 8, .78), transparent 44%);
    pointer-events: none;
  }
  .hero__name, .hero__copy, .hero__sub, .hero__scroll { z-index: 1; }
  .hero__name { right: 18px; top: 38%; }
  .hero__copy { bottom: 208px; }
  .hero__sub { bottom: 128px; max-width: 76vw; }

  .statement__inner { flex-direction: column-reverse; align-items: center; gap: 34px; }
  .statement__text { max-height: 24em; }

  .collection__grid { grid-template-columns: 1fr; }
  .meigara--main .meigara__photo img { aspect-ratio: 4 / 3.4; }
  .meigara__meta { grid-template-columns: 1fr; }
  .meigara__desc { grid-column: 1; }

  .kura__nums { flex-wrap: wrap; }
  .footer { padding-bottom: 120px; }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-fade-in], .js .hero__photo, .js .hero__name, .js .hero__copy span, .js .hero__sub, .hero__glow { opacity: 1 !important; transform: none !important; }
  .statement__text .char { opacity: 1; }
}
