/* ==========================================================================
   ZAYKAA — One Spice. Every Taste.
   Premium one-page stylesheet
   --------------------------------------------------------------------------
   00. Tokens
   01. Base & reset
   02. Utilities (glass, eyebrow, divider, reveal)
   03. Buttons
   04. Preloader & scroll progress
   05. Navigation
   06. Hero
   07. About
   08. Product
   09. Why ZAYKAA
   10. Business opportunity
   11. Leadership recognition
   12. Testimonials
   13. FAQ
   14. Contact
   15. Footer
   16. Floating actions
   17. Responsive
   18. Motion & print preferences
   ========================================================================== */

/* ==========================================================================
   00. TOKENS
   ========================================================================== */
:root {
  /* Brand palette */
  --ink: #0D0D0D;
  --forest: #0F5132;
  --gold: #D4AF37;
  --white: #FFFFFF;

  /* Extended tones derived from the brand palette */
  --ink-soft: #121212;
  --ink-raise: #171717;
  --forest-deep: #08251A;
  --forest-glow: rgba(15, 81, 50, 0.55);
  --gold-deep: #A8801F;
  --gold-light: #F2DE9B;
  --champagne: #F5EAC8;

  /* Text */
  --text: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-faint: rgba(255, 255, 255, 0.42);

  /* Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-2: rgba(255, 255, 255, 0.07);
  --glass-line: rgba(212, 175, 55, 0.22);
  --hairline: rgba(255, 255, 255, 0.09);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #A8801F 0%, #D4AF37 38%, #F2DE9B 55%, #D4AF37 72%, #9C7519 100%);
  --grad-forest: linear-gradient(140deg, #0F5132 0%, #08251A 100%);
  --grad-page: radial-gradient(120% 80% at 50% 0%, #123626 0%, #0D0D0D 58%);

  /* Shadows */
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 32px 80px rgba(0, 0, 0, 0.65);
  --glow-gold: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 18px 46px rgba(212, 175, 55, 0.22);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --section-pad: clamp(58px, 9vw, 140px);
  --radius: 22px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   01. BASE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.75;
  color: var(--text);
  background: var(--ink);
  background-image: var(--grad-page);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--white);
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--gold-light);
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* Focus visibility for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: var(--ink);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-deep), var(--forest));
  border-radius: 20px;
}

/* Ambient spice mote canvas */
.spice-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.5;
}

/* ==========================================================================
   02. UTILITIES
   ========================================================================== */
.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.section--dark {
  background:
    radial-gradient(90% 60% at 15% 0%, rgba(15, 81, 50, 0.28) 0%, transparent 60%),
    #0A0A0A;
}

.section--product {
  background:
    radial-gradient(70% 60% at 80% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 65%),
    transparent;
}

.section--contact {
  background:
    radial-gradient(80% 70% at 50% 100%, rgba(15, 81, 50, 0.3) 0%, transparent 65%),
    #0A0A0A;
}

.section__head {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section__head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  margin-bottom: 0.7rem;
}

.section__lead {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  max-width: 62ch;
}

.section__body {
  color: var(--text-faint);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section__head--center .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Glassmorphism surface */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: var(--shadow-soft);
}

/* Seal-arc divider — echoes the gold ring on the brand mark */
.divider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 8vw;
}

.divider span {
  flex: 1;
  height: 1px;
  max-width: 340px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.divider i {
  color: var(--gold);
  font-size: 0.6rem;
  opacity: 0.8;
}

/* Scroll reveal states */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
  will-change: opacity, transform;
}

[data-reveal="fade-up"] {
  transform: translate3d(0, 46px, 0);
}

[data-reveal="fade-down"] {
  transform: translate3d(0, -32px, 0);
}

[data-reveal="fade-left"] {
  transform: translate3d(48px, 0, 0);
}

[data-reveal="fade-right"] {
  transform: translate3d(-48px, 0, 0);
}

[data-reveal="zoom-in"] {
  transform: scale(0.9);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* ==========================================================================
   03. BUTTONS
   ========================================================================== */
.btn-lux,
.btn-ghost,
.btn-wa {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 0;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.35s var(--ease);
}

.btn-lux {
  background: var(--grad-gold);
  background-size: 200% 200%;
  color: #1A1206;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.24);
}

.btn-lux:hover,
.btn-lux:focus-visible {
  color: #1A1206;
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 18px 48px rgba(212, 175, 55, 0.45), 0 0 0 1px rgba(242, 222, 155, 0.6);
}

.btn-lux i {
  font-size: 1.15rem;
}

.btn-lux--sm {
  padding: 11px 22px;
  font-size: 0.82rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-line);
  color: var(--champagne);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.btn-wa {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #04241C;
  margin-top: 6px;
}

.btn-wa:hover,
.btn-wa:focus-visible {
  color: #04241C;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.45);
  animation: ripple 0.65s linear;
  pointer-events: none;
  z-index: -1;
}

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

/* Submit button loading state */
.btn-lux--submit .btn-lux__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(26, 18, 6, 0.3);
  border-top-color: #1A1206;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn-lux--submit.is-sending .btn-lux__spinner {
  display: inline-block;
}

