/* ===== CUSTOM PROPERTIES ===== */
:root {
  --warm-white: #F8F6F2;
  --forest: #1C2B1E;
  --brass: #B08F5A;
  --sage: #8FA08C;
  --text: #1A1A1A;
  --muted: #7A7A7A;
  --white: #FFFFFF;
  --blush-section: #F4F1EC;
  --border: #E2DDD5;
  --container: 1200px;
  --section-v: 96px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

address {
  font-style: normal;
}

blockquote {
  quotes: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

h3 {
  font-size: 1.25rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brass);
  color: var(--forest);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #c8a46a;
  color: var(--forest);
}

.btn--hero-primary {
  background: var(--brass);
  color: var(--forest);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn--hero-primary:hover,
.btn--hero-primary:focus-visible {
  background: #c8a46a;
}

.btn--outline {
  border: 2px solid currentColor;
  background: transparent;
  color: var(--white);
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn--brass-dark {
  background: var(--brass);
  color: var(--forest);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn--brass-dark:hover,
.btn--brass-dark:focus-visible {
  background: #c8a46a;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-top: 0.5rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo__name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.site-header.scrolled .logo__name {
  color: var(--forest);
}

.logo__sub {
  font-family: var(--font-body);
  font-variant: small-caps;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brass);
  margin-top: 0.1rem;
}

/* Desktop Nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--brass);
}

.site-header.scrolled .nav__link {
  color: var(--text);
}

.site-header.scrolled .nav__link:hover {
  color: var(--brass);
}

.header__cta {
  display: none;
  font-size: 0.85rem;
  padding: 0.55rem 1.25rem;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.site-header.scrolled .burger__line {
  background: var(--forest);
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover {
  color: var(--brass);
}

.mobile-nav__cta {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Tablet+ header */
@media (min-width: 768px) {
  .header__cta {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
  }

  .burger {
    display: none;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 120px 80px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  border: 1px solid rgba(176, 143, 90, 0.4);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  color: var(--brass);
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero__heading {
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  justify-content: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
  background: var(--warm-white);
  padding-block: var(--section-v);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 143, 90, 0.08);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.service-card__title {
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.service-card__price {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
  padding-block: var(--section-v);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__caption {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 30, 0.75);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: var(--brass);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-within .gallery__caption {
  opacity: 1;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== ABOUT ===== */
.about {
  background: var(--blush-section);
  padding-block: var(--section-v);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.about__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__content h2 {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--forest);
}

.about__content p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

.about__bullets {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.about__bullet-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
  }
}

/* ===== PROCESS ===== */
.process {
  background: var(--forest);
  padding-block: var(--section-v);
}

.process__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process__header h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  font-weight: 300;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.process__step {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.process__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--brass);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.process__step-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--warm-white);
  padding-block: var(--section-v);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__stars {
  color: var(--brass);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__client {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: auto;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== PRICING ===== */
.pricing {
  background: var(--white);
  padding-block: var(--section-v);
}

.pricing__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--brass);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.25rem;
}

.pricing-card__name {
  font-size: 1.3rem;
  color: var(--forest);
}

.pricing-card--featured .pricing-card__name {
  color: var(--white);
}

.pricing-card__price {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
}

.pricing-card--featured .pricing-card__price {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card__price strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
}

.pricing-card--featured .pricing-card__price strong {
  color: var(--brass);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-card--featured .pricing-card__features li::before {
  background: var(--brass);
}

.pricing-card__cta {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 0.5rem;
}

/* Featured card */
.pricing-card--featured {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--brass);
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--blush-section);
  padding-block: var(--section-v);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info h2 {
  color: var(--forest);
  margin-bottom: 1.75rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact__detail-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact__detail span,
.contact__link {
  font-size: 0.95rem;
  color: var(--text);
}

.contact__link:hover {
  color: var(--brass);
  text-decoration: underline;
}

.contact__urgency {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brass);
  background: rgba(176, 143, 90, 0.08);
  border: 1px solid rgba(176, 143, 90, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 1024px) {
  .contact__inner {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}

/* ===== BOOKING FORM ===== */
.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-required {
  color: var(--brass);
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 143, 90, 0.12);
}

.form-input.is-invalid {
  border-color: #c0392b;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%237A7A7A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1.1rem;
  display: block;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  margin-top: 0.5rem;
  border: none;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-feedback {
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.form-feedback--success {
  background: rgba(143, 160, 140, 0.15);
  border: 1px solid var(--sage);
  color: var(--forest);
}

.form-feedback--error {
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.3);
  color: #c0392b;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest);
  padding-block: 3.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
}

.footer__nav-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: var(--brass);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__credit-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer__credit-link:hover {
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer__legal {
    align-items: flex-end;
  }
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  html {
    scroll-behavior: auto;
  }
}
