/* ==========================================================================
   EARTHBOUND — Shared Stylesheet
   Edit colors, type, and spacing in one place: the :root token block below.
   Every page (index, collections, ourheritage, distributor,
   becomeadistributor, faq) loads this single file, so a change here
   updates the entire site.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;600;700&display=swap');

:root {
  /* ---- Palette (édit these to re-skin the whole site) ---- */
  --color-bg: #fbf6ef;          /* ivory */
  --color-bg-alt: #f3ebe0;      /* soft parchment */
  --color-surface: #ffffff;     /* card / panel surface */
  --color-ink: #0f0d0b;         /* near-black for crisp text */
  --color-ink-soft: #6b5c4a;    /* warm brown for secondary text */
  --color-bg: #fbf3ea;
  --color-bg-alt: #f2e8dc;
  --color-ink-soft: #6a5945;
  --color-line: #e9dfd3;        /* hairline borders/dividers */
  --color-accent: #b08d57;      /* gold accent */
  --color-accent-dark: #8b6f47; /* deeper bronze for hover states */
  --color-gold: #b08d57;        /* metallic gold — signature highlight */
  --color-night: #0b0a09;       /* near-black, used sparingly for depth */

  /* ---- Type ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 10px;
  --shadow-soft: 0 16px 50px rgba(11,10,9,0.06);
  --shadow-lift: 0 26px 70px rgba(11,10,9,0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-ink);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------------------------------------------------------------------- */
/* Eyebrow / signature "pulse point" mark                                 */
/* A small gold dot with a drawn line — echoes "apply to pulse points",   */
/* used throughout as the site's recurring signature motif.               */
/* ---------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}
.eyebrow::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color .35s var(--ease);
}
.btn-primary {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(11,10,9,0.06);
}
.btn-outline:hover {
  background: rgba(11,10,9,0.9);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lift);
}
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  color: #fff;
  box-shadow: 0 10px 28px rgba(139, 111, 71, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(139, 111, 71, 0.45); }
.btn-sm { padding: 0.65rem 1.3rem; font-size: 0.72rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                    */
/* ---------------------------------------------------------------------- */
#site-header { position: sticky; top: 0; z-index: 1000; }
.nav {
  background: rgba(255,255,255,0.94);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,10,9,0.05);
}
.nav.scrolled {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(11,10,9,0.08);
  border-bottom: 1px solid rgba(11,10,9,0.08);
}
.nav.scrolled .nav-link { color: var(--color-ink); }
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; height: 40px; }
.brand img { max-height: 36px; width: auto; object-fit: contain; }
.brand-fallback { display: none; }

.nav-menu { display: flex; align-items: center; gap: 1.8rem; }
.nav-link {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  padding: 0.75rem 0;
  transition: color 0.28s var(--ease);
}
.nav-link.active { color: var(--color-ink); }
.nav-link.active::after { background: var(--color-accent); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--color-ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.5rem; }

