/* ═══════════════════════════════════════════════════════════
   SwissGlow.beauty — CLUERA® Design System
   Palette: Deep charcoal / warm cream / soft gold
   Typography: Cormorant Garamond (display) + Inter (body)
═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  /* Colors */
  --black:        #0d0d0d;
  --charcoal:     #1a1a1a;
  --slate:        #252525;
  --gold:         #b89c6e;
  --gold-light:   #d4b896;
  --gold-dark:    #9a7f54;
  --cream:        #f7f4ef;
  --cream-dark:   #ede8e0;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #8a8a8a;
  --text-onDark:  #e8e2d9;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  9rem;

  /* Border radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--black); padding: 0.5rem 1rem;
  border-radius: var(--radius-sm); z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* ─── Section Foundations ───────────────────────────────── */
.section { padding: var(--space-xl) 0; }
.section-light  { background: var(--white); }
.section-dark   { background: var(--charcoal); color: var(--text-onDark); }
.section-cream  { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--gold); }
.bundle-title-large { font-size: clamp(2.75rem, 7vw, 5rem); }
.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}
.section-desc.light { color: var(--text-onDark); opacity: 0.85; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.22s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-sm {
  font-size: 0.75rem;
  padding: 0.625rem 1.5rem;
  min-height: 40px;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--gold);
}
.btn-sm:hover, .btn-sm:focus-visible {
  background: var(--gold);
  color: var(--black);
}
.btn-nav {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  min-height: 40px;
}
.btn-nav:hover, .btn-nav:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Fade-In Animations ────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: padding 0.35s var(--ease);
}
.navbar.scrolled {
  padding: 0.875rem 0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-inner { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 4rem; } }

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-brand {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: white;
  text-transform: none;
}
.logo-brand em {
  font-style: normal;
  color: var(--gold);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: none;
  gap: 0.25rem;
  margin-left: auto;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
@media (min-width: 900px) { .nav-actions { margin-left: 1.5rem; } }

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--slate);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 150px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 100;
}
.lang-dropdown.open { display: block; }
.lang-dropdown li {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.lang-dropdown li:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.lang-dropdown li.active { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.25s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
@media (max-width: 899px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.15em;
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  transform: scale(1.04);
  transition: transform 12s linear;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.72) 0%,
    rgba(13,13,13,0.42) 55%,
    rgba(13,13,13,0.58) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
  animation: heroIn 1.2s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation-delay: 0.2s;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.45rem 0.875rem;
  border-radius: 100px;
}
.badge svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 600px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) {
  /* Last 2 products centered when 5 total in a 3-col grid */
  .products-grid .product-card:nth-child(4) { grid-column: 1; }
  .products-grid .product-card:nth-child(5) { grid-column: 2; }
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-img-link { display: block; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-img-overlay span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-badge-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.featured-tag { color: var(--gold); }
.product-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-size {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.product-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
}
.product-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.ingredient-pill {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  background: rgba(184,156,110,0.1);
  border: 1px solid rgba(184,156,110,0.25);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-dark);
}
.product-free-shipping {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ─── Hero Shipping Banner ──────────────────────────────── */
.hero-shipping-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,156,110,0.15);
  border: 1px solid rgba(184,156,110,0.45);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ═══════════════════════════════════════════════════════════
   BUNDLES
═══════════════════════════════════════════════════════════ */
.bundles-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) { .bundles-inner { grid-template-columns: 1fr 1fr; } }

.bundle-savings {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
.saving-item { display: flex; flex-direction: column; gap: 0.25rem; }
.saving-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.saving-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}
.saving-price.crossed {
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.saving-price.gold { color: var(--gold); }

.bundle-card-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bundle-product-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.bundle-badge-float {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184,156,110,0.4);
}
.bundle-price-badge {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}
.bundle-pick-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   INGREDIENTS
═══════════════════════════════════════════════════════════ */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) { .ingredients-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ingredients-grid { grid-template-columns: repeat(4, 1fr); } }

.ingredient-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.ingredient-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.ingr-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
}
.ingr-icon svg { width: 100%; height: 100%; }
.ingr-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.ingr-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-section {
  position: relative;
  overflow: hidden;
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 40%, rgba(26,26,26,0.85) 100%);
}
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-inner { grid-template-columns: 1.2fr 0.8fr; } }

.about-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .about-features { grid-template-columns: repeat(3, 1fr); } }

.about-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.about-icon {
  width: 36px;
  height: 36px;
}
.about-icon svg { width: 100%; height: 100%; }
.about-feature h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.about-feature p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.about-img-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-col img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.star-row span:first-child {
  color: var(--gold);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
}
.review-summary {
  font-size: 0.875rem;
  color: var(--text-light);
}

.reviews-slider-wrap { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  flex: 0 0 calc(100% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .review-card { flex: 0 0 calc(50% - 1rem); }
}
@media (min-width: 1200px) {
  .review-card { flex: 0 0 calc(33.333% - 1.25rem); }
}

.review-stars {
  color: var(--gold);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-dark);
  quotes: "\201C" "\201D";
  flex: 1;
}
.review-text::before { content: open-quote; }
.review-text::after  { content: close-quote; }
.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.review-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}
.review-source {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.review-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.2s;
}
.review-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.review-btn svg { width: 18px; height: 18px; }
.review-dots { display: flex; gap: 6px; }
.review-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}
.review-dot.active { background: var(--gold); width: 20px; border-radius: 100px; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item[open] { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
  gap: 1rem;
  min-height: 48px;
}
.faq-question::after {
  content: '';
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 5l5 5 5-5' stroke='%23b89c6e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-question::after { transform: rotate(180deg); }
.faq-question:hover { color: var(--gold-dark); }

.faq-answer {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--black); color: rgba(255,255,255,0.65); }

.footer-top { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 5rem 0; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-top-inner { grid-template-columns: 1.2fr 1.8fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-brand {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}
.footer-logo-brand em {
  font-style: normal;
  color: var(--gold);
}
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.22s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 480px) { .footer-nav { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom { padding: 2rem 0; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-swiss {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
.swiss-flag { font-size: 1.125rem; }
.footer-legal { display: flex; flex-direction: column; gap: 0.3rem; text-align: right; }
.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
@media (max-width: 600px) { .footer-legal { text-align: left; } }
