/* ═══════════════════════════════════════════════════════════
   JAY JAY CLASSIC — MAIN STYLESHEET
   Fonts: Cinzel (≈ Trajan) · Jost SC (≈ Contax Pro 55 SC)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --maroon:       #9B1B5A;
  --maroon-dark:  #7A1447;
  --maroon-deep:  #5C0E37;
  --maroon-light: #C2317A;
  --gold:         #C9933A;
  --gold-light:   #DBA84E;
  --gold-pale:    #F5E4B8;
  --cream:        #FDFAF6;
  --beige:        #F5EDE0;
  --beige2:       #EAD9C8;
  --charcoal:     #1E1A18;
  --text:         #2C2420;
  --text-mid:     #6B5A52;
  --text-light:   #9A8880;

  /* Layout */
  --ticker-h:    34px;
  --header-h:    100px;
  --radius:      0px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html   { scroll-behavior: smooth; }
body   { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; padding-top: 0; margin-top: 0; }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--beige); }
::-webkit-scrollbar-thumb { background: var(--maroon); }

/* ── TYPOGRAPHY HELPERS ── */
.font-cinzel { font-family: 'Cinzel', serif; }
.font-jost   { font-family: 'Jost', sans-serif; }

/* ══════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════ */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--ticker-h);
  background: var(--maroon-deep);
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin: 0; padding: 0;
}
.ticker.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: tickScroll 55s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0 48px;
}
.ticker-track span em {
  color: var(--gold-pale);
  font-style: normal;
}
.ticker-track .dot {
  color: rgba(255,255,255,0.3);
  padding: 0 4px;
  font-size: 14px;
}
@keyframes tickScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: var(--ticker-h);   /* sits below ticker */
  left: 0; right: 0;
  z-index: 400;
  height: var(--header-h);
  transition: top 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

/* When page scrolled: ticker hides, header snaps to top with solid bg */
.site-header.scrolled {
  top: 0;
  background: rgba(253, 250, 246, 0.98);
  box-shadow: 0 1px 0 rgba(155,27,90,0.10), 0 6px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hdr-inner {
  max-width: 1500px;
  margin: 0 auto;
  height: 100%;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  align-items: center;
  gap: 0;
}

/* ── LOGO ── */
.logo-a {
  display: flex;
  align-items: center;
  gap: 13px;
}
.logo-box {
  width: 85px; 
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(155,27,90,0.22);
  border: 1.5px solid rgba(155,27,90,0.14);
  display: flex; align-items: center; justify-content: center;
}
.logo-box img { width: 100%; height: 100%; object-fit: cover; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.35s;
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 5px;
  transition: color 0.35s;
}
.site-header.scrolled .logo-name { color: var(--maroon); }
.site-header.scrolled .logo-sub  { color: var(--text-light); }

/* ── MAIN NAV ── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  list-style: none;
}

/* Top-level link */
.nav-item { position: relative; list-style: none; padding-bottom: 0; }
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
  display: flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 12px;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s;
}
.nav-link:hover,
.nav-link.active { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--maroon); }
.site-header.scrolled .nav-link::after { background: var(--maroon); }

/* Dropdown arrow */
.nav-arrow {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.28s;
  flex-shrink: 0;
}
.nav-item:hover .nav-arrow { transform: rotate(225deg) translateY(-2px); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: #fff;
  border-top: 2.5px solid var(--maroon);
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 300;
}
.nav-item:hover .nav-dropdown,
.nav-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 14px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--beige2);
  transition: background 0.22s, color 0.22s, padding-left 0.22s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--maroon);
  padding-left: 28px;
}

/* ── HEADER RIGHT ── */
.hdr-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.hdr-cta {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--maroon);
  padding: 12px 24px;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.hdr-cta:hover {
  background: var(--maroon-dark);
  border-color: var(--gold-light);
  color: var(--gold-pale);
}
.site-header.scrolled .hdr-cta { border-color: var(--maroon-light); }

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.85);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.site-header.scrolled .hamburger span { background: var(--charcoal); }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 800;
  flex-direction: column;
  padding: 80px 32px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu.open { display: flex !important; }
