/* =========================================================
   MEENA PHOTOGRAPHY
   EXPERIENCE + NEWSLETTER + FOOTER
   CLEAN / CONSOLIDATED / PERFORMANCE-FIRST CSS
========================================================= */

:root {
  --gold: #d9a77a;
  --gold-light: #efdcc7;
  --gold-dark: #c68c52;
  --text: #2c2927;
  --muted: #6d6762;
  --bg: #fdf9f6;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 12px 35px rgba(0, 0, 0, .08);
  --transition: .45s ease;
}

/* =========================================================
   EXPERIENCE
========================================================= */

.experience-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 100px 30px;
}

.exp-container {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: center;
}

.camera-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.camera-card:hover {
  transform: translateY(-8px);
}

.camera-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.exp-center {
  text-align: center;
}

.section-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.section-tag .line {
  width: 45px;
  height: 1px;
  background: var(--gold);
}

.section-tag span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
}

.section-tag .star {
  font-size: 16px;
}

.exp-title {
  margin: 0 0 30px;
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.3;
}

.exp-title span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
}

.exp-text {
  max-width: 720px;
  margin: 0 auto 60px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
}

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

.feature {
  position: relative;
  padding: 0 15px;
  text-align: center;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: #ead8c8;
}

.feature .icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  font-size: 34px;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.feature img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.feature:hover .icon {
  background: var(--white);
  color: var(--gold-dark);
  transform: translateY(-8px);
}

.feature h4 {
  margin: 0 0 15px;
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 15px;
  font-weight: 400;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.exp-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.image-box {
  overflow: hidden;
  border: 1px solid var(--gold-light);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-box img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.image-box:hover img {
  transform: scale(1.08);
}

.experience-section::before,
.experience-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
}

.experience-section::before {
  left: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(217, 167, 122, .12), transparent 70%);
}

.experience-section::after {
  right: -180px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(217, 167, 122, .10), transparent 70%);
}

/* =========================================================
   REVEAL
   JS adds .show. No CSS keyframe conflict.
========================================================= */

.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-40px, 0, 0);
}

.reveal-right {
  transform: translate3d(40px, 0, 0);
}

.reveal-up {
  transform: translate3d(0, 40px, 0);
}

.reveal-left.show,
.reveal-right.show,
.reveal-up.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
  position: relative;
  overflow: hidden;
  padding: 0 30px 90px;
  background: var(--bg);
}

.newsletter-card {
  position: relative;
  max-width: 1500px;
  margin: auto;
  padding: 40px 45px;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr .9fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  border: 1px solid rgba(217, 167, 122, .35);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
  transition: transform .45s ease, box-shadow .45s ease;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: -150px;
  z-index: 0;
  background:
    radial-gradient(circle at left top, rgba(217, 167, 122, .10), transparent 45%),
    radial-gradient(circle at right bottom, rgba(217, 167, 122, .08), transparent 45%);
  pointer-events: none;
}

.newsletter-card>* {
  position: relative;
  z-index: 1;
}

.newsletter-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.mail-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 32px;
  transition: transform .4s ease;
}

.newsletter-card:hover .mail-icon {
  transform: rotate(-8deg);
}

.newsletter-left small {
  display: block;
  margin-bottom: 8px;
  color: #8b837d;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.newsletter-left h3 {
  margin: 0;
  color: var(--gold);
  font-family: "Marcellus", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.newsletter-center form {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(217, 167, 122, .35);
  border-radius: 14px;
  background: var(--white);
}

.newsletter-center input {
  flex: 1;
  min-width: 0;
  padding: 22px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333;
  font-size: 17px;
}

.newsletter-center input::placeholder {
  color: #999;
}

.newsletter-center button {
  min-width: 240px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #d9a77a, #c68c52);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background .45s ease;
}

.newsletter-center button::before {
  content: "→";
  margin-right: 12px;
}

.newsletter-center button:hover {
  background: linear-gradient(135deg, #c68c52, #b97c3f);
}

.newsletter-right {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(217, 167, 122, .3);
}

.newsletter-right div {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  color: #5b5652;
  font-size: 18px;
  transition: color .35s ease;
}

.newsletter-right div:last-child {
  margin-bottom: 0;
}

.newsletter-right img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform .35s ease;
}

.newsletter-right div:hover {
  color: var(--gold);
}

.newsletter-right div:hover img {
  transform: scale(1.1) rotate(-8deg);
}

.newsletter-section::before,
.newsletter-section::after {
  content: "✦";
  position: absolute;
  color: rgba(217, 167, 122, .35);
  font-size: 22px;
  pointer-events: none;
  animation: floatStar 6s ease-in-out infinite;
}

.newsletter-section::before {
  left: 120px;
  top: 40px;
}

.newsletter-section::after {
  right: 120px;
  bottom: 40px;
  animation-duration: 7s;
}

@keyframes floatStar {
  0%, 100% {
    opacity: .4;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(0, -12px, 0);
  }
}

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

.luxury-footer {
  position: relative;
  overflow: hidden;
  padding: 10px 40px 35px;
  background: var(--bg);
}

.footer-container {
  position: relative;
  max-width: 1650px;
  margin: auto;
  padding: 70px 30px 35px;
  overflow: hidden;
  border: 1px solid #ead9c8;
  border-radius: 34px;
  background: #fffdfb;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .06);
}

.footer-container::before,
.footer-container::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  pointer-events: none;
}

