:root {
  --night: #070707;
  --night-soft: #0f0f0f;
  --night-lift: #171717;
  --gold: #c9a227;
  --gold-light: #e4c65a;
  --gold-muted: #9a7b1c;
  --gold-pale: #f3e6b8;
  --cream: #f5f0e6;
  --wa: #25d366;
  --wa-deep: #1ebe57;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(201, 162, 39, 0.09), transparent 55%),
    radial-gradient(700px 380px at 100% 20%, rgba(201, 162, 39, 0.05), transparent 50%),
    var(--night);
  color: var(--cream);
  overflow-x: hidden;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(600px 400px at 50% 40%, rgba(201, 162, 39, 0.16), transparent 60%),
    #070707;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-loader-logo {
  width: min(280px, 70vw);
  height: auto;
  animation: loaderPulse 1.6s ease-in-out infinite, logoGlow 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.25));
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.15)); }
  50% { filter: drop-shadow(0 0 22px rgba(201, 162, 39, 0.4)); }
}

.page-loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(201, 162, 39, 0.2);
  overflow: hidden;
}

.page-loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #c9a227, #e4c65a);
  animation: loaderBar 1.1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.75; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes loaderBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.gold-line {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-line-left {
  background: linear-gradient(90deg, var(--gold), transparent);
}

#site-header .header-inner {
  transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

#site-header .header-logo {
  height: 68px;
  max-height: 68px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(-8px) scale(0.94);
  filter: drop-shadow(0 0 0 transparent);
  transition:
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease,
    opacity 0.35s ease;
}

#site-header .header-logo.logo-ready {
  animation: logoIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#site-header .header-logo.logo-settled {
  animation: none;
  opacity: 1;
  transform: translateY(0) scale(1);
}

#site-header a:hover .header-logo.logo-settled {
  transform: scale(1.05);
  filter: drop-shadow(0 0 16px rgba(201, 162, 39, 0.4));
}

#site-header.nav-scrolled a:hover .header-logo.logo-settled {
  transform: scale(1.04);
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#site-header .nav-main {
  gap: 2.25rem;
  font-size: 0.98rem;
  transition: gap 0.35s ease, font-size 0.35s ease;
}

#site-header.nav-scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(201, 162, 39, 0.22) !important;
}

#site-header.nav-scrolled .header-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

#site-header.nav-scrolled .header-logo {
  height: 44px;
  max-height: 44px;
}

#site-header.nav-scrolled .nav-main {
  gap: 1.75rem;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  #site-header .header-logo {
    height: 40px;
    max-height: 40px;
  }
  #site-header.nav-scrolled .header-logo {
    height: 36px;
    max-height: 36px;
  }
  #site-header .header-inner {
    gap: 0.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  #site-header .header-actions .btn-header-wa,
  #site-header .header-actions .quick-order {
    display: none !important;
  }

  #site-header .header-actions .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  #site-header .header-actions .menu-toggle {
    display: none !important;
  }
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--gold-light);
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(7, 7, 7, 0.4);
  color: var(--gold-pale);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, top 0.4s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  visibility: hidden;
}

.mobile-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-panel-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 80% 10%, rgba(201, 162, 39, 0.18), transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #12100a 50%, #070707 100%);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-panel.is-open .mobile-panel-bg {
  clip-path: circle(150% at calc(100% - 40px) 40px);
}

.mobile-panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6.5rem 1.5rem 2rem;
}

.mobile-panel-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  color: var(--gold-pale);
  text-decoration: none;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, color 0.25s ease;
}

.mobile-panel.is-open .mobile-panel-link {
  transform: none;
  opacity: 1;
}

.mobile-panel.is-open .mobile-panel-link:nth-child(1) { transition-delay: 0.18s; }
.mobile-panel.is-open .mobile-panel-link:nth-child(2) { transition-delay: 0.26s; }
.mobile-panel.is-open .mobile-panel-link:nth-child(3) { transition-delay: 0.34s; }
.mobile-panel.is-open .mobile-panel-link:nth-child(4) { transition-delay: 0.42s; }

.mobile-panel-link .num {
  font-family: Cinzel, Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  min-width: 1.6rem;
}

.mobile-panel-link .label {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: transform 0.35s ease, color 0.25s ease;
}

.mobile-panel-link:hover .label,
.mobile-panel-link.is-active .label {
  color: var(--gold-light);
  transform: translateX(8px);
}

.mobile-panel-foot {
  margin-top: auto;
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease 0.5s, transform 0.45s ease 0.5s;
}

