/* ============================================
   Salon Picasso — Premium Dark Luxury Styles
   ============================================ */

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #f0ebe3;
  background-color: #0d1f17;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ── Typography ───────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: #f0ebe3;
}

.text-gold {
  color: #c9a84c;
}

.section__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #f0ebe3;
}

.section__lead {
  font-size: 1.05rem;
  color: #b8b0a2;
  max-width: 600px;
  line-height: 1.8;
}

/* ── Layout ───────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, #c9a84c 0%, #a8893a 100%);
  color: #0d1f17;
  border-color: #c9a84c;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #d4b85e 0%, #c9a84c 100%);
  border-color: #d4b85e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: #f0ebe3;
  border-color: rgba(240, 235, 227, 0.4);
}

.btn--outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: #f0ebe3;
  border-color: rgba(240, 235, 227, 0.5);
}

.btn--outline-light:hover {
  border-color: #f0ebe3;
  background: rgba(240, 235, 227, 0.1);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Navigation ───────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 31, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f0ebe3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0ebe3;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a84c;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: #c9a84c;
}

.nav__link::after:hover {
  width: 100%;
}

.nav__link--cta {
  background: linear-gradient(135deg, #c9a84c 0%, #a8893a 100%);
  color: #0d1f17;
  padding: 0.6rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, #d4b85e 0%, #c9a84c 100%);
  color: #0d1f17;
}

.nav__overlay {
  display: none;
}

/* ── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d1f17;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 31, 23, 0.7) 0%,
    rgba(13, 31, 23, 0.55) 40%,
    rgba(13, 31, 23, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
  padding-top: 4rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f0ebe3;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(240, 235, 227, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 235, 227, 0.5);
  animation: float 2.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ─────────────────────────────── */
.services {
  background: #0d1f17;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: linear-gradient(145deg, rgba(26, 58, 42, 0.6) 0%, rgba(13, 31, 23, 0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.08);
}

.service-card__icon {
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #f0ebe3;
}

.service-card__desc {
  font-size: 0.95rem;
  color: #b8b0a2;
  line-height: 1.7;
}

/* ── About ────────────────────────────────── */
.about {
  background: linear-gradient(180deg, #0d1f17 0%, #0f2519 100%);
}

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

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0d1f17;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.about__badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
}

.about__badge-line {
  width: 30px;
  height: 1px;
  background: #c9a84c;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text {
  font-size: 1rem;
  color: #b8b0a2;
  line-height: 1.8;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 0.5rem;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  color: #b8b0a2;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 168, 76, 0.3);
}

/* ── Gallery ──────────────────────────────── */
.gallery {
  background: #0d1f17;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 23, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #f0ebe3;
}

.gallery__item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery__item:nth-child(2) { grid-column: 5 / 8; grid-row: 1; }
.gallery__item:nth-child(3) { grid-column: 8 / 10; grid-row: 1; }
.gallery__item:nth-child(4) { grid-column: 10 / 13; grid-row: 1; }
.gallery__item:nth-child(5) { grid-column: 5 / 8; grid-row: 2; }

/* ── Testimonials ─────────────────────────── */
.testimonials {
  background: linear-gradient(180deg, #0f2519 0%, #0d1f17 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(26, 58, 42, 0.5) 0%, rgba(13, 31, 23, 0.7) 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.testimonial-card__text {
  font-size: 1rem;
  color: #d4cfc5;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.85rem;
  color: #c9a84c;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── CTA ──────────────────────────────────── */
.cta {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 31, 23, 0.92) 0%, rgba(13, 31, 23, 0.82) 100%);
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: #f0ebe3;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(240, 235, 227, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

/* ── Contact ──────────────────────────────── */
.contact {
  background: #0d1f17;
}

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

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__lead {
  font-size: 1rem;
  color: #b8b0a2;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.3rem;
}

.contact__detail dd {
  font-size: 1rem;
  color: #d4cfc5;
  line-height: 1.7;
  padding-left: 1.9rem;
}

.contact__link {
  color: #d4cfc5;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: #c9a84c;
}

.contact__hours {
  background: linear-gradient(145deg, rgba(26, 58, 42, 0.5) 0%, rgba(13, 31, 23, 0.7) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 1.75rem 2rem;
}

.contact__hours-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f0ebe3;
}

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.95rem;
}

.contact__hours-row:last-child {
  border-bottom: none;
}

.contact__hours-row span:first-child {
  color: #b8b0a2;
}

.contact__hours-row span:last-child {
  color: #d4cfc5;
  font-weight: 500;
}

/* ── Contact Form ─────────────────────────── */
.contact__form-wrap {
  background: linear-gradient(145deg, rgba(26, 58, 42, 0.5) 0%, rgba(13, 31, 23, 0.7) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact__form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #f0ebe3;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(13, 31, 23, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  color: #f0ebe3;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input::placeholder {
  color: rgba(184, 176, 162, 0.5);
}

.form__input:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__select option {
  background: #0d1f17;
  color: #f0ebe3;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  color: #c9a84c;
  font-size: 0.9rem;
  text-align: center;
}

/* ── Footer ───────────────────────────────── */
.footer {
  background: #08140e;
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f0ebe3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: #b8b0a2;
  line-height: 1.7;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  font-size: 0.9rem;
  color: #b8b0a2;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #c9a84c;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #b8b0a2;
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(184, 176, 162, 0.5);
}

/* ── Scroll Reveal ────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery__grid {
    grid-template-rows: repeat(3, 220px);
  }

  .gallery__item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
  .gallery__item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
  .gallery__item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
  .gallery__item:nth-child(4) { grid-column: 6 / 9; grid-row: 2; }
  .gallery__item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(13, 31, 23, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__overlay.active {
    opacity: 1;
    pointer-events: all;
  }

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

  .about__image img {
    height: 350px;
  }

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

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

  .testimonials__grid .testimonial-card:last-child {
    max-width: none;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
  .gallery__item:nth-child(2) { grid-column: 1; grid-row: auto; }
  .gallery__item:nth-child(3) { grid-column: 2; grid-row: auto; }
  .gallery__item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .gallery__item:nth-child(5) { grid-column: 2; grid-row: auto; }

  .gallery__item img {
    height: 220px;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero__headline {
    font-size: 1.85rem;
  }

  .about__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

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

  .gallery__item:nth-child(n) {
    grid-column: auto;
  }

  .gallery__item img {
    height: 260px;
  }
}

/* ── Reduced Motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .hero__scroll {
    animation: none;
  }
}