.btn-lux--submit.is-sending i {
  display: none;
}

.btn-lux--submit.is-done {
  background: linear-gradient(135deg, #0F5132, #1B8A55);
  color: var(--white);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   04. PRELOADER & SCROLL PROGRESS
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  padding: 24px;
  text-align: center;
  background: var(--ink);
  background-image: radial-gradient(60% 50% at 50% 50%, rgba(15, 81, 50, 0.35), transparent 70%);
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader[hidden] {
  display: none;
}

.preloader__seal {
  position: relative;
  display: grid;
  place-items: center;
  width: min(168px, 44vw);
  aspect-ratio: 1;
}

.preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin 1.35s linear infinite;
}

.preloader__mark {
  width: 70%;
  height: auto;
  animation: pulse-soft 2.2s ease-in-out infinite;
}

.preloader__word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.92rem, 3.4vw, 1.05rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0;
  opacity: 0.85;
}

@keyframes pulse-soft {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 1600;
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
  transition: width 0.12s linear;
}

/* ==========================================================================
   05. NAVIGATION
   ========================================================================== */
.site-nav {
  z-index: 1500;
  padding: 18px 0;
  background: transparent;
  transition: padding 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-nav.is-stuck {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--hairline);
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(212, 175, 55, 0.35));
  transition: transform 0.6s var(--ease);
}

.site-nav__brand:hover .site-nav__logo {
  transform: rotate(-6deg) scale(1.06);
}

.site-nav__wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav__wordmark small {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 5px;
  -webkit-text-fill-color: var(--text-faint);
}

.site-nav .nav-link {
  position: relative;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  transition: color 0.3s var(--ease);
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: var(--white);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
  transform: scaleX(1);
}

.site-nav__toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-nav__toggle:focus {
  box-shadow: none;
}

.site-nav__toggle[aria-expanded="true"] {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
}

.site-nav__bars {
  display: grid;
  gap: 5px;
  width: 21px;
}

.site-nav__bars i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

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

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

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

/* ==========================================================================
   06. HERO
   ========================================================================== */
/* Shared float used by the product jar and its weight badge */
@keyframes float-y {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-24px) rotate(12deg);
  }
}

.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #080808;
  /* Clears the fixed navbar; the banner fills everything below it. */
  padding-top: clamp(76px, 9vh, 104px);
}

/* --- Hero banner slider ---------------------------------------------------
   Both artworks share a 1774x887 ratio. The frame lets the image set its own
   height (width:100% / height:auto), so the composition scales down intact on
   every screen instead of being cropped by a fixed-height box. */
.banner {
  position: relative;
  z-index: 3;
  width: 100%;
  /* Guard rail for ultra-wide displays only; below this it is full bleed. */
  max-width: 2400px;
  margin-inline: auto;
}

.banner__frame {
  position: relative;
  overflow: hidden;
  background: #080808;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.banner__track {
  display: flex;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

.banner__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* On phones the frame is taller than a 2:1 image, so a blurred copy of the
   same artwork fills the space above and below instead of a black letterbox.
   Nothing is cropped and the band still reads as one composition. */
.banner__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(34px) brightness(0.42) saturate(125%);
  transform: scale(1.25);
}

.banner__slide--1::before {
  background-image: url("../img/banner-1.webp");
}

.banner__slide--2::before {
  background-image: url("../img/banner-2.webp");
}

.banner__slide img {
  position: relative;
  width: 100%;
  height: auto;
}

/* Arrows — quiet until the frame is hovered or focused */
.banner__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-line);
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}

.banner__arrow--prev {
  left: 16px;
}

.banner__arrow--next {
  right: 16px;
}

.banner__frame:hover .banner__arrow,
.banner__arrow:focus-visible {
  opacity: 1;
}

.banner__arrow:hover {
  background: rgba(212, 175, 55, 0.22);
  transform: translateY(-50%) scale(1.08);
}

/* Autoplay timer rail */
.banner__timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.banner__timer i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--grad-gold);
}