.mob-menu-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--charcoal);
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mob-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  padding: 17px 0;
  border-bottom: 1px solid var(--beige2);
  display: block;
  transition: color 0.25s;
}
.mob-menu a:hover { color: var(--maroon); }
.mob-sub-head {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 17px 0 10px;
  border-bottom: 1px solid var(--beige2);
}
.mob-sub a {
  padding: 13px 0 13px 18px;
  font-size: 10.5px;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════════
   PAGE SPACING (below fixed header + ticker)
══════════════════════════════════════════════ */
.page-top-pad { padding-top: calc(var(--ticker-h) + var(--header-h)); }

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.eyebrow::after { content: ''; flex: 0 0 28px; height: 1.5px; background: var(--maroon); opacity: 0.4; }
.eyebrow-c { justify-content: center; }
.eyebrow-c::after  { display: none; }
.eyebrow-c::before { content: ''; flex: 0 0 28px; height: 1.5px; background: var(--maroon); opacity: 0.4; }

.sec-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.sec-h2 em { font-style: italic; color: var(--maroon); }

.gline { width: 48px; height: 1.5px; background: var(--gold); margin: 22px 0; }
.sec-body { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 22px; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-fill {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #fff; background: var(--maroon);
  padding: 14px 38px;
  border: 1.5px solid transparent;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-fill:hover { background: var(--maroon-dark); border-color: var(--gold-light); color: var(--gold-pale); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--maroon);
  padding: 14px 38px;
  border: 1.5px solid var(--maroon);
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--maroon); color: #fff; }
.btn-outline svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s; }
.btn-outline:hover svg { transform: translateX(4px); }

.btn-gold {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold-light);
  padding: 14px 36px;
  border: 1.5px solid var(--gold-light);
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost-gold {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 14px 36px;
  border: 1.5px solid rgba(201,147,58,0.42);
  transition: border-color 0.3s, background 0.3s;
  white-space: nowrap;
}
.btn-ghost-gold:hover { border-color: var(--gold-light); background: rgba(201,147,58,0.08); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer { background: var(--charcoal); }
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 64px 44px;
  max-width: 1500px;
  margin: 0 auto;
}
.fl-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.fl-logo-img {
  width: 80px; height: 80px;
  border-radius: 10px; overflow: hidden;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(155,27,90,0.2);
}
.fl-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.fl-logo-name { font-family: 'Jost', sans-serif; font-size: 21px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; line-height: 1; }
.fl-logo-sub  { font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 0.55em; text-transform: uppercase; color: rgba(255,255,255,0.40); margin-top: 5px; }
.fl-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.9; margin-bottom: 22px; }
.fl-chips { display: flex; gap: 8px; margin-bottom: 22px; }
.flc {
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px;
}
.flc.a { background: rgba(155,27,90,0.18); color: var(--maroon-light); border: 1px solid rgba(155,27,90,0.22); }
.flc.r { background: rgba(201,147,58,0.10); color: var(--gold-light); border: 1px solid rgba(201,147,58,0.22); }
.fl-soc { display: flex; gap: 8px; }
.fs {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.fs:hover { border-color: var(--maroon); background: rgba(155,27,90,0.16); }
.fs svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.6; }
.ft-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-links { display: flex; flex-direction: column; gap: 11px; }
.ft-links a { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.60); transition: color 0.3s; line-height: 1.6; }
.ft-links a:hover { color: var(--gold-light); }
.foot-bot {
  max-width: 1500px; margin: 0 auto;
  padding: 22px 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.foot-bot p { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════
   WA BUBBLE
══════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 700;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.36);
  animation: waPop 0.5s 2s ease both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-fab:hover { transform: scale(1.10); box-shadow: 0 10px 30px rgba(37,211,102,0.48); }
.wa-fab svg { width: 26px; height: 26px; fill: #fff; }
.wa-tip {
  position: absolute;
  right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--charcoal); color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.10em;
  white-space: nowrap; padding: 7px 14px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.wa-fab:hover .wa-tip { opacity: 1; }
@keyframes waPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.06s; } .d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; } .d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; } .d6 { transition-delay: 0.36s; }

