:root {
  --ink: #080808;
  --ink-soft: #101010;
  --panel: #151515;
  --paper: #f3f0ea;
  --paper-muted: #d8d4cd;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.67);
  --line: rgba(255, 255, 255, 0.12);
  --crimson: #d51d29;
  --crimson-deep: #8e1019;
  --silver: #a8a5a0;
  --max: 1240px;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "carol-gothic", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.shell {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--crimson);
}

.button,
.submit-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--crimson);
  color: var(--white);
  font: 800 0.9rem/1 "Manrope", sans-serif;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(213, 29, 41, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  background: #ed2533;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  color: var(--crimson);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.page-hero {
  position: relative;
  min-height: clamp(470px, 68vh, 720px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #070707;
}

.page-hero-media,
.page-hero-media img,
.page-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-media {
  z-index: -3;
}

.page-hero-media img,
.page-hero-media video {
  object-fit: cover;
  object-position: center;
  animation: pageHeroDrift 18s ease-in-out infinite alternate;
}

@keyframes pageHeroDrift {
  from { transform: scale(1.01); }
  to { transform: scale(1.07); }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, var(--ink), transparent 55%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

.page-hero-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 120px 0 70px;
}

.page-hero-copy {
  max-width: 850px;
  animation: pageHeroEnter 850ms cubic-bezier(.2,.7,.2,1) both;
}

@keyframes pageHeroEnter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.84;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
}

.page-hero h1 span {
  color: var(--crimson);
}

.page-hero-lede {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.section-dark {
  background: #0d0d0d;
}

.section-paper {
  background: var(--paper);
  color: #121212;
}

.section-paper p {
  color: #625e59;
}

.section-paper .eyebrow {
  color: #615d58;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.93;
  text-wrap: balance;
}

.section-heading p {
  max-width: 680px;
  margin-top: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.08fr);
}

.prose h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.93;
}

.prose h3 {
  margin-top: 32px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.prose p {
  max-width: 720px;
  margin-top: 20px;
}

.prose ul,
.prose ol {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.section-paper .prose ul,
.section-paper .prose ol {
  color: #625e59;
}

.editorial-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 400ms ease;
}

.editorial-image:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.photo-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(213, 29, 41, 0.11), transparent 54%),
    #111111;
  text-align: center;
}