.banner__timer i.is-running {
  animation: banner-fill 6s linear forwards;
}

.banner__timer i.is-paused {
  animation-play-state: paused;
}

@keyframes banner-fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.banner__dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(10px, 1.6vw, 20px);
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(8, 8, 8, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.banner__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.45s var(--ease), background 0.45s var(--ease);
}

.banner__dot.is-active {
  width: 32px;
  border-radius: 20px;
  background: var(--grad-gold);
}

/* Touch devices have no hover, so keep the arrows permanently visible */
@media (hover: none) {

  .banner__arrow {
    opacity: 0.9;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .banner__arrow--prev {
    left: 10px;
  }

  .banner__arrow--next {
    right: 10px;
  }
}

/* ==========================================================================
   07. ABOUT
   ========================================================================== */
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-line);
  box-shadow: var(--shadow-lift);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 8, 0.75) 100%);
  pointer-events: none;
}

.frame__img {
  width: 100%;
  transition: transform 1.1s var(--ease);
}

.frame:hover .frame__img {
  transform: scale(1.06);
}

.frame__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.frame__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.frame__badge-txt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.feature-grid {
  margin-top: 8px;
}

.feature {
  height: 100%;
  padding: 20px 20px 16px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--hairline);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--glass-line);
  background: var(--glass-bg-2);
}

.feature i {
  font-size: 1.3rem;
  color: var(--gold);
}

.feature h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 8px 0 4px;
}

.feature p {
  margin: 0;
  font-size: 0.83rem;
  color: var(--text-faint);
  line-height: 1.6;
}

.feature--wide {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "icon body";
  gap: 2px 16px;
  align-items: center;
}

.feature--wide i {
  grid-area: icon;
  font-size: 1.7rem;
}

.feature--wide h3 {
  grid-area: title;
  margin: 0;
}

.feature--wide p {
  grid-area: body;
}

/* ==========================================================================
   08. PRODUCT
   ========================================================================== */
.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px;
  min-height: 420px;
}

.product-stage__glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(15, 81, 50, 0.22) 42%, transparent 70%);
  filter: blur(28px);
  animation: pulse-soft 6s ease-in-out infinite;
}

.product-stage__img {
  position: relative;
  z-index: 2;
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.75));
  animation: float-y 8s ease-in-out infinite;
  transition: transform 0.7s var(--ease);
  cursor: zoom-in;
}

.product-stage:hover .product-stage__img {
  transform: scale(1.07) rotate(-1.5deg);
}

.product-stage__weight {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 8%;
  padding: 12px 16px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: var(--grad-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
  animation: float-y 6s ease-in-out infinite 1s;
}

.product-card {
  padding: clamp(26px, 3.4vw, 40px);
}

.product-card__kicker {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--glass-line);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.product-card__name {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.product-card__desc {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.spec {
  border-top: 1px solid var(--hairline);
  margin-bottom: 24px;
}

.spec li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.86rem;
}

.spec span {
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

.spec strong {
  color: var(--champagne);
  font-weight: 500;
}

.product-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.chips li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text);
  background: rgba(15, 81, 50, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.chips li:hover {
  transform: translateY(-3px);
  background: rgba(15, 81, 50, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.chips i {
  color: var(--gold);
  font-size: 0.95rem;
}

.product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   09. WHY CHOOSE ZAYKAA
   ========================================================================== */
.lux-card {
  position: relative;
  height: 100%;
  padding: 34px 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

/* Gold corner arc — the seal motif again, quietly */
.lux-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}

.lux-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-line);
  box-shadow: var(--glow-gold), var(--shadow-lift);
}

.lux-card:hover::before {
  transform: scale(1.25);
  border-color: rgba(212, 175, 55, 0.65);
}

.lux-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 20px;
  background: var(--grad-forest);
  border: 1px solid var(--glass-line);
  color: var(--gold);
  font-size: 1.4rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.lux-card:hover .lux-card__icon {
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.lux-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.lux-card p {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.9rem;
}

/* ==========================================================================
   10. BUSINESS OPPORTUNITY
   ========================================================================== */
.package {
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 0%, rgba(212, 175, 55, 0.16), transparent 70%);
  pointer-events: none;
}

.package__kicker {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.package__price {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package__cur {
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 4px;
}

.package__note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.package__list {
  text-align: left;
  margin-bottom: 26px;
}

.package__list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.package__list i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.package__legal {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-faint);
  margin: 16px 0 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 62px;
  counter-reset: step;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(212, 175, 55, 0.1));
}

.timeline__item {
  position: relative;
  padding: 0 0 34px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -62px;
  top: -4px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink-raise);
  border: 1px solid var(--glass-line);
  color: var(--gold);
  font-size: 1.15rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.1);
  box-shadow: var(--glow-gold);
}

.timeline__item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline__item p {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.9rem;
}

/* ==========================================================================
   11. LEADERSHIP RECOGNITION
   ========================================================================== */
.rank-card {
  position: relative;
  height: 100%;
  padding: 32px 26px;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15, 81, 50, 0.28), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.rank-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transition: left 0.85s var(--ease);
}