.footer-container::before {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle, rgba(217, 167, 122, .12), transparent 72%);
}

.footer-container::after {
  right: -220px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(217, 167, 122, .08), transparent 72%);
}

.footer-floral {
  position: absolute;
  z-index: 1;
  opacity: .9;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}

.floral-left {
  width: 220px;
  height: 220px;
  top: 20px;
  left: 15px;
  background-image: url("../img/floral-left.webp");
}

.floral-right {
  width: 260px;
  height: 260px;
  right: 0;
  bottom: 0;
  background-image: url("../img/floral-right.webp");
}

.footer-top {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.25fr 1.6fr;
  gap: 55px;
}

.footer-brand,
.footer-column {
  position: relative;
}

.footer-brand {
  padding-right: 35px;
}

.footer-column {
  padding-left: 30px;
}

.footer-column:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #ead9c8;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer-logo img {
  display: block;
  width: 350px;
  max-width: 100%;
  height: auto;
}

.footer-description {
  max-width: 340px;
  margin: 0 0 30px;
  color: #6b6762;
  font-size: 17px;
  line-height: 1.9;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5d4c3;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  text-decoration: none;
  transition: transform .4s ease, background .4s ease, color .4s ease, box-shadow .4s ease;
}

.footer-social a:hover {
  transform: translate3d(0, -6px, 0);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(217, 167, 122, .35);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-heading {
  position: relative;
  margin: 0 0 42px;
  padding-bottom: 20px;
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background: var(--gold);
}

.footer-heading::before {
  content: "✦";
  position: absolute;
  left: 38px;
  bottom: -11px;
  padding: 0 6px;
  background: #fffdfb;
  color: var(--gold);
  font-size: 15px;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  color: #67615c;
  font-size: 16px;
  text-decoration: none;
  transition: color .35s ease, padding .35s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

.footer-links a:hover {
  padding-left: 18px;
  color: var(--gold);
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 167, 122, .35);
  border-radius: 50%;
  background: var(--white);
  transition: transform .35s ease, background .35s ease;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact li:hover .contact-icon {
  transform: translate3d(0, -4px, 0);
  background: var(--gold);
}

.footer-contact li:hover svg {
  stroke: var(--white);
}

.footer-contact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: "Marcellus", serif;
  font-size: 17px;
  font-weight: 400;
}

.footer-contact p {
  margin: 0;
  color: #6d6762;
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact a {
  color: #6d6762;
  font-size: 15px;
  text-decoration: none;
  transition: color .35s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-payment {
  margin-top: 25px;
}

.payment-title {
  margin-bottom: 18px;
  color: #777;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-card {
  min-width: 78px;
  padding: 11px 18px;
  border: 1px solid #ead9c8;
  border-radius: 10px;
  background: var(--white);
  color: #5e5954;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, color .35s ease;
}

.payment-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(217, 167, 122, .25);
}

.footer-star {
  position: absolute;
  color: rgba(217, 167, 122, .25);
  pointer-events: none;
  animation: footerSparkle 8s ease-in-out infinite;
}

.star-1 {
  top: 90px;
  left: 9%;
  font-size: 18px;
}

.star-2 {
  top: 180px;
  right: 8%;
  font-size: 15px;
  animation-delay: 1s;
}

.star-3 {
  top: 52%;
  left: 5%;
  font-size: 20px;
  animation-delay: 2s;
}

.star-4 {
  right: 10%;
  bottom: 150px;
  font-size: 18px;
  animation-delay: 3s;
}

.star-5 {
  bottom: 70px;
  left: 18%;
  font-size: 15px;
  animation-delay: 4s;
}

.star-6 {
  top: 45%;
  right: 20%;
  font-size: 16px;
  animation-delay: 5s;
}

@keyframes footerSparkle {
  0%, 100% {
    opacity: .2;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: .7;
    transform: translate3d(0, -12px, 0) scale(1.25);
  }
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 35px 0;
}

.divider-line {
  flex: 1;
  max-width: 420px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(217, 167, 122, .85), transparent);
}

.divider-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 167, 122, .35);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  transition: transform .45s ease, box-shadow .45s ease;
}

