:root {
  color-scheme: light;
  --ink: #07182c;
  --ink-soft: #102844;
  --blue: #1d4fbf;
  --blue-bright: #2f68e4;
  --cream: #f5f0e7;
  --paper: #fffdf8;
  --sand: #d8b276;
  --line: rgba(7, 24, 44, 0.17);
  --muted: #526172;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  padding: 0.8rem clamp(1.25rem, 4vw, 4rem);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.scrolled {
  min-height: 4.5rem;
  background: rgba(7, 24, 44, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--sand);
  border-radius: 50%;
}

.brand-mark::before {
  right: -0.08rem;
  top: 0.33rem;
}

.brand-mark::after {
  right: -0.19rem;
  top: 0.91rem;
}

.brand-mark span {
  right: 0.02rem;
  bottom: 0.28rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-title {
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-author {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.25rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-contact {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--white);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 1.45rem;
  height: 1px;
  margin: 0.35rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
  align-items: center;
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: 8rem max(6vw, calc((100vw - var(--max)) / 2)) 5rem;
  background:
    radial-gradient(circle at 74% 24%, rgba(47, 104, 228, 0.31), transparent 28rem),
    linear-gradient(132deg, #061426 0%, #0a1c32 55%, #102844 100%);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 0.42rem;
  background: var(--sand);
}

.hero-copy {
  z-index: 2;
  max-width: 43rem;
  padding-right: clamp(1rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #8a6226;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.4vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.hero h1 em {
  color: var(--sand);
  font-weight: 400;
}

.hero-intro {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sand);
  color: var(--ink);
}

.button-primary:hover {
  background: #e7c88d;
}

.text-link {
  color: var(--white);
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 0.34rem;
}

.hero-message {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 31rem);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: clamp(2rem, 5vw, 4.25rem);
  background:
    linear-gradient(145deg, rgba(47, 104, 228, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.hero-message::after {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(255, 255, 255, 0.025), 0 0 0 4rem rgba(255, 255, 255, 0.018);
  pointer-events: none;
}

.hero-message-label {
  position: relative;
  z-index: 1;
  margin: 0 0 2.6rem;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-message blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-message blockquote p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero-message blockquote em {
  color: var(--sand);
  font-weight: 400;
}

.hero-message-copy {
  position: relative;
  z-index: 1;
  max-width: 25rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.hero-message-signoff {
  position: relative;
  z-index: 1;
  margin: 2.6rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  right: 1.7rem;
  top: 50%;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transform: translate(45%, -50%) rotate(90deg);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note span:first-child {
  color: var(--sand);
}

.statement {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2rem;
  padding: 2.25rem 5vw;
  background: var(--sand);
  color: var(--ink);
}

.statement p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.statement span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) max(6vw, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 48rem;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.discipline-intro > p:last-child,
.book-copy > p {
  max-width: 43rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.recognition {
  background: var(--cream);
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4.5rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.pattern-card {
  min-height: 19rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
}

.card-number {
  display: inline-block;
  color: #9b793f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pattern-card h3,
.principle h3,
.step-list h3 {
  margin: 3.5rem 0 1rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.pattern-card p,
.principle p,
.step-list p {
  margin: 0;
  color: var(--muted);
}

.recognition-close {
  max-width: 54rem;
  margin: 3.2rem 0 0 auto;
  padding-left: 2rem;
  border-left: 3px solid var(--sand);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(3rem, 9vw, 9rem);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.story-index {
  position: absolute;
  right: -0.04em;
  bottom: -0.27em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 29rem;
  line-height: 1;
}

.story-title,
.story-copy {
  position: relative;
  z-index: 1;
}

.story-title h2 {
  max-width: 31rem;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.story-copy .lead {
  margin-top: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.45;
}

.story-purpose {
  margin-top: 2.5rem;
  padding: 1.65rem 1.75rem;
  border-left: 3px solid var(--sand);
  background: rgba(255, 255, 255, 0.055);
}

.story-purpose .story-purpose-label {
  margin: 0 0 0.7rem;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-purpose p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.story-copy .signature {
  margin-top: 2.5rem;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.discipline {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 9vw, 8rem);
  background: var(--paper);
}

.discipline-intro {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 2.3rem 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: #9b793f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
}

.next-step {
  background: var(--blue);
  color: var(--white);
}

.next-step-copy {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 2rem;
}

.next-step-copy h2 {
  max-width: 50rem;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 4.5rem 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.5rem;
  background: rgba(6, 20, 38, 0.14);
}

.step-list li > span {
  color: var(--sand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-list h3 {
  margin: 3rem 0 0.8rem;
  font-size: 1.75rem;
}

.step-list p {
  color: rgba(255, 255, 255, 0.72);
}

.book {
  display: grid;
  grid-template-columns: minmax(17rem, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 9rem);
  background: var(--cream);
}

.book-cover-link {
  display: block;
  width: min(100%, 19.625rem);
  margin-inline: auto;
  background: var(--ink);
  box-shadow: -1.1rem 1.2rem 0 var(--sand), 0 2.2rem 4rem rgba(7, 24, 44, 0.22);
  text-decoration: none;
  transition: box-shadow 180ms ease;
}

.book-cover-link:hover {
  box-shadow: -1.1rem 1.5rem 0 var(--sand), 0 2.5rem 4.5rem rgba(7, 24, 44, 0.25);
}

.book-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 314 / 500;
  border: 1px solid rgba(7, 24, 44, 0.16);
  object-fit: cover;
}

.book-copy h2 {
  max-width: 39rem;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 2px var(--cream);
}

.book-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 2.25rem;
}

.button-amazon {
  gap: 0.65rem;
  background: var(--ink);
  color: var(--white);
}

.button-amazon:hover {
  background: var(--blue);
}

.book-asin {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 8vw, 7rem);
  background: var(--ink);
  color: var(--white);
}

.contact-copy > p:not(.eyebrow):not(.contact-note):not(.direct-email) {
  max-width: 41rem;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.contact-note {
  max-width: 39rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.direct-email {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.direct-email a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 0.24rem;
}

.contact-form {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.field label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border 150ms ease, background 150ms ease;
}

.field input {
  min-height: 3.15rem;
  padding: 0.7rem 0.85rem;
}

.field textarea {
  resize: vertical;
  min-height: 10rem;
  padding: 0.85rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--sand);
  background: rgba(255, 255, 255, 0.11);
}

.privacy-notice {
  margin: 0.4rem 0 1.4rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--sand);
  background: rgba(4, 16, 31, 0.5);
}

.privacy-kicker {
  margin: 0 0 0.35rem;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-notice h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.privacy-notice p:not(.privacy-kicker) {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.875rem;
  line-height: 1.6;
}

.privacy-notice a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 0.2rem;
}

.privacy-notice .privacy-rights {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.button-light {
  width: 100%;
  margin-top: 0.4rem;
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--sand);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.form-status.error {
  color: #ffd1c7;
}

.form-status.success {
  color: #f1d8a7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem max(6vw, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #04101f;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-decoration: none;
}

.footer-privacy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.875rem;
  font-weight: 700;
  text-underline-offset: 0.22rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay-small {
  transition-delay: 80ms;
}

.reveal-delay {
  transition-delay: 160ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 4.75rem;
  }

  .menu-button {
    display: block;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    background: rgba(7, 24, 44, 0.985);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(0.18rem) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.18rem) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr 0.75fr;
    min-height: auto;
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8vw, 6.2rem);
  }

  .hero-note {
    display: none;
  }

  .story,
  .discipline,
  .book,
  .contact {
    grid-template-columns: 1fr;
  }

  .discipline-intro {
    position: static;
  }

  .next-step-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 5rem;
  }

  .brand-title {
    max-width: 12rem;
    font-size: 0.88rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 7.2rem 1.25rem 2.8rem;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-message {
    width: min(100%, 30rem);
    margin-top: 3.4rem;
    padding: 2rem;
  }

  .hero-message blockquote p {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.8rem 1.25rem;
  }

  .section {
    padding: 4.8rem 1.25rem;
  }

  .section h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .pattern-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .pattern-card,
  .step-list li {
    min-height: auto;
  }

  .pattern-card h3,
  .step-list h3 {
    margin-top: 2rem;
  }

  .story {
    gap: 2.5rem;
  }

  .story-index {
    font-size: 17rem;
  }

  .book-cover-link {
    box-shadow: -0.55rem 0.6rem 0 var(--sand), 0 1.5rem 3rem rgba(7, 24, 44, 0.2);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .site-footer p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
