/* ============================================
   TIGER BUSINESS NETWORK — Main Stylesheet
   Editorial Executive — Purple / Gray / White
   Gold: subtle accent only
   v20260508
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  /* ── Backgrounds ── */
  --ivory:        #F8F8F6;   /* dominant page bg — cool warm white */
  --cream:        #F2F2F2;   /* slightly cooler cream */
  --stone:        #F1EFEC;   /* alternate section bg — lighter, cleaner */
  --taupe:        #ECEAE6;   /* deeper alternate */
  --parchment:    #EDE8E0;   /* card surfaces */

  /* ── Text ── */
  --ink:          #1E1E24;   /* primary headings — cooler, crisper charcoal */
  --charcoal:     #2E2E38;   /* secondary headings */
  --text-body:    #3A3A46;   /* body copy — cool dark gray */
  --text-light:   #6B6B78;   /* captions, meta */
  --text-muted:   #9898A4;   /* placeholder, footnote */

  /* ── Brand Accent — primary UI accent ── */
  --purple:       #52306E;   /* deep muted purple — primary CTA, labels */
  --purple-mid:   #6B3D8A;   /* hover state */
  --purple-deep:  #3D2252;   /* deeper, for pressed/footer */
  --purple-faint: rgba(82, 48, 110, 0.06);
  --purple-subtle:rgba(82, 48, 110, 0.10);
  --border-purple:rgba(82, 48, 110, 0.22);

  /* ── Antique Gold — subtle accent only ── */
  --gold:         #A8895A;   /* slightly muted — no longer primary CTA */
  --gold-light:   #C0A06E;
  --gold-dark:    #8A7038;
  --gold-muted:   rgba(168, 137, 90, 0.18);
  --gold-subtle:  rgba(168, 137, 90, 0.07);

  /* ── Borders ── */
  --border-warm:  #DDDBD7;   /* standard border — slightly lighter */
  --border-gold:  rgba(168, 137, 90, 0.25);
  --border-light: rgba(168, 137, 90, 0.12);

  /* ── Shadows ── */
  --shadow-card:   0 2px 20px rgba(30, 30, 36, 0.06);
  --shadow-lift:   0 8px 40px rgba(30, 30, 36, 0.10);
  --shadow-gold:   0 4px 24px rgba(168, 137, 90, 0.14);
  --shadow-purple: 0 4px 24px rgba(82, 48, 110, 0.18);

  /* ── Footer / Dark ── */
  --footer-bg:    #1C1C22;   /* deep cool charcoal — editorial */

  /* ── Utility ── */
  --radius:       3px;
  --radius-lg:    6px;
  --transition:   0.28s ease;

  /* ── Typography ── */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', 'Inter', -apple-system, sans-serif;

  /* ── Layout ── */
  --max-width:    1180px;
  --nav-height:   76px;

  /* ── Legacy / Alias vars (backward compat) ── */
  --border-soft:  #DDDBD7;        /* alias → --border-warm */
  --text-dark:    #1E1E24;        /* alias → --ink */
  --warm-white:   #F8F8F6;        /* alias → --ivory */
  --mid-gray:     #6B6B78;        /* alias → --text-light */
  --cream:        #F2F2F2;        /* keep as-is (used in dark sections) */
}

/* ---- Reset & Base ---- */
*, *::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-body);
  background: var(--ivory);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.01em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-body);
  line-height: 1.85;
  font-weight: 300;
}

.text-sm { font-size: 0.875rem; line-height: 1.65; }

.gold-text   { color: var(--gold); }
.purple-text { color: var(--purple); }
.ink-text    { color: var(--ink); }
.muted-text  { color: var(--text-muted); }

/* Eyebrow / section labels — muted purple */
.section-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section    { padding: 136px 0; }
.section-sm { padding: 96px 0; }
.section-lg { padding: 172px 0; }

/* ---- Accent Line ---- */
.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--purple);
  margin: 22px 0 36px;
  opacity: 0.40;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }
.gold-divider {
  width: 36px;
  height: 1px;
  background: var(--purple);
  margin: 22px 0 36px;
  opacity: 0.40;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — deep muted purple */
.btn-primary {
  background: var(--purple);
  color: #FFFFFF;
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

/* Secondary — charcoal outline */
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(30, 30, 36, 0.28);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* Outlined charcoal — for light sections */
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-warm);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  color: var(--ink);
  transform: translateY(-1px);
}

/* White — on dark sections */
.btn-white {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.btn-white:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* Outline white — ghost on dark footer/cta */
.btn-outline-white {
  background: transparent;
  color: rgba(246, 243, 238, 0.85);
  border-color: rgba(246, 243, 238, 0.35);
}
.btn-outline-white:hover {
  background: rgba(246,243,238,0.08);
  border-color: rgba(246,243,238,0.65);
  color: var(--ivory);
}

/* Ghost — text link style */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: none;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
}
.btn-ghost:hover { color: var(--purple); }
.btn-ghost i { font-size: 0.72rem; transition: transform var(--transition); }
.btn-ghost:hover i { transform: translateX(4px); }

