:root {
  --primary: #e4d2a4;
  --primary-light: #f2e8cc;
  --primary-soft: #f8f3e8;
  --primary-dark: #c9b58a;
  --primary-darker: #9a855f;
  --primary-deep: #7a6848;
  --primary-rgb: 228, 210, 164;
  --white: #ffffff;

  --cream: var(--primary-soft);
  --cream-overlay: rgba(248, 243, 232, 0.7);
  --tan: var(--primary);
  --tan-nav: var(--primary);
  --tan-dark: var(--primary-dark);
  --tan-dropdown: var(--primary-dark);
  --brown: var(--primary-deep);
  --brown-light: var(--primary-darker);
  --brown-muted: var(--primary-darker);
  --gold-1: var(--primary-deep);
  --gold-2: var(--primary-darker);
  --gold-3: var(--primary);
  --gold-4: var(--primary-light);
  --gold-5: var(--primary-dark);
  --brown-rgb: 122, 104, 72;
  --gold-rgb: var(--primary-rgb);
  --tan-rgb: var(--primary-rgb);
  --header-h: 56px;
  --container-max: 1440px;
  --container: min(var(--container-max), 92vw);
  --container-gutter: max(1.5rem, calc((100vw - var(--container)) / 2));
  --font: "Noto Sans SC", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --store-badge-bg: linear-gradient(
    145deg,
    #7a6848 0%,
    #5c4f38 45%,
    #453a2c 100%
  );
  --store-badge-border: rgba(var(--primary-rgb), 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-anchor: none;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.legal-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* —— Live chat widget (third-party) sits above page chrome —— */
#tawk-bubble-container,
#crisp-chatbox,
.intercom-lightweight-app,
#chat-widget-container,
iframe[id^="launcher"],
div[data-testid="widget-iframe"] {
  z-index: 9999 !important;
}

/* Keep Tawk launcher visible (some configs hide it via inline styles) */
#tawk-bubble-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

/* —— Scroll progress —— */
.scroll-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 101;
  pointer-events: none;
  transition: transform 0.12s linear;
}

/* —— Scroll to top —— */
.scroll-top {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease-spring),
    box-shadow 0.35s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 36px rgba(var(--primary-rgb), 0.55);
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

[data-reveal-group] .reveal {
  transition-delay: 0s;
}

/* Section highlight when scrolled to */
.section-highlight,
.hero.section-highlight {
  animation: section-pulse 1.1s var(--ease);
}

@keyframes section-pulse {
  0% {
    box-shadow: inset 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
  25% {
    box-shadow: inset 0 0 0 3px rgba(var(--primary-rgb), 0.35);
  }
  100% {
    box-shadow: inset 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--gold-rgb), 0.45);
}

.btn-outline {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(var(--brown-rgb), 0.22);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--tan-dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-nav {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
  box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.35);
  animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(var(--gold-rgb), 0.3); }
  50% { box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.5); }
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--tan-nav);
  display: flex;
  align-items: center;
  padding-inline: var(--container-gutter);
  gap: 1rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(var(--tan-rgb), 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(var(--brown-rgb), 0.1);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: min(9.5rem, 34vw);
  object-fit: contain;
}

.nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-main {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-main a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brown);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.35s var(--ease);
}

.nav-main a:hover {
  color: var(--brown-light);
}

.nav-main a:hover::after,
.nav-main a.is-active::after {
  width: 100%;
}

.nav-main a.is-active {
  color: var(--primary-deep);
  font-weight: 600;
}

.nav-utils {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-utils a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 500;
}

/* —— Language dropdown —— */
.lang-dropdown {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(var(--brown-rgb), 0.12);
  border-radius: 8px;
  padding: 0.45rem 0.65rem 0.45rem 0.55rem;
  cursor: pointer;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  min-width: 88px;
}

.lang-trigger:hover {
  background: var(--white);
  border-color: rgba(var(--brown-rgb), 0.2);
  box-shadow: 0 4px 16px rgba(var(--brown-rgb), 0.1);
}

.lang-dropdown.is-open .lang-trigger {
  background: var(--white);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.25);
}

.lang-trigger-icon {
  display: flex;
  color: var(--primary-darker);
  opacity: 0.85;
}

.lang-current {
  flex: 1;
  text-align: left;
  letter-spacing: 0.02em;
}

.lang-chevron {
  display: flex;
  color: var(--primary-darker);
  transition: transform 0.35s var(--ease);
}

.lang-dropdown.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  box-shadow:
    0 16px 48px rgba(var(--brown-rgb), 0.16),
    0 0 0 1px rgba(var(--brown-rgb), 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease-spring),
    visibility 0.35s;
  z-index: 110;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-menu[hidden] {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--primary-deep);
  transition: background 0.25s ease;
}