.photo-placeholder strong {
  display: block;
  margin-bottom: 10px;
  font-family: "carol-gothic", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.photo-placeholder p {
  max-width: 440px;
  font-size: 0.88rem;
}

.section-paper .photo-placeholder {
  border-color: rgba(0, 0, 0, 0.25);
  background: #e8e4dc;
}

.section-paper .photo-placeholder p {
  color: #625e59;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.feature-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid currentColor;
}

.feature-card:first-child {
  border-left: 1px solid currentColor;
}

.feature-card-number {
  color: var(--crimson);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  margin-top: auto;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
}

.feature-card p {
  margin-top: 14px;
  font-size: 0.9rem;
}

.section-paper .feature-grid,
.section-paper .feature-card {
  border-color: rgba(0, 0, 0, 0.18);
}

.section-paper .feature-card p {
  color: #625e59;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.content-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.content-card h2,
.content-card h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.content-card p {
  margin-top: 16px;
}

.content-card .button,
.content-card .text-link {
  margin-top: 24px;
}

.section-paper .content-card {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.42);
}

.logo-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.logo-card img {
  width: 120px;
  max-height: 120px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 4px;
  padding: 10px;
}

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

.section-paper .faq-list,
.section-paper .policy-list {
  border-color: rgba(0, 0, 0, 0.18);
}

details {
  border-bottom: 1px solid var(--line);
}

.section-paper details {
  border-color: rgba(0, 0, 0, 0.18);
}

summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: currentColor;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 0;
  color: var(--crimson);
  font-size: 1.65rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details > div,
details > p {
  max-width: 850px;
  padding: 0 48px 24px 0;
}

details h3,
details h4 {
  margin: 20px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 0.93rem;
  font-weight: 800;
}

.steps {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  counter-increment: process;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.step:first-child {
  border-left: 1px solid var(--line);
}

.step::before {
  content: "0" counter(process);
  color: var(--crimson);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.step h3 {
  margin-top: auto;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.step p {
  margin-top: 14px;
  font-size: 0.88rem;
}

.callout {
  padding: 24px;
  border-left: 3px solid var(--crimson);
  background: rgba(213, 29, 41, 0.08);
}

.callout strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.section-paper .callout strong {
  color: #141414;
}

.jump-nav {
  position: sticky;
  top: 76px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
}

.jump-nav-inner {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.jump-nav a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.jump-nav a:hover {
  border-color: var(--crimson);
  color: var(--white);
}

.product-row {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.product-row + .product-row {
  margin-top: clamp(70px, 9vw, 120px);
}

.product-image {
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.product-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.product-copy p,
.product-copy ul {
  margin-top: 18px;
}

.product-copy ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.section-paper .product-copy ul {
  color: #625e59;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--panel);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 350ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-placeholder {
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  text-align: center;
}

.gallery-item-placeholder strong {
  display: block;
  font-family: "carol-gothic", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.gallery-item-placeholder small {
  display: block;
  max-width: 300px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.instagram-portfolio {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(213, 29, 41, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #101010;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.instagram-portfolio .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.instagram-portfolio .instagram-media > a {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 30px;
  color: var(--paper);
  font-family: "carol-gothic", Georgia, serif;
  font-size: clamp(1.8rem, 7vw, 3rem);
  text-align: center;
  text-decoration: none;
  background: #151515;
}

.closing {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.closing img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55);
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.77);
}

.closing-content {
  width: min(100% - 48px, 900px);
  padding: 88px 0;
}

.closing h2 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  line-height: 0.88;
  text-wrap: balance;
}

.closing p {
  max-width: 650px;
  margin: 24px auto 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

/* Forms */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 32px;
}

.form-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.form-section-title {
  margin-bottom: 22px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.required {
  color: var(--crimson);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: #080808;
  color: var(--white);
  font: 500 0.92rem/1.4 "Manrope", sans-serif;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 145px;
  padding-top: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(213, 29, 41, 0.16);
}

.form-field input[type="file"] {
  padding: 11px 13px;
}

.form-help {
  margin-top: 8px;
  font-size: 0.76rem;
}

.checkbox-field {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 !important;
  line-height: 1.65;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--crimson);
}

.datetime-picker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.55fr);
  gap: 10px;
}

.calendar-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.calendar-field input {
  border-radius: 4px 0 0 4px;
}

.calendar-toggle {
  min-width: 48px;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: #171717;
  color: var(--white);
  font: 800 0.72rem/1 "Manrope", sans-serif;
  cursor: pointer;
}

.calendar-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 50;
  width: min(330px, calc(100vw - 54px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar-month {
  font-size: 0.85rem;
  font-weight: 800;
}

.calendar-nav,
.calendar-day {
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.calendar-nav {
  width: 34px;
  height: 34px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.calendar-weekdays {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.calendar-day {
  aspect-ratio: 1;
  font-size: 0.75rem;
}

.calendar-day:hover,
.calendar-day.selected {
  background: var(--crimson);
}

.calendar-day[disabled] {
  opacity: 0.24;
  cursor: not-allowed;
}

.submit-button {
  width: 100%;
}

.form-alert {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.form-alert.success {
  border-color: rgba(88, 190, 116, 0.45);
  background: rgba(88, 190, 116, 0.1);
}

.form-alert.error {
  border-color: rgba(213, 29, 41, 0.5);
  background: rgba(213, 29, 41, 0.1);
}

.booking-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111111;
}

.aside-card h3 {
  font-size: 2rem;
  line-height: 1;
}

.aside-card p,
.aside-card ul {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.aside-card ul {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .split,
  .split-reverse,
  .product-row,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .split-reverse .prose {
    order: -1;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .shell,
  .page-hero-inner,
  .closing-content {
    width: min(100% - 36px, var(--max));
  }

  .page-hero {
    min-height: 590px;
  }

  .page-hero-inner {
    padding: 108px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .card-grid,
  .form-grid,
  .booking-aside,
  .steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .editorial-image,
  .editorial-image img {
    min-height: 410px;
  }

  .logo-card {
    grid-template-columns: 1fr;
  }

  .logo-card img {
    width: 100px;
  }

  .step,
  .step:nth-child(3),
  .step:nth-child(4) {
    min-height: 220px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .step:first-child {
    border-top: 0;
  }

  .product-image {
    min-height: 300px;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 360px;
  }

  .datetime-picker {
    grid-template-columns: 1fr;
  }

  .closing {
    min-height: 510px;
  }
}

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

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

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