.divider-icon:hover {
  transform: rotate(20deg) scale(1.08);
  box-shadow: 0 15px 30px rgba(217, 167, 122, .28);
}

.divider-icon svg {
  width: 38px;
  height: 38px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 0 50px;
}

.footer-copy {
  color: #7b756f;
  font-size: 15px;
  line-height: 1.7;
}

.footer-copy strong {
  color: var(--gold);
  font-weight: 600;
}

.footer-policy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-policy span {
  color: #d7b28f;
}

.footer-policy a {
  position: relative;
  color: #6e6964;
  text-decoration: none;
  transition: color .35s ease;
}

.footer-policy a:hover {
  color: var(--gold);
}

.footer-policy a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}

.footer-policy a:hover::after {
  width: 100%;
}

/* =========================================================
   BUTTON / SCROLL TOP
========================================================= */

button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple .7s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(4);
  }
}

.scrollTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity .35s ease, transform .35s ease;
}

.scrollTop.active {
  opacity: 1;
  pointer-events: auto;
}

.scrollTop:hover {
  transform: translate3d(0, -5px, 0);
}

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

@media (max-width: 1200px) {
  .exp-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exp-left,
  .exp-right {
    width: min(600px, 100%);
    margin: auto;
  }

  .exp-title {
    font-size: 56px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }

  .feature:nth-child(2)::after,
  .feature:nth-child(4)::after {
    display: none;
  }

  .newsletter-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .newsletter-left {
    justify-content: center;
  }

  .footer-container {
    padding: 55px 40px 30px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .footer-column {
    padding-left: 0;
  }

  .footer-column::before {
    display: none;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-description {
    max-width: none;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 999px) {
  .exp-right {
    display: flex;
    flex-direction: row;
    gap: 28px;
  }

  .exp-left, .exp-right {
    width: 100%;
    margin: 20px 0px 0px;
  }
}

@media (max-width: 768px) {
  .experience-section {
    padding: 70px 20px;
  }



  .exp-title {
    font-size: 42px;
  }

  .exp-text {
    margin-bottom: 40px;
    font-size: 17px;
  }

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

  .feature::after {
    display: none !important;
  }

  .camera-card,
  .exp-right {
    width: min(360px, 100%);
    margin: auto;
  }

  .newsletter-section {
    padding: 0 20px 60px;
  }

  .newsletter-card {
    padding: 35px 25px;
    border-radius: 22px;
  }

  .newsletter-left {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-left h3 {
    font-size: 30px;
  }

  .newsletter-center form {
    flex-direction: column;
  }

  .newsletter-center button {
    width: 100%;
    min-width: 100%;
    padding: 18px;
  }

  .newsletter-right {
    width: 100%;
    margin-top: 25px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(217, 167, 122, .3);
    border-left: 0;
  }

  .newsletter-right div {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    text-align: center;
  }

  .newsletter-right img {
    width: 28px;
    height: 28px;
  }

  .newsletter-section::before,
  .newsletter-section::after {
    display: none;
  }

  .luxury-footer {
    padding: 60px 20px 20px;
  }

  .footer-container {
    padding: 40px 25px;
    border-radius: 22px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .footer-logo img {
    width: 190px;
  }

  .footer-description {
    max-width: 330px;
    font-size: 15px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-heading {
    margin-bottom: 30px;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-heading::before {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon {
    margin-bottom: 10px;
  }

  .payment-grid {
    justify-content: center;
  }

  .footer-divider {
    gap: 15px;
    margin: 40px 0 25px;
  }

  .divider-icon {
    width: 58px;
    height: 58px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 180px;
    text-align: center;
  }

  .footer-policy {
    justify-content: center;
  }

  .footer-column,
  .footer-brand {
    transform: none !important;
  }

  .feature:hover .icon,
  .payment-card:hover,
  .footer-social a:hover,
  .scrollTop:hover {
    transform: none;
  }

  .image-box:hover img {
    transform: none;
  }
}

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

@media (max-width: 480px) {
  .newsletter-card {
    padding: 28px 18px;
  }

  .footer-container {
    padding: 35px 18px;
  }

  .footer-logo img {
    width: 165px;
  }

  .footer-heading {
    font-size: 22px;
  }

  .footer-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-links a {
    font-size: 15px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-policy {
    gap: 10px;
    font-size: 13px;
  }

  .payment-card {
    width: 100%;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
  }

  .scrollTop {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}

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

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

  .experience-section *,
  .newsletter-section *,
  .luxury-footer *,
  .experience-section *::before,
  .newsletter-section *::before,
  .luxury-footer *::before,
  .experience-section *::after,
  .newsletter-section *::after,
  .luxury-footer *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}