.lang-option:hover {
  background: rgba(var(--primary-rgb), 0.2);
}

.lang-option.active {
  background: rgba(var(--primary-rgb), 0.28);
}

.lang-option-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--primary-deep);
  letter-spacing: 0.02em;
}

.lang-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.lang-option-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.lang-option-sub {
  font-size: 0.72rem;
  color: var(--brown-light);
  font-weight: 400;
}

.lang-option-check {
  flex-shrink: 0;
  color: var(--primary-darker);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--ease-spring);
}

.lang-option.active .lang-option-check {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) var(--container-gutter) 3.5rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-video-wrap .hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-object-fit: cover;
  pointer-events: none;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-video-wrap.is-fallback .hero-video {
  opacity: 0;
}

/* —— Locale videos (zh / en crossfade) —— */
.locale-video-group {
  position: relative;
  overflow: hidden;
}

.locale-video-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.9s var(--ease),
    transform 1.05s var(--ease);
  will-change: opacity, transform;
}

.locale-video-layer.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.locale-video-layer.is-leaving {
  opacity: 0;
  transform: scale(1.02);
  z-index: 0;
}

.locale-video-group.is-switching .locale-video-layer.is-active {
  animation: locale-video-enter 0.95s var(--ease) both;
}

@keyframes locale-video-enter {
  from {
    opacity: 0;
    transform: scale(1.06) translateX(2.5%);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@media (max-width: 768px) {
  .locale-video-layer {
    object-fit: contain;
  }
}

/* —— Promo videos (1 + 2) —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-videos {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(var(--primary-rgb), 0.1) 45%,
    var(--cream) 100%
  );
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.promo-videos .section-head {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.promo-videos .container {
  width: min(1480px, 96vw);
}

.promo-videos-grid {
  --promo-media-h: clamp(320px, 32vw, 620px);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.promo-videos-grid > article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border: 1px solid rgba(var(--primary-rgb), 0.38);
  border-radius: 1.65rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(var(--primary-rgb), 0.2));
  box-shadow:
    0 22px 52px rgba(var(--primary-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.promo-video-card {
  grid-column: span 3;
  width: 100%;
  min-width: 0;
}

.promo-video-card--hero {
  position: relative;
  width: min(400px, 92vw);
  max-width: 100%;
}

.promo-video-card--hero::before {
  content: none;
}

.promo-video-card--hero .promo-video-frame {
  aspect-ratio: 16 / 28;
  
  border-radius: 1.25rem;
  border: 10px solid #e4d2a4;
  overflow: hidden;
  box-shadow:
    0 22px 48px rgba(var(--brown-rgb), 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.38);
}

.promo-carousel-card {
  grid-column: span 1;
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.promo-carousel-card::before,
.promo-carousel-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.promo-carousel-card::before {
  width: 15rem;
  height: 15rem;
  top: -7rem;
  right: -5rem;
  background: rgba(var(--primary-rgb), 0.3);
  filter: blur(8px);
}

.promo-carousel-card::after {
  width: 10rem;
  height: 10rem;
  left: -4rem;
  bottom: -5rem;
  border: 1px solid rgba(var(--brown-rgb), 0.08);
  background: rgba(255, 255, 255, 0.36);
}

.promo-carousel-card .hero-carousel {
  --hero-carousel-width: 100%;
  display: flex;
  min-height: 0;
  flex-direction: column;
  width: 100%;
  margin-inline: auto;
  animation: none;
}

.promo-carousel-card .hero-carousel-viewport {
  flex: none;
  height: var(--promo-media-h);
  min-height: 0;
  aspect-ratio: auto;
  border-width: 8px;
  border-radius: 1.25rem;
  background:
    radial-gradient(800px 420px at 30% 0%, rgba(var(--primary-rgb), 0.2), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f1e7 100%);
  filter: none;
}

.promo-carousel-card .hero-app-image {
  object-fit: contain;
  padding: clamp(0.4rem, 1vw, 0.65rem);
}

.promo-carousel-card .hero-carousel-dots {
  position: static;
  margin-top: 1.1rem;
}

.promo-carousel-card .hero-carousel-dot {
  background: rgba(var(--brown-rgb), 0.28);
}

.promo-carousel-card .hero-carousel-dot.is-active {
  background: linear-gradient(90deg, var(--gold-2), var(--gold-4));
}

.promo-card-copy {
  min-height: 5.35rem;
  margin-bottom: 1rem;
}

.promo-card-description {
  max-width: 36rem;
  margin-top: 0.35rem;
  color: var(--brown-light);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.65;
}

.promo-video-caption {
  margin-bottom: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-videos-grid .promo-video-frame {
  position: relative;
  width: 100%;
  height: var(--promo-media-h);
  aspect-ratio: auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 10px solid #e4d2a4;
  background: #1a1510;
  box-shadow:
    0 24px 56px rgba(var(--primary-rgb), 0.34),
    0 0 0 1px rgba(var(--brown-rgb), 0.08);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.promo-video-card.reveal.is-visible .promo-video-frame {
  animation: promo-frame-rise 0.85s var(--ease) both;
}

.promo-video-card.reveal-delay-1.reveal.is-visible .promo-video-frame {
  animation-delay: 0.12s;
}

@keyframes promo-frame-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.promo-video-frame:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(var(--primary-rgb), 0.4),
    0 0 0 1px rgba(var(--primary-rgb), 0.18);
}

.promo-video-frame .locale-video-group {
  position: absolute;
  inset: 0;
}

.promo-video-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: promo-shine 6s ease-in-out infinite;
}

.promo-video-card:nth-child(2) .promo-video-shine {
  animation-delay: 1.5s;
}

@keyframes promo-shine {
  0%, 100% {
    transform: translateX(-120%);
  }
  45%, 55% {
    transform: translateX(120%);
  }
}

.promo-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  pointer-events: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(
    to top,
    rgba(20, 16, 12, 0.78) 0%,
    rgba(20, 16, 12, 0.32) 55%,
    transparent 100%
  );
}

.promo-video-progress-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  min-height: 1.2rem;
  touch-action: none;
}

.promo-video-mute,
.promo-video-play,
.promo-video-fullscreen {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-spring);
}

.promo-video-mute:hover,
.promo-video-play:hover,
.promo-video-fullscreen:hover {
  background: rgba(var(--primary-rgb), 0.45);
  transform: scale(1.06);
}

.promo-video-mute:focus-visible,
.promo-video-play:focus-visible,
.promo-video-fullscreen:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 2px;
}

.promo-video-frame.is-fullscreen,
.promo-video-frame:fullscreen {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  border-radius: 0;
  border: none;
  background: #000;
}

.promo-video-frame.is-fullscreen .locale-video-layer,
.promo-video-frame:fullscreen .locale-video-layer {
  object-fit: contain;
}

.promo-video-frame.is-fullscreen .promo-video-controls,
.promo-video-frame:fullscreen .promo-video-controls {
  padding: 1.25rem 1.5rem;
}

.promo-video-mute-icon {
  display: block;
}

.promo-video-play-icon {
  display: block;
}

.promo-video-play-icon--play {
  display: none;
}

.promo-video-controls.is-paused .promo-video-play-icon--pause {
  display: none;
}

.promo-video-controls.is-paused .promo-video-play-icon--play {
  display: block;
}

.promo-video-mute-icon--muted {
  display: none;
}

.promo-video-card.is-muted .promo-video-mute-icon--sound {
  display: none;
}

.promo-video-card.is-muted .promo-video-mute-icon--muted {
  display: block;
}

.promo-video-range {
  --range-pct: 0%;
  width: 100%;
  height: 1.75rem;
  margin: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  touch-action: none;
}

.promo-video-range:focus-visible {
  outline: none;
}

.promo-video-range:focus-visible::-webkit-slider-thumb {
  box-shadow:
    0 0 0 3px rgba(var(--primary-rgb), 0.45),
    0 2px 8px rgba(0, 0, 0, 0.35);
}

.promo-video-range::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--gold-3) 0%,
    var(--gold-3) var(--range-pct),
    rgba(255, 255, 255, 0.28) var(--range-pct),
    rgba(255, 255, 255, 0.28) 100%
  );
}

.promo-video-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -4.5px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.promo-video-range::-moz-range-track {
  height: 5px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.promo-video-range::-moz-range-progress {
  height: 5px;
  border-radius: 999px 0 0 999px;
  background: var(--gold-3);
}

.promo-video-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--cream-overlay);
  z-index: 1;
}

.hero-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4%;
  pointer-events: none;
  opacity: 0.14;
  color: var(--tan-dark);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero-map svg {
  width: min(72vw, 820px);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 34rem;
}

.hero-visual {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 34vw, 520px);
  height: clamp(380px, 48vw, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.hero-visual.reveal {
  transform: translateX(20px);
}

.hero-visual.reveal.is-visible {
  transform: translateX(0);
}

.hero-visual-backdrop {
  position: absolute;
  inset: 8% 10% 0 10%;
  z-index: 0;
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 58%,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(var(--primary-rgb), 0.2) 35%,
    rgba(var(--primary-rgb), 0.3) 52%,
    transparent 72%
  );
  animation: hero-visual-glow 5.5s ease-in-out infinite;
}

.hero-visual-ring {
  display: none;
}

.hero-visual-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 28px rgba(var(--brown-rgb), 0.16));
}

.hero-visual.reveal.is-visible .hero-visual-img {
  animation: hero-visual-enter 1.05s var(--ease) both;
}

.hero-visual.reveal.is-visible .hero-visual-backdrop {
  animation: hero-visual-float 6.5s ease-in-out 1.05s infinite;
}

@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }
  to {
    opacity: 0.75;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-visual-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-visual-glow {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.05);
  }
}

@keyframes hero-visual-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--brown-rgb), 0.12);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.35rem;
  box-shadow: 0 8px 24px rgba(var(--brown-rgb), 0.06);
}

.hero-title {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.22em;
  letter-spacing: -0.02em;
}

.hero-title > span:first-child {
  color: var(--brown);
}

.gold-text {
  background: linear-gradient(
    105deg,
    var(--gold-1) 0%,
    var(--gold-2) 18%,
    var(--gold-3) 38%,
    var(--gold-4) 52%,
    var(--gold-3) 68%,
    var(--gold-5) 82%,
    var(--gold-1) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 5s ease-in-out infinite;
}

.hero-title .gold-text {
  background: linear-gradient(
    115deg,
    #5c4f38 0%,
    #7a6848 20%,
    #9a855f 42%,
    #c9b58a 55%,
    #9a855f 70%,
    #7a6848 86%,
    #5c4f38 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55));
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

html[lang="en"] .hero-title {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.75vw, 1.06rem);
  color: rgba(var(--brown-rgb), 0.88);
  max-width: 32rem;
  margin-bottom: 1.85rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hero-stores {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brown-light);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.hero-stores-live {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.45);
  animation: store-live-pulse 2.4s ease-in-out infinite;
}

@keyframes store-live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.45);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(61, 220, 132, 0);
  }
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.store-badge {
  --store-badge-h: 3.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 11.75rem;
  height: var(--store-badge-h);
  padding: 0 1.05rem 0 0.8rem;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--store-badge-bg);
  border: 1px solid var(--store-badge-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 22px rgba(var(--brown-rgb), 0.28),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s ease;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.store-badges.reveal.is-visible .store-badge {
  animation: store-badge-in 0.7s var(--ease) forwards;
}

.store-badges.reveal.is-visible .store-badge:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes store-badge-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.store-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 42%,
    transparent 100%
  );
  opacity: 0.55;
  pointer-events: none;
}

.store-badge-shine {
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 45%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 48%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.65s var(--ease);
}

.store-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(var(--primary-rgb), 0.65);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 32px rgba(var(--brown-rgb), 0.35),
    0 0 0 1px rgba(var(--primary-rgb), 0.25);
}

.store-badge:hover .store-badge-shine {
  left: 130%;
}

.store-badge:active {
  transform: translateY(-1px) scale(0.99);
  transition-duration: 0.1s;
}

.store-badge:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 4px;
}

.store-badge-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.85rem;
  transition: transform 0.35s var(--ease-spring);
}

.store-badge:hover .store-badge-icon {
  transform: scale(1.08);
}

.store-badge-icon--apple {
  color: #fff;
}

.store-badge-icon--google svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.store-badge-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1.1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.store-badge-kicker {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.88;
  white-space: nowrap;
}

.store-badge-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* —— App carousel (about gallery, etc.) —— */
.hero-carousel {
  --hero-carousel-width: min(320px, 48vw);
  position: relative;
  width: var(--hero-carousel-width);
  max-width: 100%;
}

.hero-carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 390 / 844;
  box-sizing: border-box;
  border: 10px solid #e4d2a4;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(var(--primary-rgb), 0.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f5f1e7 100%);
  filter: drop-shadow(0 20px 40px rgba(var(--primary-rgb), 0.45));
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-carousel-viewport.is-dragging {
  cursor: grabbing;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.52s cubic-bezier(0.32, 0.72, 0, 1);
}

.hero-carousel-track.is-dragging,
.hero-carousel-track.is-instant {
  transition: none;
}

.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.hero-app-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
  pointer-events: none;
}

.hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.hero-carousel-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(var(--brown-rgb), 0.35);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    width 0.25s ease;
}

