/* =========================================================
   MSU FARM
   Responsive CSS
========================================================= */

:root {
  --green-dark: #103d29;
  --green: #1f6844;
  --green-medium: #347e58;
  --green-light: #e8f3ec;
  --cream: #f8f5ec;
  --orange: #db9134;

  --white: #ffffff;
  --text: #25332b;
  --muted: #65736b;

  --shadow:
    0 18px 55px rgba(16, 61, 41, 0.13);

  --shadow-soft:
    0 10px 32px rgba(16, 61, 41, 0.08);

  --radius-large: 28px;
  --radius-medium: 20px;

  --container: 1180px;

  --header-height:
    clamp(68px, 6vw, 82px);
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 0;
  overflow-x: hidden;

  color: var(--text);
  background: var(--white);

  font-family: "Kanit", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

ul {
  list-style: none;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
  width: min(
    calc(100% - clamp(28px, 5vw, 48px)),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  padding:
    clamp(68px, 7vw, 105px)
    0;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  background:
    rgba(255, 255, 255, 0.96);

  box-shadow:
    0 8px 30px rgba(16, 61, 41, 0.1);

  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;

  min-height: var(--header-height);

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


/* Logo */

.logo {
  display: inline-flex;

  flex: 0 0 auto;

  align-items: center;

  gap: clamp(8px, 1vw, 12px);

  color: var(--white);
}

.header.scrolled .logo {
  color: var(--green-dark);
}

.logo-icon {
  display: flex;

  width: clamp(40px, 4vw, 46px);
  height: clamp(40px, 4vw, 46px);

  flex: 0 0 auto;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: var(--white);

  border:
    1px solid rgba(16, 61, 41, 0.09);

  border-radius: 50%;
}

.logo-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.logo-text {
  display: block;
  white-space: nowrap;
}

.logo-text strong,
.logo-text small {
  display: block;
  line-height: 1.25;
}

.logo-text strong {
  font-size:
    clamp(0.88rem, 1.2vw, 1.05rem);

  font-weight: 600;

  letter-spacing: 0.05em;
}

.logo-text small {
  margin-top: 2px;

  font-size:
    clamp(0.6rem, 0.9vw, 0.72rem);

  opacity: 0.8;
}


/* Navigation */

.nav {
  display: flex;

  align-items: center;

  gap: clamp(18px, 2.5vw, 30px);
}

.nav a {
  position: relative;

  color:
    rgba(255, 255, 255, 0.93);

  font-size:
    clamp(0.85rem, 1vw, 0.95rem);

  font-weight: 400;
}

.header.scrolled .nav a {
  color: var(--text);
}

.nav a::after {
  position: absolute;

  bottom: -7px;
  left: 0;

  width: 0;
  height: 2px;

  background: var(--orange);

  content: "";

  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}


/* Hamburger */

.menu-button {
  display: none;

  width: 44px;
  height: 44px;

  padding: 10px;

  background:
    rgba(255, 255, 255, 0.14);

  border:
    1px solid rgba(255, 255, 255, 0.25);

  border-radius: 12px;

  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 100%;
  height: 2px;

  margin: 5px 0;

  background: var(--white);

  transition: 0.25s ease;
}

.header.scrolled .menu-button {
  background: var(--green-light);
  border-color: transparent;
}

.header.scrolled .menu-button span {
  background: var(--green-dark);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  display: flex;

  min-height:
    max(680px, 100svh);

  align-items: center;

  overflow: hidden;

  color: var(--white);

  background:
    url("images/hero.jpg")
    center center /
    cover
    no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 40, 26, 0.92) 0%,
      rgba(8, 40, 26, 0.72) 47%,
      rgba(8, 40, 26, 0.20) 100%
    ),
    linear-gradient(
      0deg,
      rgba(8, 40, 26, 0.38),
      transparent 50%
    );
}

.hero-content {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 850px;

  padding-top: var(--header-height);
}

.hero-label,
.section-label {
  margin-bottom: 12px;

  color: var(--orange);

  font-size:
    clamp(0.7rem, 1vw, 0.8rem);

  font-weight: 600;

  letter-spacing: 0.17em;
}

.hero h1 {
  max-width: 850px;

  margin-bottom:
    clamp(18px, 2.5vw, 26px);

  font-size:
    clamp(3rem, 7vw, 6.3rem);

  font-weight: 600;

  line-height: 1.04;

  letter-spacing: -0.04em;
}

.hero-description {
  max-width: 670px;

  margin-bottom:
    clamp(26px, 3vw, 36px);

  color:
    rgba(255, 255, 255, 0.86);

  font-size:
    clamp(0.95rem, 1.6vw, 1.2rem);
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}


/* Buttons */

.button {
  display: inline-flex;

  min-height: 52px;

  align-items: center;
  justify-content: center;

  padding:
    12px
    clamp(22px, 2.5vw, 28px);

  border: 1px solid transparent;

  border-radius: 999px;

  font-size: 0.95rem;

  font-weight: 500;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

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

.button-primary {
  color: var(--white);

  background: var(--orange);

  box-shadow:
    0 12px 30px
    rgba(219, 145, 52, 0.28);
}

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

.button-outline {
  color: var(--white);

  background:
    rgba(255, 255, 255, 0.08);

  border-color:
    rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(8px);
}

.button-light {
  color: var(--green-dark);
  background: var(--white);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  width: min(760px, 100%);

  margin:
    0 auto
    clamp(38px, 5vw, 58px);

  text-align: center;
}

.section-heading h2,
.about-content h2,
.banner-content h2 {
  color: var(--green-dark);

  font-size:
    clamp(2rem, 4.5vw, 3.8rem);

  font-weight: 500;

  line-height: 1.2;

  letter-spacing: -0.03em;
}

.section-heading > p:last-child {
  margin-top: 14px;

  color: var(--muted);

  font-size:
    clamp(0.92rem, 1.5vw, 1.03rem);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  align-items: center;

  gap:
    clamp(45px, 6vw, 75px);
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;

  top: -20px;
  left: -20px;

  z-index: -1;

  width: 70%;
  height: 70%;

  background: var(--green-light);

  border-radius:
    var(--radius-large);

  content: "";
}

.about-image img {
  width: 100%;

  aspect-ratio: 4 / 4.6;

  object-fit: cover;

  border-radius:
    clamp(20px, 3vw, 28px);

  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;

  right: -15px;
  bottom: 28px;

  padding: 12px 19px;

  color: var(--white);

  background: var(--green-dark);

  border-radius: 13px;

  box-shadow: var(--shadow);

  font-size: 0.82rem;

  font-weight: 500;

  letter-spacing: 0.08em;
}

.about-content h2 {
  margin-bottom:
    clamp(16px, 2vw, 22px);
}

.about-content > p:not(.section-label) {
  margin-bottom: 15px;

  color: var(--muted);

  font-size:
    clamp(0.94rem, 1.4vw, 1.02rem);
}

.about-list {
  display: grid;

  gap: 13px;

  margin-top: 27px;
}

.about-list li {
  position: relative;

  padding-left: 34px;

  font-weight: 400;
}

.about-list li::before {
  position: absolute;

  top: 2px;
  left: 0;

  display: grid;

  width: 23px;
  height: 23px;

  place-items: center;

  color: var(--white);

  background: var(--green);

  border-radius: 50%;

  content: "✓";

  font-size: 0.72rem;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlight-section {
  background: #f7f4ec;
}

.highlight-photo-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap:
    clamp(14px, 1.8vw, 22px);
}

.highlight-photo-card {
  position: relative;

  width: 100%;
  min-width: 0;

  aspect-ratio: 3 / 4;

  overflow: hidden;

  border-radius:
    clamp(16px, 2vw, 22px);

  box-shadow:
    0 15px 45px
    rgba(16, 61, 41, 0.12);
}

.highlight-photo-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.55s ease;
}

.highlight-photo-card:hover img {
  transform: scale(1.055);
}

.highlight-photo-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(7, 28, 19, 0.02) 25%,
      rgba(7, 28, 19, 0.88) 100%
    );
}

