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

html {
  scroll-behavior: smooth;
}

/* Main Hero Setup - Pure White Background */
#main-bg {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  background-image: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}

/* --- Decorative Corner Floral Line Art Elements --- */
.hero-flower-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 28vw;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
}

.hero-flower-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  max-width: 30vw;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  margin-top: 15px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
}

#navbar.scrolled {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

#navbar img {
  width: 75px;
}

#nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

#nav-buttons {
  display: flex;
  gap: 8px;
}

#nav-buttons a,
.hero-cta a,
.footer-col a {
  text-decoration: none;
}

#nav-buttons button {
  font-family: "Zalando Sans", sans-serif;
  border: none;
  background: transparent;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

#nav-buttons button:hover {
  background-color: rgba(255, 255, 255, 0.6);
  color: #ed1b24;
}

/* Hamburger Menu Icon (Desktop Hidden) */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.spl-btn button {
  border: none;
  background: linear-gradient(
    to right,
    #ff0d25 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #ff0d25 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Zalando Sans", sans-serif;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition:
    background-position 0.6s ease-in-out,
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.spl-btn button:hover {
  background-position: 100% 0%;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.3);
}

/* Hero Section Layout */
.hero-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 40px 20px;
  gap: 40px;
  position: relative;
  z-index: 5;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 550px;
  z-index: 5;
}

.hero-main-logo {
  width: 600px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateX(-11%);
}

.hero-tagline {
  font-family: "Zalando Sans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 35px;
  line-height: 1.25;
}

.hero-tagline .highlight-red {
  color: #ed1b24;
  font-weight: 800;
}

.spl-btn-journey {
  border: none;
  background: linear-gradient(
    to right,
    #ff0d25 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #ff0d25 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Zalando Sans", sans-serif;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(237, 27, 36, 0.25);
  transition:
    background-position 0.6s ease-in-out,
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.spl-btn-journey:hover {
  background-position: 100% 0%;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.4);
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  min-height: 480px;
  z-index: 5;
}

/* Silk Petal Fabric Backdrop */
.hero-bg-backdrop {
  position: absolute;
  width: 110%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

/* Base Shadow below the Crown */
.hero-right::after {
  content: "";
  position: absolute;
  bottom: 125px;
  width: 260px;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  z-index: 2;
  animation: floatShadow 4s ease-in-out infinite;
}

.pink-circle {
  width: 500px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 155, 162, 0.3) 0%,
    rgba(250, 226, 229, 0.25) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  position: absolute;
  z-index: 1;
}

/* Floating Animations */
@keyframes floatCrown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes floatShadow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(0.7);
    opacity: 0.35;
  }
}

.hero-crown-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
  animation: floatCrown 4s ease-in-out infinite;
}

/* Red Spotlight Container */
#red-bg {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 620px;
  margin: 20px auto 60px;
  border-radius: 35px;
  background-image: url("red-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 10;
}

/* Translucent Glassmorphic Cards */
.card {
  font-family: "Zalando Sans", sans-serif;
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  color: #ffffff;
  z-index: 10;
  cursor: pointer;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 15;
}

.card-top-left {
  top: 120px;
  left: 80px;
  width: 280px;
  height: 110px;
  text-align: center;
  line-height: 1.5;
}

.card-top-left h4 {
  font-weight: 200;
}

.card-top-right {
  top: 120px;
  right: 80px;
  width: 280px;
  height: 130px;
  text-align: center;
  line-height: 1.2;
}

.card-top-right h4 {
  font-weight: 200;
}

.card-bottom-left {
  bottom: 100px;
  left: 70px;
  width: 280px;
  height: 120px;
  line-height: 1.5;
  text-align: center;
}

.card-bottom-left h4 {
  font-weight: 200;
}

.card-bottom-right {
  bottom: 100px;
  right: 70px;
  width: 280px;
  text-align: center;
  line-height: 1.5;
}

.card-bottom-right h4 {
  font-weight: 200;
}

.card h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.card h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.card-bottom-left h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.card-bottom-left strong {
  font-weight: 800;
  font-size: 22px;
}

.model-wrapper {
  position: absolute;
  bottom: -18px;
  left: 49%;
  transform: translateX(-50%);
  height: 95%;
  display: flex;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.model-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: auto;
  cursor: pointer;
  transition:
    filter 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.model-img:hover {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8))
    drop-shadow(0 0 45px rgba(255, 133, 133, 0.7));
  transform: scale(1.02);
}

/* Dark Stats Section */
#stats-section {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Zalando Sans", sans-serif;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 45px;
}

.stat-item {
  text-align: center;
}

.stat-item h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.stats-tagline {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}