.hero-carousel-dot.is-active {
  width: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-4));
}

.hero-carousel-dot:hover {
  background: rgba(var(--brown-rgb), 0.5);
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 3px;
}

.hero-carousel--single .hero-carousel-dots {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track,
  .about-carousel .hero-carousel-track {
    transition: none;
  }

  .about-carousel-image {
    transform: none;
    transition: none;
  }

  .about-carousel-progress-fill {
    transition: none;
    animation: none !important;
  }
}

/* —— Stats —— */
.stats-bar {
  background: var(--tan-nav);
  padding: 2.5rem 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
}

/* —— Sections —— */
.section,
.stats-bar,
.hero,
#app-stores {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(var(--tan-rgb), 0.18);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--brown-light);
}

/* —— Feature service cards (gold border) —— */
.gold-card--service {
  display: flex;
  flex-direction: column;
  min-height: 12.5rem;
  padding: 1.5rem 1.5rem 1.35rem;
}

.gold-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.gold-card--service h3 {
  margin-bottom: 0;
  color: var(--brown);
}

.gold-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
}

.gold-card-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.gold-card--service > p {
  flex: 1;
  margin-bottom: 1rem;
  color: var(--brown-light);
  font-weight: 400;
  line-height: 1.75;
}

/* —— Business segment feature cards —— */
.cards-grid--segments {
  align-items: stretch;
}