/* Luxury CTA: black with subtle gold edge */
.btn-cta {
  background: #0b0a09; color: var(--color-gold); border: 1px solid rgba(176,141,87,0.18); box-shadow: 0 8px 22px rgba(11,10,9,0.12);
}
.btn-cta:hover { transform: translateY(-2px); color: #fff; background: linear-gradient(90deg,#000,#1a1a1a); border-color: var(--color-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--color-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(11,10,9,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
    box-shadow: 0 22px 38px rgba(11,10,9,0.08);
    backdrop-filter: blur(10px);
    padding: 0 var(--gutter);
  }
  .nav-menu.active { max-height: 520px; padding: 0.5rem var(--gutter) 1rem; }
  .nav-menu li { width: 100%; }
  .nav-link {
    display: block;
    padding: 0.9rem 0.25rem;
    width: 100%;
    border-bottom: 1px solid var(--color-line);
    letter-spacing: 0.12em;
  }
  .nav-cta { margin: 0.85rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-container { min-height: 64px; }
  .brand img { max-height: 32px; }
  .home .nav-menu { background: rgba(17,14,11,0.92); border-bottom-color: rgba(255,255,255,0.08); }
  .home .nav-link { color: rgba(255,255,255,0.82); border-bottom-color: rgba(255,255,255,0.08); }
  .home .nav-link:hover, .home .nav-link.active { color: #fff; }
  .home .hamburger span { background: #fff; }
}

@media (max-width: 560px) {
  .nav-menu { top: 60px; }
  .brand img { max-height: 28px; }
}

/* ---------------------------------------------------------------------- */
/* Page header (non-home pages)                                           */
/* ---------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 3rem);
  text-align: center;
  background: var(--color-night);
  color: #f4ede0;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(176, 141, 87, 0.24), transparent 70%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: #fbf6ea;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  line-height: 1.1;
}
.page-header p { 
  color: #cabca7; 
  font-size: clamp(0.9rem, 2vw, 1rem); 
  max-width: 620px; 
  margin: 0 auto;
  line-height: 1.6;
}
.page-header .eyebrow { color: var(--color-gold); margin-bottom: 0.9rem; }
@media (max-width: 640px) {
  .page-header { padding: 2.5rem 0 2rem; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-header p { font-size: 0.9rem; max-width: 100%; }
}
.page-header.distributor-page {
  background: linear-gradient(180deg, #1f1911 0%, #2c2417 100%);
}
.page-header.distributor-page::before {
  background: radial-gradient(58% 92% at 50% 0%, rgba(176, 141, 87, 0.32), transparent 70%);
}
.page-header.distributor-page h1 { letter-spacing: 0.05em; }
.page-header.distributor-page p { color: #ddbfa1; }

.distributor-toolbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 40px rgba(42, 36, 32, 0.08);
}

/* FAQ hero specific styles */
.page-header.faq-hero {
  position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6.5rem) 0; color: #fff;
  background-image: url('../images/FAQ banner .jpeg');
  background-size: cover; background-position: center center;
}
.page-header.faq-hero .hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,5,0.55), rgba(8,6,5,0.35)); mix-blend-mode: multiply;
}
.page-header.faq-hero .hero-content { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 500; color: #fbf6ea; margin-bottom: 0.4rem; }
.hero-sub { color: rgba(255, 243, 232, 0.9); font-size: 1.05rem; max-width: 720px; margin: 0 auto; }

/* Elegant pill tabs for FAQ */
.faq-category-tabs { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.faq-category-tabs .tab-btn {
  background: rgba(255,255,255,0.95); color: var(--color-ink); border-radius: 999px; padding: 0.7rem 1.6rem; border: 1px solid transparent; font-weight:600; letter-spacing:0.06em; transition: all .28s var(--ease);
}
.faq-category-tabs .tab-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(11,10,9,0.06); }
.faq-category-tabs .tab-btn.active { background: linear-gradient(90deg, rgba(11,10,9,1), rgba(18,18,18,1)); color: var(--color-gold); box-shadow: 0 18px 44px rgba(11,10,9,0.18); border-color: rgba(176,141,87,0.06); }

/* Smooth reveal and fade */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

.distributor-page + .section {
  background: radial-gradient(circle at top center, rgba(176, 141, 87, 0.08), transparent 38%), var(--color-bg);
}

.distributor-page + .section .container {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.distributor-card {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98));
}

