.elementor-16 .elementor-element.elementor-element-3a8c14c{--display:flex;}.elementor-16 .elementor-element.elementor-element-32eb912{text-align:center;}.elementor-16 .elementor-element.elementor-element-eb89bfc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16 .elementor-element.elementor-element-eb89bfc.e-con{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-16 .elementor-element.elementor-element-eb89bfc{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-6a8a903 *//* ── DESIGN TOKENS ── */
:root {
  --cream:      #faf6ef;
  --white:      #ffffff;
  --black:      #111111;
  --gold:       #b8922a;
  --gold-light: #d4a940;
  --gold-pale:  #f0dfa8;
  --red:        #9b1b1b;
  --red-bright: #c0272d;
  --red-dark:   #6d1212;
  --border:     #d9cdb8;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.animate-ready {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  color: #777;
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep {
  margin: 0 0.5rem;
  color: var(--border);
}

/* ── QUICK LINKS BAR ── */
.quick-links-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  text-align: center;
}
.quick-links-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.quick-links-bar span { color: #888; }
.quick-links-bar a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.quick-links-bar a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}
.quick-links-sep { color: var(--border); }

/* ── BRAND GRID ── */
.brands-section { background: var(--white); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
  background: var(--border);
}
.brand-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.brand-card:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.brand-card:hover::after { transform: scaleX(1); }

.brand-logo-wrap {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.brand-logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
  border: 2px solid var(--border);
  padding: 0.5rem 1.2rem;
  transition: border-color 0.2s, color 0.2s;
}
.brand-card:hover .brand-logo-placeholder { border-color: var(--red); }

.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.brand-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  max-width: 240px;
}
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.brand-card:hover .brand-cta { border-color: var(--red); }

/* ── SUPPLIES GRID ── */
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.supply-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.supply-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--red), var(--gold));
  transition: height 0.3s ease;
}
.supply-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}
.supply-card:hover::before { height: 100%; }
.supply-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
  transition: transform 0.3s;
}
.supply-card:hover .supply-icon { transform: scale(1.15); }
.supply-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.supply-card:hover .supply-name { color: var(--red); }
.supply-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
}

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--black);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.mission-strip::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--red-dark) 0%, transparent 65%);
  opacity: 0.35;
  pointer-events: none;
}
.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.mission-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.mission-title em {
  color: var(--red-bright);
  font-style: italic;
}
.mission-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mission-stat {
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  transition: border-color 0.3s;
}
.mission-stat:hover { border-color: var(--red); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.mission-stat:hover .stat-num { color: var(--gold-light); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.stat-desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
}

/* ── STORE INVITE ── */
.store-invite {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.store-invite-inner {
  max-width: 700px;
  margin: 0 auto;
}
.store-invite-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.store-invite h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.store-invite h2 em {
  color: var(--red);
  font-style: italic;
}
.store-invite p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.store-invite-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════ */

/* ── iPad / Tablet  (≤ 1000px) ── */
@media (max-width: 1000px) {

  .breadcrumb {
    padding: 0.75rem 1.5rem;
  }

  .quick-links-bar {
    padding: 0.8rem 1.5rem;
  }

  /* Brand: 3-col → 2-col */
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-card {
    padding: 2rem 1.5rem;
  }

  /* Supplies: 4-col → 2-col */
  .supplies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  /* Mission: side-by-side → stacked */
  .mission-strip {
    padding: 2.5rem 1.5rem;
  }
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .store-invite {
    padding: 2.5rem 1.5rem;
  }
}

/* ── Mobile  (≤ 600px) ── */
@media (max-width: 600px) {

  /* Breadcrumb */
  .breadcrumb {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
  }

  /* Quick links: stack vertically, hide pipe separators */
  .quick-links-bar {
    padding: 0.8rem 1rem;
  }
  .quick-links-bar-inner {
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.82rem;
  }
  .quick-links-sep { display: none; }

  /* Brand: 2-col → 1-col */
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .brand-card {
    padding: 1.8rem 1rem;
  }
  .brand-logo-wrap {
    width: 130px;
    height: 65px;
  }
  .brand-logo-placeholder {
    font-size: 1.3rem;
  }

  /* Supplies: keep 2-col on mid-mobile, tighter padding */
  .supplies-grid {
    gap: 0.9rem;
  }
  .supply-card {
    padding: 1.4rem 1rem;
  }
  .supply-icon {
    font-size: 1.6rem;
  }
  .supply-name {
    font-size: 1rem;
  }

  /* Mission */
  .mission-strip {
    padding: 2rem 1rem;
  }
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .stat-num {
    font-size: 1.75rem;
  }

  /* Store invite */
  .store-invite {
    padding: 2rem 1rem;
  }
  .store-invite-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .store-invite-actions a,
  .store-invite-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ── Small mobile  (≤ 480px) ── */
@media (max-width: 480px) {

  /* Supplies: 2-col → 1-col on smallest screens */
  .supplies-grid {
    grid-template-columns: 1fr;
  }

  /* Shrink brand logo further */
  .brand-logo-wrap {
    width: 110px;
    height: 55px;
  }
  .brand-logo-placeholder {
    font-size: 1.1rem;
    padding: 0.4rem 0.9rem;
  }

  /* Mission title clamp tightened */
  .mission-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  /* Quick links font bump for tap targets */
  .quick-links-bar-inner {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
}/* End custom CSS */