.feature-segment {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  background: linear-gradient(
    165deg,
    #fff 0%,
    #fff 55%,
    rgba(var(--gold-rgb), 0.06) 100%
  );
}

.feature-segment::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-1),
    var(--gold-3) 45%,
    var(--gold-2)
  );
  opacity: 0.85;
}

.feature-segment-num {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(var(--gold-rgb), 0.14);
  pointer-events: none;
  user-select: none;
}

.feature-segment-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(var(--gold-rgb), 0.18),
    rgba(var(--gold-rgb), 0.06)
  );
  box-shadow: 0 4px 14px rgba(var(--gold-rgb), 0.12);
  transition: transform 0.45s var(--ease);
}

.feature-segment-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-segment.gold-card--service > p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.feature-segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.feature-segment-tags li {
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 999px;
}

.feature-segment:hover .feature-segment-icon {
  transform: scale(1.06);
}

/* —— Testimonials —— */
.testimonials-wrap {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  touch-action: pan-x;
}

.testimonials-wrap:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.25rem;
  will-change: transform;
}

.testimonials-track.is-dragging { cursor: grabbing; }

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(var(--brown-rgb), 0.08);
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow: 0 18px 46px rgba(var(--brown-rgb), 0.06);
  flex: 0 0 clamp(320px, 40vw, 520px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(var(--brown-rgb), 0.14);
}