.highlight-photo-content {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  z-index: 2;

  padding:
    clamp(18px, 2vw, 25px);

  color: var(--white);
}

.highlight-photo-content span {
  display: inline-block;

  margin-bottom: 6px;

  color: #f3bd72;

  font-size:
    clamp(0.61rem, 0.8vw, 0.7rem);

  font-weight: 600;

  letter-spacing: 0.1em;
}

.highlight-photo-content h3 {
  margin-bottom: 6px;

  font-size:
    clamp(1.05rem, 1.7vw, 1.3rem);

  font-weight: 500;

  line-height: 1.3;
}

.highlight-photo-content p {
  color:
    rgba(255, 255, 255, 0.82);

  font-size:
    clamp(0.76rem, 1vw, 0.86rem);

  line-height: 1.55;
}

.highlight-large,
.highlight-wide {
  grid-row: auto;
  grid-column: auto;
}


/* =========================================================
   ACTIVITIES
========================================================= */

.activity-grid {
  display: grid;

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

  gap:
    clamp(18px, 2vw, 26px);
}

.activity-card {
  min-width: 0;

  overflow: hidden;

  background: var(--white);

  border:
    1px solid rgba(31, 104, 68, 0.06);

  border-radius:
    var(--radius-medium);

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 18px 46px
    rgba(16, 61, 41, 0.12);
}