.rank-card:hover::after {
  left: 140%;
}

.rank-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-line);
  box-shadow: var(--shadow-lift);
}

.rank-card__tier {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.rank-card__icon {
  display: block;
  font-size: 2.3rem;
  color: var(--gold);
  margin-bottom: 14px;
  transition: transform 0.5s var(--ease);
}

.rank-card:hover .rank-card__icon {
  transform: translateY(-4px) scale(1.1);
}

.rank-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.rank-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-faint);
}

.rank-card--gold {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(15, 81, 50, 0.22));
  box-shadow: var(--glow-gold);
}

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */
.slider {
  position: relative;
  overflow: hidden;
  padding: 4px;
}

.slider__track {
  display: flex;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.slider__slide {
  flex: 0 0 100%;
  padding: 0 12px;
}

.quote {
  height: 100%;
  padding: clamp(26px, 3.4vw, 40px);
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.16);
}

.quote__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 22px;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--grad-gold);
}

.quote__by strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.quote__by small {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.slider__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.slider__btn:hover {
  transform: scale(1.08);
  background: rgba(212, 175, 55, 0.16);
  box-shadow: var(--glow-gold);
}

.slider__dots {
  display: flex;
  gap: 9px;
}

.slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: width 0.45s var(--ease), background 0.45s var(--ease);
}

.slider__dot.is-active {
  width: 30px;
  border-radius: 20px;
  background: var(--grad-gold);
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.lux-accordion .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.lux-accordion .accordion-item:hover {
  border-color: var(--glass-line);
}

.lux-accordion .accordion-button {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.lux-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
  box-shadow: none;
}

.lux-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.lux-accordion .accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F2DE9B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.lux-accordion .accordion-button::after {
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
  transition: transform 0.45s var(--ease);
}

.lux-accordion .accordion-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ==========================================================================
   14. CONTACT
   ========================================================================== */
.contact-info {
  padding: 30px 26px;
  height: 100%;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}

.contact-row:hover {
  color: var(--white);
}

.contact-row i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--grad-forest);
  border: 1px solid var(--glass-line);
  color: var(--gold);
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.contact-row:hover i {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.contact-row small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-row strong {
  font-weight: 500;
  font-size: 0.98rem;
}

.map-placeholder {
  margin-top: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 200px;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(212, 175, 55, 0.35);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 12px, transparent 12px 24px),
    rgba(15, 81, 50, 0.18);
}

.map-placeholder i {
  font-size: 2rem;
  color: var(--gold);
}

.map-placeholder p {
  margin: 10px 0 2px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-placeholder small {
  font-size: 0.74rem;
  color: var(--text-faint);
}

/* Form */
.contact-form {
  padding: clamp(24px, 3.2vw, 38px);
}

.contact-form .form-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
  color: var(--white);
}

.contact-form .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-form .form-select option {
  background: var(--ink-raise);
  color: var(--white);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
  border-color: #E4655A;
  background-image: none;
  box-shadow: 0 0 0 3px rgba(228, 101, 90, 0.14);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 0;
  font-size: 0.76rem;
  color: #E4655A;
}

.form-status {
  margin: 18px 0 0;
  font-size: 0.88rem;
  min-height: 22px;
}

.form-status.is-ok {
  color: #4FD08A;
}

.form-status.is-error {
  color: #E4655A;
}

.form-note {
  margin: 8px 0 0;
  font-size: 0.74rem;
  color: var(--text-faint);
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 6vw, 88px) 0 26px;
  background: #070707;
  border-top: 1px solid var(--hairline);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer__brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer__brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__brand small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  -webkit-text-fill-color: var(--text-faint);
  margin-top: 6px;
}