.testimonial-avatar--a {
  background: linear-gradient(145deg, #9a855f 0%, #7a6848 100%);
}

.testimonial-avatar--b {
  background: linear-gradient(145deg, #c9a86a 0%, #9a855f 100%);
}

.testimonial-avatar--c {
  background: linear-gradient(145deg, #7a6848 0%, #5c4f38 100%);
}

.testimonial-author {
  min-width: 0;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.testimonial-country {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--brown-light);
  font-weight: 500;
}

.testimonial-flag {
  flex-shrink: 0;
  width: 1.35rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(var(--brown-rgb), 0.12);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brown);
  flex: 1;
}

.testimonial-reactions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(var(--brown-rgb), 0.08);
  margin-top: 0.15rem;
}

.testimonial-reactions__icons {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.testimonial-reactions__icons img {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: -0.35rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--white);
}

.testimonial-reactions__icons img:first-child {
  margin-left: 0;
}

.testimonial-reactions__label {
  font-size: 0.74rem;
  color: var(--brown-light);
  font-weight: 500;
  line-height: 1.35;
}

/* —— About gallery carousel —— */
.section-about {
  background: linear-gradient(
    180deg,
    rgba(var(--tan-rgb), 0.14) 0%,
    var(--cream) 42%,
    var(--cream) 100%
  );
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 8, 4, 0.66);
  backdrop-filter: blur(10px);
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: min(78vh, 860px);
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.82)
  );
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  transform: translateY(10px) scale(0.985);
  transition: transform 0.32s var(--ease);
}

.legal-modal.is-open .legal-modal-panel {
  transform: translateY(0) scale(1);
}

.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(var(--brown-rgb), 0.12);
  background: linear-gradient(
    180deg,
    rgba(var(--primary-rgb), 0.14),
    rgba(255, 255, 255, 0.7)
  );
}

.legal-modal-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--brown);
}

.legal-modal-close {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brown-rgb), 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brown);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.legal-modal-close:hover {
  transform: translateY(-1px);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(var(--brown-rgb), 0.12);
}

.legal-modal-close:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 3px;
}

.legal-modal-body {
  padding: 1.05rem 2rem 2.5rem;
  overflow: auto;
  max-height: calc(min(78vh, 860px) - 70px);
  color: var(--brown);
  scrollbar-width: none; /* Firefox: hidden until hover */
}

.legal-modal-body:hover {
  scrollbar-width: thin; /* Firefox: show on hover */
}

/* WebKit scrollbar: hidden until hover */
.legal-modal-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.legal-modal-body:hover::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(var(--brown-rgb), 0.22);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

.legal-modal-body:hover::-webkit-scrollbar-thumb {
  background: rgba(var(--brown-rgb), 0.34);
  background-clip: content-box;
}

.legal-modal-body:hover::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--brown-rgb), 0.46);
  background-clip: content-box;
}