.activity-image {
  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.055);
}

.activity-content {
  padding:
    clamp(20px, 2.2vw, 27px);
}

.activity-tag {
  display: inline-block;

  margin-bottom: 7px;

  color: var(--orange);

  font-size: 0.69rem;

  font-weight: 600;

  letter-spacing: 0.12em;
}

.activity-content h3 {
  margin-bottom: 8px;

  color: var(--green-dark);

  font-size:
    clamp(1.1rem, 1.6vw, 1.3rem);

  font-weight: 500;
}

.activity-content p {
  color: var(--muted);

  font-size:
    clamp(0.84rem, 1.2vw, 0.92rem);
}


/* =========================================================
   BANNER
========================================================= */

.banner-section {
  position: relative;

  display: flex;

  min-height:
    clamp(430px, 55vw, 580px);

  align-items: center;

  overflow: hidden;

  color: var(--white);

  background:
    url("images/farm01.jpg")
    center center /
    cover
    no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(8, 40, 26, 0.82);
}

.banner-content {
  position: relative;

  z-index: 2;

  text-align: center;
}

.section-label.light {
  color: #efb96f;
}

.banner-content h2 {
  margin-bottom:
    clamp(22px, 3vw, 30px);

  color: var(--white);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  background: #f7faf8;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);

  width: min(1000px, 100%);
  margin-inline: auto;

  overflow: hidden;

  background: var(--white);

  border: 1px solid rgba(16, 61, 41, 0.08);
  border-radius: clamp(22px, 3vw, 30px);

  box-shadow: 0 20px 60px rgba(16, 61, 41, 0.10);
}


/* Contact left */

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;

  padding: clamp(28px, 4vw, 46px);

  color: var(--white);

  background:
    linear-gradient(
      145deg,
      #103d29,
      #175238
    );
}

.contact-item {
  display: flex;
  align-items: flex-start;

  min-width: 0;

  gap: clamp(14px, 2vw, 18px);

  padding: clamp(20px, 2.5vw, 24px) 0;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  padding-bottom: 0;
}

.contact-item + .contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-icon {
  display: flex;

  width: clamp(44px, 4vw, 50px);
  height: clamp(44px, 4vw, 50px);
  flex: 0 0 clamp(44px, 4vw, 50px);

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: transparent;
  border: none;
  border-radius: 0;
}

.contact-icon img {
  width: clamp(23px, 2.5vw, 26px);
  height: clamp(23px, 2.5vw, 26px);

  object-fit: contain;
}

.contact-text {
  min-width: 0;
}

.contact-text > span {
  display: block;

  margin-bottom: 4px;

  color: rgba(255, 255, 255, 0.65);

  font-size: clamp(0.72rem, 1vw, 0.8rem);
}

.contact-text h3 {
  margin-bottom: 5px;

  color: var(--white);

  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.4;
}

.contact-text p {
  max-width: 340px;

  color: rgba(255, 255, 255, 0.78);

  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  line-height: 1.7;
}


/* Contact social */

.contact-social {
  display: flex;
  flex-direction: column;

  min-width: 0;

  padding: clamp(28px, 4vw, 44px);
}

.social-title {
  margin-bottom: 14px;

  color: var(--green-dark);

  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
}

.social-link {
  display: grid;

  grid-template-columns: auto minmax(0, 1fr) auto;

  align-items: center;

  gap: clamp(13px, 1.8vw, 16px);

  min-width: 0;

  padding: clamp(15px, 2vw, 18px) 0;

  border-bottom: 1px solid rgba(16, 61, 41, 0.09);

  transition:
    transform 0.2s ease,
    padding-left 0.2s ease;
}

.social-link:last-child {
  border-bottom: 0;
}

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

.social-icon {
  display: flex;

  width: clamp(44px, 4vw, 48px);
  height: clamp(44px, 4vw, 48px);

  flex: 0 0 auto;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f0f6f2;

  border-radius: 14px;
}

.social-icon img {
  width: clamp(23px, 2.5vw, 26px);
  height: clamp(23px, 2.5vw, 26px);

  object-fit: contain;
}

.social-text {
  min-width: 0;
}

.social-text strong {
  display: block;

  color: var(--green-dark);

  font-size: clamp(0.92rem, 1.3vw, 1rem);
  font-weight: 600;
  line-height: 1.4;
}

.social-text span {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: clamp(0.76rem, 1vw, 0.84rem);
  line-height: 1.45;

  overflow-wrap: anywhere;
}

