:root {
  --bg: #f8efe9;
  --bg-soft: #fff8f3;
  --surface: rgba(255, 252, 249, 0.92);
  --surface-strong: #fffdfb;
  --text: #2f2724;
  --muted: #6e5a53;
  --primary: #b67a61;
  --primary-deep: #8d5946;
  --accent: #ecd0bb;
  --border: #ead8cb;
  --shadow-lg: 0 20px 48px rgba(86, 51, 34, 0.16);
  --shadow-md: 0 10px 30px rgba(86, 51, 34, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, #ffe9da 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, #f7dccf 0%, transparent 40%),
    var(--bg);
  line-height: 1.65;
}

body.has-overlay-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li+li {
  margin-top: 0.38rem;
}

.container {
  width: min(calc(100% - 2.4rem), var(--container));
  margin-inline: auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.32;
  filter: blur(80px);
}

.bg-shape--one {
  width: 380px;
  height: 380px;
  top: 12%;
  left: -10%;
  background: #f4c7ad;
}

.bg-shape--two {
  width: 330px;
  height: 330px;
  right: -8%;
  bottom: 12%;
  background: #efdec8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 245, 239, 0.87);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 216, 203, 0.9);
}

.site-header__inner {
  min-height: 86px;
  padding-block: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
}

.brand>div {
  min-width: 0;
}

.brand__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(233, 215, 202, 0.88);
  background: #fff;
}

.brand__name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34ch;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__name span {
  display: inline;
}

.brand__tagline {
  margin-top: 0.04rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-strong);
  padding: 0.6rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle span+span {
  margin-top: 0.28rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.site-nav a {
  position: relative;
  font-size: 0.84rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: var(--muted);
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.16rem;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--primary-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  padding: 0.2rem;
  gap: 0.2rem;
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  height: 32px;
  min-width: 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch__btn.is-active {
  background: var(--primary);
  color: #fff;
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(92vh, 830px);
  display: flex;
  align-items: center;
}

.hero--inner {
  min-height: min(76vh, 670px);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroFloat 14s ease-in-out infinite;
}

.hero__overlay {
  background:
    linear-gradient(98deg, rgba(33, 18, 13, 0.68) 0%, rgba(33, 18, 13, 0.34) 45%, rgba(33, 18, 13, 0.58) 100%),
    radial-gradient(circle at 22% 30%, rgba(255, 224, 199, 0.16), transparent 44%);
}

.hero__glow,
.hero__sweep {
  position: absolute;
  pointer-events: none;
}

.hero__glow {
  width: min(44vw, 520px);
  height: min(34vh, 320px);
  top: 38%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 212, 168, 0.32), rgba(255, 212, 168, 0));
  filter: blur(16px);
  animation: handGlow 8s ease-in-out infinite;
}

.hero__sweep {
  width: min(48vw, 620px);
  height: 120%;
  top: -10%;
  left: 22%;
  background: linear-gradient(108deg, transparent 0%, rgba(255, 240, 219, 0.15) 46%, transparent 58%);
  transform: translateX(-20%);
  animation: sweep 10s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: #fff5ee;
  padding-block: clamp(5.1rem, 10vw, 8rem) clamp(3rem, 7vw, 5rem);
}

.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 18ch;
}

.hero__subtitle {
  margin-top: 1.05rem;
  max-width: 62ch;
  color: rgba(255, 243, 236, 0.9);
  font-size: clamp(1rem, 1.32vw, 1.18rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.8rem;
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.62;
}

.hero .section-kicker {
  color: #ffdabc;
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero__stats li {
  margin-top: 0;
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 234, 218, 0.35);
  background: rgba(255, 250, 246, 0.1);
}

.hero__stats strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
}

.hero__stats span {
  font-size: 0.78rem;
  color: rgba(255, 242, 233, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.22s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.66;
  cursor: not-allowed;
  transform: none;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(142deg, var(--primary) 0%, #9f6550 100%);
  box-shadow: 0 14px 30px rgba(125, 76, 57, 0.35);
}

.btn--ghost {
  color: inherit;
  background: rgba(255, 248, 242, 0.1);
  border-color: currentColor;
}

.btn--light {
  color: var(--primary-deep);
  border-color: var(--border);
  background: var(--surface-strong);
}

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(37, 22, 16, 0.58);
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.22s ease;
}

.disclaimer-modal.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.disclaimer-modal__dialog {
  width: min(100%, 560px);
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(255, 242, 234, 0.6);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.98), rgba(255, 244, 236, 0.96));
  box-shadow: 0 28px 70px rgba(43, 24, 16, 0.28);
}

.disclaimer-modal__eyebrow {
  margin-bottom: 0.55rem;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disclaimer-modal__title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: #3b2e29;
}

.disclaimer-modal__text {
  margin-top: 0.9rem;
  color: var(--muted);
}

.disclaimer-modal__button {
  margin-top: 1.35rem;
  min-width: min(100%, 280px);
}

.section {
  padding-block: clamp(3.8rem, 8vw, 6.3rem);
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 251, 247, 0.7));
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3b2e29;
  max-width: 20ch;
}

.section-intro {
  margin-top: 0.92rem;
  max-width: 74ch;
  color: var(--muted);
}

.cards,
.split,
.columns {
  margin-top: 1.45rem;
  display: grid;
  gap: 1rem;
}

.cards--services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.card {
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.45rem;
}

.card h4 {
  font-size: 1.28rem;
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
}

.card p {
  color: var(--muted);
}

.card ul {
  margin-top: 0.6rem;
}