.legal-modal-foot {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 1.1rem 1.05rem;
  border-top: 1px solid rgba(var(--brown-rgb), 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.7),
    rgba(var(--primary-rgb), 0.1)
  );
}

.legal-modal-ok {
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--brown-rgb), 0.14);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.78);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.legal-modal-ok:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.16);
  box-shadow: 0 10px 28px rgba(var(--brown-rgb), 0.12);
}

.legal-modal-ok:active {
  transform: translateY(0);
}

.legal-modal-ok:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 3px;
}

.legal-modal-body h4 {
  margin: 1rem 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brown);
}

.legal-modal-body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--brown-light);
  margin-top: 0.55rem;
}

.legal-modal-body ul {
  margin-top: 0.5rem;
  padding-left: 1.15rem;
  list-style: disc;
  color: var(--brown-light);
  font-size: 0.88rem;
  line-height: 1.75;
}

.legal-modal-body li + li {
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .legal-modal-panel {
    width: 94vw;
    max-height: 82vh;
    border-radius: 1rem;
  }
  .legal-modal-body {
    max-height: calc(82vh - 70px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-modal,
  .legal-modal-panel {
    transition: none !important;
  }
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 8, 4, 0.66);
  backdrop-filter: blur(10px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  touch-action: none;
  width: min(1120px, 94vw);
  height: min(78vh, 820px);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: translateY(10px) scale(0.985);
  transition: transform 0.32s var(--ease);
  isolation: isolate;
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Reserve space so caption doesn't cover the image */
  padding: 0.75rem 0.75rem calc(0.75rem + 3.1rem);
  pointer-events: none;
}

.lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(1100px 600px at 20% 0%, rgba(var(--primary-rgb), 0.2), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.2s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox-img.is-ready {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-title {
  font-weight: 650;
  letter-spacing: 0.04em;
}

.lightbox-counter {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 255, 255, 0.28);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 3px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.28);
}

.lightbox-nav--prev {
  left: 0.75rem;
}

.lightbox-nav--next {
  right: 0.75rem;
}

@media (max-width: 768px) {
  .lightbox-panel {
    width: 96vw;
    height: 82vh;
    border-radius: 1rem;
    touch-action: none;
  }

  .lightbox-nav {
    width: 2.65rem;
    height: 2.65rem;
  }

  .lightbox-nav--prev {
    left: 0.5rem;
  }

  .lightbox-nav--next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-panel,
  .lightbox-img {
    transition: none !important;
  }
}

.section-about .section-head {
  margin-bottom: 2rem;
}

.about-gallery-caption {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
}

.about-carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  max-width: min(1040px, 100%);
  margin-inline: auto;
}

.about-carousel {
  --hero-carousel-width: min(920px, 100%);
  animation: none;
  width: 100%;
  min-width: 0;
}

.about-carousel .hero-carousel-viewport {
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(var(--brown-rgb), 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(var(--primary-rgb), 0.22), transparent 58%),
    linear-gradient(165deg, #fffefb 0%, #f3ecda 100%);
  box-shadow:
    0 28px 64px rgba(var(--brown-rgb), 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  filter: none;
  transform: translateZ(0);
  cursor: zoom-in;
  touch-action: none;
}

.about-carousel .hero-carousel-track {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-carousel-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
  filter: saturate(1.02) contrast(1.02);
  transform: none;
  transition:
    transform 1.25s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-carousel .hero-carousel-slide.is-active .about-carousel-image {
  transform: none;
  filter: saturate(1.05) contrast(1.05);
}

.about-carousel .hero-carousel-slide {
  position: relative;
}

.about-carousel .hero-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 10%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 30%, rgba(0, 0, 0, 0.22));
  opacity: 0.7;
  transition: opacity 0.75s ease;
  pointer-events: none;
}

.about-carousel .hero-carousel-slide.is-active::after {
  opacity: 0.48;
}

.about-carousel .hero-carousel-slide {
  opacity: 0.72;
  transition: opacity 0.75s ease;
}

.about-carousel .hero-carousel-slide.is-active {
  opacity: 1;
}

.about-carousel-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

@keyframes aboutCarouselBlinkProgress {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}


@keyframes aboutCarouselBlinkCounter {
  0%,
  100% {
    color: var(--brown-light);
  }
  40% {
    color: var(--brown);
  }
}

@keyframes aboutCarouselBlinkDot {
  0%,
  100% {
    transform: none;
    background: linear-gradient(90deg, var(--gold-2), var(--gold-4));
  }
  40% {
    transform: scale(1.05);
    background: rgba(var(--brown-rgb), 0.75);
  }
}

.about-carousel.is-blink .about-carousel-progress {
  animation: aboutCarouselBlinkProgress 320ms ease-in-out 1;
}

.about-carousel.is-blink .about-carousel-counter {
  animation: aboutCarouselBlinkCounter 320ms ease-in-out 1;
}

.about-carousel.is-blink .about-carousel-dots .hero-carousel-dot.is-active {
  animation: aboutCarouselBlinkDot 320ms ease-in-out 1;
}

.about-carousel-progress {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 4px 14px rgba(var(--brown-rgb), 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  pointer-events: none;
}

.about-carousel-progress-ring {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.about-carousel-progress-track,
.about-carousel-progress-fill {
  fill: none;
  stroke-width: 2.75;
}

.about-carousel-progress-track {
  stroke: rgba(var(--brown-rgb), 0.14);
}

.about-carousel-progress-fill {
  stroke: var(--gold-3);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

@keyframes aboutCarouselProgressRing {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.about-carousel-dots {
  flex-wrap: wrap;
  row-gap: 0.5rem;
  max-width: 100%;
  padding-inline: 0.25rem;
}

.about-carousel-counter {
  justify-self: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown-light);
}

.about-carousel-btn {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(var(--brown-rgb), 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brown);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(var(--brown-rgb), 0.1);
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.about-carousel-btn:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: rgba(var(--primary-rgb), 0.55);
  box-shadow: 0 12px 28px rgba(var(--brown-rgb), 0.14);
}

.about-carousel-btn:active {
  transform: translateY(0);
}

.about-carousel-btn:focus-visible {
  outline: 2px solid var(--gold-3);
  outline-offset: 3px;
}

/* —— Pillars (gold cards) —— */
.section-pillars {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  background: var(--primary-soft);
}

.section-pillars .section-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.32;
  color: var(--tan-dark);
}

.section-pillars .section-map svg {
  width: min(92vw, 1000px);
}

.section-pillars .container {
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.gold-card {
  position: relative;
  background: #fff;
  padding: 1.65rem 1.5rem 1.5rem;
  min-height: 11rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.gold-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 2px;
  padding: 6px;
  background: repeating-linear-gradient(
    -48deg,
    var(--gold-1) 0 6px,
    var(--gold-4) 6px 12px,
    var(--gold-3) 12px 18px,
    var(--gold-5) 18px 24px,
    var(--gold-2) 24px 30px,
    var(--gold-1) 30px 36px
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: filter 0.4s ease;
}

.gold-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(var(--gold-rgb), 0.16);
}

.gold-card:hover::before {
  filter: brightness(1.1);
}

.gold-card h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.gold-card p {
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  color: var(--brown);
  line-height: 1.85;
  font-weight: 500;
}

.gold-card p + p {
  margin-top: 0.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .store-badge,
  .hero-stores-live {
    animation: none !important;
    transition: none;
  }

  .store-badge {
    opacity: 1;
    transform: none;
  }

  .store-badge-shine {
    display: none;
  }
}

/* —— Footer —— */
.site-footer {
  --footer-bg: #e3d8b4;
  --footer-text: #6d634c;
  width: 100%;
  margin-top: 0;
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(1rem, 3vw, 1.5rem);
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-inner {
  width: var(--container);
  max-width: var(--container-max);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.footer-brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.65rem;
  transition: opacity 0.25s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
}

.logo-footer-img {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--footer-text);
  line-height: 1.55;
  max-width: 18rem;
  margin-bottom: 1rem;
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--footer-text);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--footer-text);
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-deep);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--primary-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--footer-text);
  background: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(var(--brown-rgb), 0.12);
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--brown-rgb), 0.16);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--primary-deep);
  outline-offset: 3px;
}