.social-arrow {
  color: var(--green);

  font-size: 1.1rem;
  line-height: 1;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: clamp(30px, 4vw, 42px) 0;

  color: rgba(255, 255, 255, 0.72);

  background: #08271a;
}

.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer strong {
  color: var(--white);

  font-size: 1rem;

  letter-spacing: 0.08em;
}

.footer p {
  margin-top: 3px;

  font-size: clamp(0.72rem, 1vw, 0.82rem);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
  position: fixed;

  right: clamp(15px, 2vw, 24px);
  bottom: clamp(15px, 2vw, 24px);

  z-index: 800;

  display: grid;

  width: clamp(44px, 4vw, 48px);
  height: clamp(44px, 4vw, 48px);

  place-items: center;

  color: var(--white);
  background: var(--green);

  border: 0;
  border-radius: 50%;

  box-shadow: 0 12px 28px rgba(16, 61, 41, 0.25);

  cursor: pointer;

  opacity: 0;

  transform: translateY(15px);

  transition: 0.25s ease;

  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.show {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   MEDIUM DESKTOP / SMALL NOTEBOOK
========================================================= */

@media (max-width: 1150px) {

  .highlight-photo-content {
    padding: 19px;
  }

}


/* =========================================================
   TABLET / SMALL NOTEBOOK
========================================================= */

@media (max-width: 980px) {

  .menu-button {
    display: block;

    position: relative;

    z-index: 1002;
  }

  .nav {
    position: fixed;

    inset: 0;

    z-index: 1001;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 26px;

    padding: 90px 24px 40px;

    background: var(--green-dark);

    text-align: center;

    opacity: 0;

    transform: translateY(-20px);

    transition:
      opacity 0.3s ease,
      transform 0.3s ease;

    pointer-events: none;
  }

  .nav.open {
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
  }

  .nav a,
  .header.scrolled .nav a {
    color: var(--white);

    font-size: 1.2rem;
  }

  .menu-button.open span {
    background: var(--white);
  }

  .menu-button.open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: clamp(38px, 6vw, 55px);
  }

  .about-image {
    width: min(650px, 100%);

    margin-inline: auto;
  }

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

  .highlight-photo-card {
    aspect-ratio: 4 / 3;
  }

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


/* =========================================================
   CONTACT TABLET
========================================================= */

@media (max-width: 820px) {

  .contact-box {
    grid-template-columns: 1fr;

    width: min(680px, 100%);
  }

  .contact-details,
  .contact-social {
    padding: clamp(26px, 6vw, 38px);
  }

}


/* =========================================================
   TABLET PORTRAIT
========================================================= */

@media (max-width: 760px) {

  .section-heading {
    margin-bottom: 38px;
  }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

  .navbar {
    min-height: 68px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;

    flex-basis: 42px;
  }

  .logo-text strong {
    font-size: 0.85rem;
  }

  .logo-text small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 100svh;

    padding-top: 68px;

    background-position: center;
  }

  .hero-content {
    padding-top: 24px;
    padding-bottom: 35px;
  }

  .hero-label {
    font-size: 0.67rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);

    line-height: 1.08;

    word-break: keep-all;
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .hero-buttons {
    display: grid;

    grid-template-columns: 1fr;

    width: 100%;
  }

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

  .about-image::before {
    top: -8px;
    left: -8px;
  }

  .image-label {
    right: 12px;
    bottom: 14px;
  }

  .highlight-photo-grid {
    grid-template-columns: 1fr;
  }

  .highlight-photo-card {
    aspect-ratio: 4 / 3;
  }

  .highlight-photo-content {
    padding: 20px;
  }

  .contact-box {
    width: 100%;
  }

  .contact-details,
  .contact-social {
    padding: 24px 20px;
  }

  .contact-item {
    gap: 13px;
  }

  .contact-icon,
  .social-icon {
    width: 44px;
    height: 44px;
  }

  .contact-icon {
    flex-basis: 44px;
  }

  .contact-icon img,
  .social-icon img {
    width: 23px;
    height: 23px;
  }

  .social-link {
    gap: 12px;

    padding: 15px 0;
  }

  .banner-section {
    min-height: clamp(420px, 110vw, 500px);
  }

  .footer-content {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .container {
    width: calc(100% - 24px);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.8vw, 2.7rem);
  }

  .section-heading h2,
  .about-content h2,
  .banner-content h2 {
    font-size: clamp(1.85rem, 9vw, 2.15rem);
  }

  .contact-text h3 {
    font-size: 0.95rem;
  }

  .contact-text p {
    font-size: 0.8rem;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

  .logo-text small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.3rem);
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

}