/* Impact & Media Gallery Section */
#gallery-section {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
  font-family: "Zalando Sans", sans-serif;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gallery-header h2 span {
  font-family: "Zalando Sans", sans-serif;
  background: linear-gradient(
    to right,
    #e60012 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #e60012 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeContinuous 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery-card {
  position: relative;
  width: 320px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 155, 162, 0.8);
  box-shadow: 0 16px 35px rgba(237, 27, 36, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Footer Section */
#footer-section {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  padding: 60px 0 30px;
  font-family: "Zalando Sans", sans-serif;
  overflow: hidden;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #f59ba2;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-logo img {
  width: 148px;
  height: auto;
  display: block;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: #f59ba2;
  color: #f59ba2;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

.contact-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list .icon {
  color: #f59ba2;
}

.cta-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.footer-btn {
  border: none;
  background: linear-gradient(
    to right,
    #ff0d25 0%,
    #f59ba2 25%,
    #fae2e5 50%,
    #f59ba2 75%,
    #ff0d25 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Zalando Sans", sans-serif;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(237, 27, 36, 0.2);
  transition:
    background-position 0.6s ease-in-out,
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
}

.footer-btn:hover {
  background-position: 100% 0%;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.4);
}

.footer-bottom {
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 30px;
  text-align: center;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(245, 155, 162, 0.4),
    transparent
  );
  margin-bottom: 25px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* Mother Crown Base Styling */
.mother-crown {
  position: absolute;
  top: -10px;
  left: 59%;
  width: 153px;
  height: auto;
  opacity: 0;
  pointer-events: auto;
  z-index: 5;
  transform: translateX(-50%) rotate(5deg) scale(0.85);
  transition:
    opacity 1.5s ease-out,
    transform 2.5s cubic-bezier(0.25, 1, 0.5, 1),
    top 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mother-crown.visible {
  opacity: 1;
  top: -3%;
  transform: translateX(-50%) rotate(5deg) scale(1);
}

/* Responsive Styles */
@media screen and (max-width: 900px) {
  #navbar {
    width: 92%;
    padding: 8px 12px;
  }

  #navbar.scrolled {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  #navbar img {
    width: 60px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

  .hero-main-logo {
    transform: none;
  }

  .pink-circle {
    width: 300px;
    height: 300px;
  }

  .hero-crown-img {
    max-width: 340px;
  }

  .hero-right::after {
    width: 180px;
    bottom: 5px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .floating-badge {
    font-size: 10px;
    padding: 8px 14px;
  }

  .badge-top {
    top: 4%;
    left: -2%;
  }

  .badge-bottom {
    bottom: 8%;
    right: -2%;
  }

  .badge-feature {
    top: -4%;
    right: -2%;
    padding: 10px 16px;
  }

  .hero-glow-ring {
    width: 420px;
    height: 420px;
  }

  .hero-sparkle {
    font-size: 14px;
  }

  .stats-container {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }

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

  #gallery-section {
    padding: 50px 0 60px;
  }

  .gallery-header h2 {
    font-size: 32px;
  }

  .gallery-card {
    width: 240px;
    height: 350px;
  }

  .mother-crown {
    width: 110px;
    left: 58.5%;
  }

  .mother-crown.visible {
    top: -2%;
  }

  .hero-flower-top-left {
    width: 180px;
  }

  .hero-flower-bottom-right {
    width: 190px;
  }
}

@media screen and (max-width: 768px) {
  #navbar {
    width: 92%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
  }

  #navbar.scrolled {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .hamburger-menu {
    display: flex;
  }

  #nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  #nav-menu.active {
    display: flex;
  }

  #nav-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 8px;
  }

  #nav-buttons button {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
  }

  .spl-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .spl-btn button {
    font-size: 13px;
    padding: 8px 20px;
  }

  .hero-tagline {
    font-size: 26px;
  }

  #red-bg {
    height: auto !important;
    min-height: auto !important;
    padding: 30px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .card,
  .card-top-left,
  .card-top-right,
  .card-bottom-left,
  .card-bottom-right {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .card:hover {
    transform: scale(1.02) !important;
  }

  .model-wrapper {
    position: relative !important;
    height: 280px !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 10px 0 !important;
  }

  .mother-crown {
    width: 75px !important;
    left: 58.5% !important;
  }

  .mother-crown.visible {
    top: -4% !important;
    transform: translateX(-50%) rotate(5deg) scale(1) !important;
  }
}

@media screen and (max-width: 480px) {
  .floating-badge,
  .hero-glow-ring,
  .hero-sparkle {
    display: none;
  }

  .hero-trust-row {
    gap: 12px;
  }

  .trust-item strong {
    font-size: 18px;
  }

  .model-wrapper {
    height: 240px !important;
  }

  .mother-crown {
    width: 65px !important;
    left: 58.5% !important;
  }

  .mother-crown.visible {
    top: -3.5% !important;
  }

  .hero-flower-top-left {
    width: 130px;
  }

  .hero-flower-bottom-right {
    width: 140px;
  }
}