/* ---------------------------------------------------------------------- */
/* Hero (home page)                                                       */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-night);
  color: #fff;
}
.home #site-header { position: absolute; top: 0; left: 0; right: 0; background: transparent; z-index: 100; }
.home .nav { background: transparent; border-bottom: none; box-shadow: none; }
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-night);
  color: #fff;
}
.home .hero { min-height: 100vh; }
.home .hero-overlay { background: linear-gradient(180deg, rgba(8,6,5,0.45) 0%, rgba(8,6,5,0.18) 45%, rgba(8,6,5,0.65) 100%); }
.home .nav .nav-link { color: #fff; }
.home .nav .nav-link::after { background: rgba(255,255,255,0.18); }
.home .nav .nav-link:hover, .home .nav .nav-link.active { color: #fff; }
.hero-video, .hero-fallback-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback-bg {
  background:
    radial-gradient(60% 70% at 50% 20%, rgba(176, 141, 87, 0.35), transparent 65%),
    linear-gradient(160deg, #211a13, #1c1712 55%, #120d09);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.25) 45%, rgba(20,16,12,0.75) 100%);
}
/* hero background image from user's attachment — warm, luxurious still life */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../images/New Herosection banner.jpeg');
  background-size: cover; background-position: center center;
  transform: translateZ(0);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--gutter);
  animation: rise 1.1s var(--ease) both;
}
.hero .eyebrow { color: var(--color-gold); justify-content: center; }
.hero .eyebrow::after { display: none; }
.hero h1 {
  color: #fbf6ea;
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.hero p.lede {
  color: #d9cdb8;
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-outline { color: #f4ede0; border-color: rgba(244,237,224,0.6); }
.hero-actions .btn-outline:hover { background: #f4ede0; color: var(--color-night); }
.hero-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: flex-start;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.26);
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.05);
  color: #f5ecd8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
}
.hero-socials a:hover {
  background: rgba(176,141,87,0.16);
  border-color: rgba(176,141,87,0.42);
  transform: translateY(-2px);
}

/* Homepage: align hero content to the left and emphasize gold accents */
.home .hero .hero-content { text-align: left; margin-right: auto; max-width: 720px; padding-left: clamp(1.5rem, 8vw, 8rem); padding-top: clamp(2rem, 8vh, 4rem); }
.home .hero p.lede { margin: 0 0 2.4rem 0; max-width: 560px; margin-right: auto; }
.home .hero .eyebrow { display: block; text-align: left; }
.home .hero .hero-actions { justify-content: flex-start; }
.home .hero h1 {
  text-shadow: 0 10px 30px rgba(11,10,9,0.25);
}

/* Gold-highlight utility for inline emphasis */
.gold { color: var(--color-gold); font-weight: 600; letter-spacing: 0.02em; }

@media (max-width: 900px) {
  .hero { min-height: 72vh; align-items: flex-end; }
  .home .hero .hero-content { padding-left: clamp(1.5rem, 6vw, 2rem); max-width: 100%; }
  .hero h1 { font-size: clamp(2.8rem, 7vw, 4.2rem); }
  .hero p.lede { font-size: 1rem; max-width: 100%; margin-bottom: 1.8rem; }
  .hero-actions { justify-content: flex-start; }
  .section { padding: clamp(4rem, 6vw, 5.5rem); }
  .section-head { margin-bottom: 2.2rem; }
  .section-head h2 { font-size: clamp(2rem, 5vw, 2.6rem); }
  .grid { gap: 1.5rem; }
  .card-body { padding: 1.5rem 1.25rem 1.75rem; }
  .form-panel,
  .distributor-card,
  .cta-banner { padding: clamp(1.5rem, 4vw, 2.5rem); }
  .form-row { gap: 1rem; }
  .stats { gap: 1.25rem; }
  .footer-content { gap: 2rem; }
}

@media (max-width: 640px) {
  .hero { min-height: 70vh; align-items: flex-end; }
  .home .hero .hero-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .hero p.lede { font-size: 0.98rem; line-height: 1.65; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.95rem 1.2rem; }
  .section { padding: clamp(3rem, 8vw, 4.2rem); }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { margin-bottom: 0.7rem; }
  .featured-grid { gap: 1rem; }
  .card-body { padding: 1.25rem 1rem 1.4rem; }
  .card-tag { letter-spacing: 0.12em; }
  .tabs { flex-direction: column; }
  .tab-btn { min-width: auto; width: 100%; }
  .page-header { padding: clamp(3rem, 8vw, 4.5rem) 0 2rem; }
  .page-header p { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .distributor-card { flex-direction: column; align-items: stretch; }
  .faq-question { padding: 1.1rem 0.2rem; }
  .faq-question h3 { font-size: 1rem; }
  .faq-answer p, .faq-answer ul { font-size: 0.9rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .home .hero .hero-content { padding-left: 1rem; padding-right: 1rem; }
  .hero h1 { font-size: clamp(2rem, 11vw, 2.6rem); }
  .home .hero p.lede {
    margin-bottom: 1.2rem;
    max-width: 100%;
    font-size: 0.95rem;
  }
  .hero-actions { gap: 0.6rem; }
  .cta-banner { padding: 2rem 1rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner p { font-size: 0.95rem; }
  .btn, .btn-gold, .btn-primary, .btn-outline { width: 100%; padding: 0.85rem 1rem; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .footer-section a, .footer-section p { font-size: 0.85rem; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------------------- */
/* Sections                                                                */
/* ---------------------------------------------------------------------- */
.section { padding: 6.5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------------------- */
/* Product / feature cards                                                */
/* ---------------------------------------------------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1200px) { .featured-grid { grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 1.2rem; } }
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 1rem; } }
@media (max-width: 640px) {
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; opacity: 1 !important; transform: none !important; }
  .featured-card { animation: none !important; transform: none !important; }
  .card-media { aspect-ratio: 3 / 4; }
  .card-body { padding: 1rem; }
  .card-tag { font-size: 0.65rem; letter-spacing: 0.12em; }
  .card-body h3 { font-size: 1.15rem; }
  .card-body p { font-size: 0.9rem; margin-bottom: 0.8rem; }
}
@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; gap: 0.8rem; opacity: 1 !important; transform: none !important; }
  .card-media { aspect-ratio: 3 / 4.2; }
  .card-body { padding: 0.9rem; }
  .card-body h3 { font-size: 1rem; }
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.98));
  border: 1px solid rgba(11,10,9,0.04);
  border-radius: calc(var(--radius) * 1.05);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(11,10,9,0.03);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
}
.featured-card {
  position: relative;
  isolation: isolate;
  animation: featuredFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249, 243, 235, 0.98));
}
.featured-card:nth-child(2n) { animation-delay: 0.45s; }
.featured-card:nth-child(3n) { animation-delay: 0.9s; }
.featured-card:nth-child(4n) { animation-delay: 1.2s; }
@keyframes featuredFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-12px) rotateX(2deg) rotateY(-3deg); }
  50% { transform: translateY(-18px) rotateX(0deg) rotateY(3deg); }
  75% { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); }
}
.card:hover {
  transform: translateY(-12px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  box-shadow: 0 30px 68px rgba(20,16,12,0.14);
  border-color: rgba(176,141,87,0.2);
}
/* Disable 3D tilt on touch devices */
@media (hover: none) and (pointer: coarse) {
  .card:hover {
    transform: translateY(-8px);
  }
  .card { transform: none !important; }
}
.card-media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--color-bg-alt), #efe6d8);
  position: relative;
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.08) rotate(0.5deg); }
.card-body { padding: 1.75rem 1.6rem 2rem; }
.card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}
.card-body h3 { font-size: 1.45rem; margin-bottom: 0.45rem; }
.card-body p { color: var(--color-ink-soft); font-size: 1rem; margin-bottom: 1.2rem; }
.card-link {
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-ink);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
  padding: 0 0 2px;
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.card-link:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* ---------------------------------------------------------------------- */
/* Tabs (collections page)                                                 */
/* ---------------------------------------------------------------------- */
.tabs { display: flex; justify-content: center; gap: 0.75rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.tab-btn {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(176, 141, 87, 0.25);
  padding: 1.1rem 2.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
  cursor: pointer;
  border-radius: 999px;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(11,10,9,0.07);
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease);
}
@media (max-width: 900px) {
  .tab-btn {
    padding: 0.95rem 1.8rem;
    font-size: 0.85rem;
    min-width: 180px;
  }
}
@media (max-width: 640px) {
  .tabs { gap: 0.5rem; margin-bottom: 2rem; }
  .tab-btn {
    padding: 0.85rem 1.2rem;
    font-size: 0.75rem;
    min-width: 140px;
  }
}
.tab-btn:hover { border-color: rgba(176,141,87,0.4); transform: translateY(-4px); box-shadow: 0 16px 35px rgba(11,10,9,0.1); }
.tab-btn.active { background: linear-gradient(135deg, rgba(176,141,87,0.14), rgba(255,255,255,0.96)); color: var(--color-ink); border-color: rgba(176,141,87,0.45); box-shadow: 0 22px 50px rgba(11,10,9,0.14); }
.tab-btn.active::after {
  content: ' • OPENED';
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-accent);
}
.collection-prompt {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 1rem;
  max-width: 640px;
  margin: 1.5rem auto 2rem;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s var(--ease); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------------------------------------------------------------------- */
/* Timeline (heritage page)                                                */
/* ---------------------------------------------------------------------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: var(--color-line);
}
@media (min-width: 700px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.timeline-item { position: relative; padding: 0 0 3.2rem 3.2rem; }
@media (min-width: 700px) {
  .timeline-item { width: 50%; padding: 0 3.2rem 3.2rem 0; }
  .timeline-item:nth-child(even) { margin-left: 50%; padding: 0 0 3.2rem 3.2rem; }
}
.timeline-dot {
  position: absolute;
  left: 20px; top: 4px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px var(--color-bg-alt), 0 0 0 6px var(--color-line);
}
@media (min-width: 700px) {
  .timeline-item:nth-child(odd) .timeline-dot { left: auto; right: -6px; transform: translateX(50%); }
  .timeline-item:nth-child(even) .timeline-dot { left: -6px; transform: translateX(-50%); }
}
.timeline-year { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--color-accent); margin-bottom: 0.2rem; }
.timeline-item h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.timeline-item p { color: var(--color-ink-soft); font-size: 0.95rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                           */
/* ---------------------------------------------------------------------- */
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-category-tabs { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
}
.faq-question h3 { font-size: 1.1rem; font-weight: 400; font-family: var(--font-body); margin: 0; }
.faq-toggle { color: var(--color-gold); font-size: 1rem; flex-shrink: 0; transition: transform 0.35s var(--ease); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p, .faq-answer ul { padding: 0 0.25rem 1.6rem; color: var(--color-ink-soft); font-size: 0.95rem; margin: 0; }
.faq-answer ul { padding-left: 1.5rem; list-style: disc; }
.faq-answer li { margin-bottom: 0.3rem; }
.faq-answer a { color: var(--color-accent); border-bottom: 1px solid var(--color-accent); }

/* ---------------------------------------------------------------------- */
/* Distributor cards                                                       */
/* ---------------------------------------------------------------------- */
.distributor-toolbar {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 0; }
.field label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.1);
  outline: none;
}
.field select {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b5c4a" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.distributor-card {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--color-surface);
  border: 1px solid rgba(227, 214, 195, 0.85);
  border-radius: calc(var(--radius) * 1.5);
  margin-bottom: 1.2rem;
  transition: box-shadow 0.35s var(--ease), transform .35s var(--ease);
}
.distributor-card::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-accent-dark));
}
.distributor-card:hover { box-shadow: 0 22px 50px rgba(42, 36, 32, 0.12); transform: translateY(-3px); }
.distributor-info h3 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.distributor-meta { color: var(--color-ink-soft); font-size: 0.95rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.distributor-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.distributor-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.section-note { max-width: 820px; margin: 0 0 2rem; color: var(--color-ink-soft); font-size: 1rem; text-align: center; }

/* ---------------------------------------------------------------------- */
/* Forms                                                                    */
/* ---------------------------------------------------------------------- */
.form-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 5vw, 3.5rem);
}
.form-note {
  display: flex; gap: 0.85rem;
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-gold);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  line-height: 1.6;
}
.form-note span:first-child { flex-shrink: 0; font-size: 1.2rem; }
@media (max-width: 640px) {
  .form-note { font-size: 0.85rem; padding: 0.9rem 1rem; }
}
.form-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-accent);
  margin: 2.4rem 0 1.3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-line);
  font-weight: 600;
}
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
@media (max-width: 640px) {
  .form-section-title { font-size: 1.15rem; margin: 1.8rem 0 1rem; padding-top: 1.2rem; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field input, .field select, .field textarea {
  width: 100%;
}
@media (max-width: 900px) {
  .form-row { gap: 1rem; }
  .field { min-width: auto; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .form-panel { padding: clamp(1.5rem, 4vw, 2.5rem); }
  .field { min-width: auto; }
}
.field-full { grid-column: 1 / -1; }
.required { color: var(--color-accent); }
.checkbox-field { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.88rem; color: var(--color-ink-soft); }
.checkbox-field input {
  margin-top: 3px;
  accent-color: var(--color-accent);
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.checkbox-field label {
  cursor: pointer;
  flex: 1;
}
.form-actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.form-actions .btn { flex: 1; min-width: 140px; }
@media (max-width: 640px) {
  .form-actions { flex-direction: column; gap: 0.8rem; }
  .form-actions .btn { flex: none; width: 100%; }
}

.contact-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(243,235,224,0.95));
  border: 1px solid rgba(176,141,87,0.18);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(11,10,9,0.06);
}
.contact-hero h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  max-width: 100%;
  color: var(--color-ink-soft);
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-start;
  width: 100%;
}
.contact-actions .btn {
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.social-strip {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(176,141,87,0.25);
  background: rgba(255,255,255,0.8);
  color: var(--color-ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.social-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(176,141,87,0.5);
  box-shadow: 0 14px 30px rgba(11,10,9,0.06);
}
.social-strip .social-button {
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  color: #fff;
  box-shadow: 0 10px 28px rgba(139, 111, 71, 0.35);
}
.social-strip .social-button:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(139, 111, 71, 0.45);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.contact-panel {
  height: 100%;
}
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-panel { height: auto; }
}
.info-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.info-card {
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(251,246,239,0.88), rgba(255,255,255,0.95));
}
.info-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.info-card a, .info-card p {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .contact-hero { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 1.5rem 1.25rem;
    gap: 1.2rem;
  }
  .contact-hero h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .contact-hero p { font-size: 0.95rem; }
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
  .contact-actions .btn {
    width: 100%;
    flex: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Stats strip                                                             */
/* ---------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--color-gold); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-ink-soft); margin-top: 0.3rem; }

/* ---------------------------------------------------------------------- */
/* CTA banner                                                              */
/* ---------------------------------------------------------------------- */
.cta-banner {
  background: var(--color-night);
  color: #f4ede0;
  border-radius: var(--radius);
  padding: 4rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 100% at 50% 100%, rgba(176,141,87,0.25), transparent 70%);
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fbf6ea; font-style: italic; }
.cta-banner p { color: #cabca7; max-width: 520px; margin: 0 auto 2rem; }
  .cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  @media (max-width: 640px) {
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
  }
/* ---------------------------------------------------------------------- */
.faq-container { max-width: 920px; margin: 0 auto; }
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 30px rgba(42,36,32,0.06);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  overflow: hidden;
}
.faq-item.active { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.faq-question { display:flex; align-items:center; justify-content:space-between; gap:1rem; cursor:pointer; }
.faq-question h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-night); margin: 0; font-weight: 500; }
.faq-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: var(--color-gold); color: #fff; font-weight:600; flex-shrink:0;
}
.faq-answer { color: var(--color-ink-soft); margin-top: 0.85rem; }
.faq-answer p, .faq-answer ul { margin: 0 0 0.75rem; }
.faq-answer ul { padding-left: 1.25rem; }
.faq-item .faq-answer { max-height: 2000px; transition: max-height .35s var(--ease); }
.faq-item:not(.active) .faq-answer { max-height: 0; }