.footer-bottom-wrap {
  margin-top: clamp(2rem, 4vw, 1.75rem);
  padding-top: 1.15rem;
  border-top: 1px solid rgba(109, 99, 76, 0.28);
}

.footer-back-top {
  position: fixed;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 90;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-dark), var(--primary-darker));
  box-shadow:
    0 6px 18px rgba(var(--brown-rgb), 0.22),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease-spring),
    box-shadow 0.25s ease;
}

.footer-back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.footer-back-top:hover {
  transform: translateY(-3px) scale(1);
  box-shadow: 0 10px 24px rgba(var(--brown-rgb), 0.28);
}

.footer-back-top.is-visible:hover {
  transform: translateY(-3px) scale(1);
}

.footer-back-top:focus-visible {
  outline: 2px solid var(--primary-deep);
  outline-offset: 3px;
}

.footer-copy {
  margin: 0;
  padding-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--footer-text);
  line-height: 1.5;
  text-align: center;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero {
    min-height: 100dvh;
    padding-top: calc(var(--header-h) + 3.25rem);
    padding-bottom: 4rem;
    padding-inline: max(1.25rem, var(--container-gutter));
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .hero-map {
    justify-content: center;
    padding-right: 0;
    opacity: 0.12;
    mask-image: none;
  }

  .hero-copy {
    max-width: none;
    align-items: center;
    padding-inline: 0.25rem;
  }

  .hero-title .gold-text {
    font-size: 0.78em;
    line-height: 1.15;
  }

  html[lang="en"] .hero-title .gold-text {
    font-size: 0.68em;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-stores {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-actions,
  .store-badges {
    justify-content: center;
  }

  .store-badges {
    margin-bottom: 0.25rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .about-gallery {
    overflow: visible;
  }

  .about-carousel-shell {
    --about-carousel-arrow-gap: clamp(0.75rem, 3.5vw, 1.15rem);
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-carousel {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
  }

  .about-carousel-btn {
    grid-column: 1;
    grid-row: 1;
    z-index: 5;
    width: 2.5rem;
    height: 2.5rem;
  }

  .about-carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .about-carousel-btn--prev {
    place-self: center start;
    margin-inline-start: calc(var(--about-carousel-arrow-gap) + 1.25rem);
    transform: translateX(-50%);
  }

  .about-carousel-btn--next {
    place-self: center end;
    margin-inline-end: calc(var(--about-carousel-arrow-gap) + 1.25rem);
    transform: translateX(50%);
  }

  .about-carousel-btn--prev:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .about-carousel-btn--next:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .about-carousel-btn--prev:active {
    transform: translateX(-50%);
  }

  .about-carousel-btn--next:active {
    transform: translateX(50%);
  }

  .about-carousel-dots,
  .about-carousel-counter {
    display: none;
  }

  .about-carousel-footer {
    display: none;
  }

  .about-carousel-progress {
    top: 0.65rem;
    left: 0.65rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .about-carousel .hero-carousel-viewport {
    border-radius: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-videos-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 620px;
    margin-inline: auto;
  }

  .promo-video-card,
  .promo-carousel-card {
    grid-column: auto;
  }

  .promo-videos-grid > article {
    width: 100%;
  }

  /* override fixed width on the right promo video card (style="width: 430px") */
  .promo-videos-grid > .promo-video-card:last-child {
    width: 100% !important;
    flex: 1 1 auto !important;
  }

  .site-footer {
    padding: 2rem 0 calc(1.1rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner.container {
    width: 100%;
    max-width: none;
    padding-inline: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.5rem;
    justify-items: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding-bottom: 0.25rem;
  }

  .footer-logo-link {
    margin-bottom: 0;
  }

  .logo-footer-img {
    height: 2rem;
    margin-inline: auto;
  }

  .footer-tagline {
    margin-bottom: 0;
    max-width: 16rem;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .footer-social {
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.1rem;
  }

  .footer-col {
    text-align: center;
    min-width: 0;
    width: 100%;
  }

  .footer-col-legal {
    grid-column: auto;
    padding-top: 0;
  }

  .footer-col .footer-links {
    align-items: center;
  }

  .footer-heading {
    margin-bottom: 0.5rem;
    font-size: 0.84rem;
  }

  .footer-links {
    gap: 0.38rem;
  }

  .footer-links a {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .footer-bottom-wrap {
    margin-top: 1.1rem;
    margin-inline: -1.25rem;
    padding: 0.9rem 1.25rem 0;
    border-top: 1px solid rgba(109, 99, 76, 0.28);
  }

  .footer-copy {
    font-size: 0.74rem;
    line-height: 1.45;
    padding-inline: 2.75rem 0.25rem;
  }

  .footer-back-top {
    width: 40px;
    height: 40px;
  }

  .footer-back-top.is-visible:hover,
  .footer-back-top:hover {
    transform: translateY(-3px) scale(1);
  }
}

@media (max-width: 380px) {
  .footer-grid {
    column-gap: 0.65rem;
  }

  .footer-copy {
    font-size: 0.7rem;
    padding-inline: 2.5rem 0.15rem;
  }
}

@media (max-width: 768px) {
  .promo-carousel-card .hero-carousel-dots {
    margin-top: 1.35rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .stats-bar {
    padding: 1.5rem 0;
  }

  .promo-videos {
    padding-bottom: 3rem;
  }

  .promo-carousel-card .hero-carousel-viewport {
    min-height: clamp(520px, 130vw, 760px);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--tan-nav);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.4s, visibility 0.4s;
    box-shadow: 0 16px 40px rgba(var(--brown-rgb), 0.12);
    flex: none;
    justify-content: stretch;
  }

  .nav-wrap.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-main {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-main a {
    display: block;
    padding: 0.85rem 0;
    font-size: 0.95rem;
  }

  .btn-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-visual.reveal { transform: none; }
  .hero-visual-img,
  .hero-visual-backdrop { animation: none !important; }
}