/* --- Hero Eyebrow Badge --- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(237, 27, 36, 0.08);
  border: 1px solid rgba(237, 27, 36, 0.25);
  color: #ed1b24;
  font-family: "Zalando Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px 7px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed1b24;
  animation: eyebrowPulse 1.8s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(237, 27, 36, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(237, 27, 36, 0);
  }
}

/* --- Hero CTA Row --- */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Secondary Outline Button --- */
.spl-btn-outline {
  border: 2px solid #ed1b24;
  background: transparent;
  color: #ed1b24;
  font-size: 15px;
  font-weight: 600;
  font-family: "Zalando Sans", sans-serif;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.spl-btn-outline:hover {
  background: #ed1b24;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(237, 27, 36, 0.25);
}

.spl-btn-outline .ripple {
  background: rgba(237, 27, 36, 0.25);
}

/* --- Decorative Rotating Ring behind the Crown --- */
.hero-glow-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 640px;
  height: 640px;
  max-width: 90%;
  max-height: 90%;
  border-radius: 50%;
  border: 1.5px dashed rgba(237, 27, 36, 0.25);
  z-index: 1;
  animation: ringRotate 40s linear infinite;
}

.hero-glow-ring::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 155, 162, 0.35);
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --- Twinkling Sparkles around the Crown --- */
.hero-sparkle {
  position: absolute;
  font-size: 20px;
  color: #ed1b24;
  z-index: 4;
  opacity: 0;
  animation:
    sparkleTwinkle 3s ease-in-out infinite,
    badgeFadeIn 1s ease-out forwards;
}

.sparkle-1 {
  top: 14%;
  left: 30%;
  animation-delay: 0.8s, 0.8s;
  color: #fe6b72;
}

.sparkle-2 {
  top: 62%;
  left: 18%;
  font-size: 14px;
  animation-delay: 1.6s, 1.6s;
  color: #ed2086;
}

.sparkle-3 {
  top: 22%;
  right: 22%;
  font-size: 16px;
  animation-delay: 2.2s, 2.2s;
  color: #f71bf7;
}

.sparkle-4 {
  bottom: 22%;
  right: 30%;
  font-size: 12px;
  animation-delay: 2.8s, 2.8s;
  color: #fb0a0a;
}

@keyframes sparkleTwinkle {
  0%,
  100% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15) rotate(20deg);
    opacity: 1;
  }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in-view {
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

/* --- Hero parallax container --- */
.hero-right {
  transition: transform 0.2s ease-out;
}

/* --- Nav Link Underline Sweep --- */
#nav-buttons button {
  position: relative;
  overflow: hidden;
}

#nav-buttons button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #ed1b24;
  transform: translateX(-50%);
  transition: width 0.35s ease-in-out;
}

#nav-buttons button:hover::after,
#nav-buttons button.active::after {
  width: 60%;
}

/* --- Button Ripple Effect --- */
.spl-btn button,
.spl-btn-journey,
.footer-btn {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  opacity: 1;
  pointer-events: none;
  animation: rippleEffect 0.6s ease-out forwards;
}

@keyframes rippleEffect {
  to {
    transform: scale(3.2);
    opacity: 0;
  }
}

/* Tactile press feedback */
#nav-buttons button:active,
.spl-btn button:active,
.spl-btn-journey:active,
.footer-btn:active {
  transform: scale(0.95);
}

/* --- CTA Pulse Glow --- */
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 6px 15px rgba(0, 0, 0, 0.15),
      0 0 0 0 rgba(237, 27, 36, 0.35);
  }
  50% {
    box-shadow:
      0 6px 15px rgba(0, 0, 0, 0.15),
      0 0 0 14px rgba(237, 27, 36, 0);
  }
}

.spl-btn-journey {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.spl-btn-journey:hover {
  animation-play-state: paused;
}

/* --- 3D Tilt Support for Stat Cards --- */
#red-bg {
  perspective: 1400px;
}

.card {
  transform-style: preserve-3d;
}

/* --- Stat Counter Pop on Completion --- */
.stat-item h2 {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.stat-item.counted h2 {
  animation: counterPop 0.4s ease-out;
}

@keyframes counterPop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* --- Gallery Card Shine Sweep on Hover --- */
.gallery-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease-in-out;
  pointer-events: none;
  z-index: 2;
}

.gallery-card:hover::after {
  left: 125%;
}

.gallery-card img {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-card:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(237, 27, 36, 0.28) 42%,
    rgba(237, 27, 36, 0) 75%
  );
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease-in-out,
    transform 0.45s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption {
  color: #ffffff;
  font-family: "Zalando Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.gallery-caption::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 9px;
  border-radius: 2px;
  background: linear-gradient(to right, #ff0d25, #f59ba2);
}

.gallery-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(to right, #ff0d25 0%, #f59ba2 50%, #ff0d25 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
}

.gallery-card:hover .gallery-view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-card:hover {
  border-color: transparent;
  box-shadow:
    0 18px 40px rgba(237, 27, 36, 0.28),
    0 0 0 2px #f59ba2 inset;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .spl-btn-journey,
  .gallery-card::after,
  .hero-right,
  .card,
  .ripple,
  .eyebrow-dot,
  .hero-glow-ring,
  .hero-sparkle,
  .gallery-card img,
  .gallery-overlay,
  .gallery-view-icon {
    animation: none !important;
    transition: none !important;
  }

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

  .hero-sparkle {
    opacity: 0.6;
  }
}