.mobile-panel.is-open .mobile-panel-foot {
  opacity: 1;
  transform: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  overflow: hidden;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn.hidden {
  display: none !important;
}

@media (min-width: 640px) {
  .btn.sm\:inline-flex {
    display: inline-flex !important;
  }
}

.btn:active {
  transform: scale(0.97);
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn-shine:hover::before {
  left: 140%;
}

.btn-gold {
  background: linear-gradient(135deg, #e4c65a 0%, #c9a227 45%, #a8740f 100%);
  color: #0a0a0a;
  padding: 0.95rem 1.55rem;
  box-shadow: 0 10px 30px -12px rgba(201, 162, 39, 0.65);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(201, 162, 39, 0.8);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-pale);
  padding: 0.95rem 1.55rem;
  border: 1px solid rgba(201, 162, 39, 0.4);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  transform: translateY(-2px);
}

.btn-wa {
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #3DDC84 0%, #25D366 48%, #1ebe57 100%);
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.55);
}

.btn-wa:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(135deg, #4ae48f 0%, #2fe078 48%, #25D366 100%);
  box-shadow: 0 16px 36px -10px rgba(37, 211, 102, 0.7);
}

.btn-wa .wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  padding: 0 0.95rem;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-wa .wa-text {
  padding: 0.95rem 1.35rem 0.95rem 1.1rem;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
}

.btn-wa-sm {
  font-size: 0.8rem;
}

.btn-wa-sm .wa-icon { padding: 0 0.75rem; }
.btn-wa-sm .wa-text { padding: 0.75rem 1rem 0.75rem 0.85rem; }

.btn-header-wa {
  padding: 0;
  min-height: 42px;
}

.btn-header-wa .wa-icon { padding: 0 0.7rem; }
.btn-header-wa .wa-text { padding: 0.65rem 0.95rem 0.65rem 0.75rem; font-size: 0.8rem; }

.quick-order {
  position: relative;
  display: block;
  flex-shrink: 0;
}

.btn-quick {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.05));
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.55);
  padding: 0.65rem 0.95rem;
  min-height: 42px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-quick:hover,
.quick-order.is-open .btn-quick {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0.12));
  color: #fff;
}

@media (max-width: 767px) {
  .menu-toggle,
  .btn-quick {
    box-sizing: border-box;
    height: 42px;
    min-height: 42px;
    border-color: rgba(201, 162, 39, 0.5);
  }

  .menu-toggle {
    width: 42px;
  }

  .menu-toggle span:nth-child(1) { top: 14px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 26px; }
  .menu-toggle.is-open span:nth-child(1),
  .menu-toggle.is-open span:nth-child(3) { top: 20px; }

  .btn-quick {
    padding: 0 0.75rem;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
}

.quick-order-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  width: min(320px, calc(100vw - 1.25rem));
  max-height: min(70vh, 420px);
  overflow: auto;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(180deg, #141210, #0c0c0c);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.quick-order.is-open .quick-order-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.quick-order-title {
  padding: 0.9rem 1rem 0.65rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.quick-order-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: var(--gold-pale);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.quick-order-item:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
  padding-left: 1.2rem;
}

.quick-order-item span {
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-float:hover {
  transform: translateY(-3px);
}

.wa-float-orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3DDC84 0%, #25D366 45%, #128C7E 100%);
  color: #fff;
  box-shadow:
    0 10px 28px rgba(18, 140, 126, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waSoftPulse 2.4s ease-out infinite;
}

.wa-float-orb svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.2));
}

.wa-float-orb::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  animation: pulseRing 2.2s ease-out infinite;
  pointer-events: none;
}

.wa-float-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 0;
  background: #111;
  color: var(--gold-pale);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.7rem 0;
  border: 1px solid transparent;
  border-radius: 999px 0 0 999px;
  transition: max-width 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.35s ease, margin 0.35s ease, border-color 0.3s ease;
}

.wa-float:hover .wa-float-label {
  max-width: 170px;
  opacity: 1;
  margin-right: -6px;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  border-color: rgba(201, 162, 39, 0.25);
}