/* Purple outline — replaces legacy btn-gold-outline */
.btn-gold-outline,
.btn-purple-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--border-purple);
}
.btn-gold-outline:hover,
.btn-purple-outline:hover {
  background: var(--purple);
  color: #FFFFFF;
  border-color: var(--purple);
  transform: translateY(-1px);
}

.btn-sm  { padding: 10px 20px; font-size: 0.68rem; }
.btn-lg  { padding: 16px 36px; font-size: 0.76rem; }

/* ---- Navigation — warm ivory, not dark ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(246, 243, 238, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 2px 28px rgba(47, 42, 38, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Nav wordmark — gold bar + text */
.nav-wordmark-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-gold-bar {
  display: block;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, #D4AF6A, #9A7E42);
  border-radius: 1px;
  flex-shrink: 0;
}
.nav-wordmark-text {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-cta {
  margin-left: 20px;
  font-size: 0.65rem;
  padding: 9px 18px;
  background: var(--purple);
  color: #FFFFFF !important;
  border: 1px solid var(--purple);
  border-radius: var(--radius);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav — warm ivory */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-warm);
  padding: 20px 40px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  display: block;
  padding: 11px 14px;
  font-size: 0.72rem;
  border-radius: var(--radius);
  color: var(--text-light);
}
.nav-mobile .nav-link:hover { color: var(--ink); background: var(--stone); }
.nav-mobile .nav-cta {
  margin: 12px 0 0;
  text-align: center;
  justify-content: center;
  display: flex;
}

/* ---- Page Hero — warm cream, editorial ---- */
.page-hero {
  background: var(--stone);
  padding: 152px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-warm);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(246,243,238,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 400;
  max-width: 720px;
}

.page-hero .hero-sub {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

/* ---- Section Headers ---- */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .gold-divider,
.section-header.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ---- Background Variants ---- */
.section-ivory     { background: var(--ivory); }
.section-stone     { background: var(--stone); }
.section-taupe     { background: var(--taupe); }
.section-light     { background: var(--ivory); }  /* legacy alias */
.section-off-white { background: var(--stone); }  /* legacy alias */

/* Dark section */
.section-dark {
  background: var(--taupe);
  color: var(--ink);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ink); }
.section-dark p { color: var(--text-body); }
.section-dark .section-label { color: var(--purple); }

.section-black {
  background: var(--stone);
  color: var(--ink);
}
.section-black h2, .section-black h3 { color: var(--ink); }
.section-black p { color: var(--text-body); }

/* ---- Cards ---- */
.card {
  background: #FFFFFF;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
  border-color: var(--border-gold);
}

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- Process Steps ---- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step-item {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 48px;
}
.step-item:last-child { padding-bottom: 0; }
.step-item::before {
  content: '';
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 1px;
  background: var(--border-warm);
}
.step-item:last-child::before { display: none; }
.step-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  color: var(--ink);
  position: relative; z-index: 1;
}
.step-content h4 { margin-bottom: 6px; font-size: 1.05rem; color: var(--ink); font-family: var(--font-heading); font-weight: 500; }
.step-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ---- Supplier Cards ---- */
.supplier-card {
  background: #FFFFFF;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.supplier-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.supplier-logo-placeholder {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--stone);
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.supplier-logo-placeholder i { color: var(--gold); font-size: 1.1rem; }
.supplier-name {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 500;
  color: var(--ink); line-height: 1.2;
}
.supplier-category-tag {
  display: inline-flex; align-items: center;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(184, 154, 91, 0.22);
  width: fit-content;
}
.supplier-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.68;
  flex: 1; font-weight: 300;
}
.supplier-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

/* Category Headers */
.category-section { margin-bottom: 80px; }
.category-header {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-warm);
}
.category-header h3 { font-size: 1.25rem; color: var(--ink); font-weight: 400; }
.category-icon {
  width: 38px; height: 38px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.category-icon i { color: var(--gold); font-size: 0.9rem; }
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ---- Benefit Items ---- */
.benefit-item { display: flex; gap: 18px; align-items: flex-start; }
.benefit-icon {
  width: 40px; height: 40px;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-icon i { color: var(--gold); font-size: 0.9rem; }
.benefit-content h4 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.benefit-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; font-weight: 300; }

/* ---- Resource Cards ---- */
.resource-card {
  background: #FFFFFF;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; align-items: flex-start;
  gap: 22px;
  transition: all var(--transition);
}
.resource-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.resource-icon {
  width: 50px; height: 50px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.resource-icon i { color: var(--gold); font-size: 1.1rem; }
.resource-info { flex: 1; }
.resource-info h4 { margin-bottom: 6px; font-size: 1rem; color: var(--ink); }
.resource-info p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 16px; font-weight: 300; }

/* ---- Contact Cards ---- */
.contact-path-card {
  background: #FFFFFF;
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  transition: all var(--transition);
}
.contact-path-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.contact-path-icon {
  width: 60px; height: 60px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.contact-path-icon i { color: var(--gold); font-size: 1.25rem; }
.contact-path-card h3 { margin-bottom: 10px; font-size: 1.2rem; color: var(--ink); }
.contact-path-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 22px; font-weight: 300; }

/* ---- Team Cards ---- */
.team-card {
  background: var(--stone);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.team-avatar i { color: var(--gold-dark); font-size: 1.4rem; }
.team-card h4 { color: var(--ink); margin-bottom: 4px; font-size: 1.05rem; font-weight: 500; }
.team-role {
  font-size: 0.62rem; color: var(--gold-dark);
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
  display: block;
}
.team-card a { color: var(--text-light); font-size: 0.875rem; display: block; margin-bottom: 4px; transition: color var(--transition); }
.team-card a:hover { color: var(--purple); }
.team-card .phone { color: var(--text-muted); font-size: 0.875rem; }

/* ---- CTA Band — soft gray with subtle purple ---- */
.cta-band {
  background: var(--stone);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(82, 48, 110, 0.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,48,110,0.20), transparent);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--ink); margin-bottom: 16px; }