/* Decorative imagery for FAQ page */
.page-header .faq-hero-decor {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 260px;
  opacity: 0.12;
  pointer-events: none;
  transform: translateZ(0);
}
@media (max-width: 900px) {
  .page-header .faq-hero-decor { display: none; }
}

.faq-container { position: relative; }
.faq-container::before {
  content: '';
  position: absolute;
  right: -6%;
  top: -20px;
  width: 420px;
  height: 420px;
  background-image: url('images/Perfume photo flowers.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-8deg);
}
@media (max-width: 900px) {
  .faq-container::before { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
#site-footer { background: var(--color-night); color: #eee9e0; padding: 5rem 0 0; }
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-content { grid-template-columns: 1fr; } }
.footer-brand img { max-height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.95rem; color: #eee9e0; }
.footer-section h3 {
  color: #fff; font-family: var(--font-body); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.3rem;
}
.footer-section a, .footer-section p { display: block; font-size: 0.95rem; color: #eee9e0; margin-bottom: 0.75rem; transition: color .3s var(--ease); }
.footer-section a:hover { color: var(--color-gold); }
.footer-contact strong { display: block; color: #fff; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
.footer-contact span { color: #eee9e0; }
.footer-social { display: flex; gap: 1rem; margin-top: 0.75rem; }
.social-icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 16px;
  color: #d8b48c;
  background: rgba(255, 255, 255, 0.12);
  transition: all .3s var(--ease);
}
.social-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.social-icon:hover { background: rgba(176, 141, 87, 0.16); color: var(--color-gold); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid #2c2620;
  padding: 1.8rem var(--gutter);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
  font-size: 0.78rem;
  color: #a07a55;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #a07a55; transition: color .3s var(--ease); }
.footer-links a:hover { color: var(--color-gold); }

/* ---------------------------------------------------------------------- */
/* Utilities                                                                */
/* ---------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-media {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--color-bg-alt), #e7dac4);
  border-radius: var(--radius);
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Connect-with-a-Distributor modal
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-panel {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 5vw, 2.75rem);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 30px 80px rgba(20,16,12,0.35);
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-ink-soft);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.modal-close:hover { border-color: var(--color-accent); color: var(--color-accent); transform: rotate(90deg); }
.modal-subtitle { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 1.5rem; }
.modal-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; max-height: 320px; overflow-y: auto; }
.modal-distributor-card { margin-bottom: 0; padding: 1.2rem 1.4rem; }

/* ==========================================================================
   Motion & delight — scroll progress, essence particles, tilt, magnetic CTAs
   ========================================================================== */

/* Scroll progress line */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
  width: 0%;
  z-index: 1200;
  transition: width 0.1s linear;
}

/* Drifting essence particles inside the hero */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  bottom: -10%;
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,87,0.9), rgba(176,141,87,0));
  opacity: 0;
  animation: drift var(--duration, 14s) ease-in var(--delay, 0s) infinite;
}
@keyframes drift {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  8% { opacity: 0.8; }
  50% { transform: translate(var(--drift-x, 30px), -55vh) scale(1); }
  92% { opacity: 0.5; }
  100% { opacity: 0; transform: translate(calc(var(--drift-x, 30px) * 1.6), -100vh) scale(0.4); }
}

/* Card tilt (JS sets --rx/--ry) + shine sweep */
.card { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(0); position: relative; }
.card:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px); }
.card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.35) 48%, transparent 56%);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease);
}
.card:hover .card-media::after { transform: translateX(120%); }

/* Magnetic gold buttons (JS adjusts translate on mousemove) */
.btn-gold { transform: translate(var(--mx, 0), var(--my, 0)); }
.btn-gold:hover { transform: translate(var(--mx, 0), var(--my, 0)) translateY(-2px); }

/* Animated counting handled in JS; just a gentle pop-in */
.stat-num { transition: transform 0.3s var(--ease); }
.stats:hover .stat-num { transform: translateY(-2px); }

/* Back to top */
#backToTop {
  position: fixed; right: 1.5rem; bottom: 1.5rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fbf6ea;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 900;
  box-shadow: var(--shadow-soft);
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#backToTop:hover { background: var(--color-accent-dark); transform: translateY(-3px); }

/* Nav shrink-on-scroll polish */
.nav.scrolled { box-shadow: 0 8px 24px rgba(20,16,12,0.06); }

@media (prefers-reduced-motion: reduce) {
  .particle { animation: none; opacity: 0; }
  .card, .card:hover, .btn-gold, .btn-gold:hover { transform: none !important; }
}