@keyframes waSoftPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(18, 140, 126, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 10px 28px rgba(18, 140, 126, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@keyframes pulseRing {
  0% { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.hero-ken {
  animation: ken 22s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

.rise {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rise.in {
  opacity: 1;
  transform: none;
}

.rise-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rise-left.in {
  opacity: 1;
  transform: none;
}

.rise-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.rise-scale.in {
  opacity: 1;
  transform: none;
}

.enter {
  animation: enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.38s; }

@keyframes enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

.stagger.in > * {
  opacity: 1;
  transform: none;
}

.fx-dust {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0.35;
}

.fx-dust i {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0% { transform: translateY(110vh) scale(0.4); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.52) 48%, rgba(7, 7, 7, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.7) 0%, transparent 45%, rgba(7, 7, 7, 0.4) 100%);
  pointer-events: none;
}

.hero-slide .hero-copy > * {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-slide.is-active .hero-copy > *:nth-child(1) { transition-delay: 0.18s; }
.hero-slide.is-active .hero-copy > *:nth-child(2) { transition-delay: 0.3s; }
.hero-slide.is-active .hero-copy > *:nth-child(3) { transition-delay: 0.42s; }
.hero-slide.is-active .hero-copy > *:nth-child(4) { transition-delay: 0.54s; }

.hero-slide.is-active .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide:not(.is-active) .hero-copy > * {
  transition-delay: 0s;
  transition-duration: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: linear-gradient(160deg, rgba(20, 18, 14, 0.72), rgba(7, 7, 7, 0.55));
  color: var(--gold-pale);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-nav-prev { left: 1rem; }
.hero-nav-next { right: 1rem; }

.hero-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-nav-btn:hover {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.35), rgba(201, 162, 39, 0.12));
  color: var(--gold-light);
  transform: scale(1.06);
  box-shadow: 0 12px 34px rgba(201, 162, 39, 0.25);
}

.hero-nav-btn:active {
  transform: scale(0.96);
}

.hero-dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  z-index: 25;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-dots {
  pointer-events: auto;
  display: flex;
  gap: 8px;
  padding: 0.55rem 0.75rem;
  background: rgba(7, 7, 7, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.2);
  backdrop-filter: blur(10px);
}

.hero-dot {
  width: 22px;
  height: 2px;
  background: rgba(243, 230, 184, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-dot.is-active {
  width: 42px;
  background: var(--gold);
}

@media (max-width: 767px) {
  .hero-nav-btn {
    display: none;
  }
  .hero-dots-wrap { bottom: 1.15rem; }
  .hero-dots {
    margin-right: 4.5rem;
  }
}

.pkg-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pkg-mosaic {
    grid-template-columns: 1.05fr 1.35fr 1.05fr;
    grid-template-rows: auto;
    align-items: stretch;
  }
}

.pkg {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent 40%),
    var(--night-lift);
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
}

.pkg::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pkg:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.35);
}

.pkg:hover::after {
  opacity: 1;
}

.pkg[aria-pressed='true'] {
  border-color: var(--gold);
  background:
    linear-gradient(165deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.02) 55%),
    var(--night-lift);
  box-shadow: 0 24px 50px -28px rgba(201, 162, 39, 0.45);
}

.pkg-big {
  min-height: 100%;
}

@media (min-width: 768px) {
  .pkg-big {
    transform: scale(1.02);
    z-index: 1;
  }

  .pkg-big:hover,
  .pkg-big[aria-pressed='true'] {
    transform: scale(1.04) translateY(-4px);
  }
}

.pkg-num {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(228, 198, 90, 0.35), rgba(201, 162, 39, 0.05));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.35s ease;
}

.pkg[aria-pressed='true'] .pkg-num {
  background: linear-gradient(180deg, #f3e6b8, #c9a227);
  -webkit-background-clip: text;
  background-clip: text;
}

.pkg-check {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.75rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pkg[aria-pressed='true'] .pkg-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.page-banner {
  position: relative;
  min-height: 36svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  
  padding-top: 7.5rem;
  padding-bottom: 2.75rem;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .page-banner {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
    min-height: 0;
  }
}

.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 24s ease-in-out infinite alternate;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.45)),
    linear-gradient(0deg, rgba(7, 7, 7, 0.88), transparent 55%);
}

.product-row {
  transition: background 0.35s ease, padding-left 0.35s ease;
}

.product-row:hover {
  background: rgba(201, 162, 39, 0.05);
}

@media (min-width: 768px) {
  .product-row:hover {
    padding-left: 0.5rem;
  }
}

.product-row img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-row:hover img {
  transform: scale(1.06);
}

.stat-item {
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

.field {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  outline: none;
}

.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-zoom:hover img {
  transform: scale(1.08);
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 162, 39, 0.14);
  background: linear-gradient(165deg, rgba(201, 162, 39, 0.06), transparent 55%);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f0f0f;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.6rem;
}

.blog-card-meta {
  font-family: Cinzel, Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card h2 {
  margin-top: 0.65rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #f3e6b8;
}

.blog-card p {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 230, 184, 0.55);
}

.blog-card-link {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light, #e4c65a);
}

.blog-article {
  max-width: 42rem;
}

.blog-article .lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(243, 230, 184, 0.7);
}

.blog-article h2 {
  margin-top: 2.5rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: #f3e6b8;
}

.blog-article h3 {
  margin-top: 1.75rem;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: #e4c65a;
}

.blog-article p,
.blog-article li {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(243, 230, 184, 0.62);
}

.blog-article ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.blog-article a {
  color: #e4c65a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-article .cta-box {
  margin-top: 2.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent);
}

.seo-faq details {
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  padding: 1.1rem 0;
}

.seo-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #f3e6b8;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq details p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(243, 230, 184, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .hero-ken,
  .enter,
  .rise,
  .rise-left,
  .rise-scale,
  .hero-track,
  .page-banner img,
  .fx-dust i,
  .wa-float-orb,
  .wa-float-orb::before,
  .page-loader-logo,
  .page-loader-bar span,
  .header-logo,
  .mobile-panel-bg {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }

  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