.card--accent {
  background: linear-gradient(165deg, #fff8f2 0%, #fcebdd 100%);
}

.card--warning {
  background: linear-gradient(165deg, #fff6f4 0%, #ffeae2 100%);
  border-color: #efb8a9;
}

.service-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.8rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d8b6a1;
}

.service-card h3 {
  font-size: 1.72rem;
}

.service-card p {
  color: var(--muted);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.service-card__link::after {
  content: "->";
}

.about-layout {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.25fr 1fr;
}

.about-layout p+p {
  margin-top: 0.8rem;
}

.quote {
  margin-top: 0.9rem;
  padding-left: 0.8rem;
  border-left: 2px solid rgba(182, 122, 97, 0.5);
  font-style: italic;
  color: #5a463f;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  margin-top: 0;
  border-radius: 999px;
  background: #f8ecdf;
  border: 1px solid #e8d4c2;
  padding: 0.35rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6a4f44;
}

.photo-section {
  margin-top: 1.6rem;
}

.photo-section h3 {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  margin-bottom: 0.45rem;
}

.photo-section p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: clip;
  border: 1px solid rgba(226, 207, 193, 0.88);
  background: #f4e8df;
  cursor: zoom-in;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(34, 20, 14, 0.52) 100%);
  opacity: 0.82;
}

.gallery-item figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.58rem;
  z-index: 2;
  color: #fff6ef;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item--a {
  grid-column: span 7;
  aspect-ratio: 16 / 10;
}

.gallery-item--b {
  grid-column: span 5;
  aspect-ratio: 1 / 1;
}

.gallery-item--c {
  grid-column: span 4;
  aspect-ratio: 10 / 12;
}

.gallery-item--d {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item--logo {
  background: radial-gradient(circle at 35% 30%, #fff7f2 0%, #f6e5d8 100%);
}

.gallery-item--logo img {
  object-fit: contain;
  padding: 1rem;
}

.gallery-item--logo::after {
  background: linear-gradient(180deg, transparent 42%, rgba(56, 34, 23, 0.38) 100%);
}

.booking-block {
  margin-top: 1.45rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.72rem;
}

.contact-list li {
  margin-top: 0;
  padding: 0.68rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list strong {
  font-size: 0.94rem;
}

.map-container {
  margin-top: 2.2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.map-container iframe {
  display: block;
  filter: saturate(0.9) contrast(1.05);
  /* Subtle aesthetic adjustment */
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 252, 248, 0.9);
}

.footer__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer a {
  font-weight: 700;
  color: var(--primary-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(18, 10, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__frame {
  position: relative;
  width: min(94vw, 1320px);
  max-height: 92vh;
  border-radius: 18px;
  overflow: hidden;
  background: #1d140f;
  border: 1px solid rgba(255, 237, 223, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.lightbox__img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #1d140f;
}

.lightbox__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff5ec;
  font-size: 0.82rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.64) 100%);
  padding: 1.6rem 1rem 0.7rem;
}

.lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 226, 206, 0.35);
  border-radius: 50%;
  background: rgba(18, 10, 8, 0.58);
  color: #fff5ec;
  font-size: 1.28rem;
  cursor: pointer;
}

.inline-cta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.1) translate3d(-1.3%, -0.6%, 0);
  }
}

@keyframes handGlow {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }

  48% {
    transform: translate3d(11px, -8px, 0) scale(1.1);
    opacity: 0.5;
  }

  76% {
    transform: translate3d(-6px, 7px, 0) scale(1.04);
    opacity: 0.28;
  }
}

@keyframes sweep {

  0%,
  100% {
    transform: translateX(-20%) skewX(-4deg);
    opacity: 0.28;
  }

  50% {
    transform: translateX(9%) skewX(-4deg);
    opacity: 0.55;
  }
}

@media (max-width: 1220px) {
  .cards--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards--three,
  .columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .gallery-item--a {
    grid-column: span 5;
  }

  .gallery-item--b {
    grid-column: span 3;
  }

  .gallery-item--c {
    grid-column: span 3;
  }

  .gallery-item--d {
    grid-column: span 5;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    justify-content: stretch;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 252, 248, 0.98);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.23s ease, transform 0.23s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 0.94rem;
    padding: 0.26rem 0;
  }

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

  .split,
  .about-layout,
  .booking-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .site-header__inner {
    min-height: 78px;
    padding-block: 0.55rem;
    gap: 0.62rem;
  }

  .brand {
    align-items: center;
  }

  .brand__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .brand__name {
    font-size: 0.8rem;
    line-height: 1.08;
    letter-spacing: 0.01em;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brand__name span {
    display: block;
    white-space: nowrap;
  }

  .brand__tagline {
    display: none;
  }

  .lang-switch {
    padding: 0.14rem;
    gap: 0.12rem;
  }

  .lang-switch__btn {
    min-width: 32px;
    height: 30px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 0.5rem;
  }

  .hero {
    min-height: 84vh;
  }

  .hero__media img,
  .hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroFloat 14s ease-in-out infinite;
  }

  .hero--inner {
    min-height: 74vh;
  }

  .hero__content {
    padding-top: 5.6rem;
  }

  .hero__stats,
  .cards--services,
  .cards--three,
  .columns,
  .photo-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item--a,
  .gallery-item--b,
  .gallery-item--c,
  .gallery-item--d {
    grid-column: span 1;
    aspect-ratio: 16 / 11;
  }

  .footer__inner {
    min-height: auto;
    padding-block: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .disclaimer-modal {
    padding: 1rem;
  }

  .disclaimer-modal__dialog {
    border-radius: 24px;
  }

  .disclaimer-modal__button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand__name {
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {

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

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