.footer__blurb {
  font-size: 0.88rem;
  color: var(--text-faint);
  max-width: 42ch;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  position: relative;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__links a:hover::after {
  width: 100%;
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  color: var(--text-muted);
  font-size: 1.05rem;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.social a:hover {
  transform: translateY(-4px);
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.subscribe {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe .form-control {
  flex: 1 1 190px;
  padding: 13px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  color: var(--white);
  font-size: 0.9rem;
}

.subscribe .form-control::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.subscribe .form-control:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
  color: var(--white);
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.footer__bar p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--text-faint);
}

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

/* ==========================================================================
   16. FLOATING ACTIONS
   ========================================================================== */
.to-top {
  position: fixed;
  right: 20px;
  z-index: 1400;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.to-top {
  bottom: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  background: var(--grad-gold);
  color: var(--ink);
  font-size: 1.15rem;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.to-top.is-shown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.45);
}


/* ==========================================================================
   TRUST MARQUEE
   ========================================================================== */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(11px, 1.6vw, 16px) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(90deg, rgba(15, 81, 50, 0.4), rgba(10, 10, 10, 0.92) 50%, rgba(15, 81, 50, 0.4));
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

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

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  padding-right: clamp(18px, 3vw, 30px);
}

.marquee__group span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  color: var(--champagne);
  white-space: nowrap;
}

.marquee__group i {
  font-size: 0.4rem;
  color: var(--gold);
}

/* The track holds two identical groups, so shifting by half loops seamlessly */
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   17. RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 80px;
  }

  /* Solid bar on phones — it sits directly on top of the banner artwork,
     so transparency made the links hard to read. */
  .site-nav {
    padding: 9px 0;
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
  }

  /* The brand must yield space to the toggle rather than push it off-screen */
  .site-nav__brand {
    min-width: 0;
    gap: 10px;
    margin-right: 10px;
    overflow: hidden;
  }

  .site-nav__logo {
    width: 42px;
    height: 42px;
  }

  .site-nav__wordmark {
    font-size: 1.16rem;
    letter-spacing: 0.2em;
  }

  .site-nav__wordmark small {
    display: none;
  }

  .site-nav .navbar-collapse {
    margin-top: 12px;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-line);
    background: rgba(9, 9, 9, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lift);
  }

  .site-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .nav-link {
    font-size: 0.98rem;
    padding: 14px 12px;
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .site-nav .nav-link.is-active {
    color: var(--gold);
  }

  .site-nav .navbar-nav .btn-lux {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  /* A 2:1 banner is only ~190px tall on a phone, which reads as a weak
     hero. The frame gets real height and the blurred fill does the rest. */
  .banner__track {
    min-height: 54vh;
    min-height: 54svh;
  }

  .timeline {
    padding-left: 54px;
  }

  .timeline__dot {
    left: -54px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .timeline::before {
    left: 21px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --radius: 18px;
  }

  /* Wide tracking looks refined on a desktop label and cramped on a phone */
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

  .section__head {
    margin-bottom: 32px;
  }

  .section__title {
    font-size: clamp(1.75rem, 7.4vw, 2.3rem);
  }

  .lux-card {
    padding: 26px 22px;
  }

  .lux-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 15px;
  }

  .rank-card {
    padding: 26px 20px;
  }

  .frame__badge {
    left: 14px;
    bottom: 14px;
    padding: 11px 15px;
  }

  .contact-info,
  .package {
    padding: 26px 20px;
  }

  .spec li {
    font-size: 0.82rem;
  }

  .lux-accordion .accordion-button {
    padding: 17px 18px;
    font-size: 0.94rem;
  }

  .lux-accordion .accordion-body {
    padding: 0 18px 18px;
  }

  .footer__bar {
    gap: 16px;
  }

  .site-nav__wordmark {
    font-size: 1.1rem;
  }

  .site-nav__logo {
    width: 46px;
    height: 46px;
  }

  .product-card__actions .btn-lux,
  .product-card__actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .product-stage {
    min-height: 340px;
    padding: 10px;
  }

  .product-stage__img {
    max-height: 400px;
  }

  .divider {
    padding: 0 6vw;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    width: 46px;
    height: 46px;
    right: 14px;
  }

  .marquee__group {
    gap: 16px;
    padding-right: 16px;
  }

  .banner__dots {
    padding: 6px 11px;
    gap: 7px;
  }

  .banner__dot {
    width: 7px;
    height: 7px;
  }

  .banner__dot.is-active {
    width: 24px;
  }
}

/* Short landscape phones — tighten the banner stage */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    padding-top: 72px;
  }
}

/* ==========================================================================
   18. MOTION & PRINT PREFERENCES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .spice-field {
    display: none;
  }

  .marquee__track {
    animation: none;
  }
}

@media print {

  .site-nav,
  .preloader,
  .spice-field,
  .to-top,
  .scroll-progress {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