.cta-band p {
  color: var(--text-body);
  margin-bottom: 36px; font-size: 1rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
  font-weight: 300;
}
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Legal Footnote ---- */
.legal-note {
  font-size: 0.73rem; color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-warm);
  padding-top: 18px; margin-top: 40px;
  font-weight: 300;
}
.legal-note i { color: var(--text-muted); margin-right: 5px; font-size: 0.60rem; }

.section-dark .legal-note { color: rgba(246,243,238,0.35); border-top-color: rgba(246,243,238,0.10); }

/* ---- Footer — deep cool charcoal ---- */
.site-footer {
  background: var(--footer-bg);
  color: rgba(248, 248, 246, 0.55);
  padding: 72px 0 0;
  border-top: 1px solid rgba(82, 48, 110, 0.20);
}

.footer-logo { display: none; }

.footer-wordmark {
  margin-bottom: 20px;
  display: block;
}
/* Footer wordmark — gold bar + text */
.footer-wordmark-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-gold-bar {
  display: block;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, #D4AF6A, #9A7E42);
  border-radius: 1px;
  flex-shrink: 0;
}
.footer-wordmark-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(246,243,238,0.92);
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: rgba(246,243,238,0.88);
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-brand-text {
  font-size: 0.875rem; line-height: 1.8;
  color: rgba(246, 243, 238, 0.42);
  margin-bottom: 0; font-weight: 300;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.48);
  transition: color var(--transition);
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item { margin-bottom: 20px; }
.footer-contact-item strong {
  display: block; font-size: 0.875rem;
  color: rgba(246, 243, 238, 0.80);
  margin-bottom: 4px; font-weight: 500;
  font-family: var(--font-body);
}
.footer-contact-item a {
  font-size: 0.825rem;
  color: rgba(246, 243, 238, 0.45);
  display: block; transition: color var(--transition); margin-bottom: 2px;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span {
  font-size: 0.825rem;
  color: rgba(246, 243, 238, 0.32);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(246, 243, 238, 0.25);
  margin: 0; font-weight: 300;
}
.footer-bottom a {
  color: rgba(246, 243, 238, 0.25);
  font-size: 0.75rem; transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---- Disclaimer Banner — footnote style ---- */
.disclaimer-note {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border-warm);
  border-radius: 0;
  padding: 14px 0 0;
  font-size: 0.73rem; color: var(--text-muted);
  display: flex; gap: 8px; align-items: flex-start;
  font-weight: 300;
  line-height: 1.68;
}
.disclaimer-note i { color: var(--text-muted); flex-shrink: 0; margin-top: 3px; font-size: 0.60rem; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.badge-gold   { background: var(--purple-faint); color: var(--purple); border: 1px solid var(--border-purple); }
.badge-dark   { background: rgba(30,30,36,0.05); color: var(--text-light); border: 1px solid var(--border-warm); }
.badge-purple { background: var(--purple-faint); color: var(--purple); border: 1px solid var(--border-purple); }

/* ---- Utility ---- */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-purple  { color: var(--purple); }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.70s ease, transform 0.70s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
[data-stagger] .reveal:nth-child(1) { transition-delay: 0.04s; }
[data-stagger] .reveal:nth-child(2) { transition-delay: 0.12s; }
[data-stagger] .reveal:nth-child(3) { transition-delay: 0.20s; }
[data-stagger] .reveal:nth-child(4) { transition-delay: 0.28s; }
[data-stagger] .reveal:nth-child(5) { transition-delay: 0.36s; }
[data-stagger] .reveal:nth-child(6) { transition-delay: 0.44s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav-menu   { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section    { padding: 100px 0; }
  .section-lg { padding: 128px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { padding: 80px 0; }
  .page-hero { padding: 132px 0 72px; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 24px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 26px; font-size: 0.72rem; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-mobile { padding: 16px 20px 22px; }
}