/* ══════════════════════════════════════════════
   PRODUCT CARD (shared)
══════════════════════════════════════════════ */
.pcard {
  position: relative; overflow: hidden;
  background: var(--charcoal);
  display: block; cursor: pointer;
}
.pcard-img { overflow: hidden; position: relative; }
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: saturate(0.88);
  transition: transform 0.82s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.55s;
}
.pcard:hover .pcard-img img { transform: scale(1.08); filter: saturate(1.05) brightness(0.82); }
.pcard-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: 'Jost', sans-serif;
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; padding: 5px 13px;
}
.badge-m { background: var(--maroon); }
.badge-g { background: var(--gold); }
.badge-d { background: var(--charcoal); }
.pcard-num {
  position: absolute; top: 16px; right: 18px; z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.28);
}
.pcard-overlay {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 24px 28px;
  background: linear-gradient(to top, rgba(17,13,13,0.92) 0%, rgba(17,13,13,0.38) 48%, transparent 72%);
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.pcard:hover .pcard-overlay { opacity: 1; transform: translateY(0); }
.pcard-brand {
  font-family: 'Jost', sans-serif;
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.pcard-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(17px,1.6vw,22px);
  font-weight: 400; color: #fff;
  line-height: 1.2; margin-bottom: 8px;
}
.pcard-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.60);
  line-height: 1.62; margin-bottom: 16px;
}
.pcard-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.pcard-tag {
  font-family: 'Jost', sans-serif;
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.30);
  padding: 3px 9px;
}
.pcard-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold-light);
  padding: 11px 24px;
  transition: background 0.28s;
  width: fit-content;
}
.pcard:hover .pcard-btn { background: var(--gold); }
.pcard-btn svg { width: 11px; height: 11px; stroke: var(--charcoal); fill: none; stroke-width: 2.5; transition: transform 0.28s; }
.pcard:hover .pcard-btn svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   Bootstrap loaded first, these rules cascade
   after and take priority for our components.
══════════════════════════════════════════════ */

/* ── Large tablets / small laptops ── */
@media (max-width: 1199.98px) {
  .hdr-inner { padding: 0 32px; }
  .main-nav { gap: 26px; }
}

/* ── Tablets — nav collapses to hamburger ── */
@media (max-width: 1100px) {
  .hdr-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Small tablets / large phones ── */
@media (max-width: 900px) {
  :root { --header-h: 84px; }
  .logo-box { width: 60px; height: 60px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 7px; }
  .hdr-cta { padding: 10px 18px; font-size: 9.5px; }
}

/* ── Phones ── */
@media (max-width: 768px) {
  :root { --header-h: 76px; }
  .hdr-inner { padding: 0 18px; }
  .logo-box { width: 52px; height: 52px; }
  .logo-name { font-size: 16px; }
  .logo-sub { font-size: 6.5px; letter-spacing: 0.4em; }
  .hdr-right { gap: 8px; }
  .hdr-cta { padding: 8px 14px; font-size: 8.5px; letter-spacing: 0.14em; }
  .ticker-track span { font-size: 8px; padding: 0 30px; }
  .foot-top { grid-template-columns: 1fr; padding: 44px 24px; }
  .foot-bot { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
  .mob-menu { padding: 72px 26px 36px; }
  .mob-menu a { font-size: 13px; padding: 15px 0; }
  .brand-sub {
  margin-bottom: 0px !important;
  }
  .prod-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 14px !important;
}
/* .hero-h1 {

    font-size: clamp(36px, 6.5vw, 90px);
} */

}

/* ── Small phones ── */
@media (max-width: 480px) {
  :root { --ticker-h: 30px; }
  .logo-box { width: 46px; height: 46px; border-radius: 8px; }
  .logo-name { font-size: 14px; }
  .hdr-cta { display: none; } /* hidden only below 480px — Contact still reachable via hamburger menu */
  .ticker-track span { font-size: 7px; padding: 0 22px; letter-spacing: 0.26em; }
  .wa-fab { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 22px; height: 22px; }
}

/* ── Very small phones ── */
@media (max-width: 360px) {
  .hdr-inner { padding: 0 12px; }
  .logo-words { display: none; } /* icon-only logo on the smallest screens */
  .foot-top { padding: 36px 16px; }
}
