/* =========================================================
   — design tokens
   ink        #15130F  near-black warm charcoal (base bg)
   panel      #1E1A13  raised panel on dark
   ivory      #F3EEE4  warm ivory (light bg / dark text)
   brass      #C19A49  primary accent (gold/brass)
   brass-deep #8B6F35  secondary accent
   olive      #8C8370  muted text on dark
   ink-soft   #4A4636  muted text on light
   ========================================================= */

:root{
  --ink: #15130F;
  --panel: #1E1A13;
  --panel-2: #221D15;
  --ivory: #F3EEE4;
  --brass: #C19A49;
  --brass-deep: #8B6F35;
  --olive: #8C8370;
  --ink-soft: #6B6152;
  --line: rgba(243,238,228,0.12);
  --line-soft: rgba(21,19,15,0.1);

  --display: "Fraunces", serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --wrap: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

[data-theme="light"] {
  --ink: #FAF8F5;
  --panel: #FFFFFF;
  --panel-2: #F5EFE6;
  --ivory: #14120E;
  --brass: #A87922;
  --brass-deep: #7D5714;
  --olive: #595245;
  --ink-soft: #383329;
  --line: rgba(28,25,20,0.12);
  --line-soft: rgba(28,25,20,0.06);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:500; margin:0; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

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

/* film-grain overlay, purely decorative */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:0.035; mix-blend-mode: overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============== reveal-on-scroll =============== */
.reveal{
  opacity:0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }

/* =============== buttons =============== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor:pointer;
  white-space: nowrap;
}
.btn--solid{ background: var(--brass); color: var(--ink); }
.btn--solid:hover{ background: var(--ivory); transform: translateY(-2px); }
.btn--outline{ border-color: var(--line); color: var(--ivory); }
.btn--outline:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }
.btn--ghost{ color: var(--ivory); font-size:13px; letter-spacing:.03em; text-transform:none; font-family: var(--body); font-weight:600; }
.btn--ghost svg{ stroke: var(--brass); }
.btn--ghost:hover{ color: var(--brass); }

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}

/* =============== header =============== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.is-scrolled{
  background: rgba(21,19,15,0.86);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  padding: 14px 0;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand-mark{
  display:flex; align-items:baseline; gap:2px;
  font-family: var(--display);
  font-size: 22px;
}
.brand-mark__l{ color: var(--brass); }
.brand-mark__rest{ letter-spacing: .05em; }
.nav{ display:flex; align-items:center; }
.nav-drawer-header{ display: none; }
.nav-links-wrap{ display: flex; gap: 28px; align-items: center; }
.nav-item{
  font-size: 13.5px; font-weight:500; color: var(--olive);
  position:relative; padding: 4px 0;
  transition: color .3s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-item::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--brass); transition: right .35s var(--ease);
}
.nav-item:hover{ color: var(--ivory); }
.nav-item:hover::after{ right:0; }
.nav-item__num, .nav-item__sub, .nav-item__arrow{ display: none; }
.nav-mobile-cta{ display: none; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:none; cursor:pointer;
  padding:0; position:relative; z-index:510;
}
.nav-toggle span{
  display:block; height:2px; background: var(--ivory); width:100%; border-radius:1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2){
  opacity:0;
}
.nav-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =============== hero =============== */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex; align-items:center;
  overflow:hidden;
  padding: 130px 0 50px;
}
.hero__bg-media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.36) contrast(1.15) saturate(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}
.hero:hover .hero__bg-img{
  transform: scale(1.06);
}
.hero__bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(21, 19, 15, 0.5) 0%, rgba(21, 19, 15, 0.92) 80%, var(--ink) 100%),
    linear-gradient(to bottom, rgba(21, 19, 15, 0.55) 0%, transparent 28%, rgba(21, 19, 15, 0.88) 78%, var(--ink) 100%);
}
.hero__bg-glow{
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(850px, 95vw);
  height: 400px;
  background: radial-gradient(circle, rgba(193, 154, 73, 0.22) 0%, transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}
[data-theme="light"] .hero{
  background: #FAF8F5;
}
[data-theme="light"] .hero__bg-img{
  opacity: 0.12;
  filter: brightness(1.05) contrast(1.1) saturate(0.85);
}
[data-theme="light"] .hero__bg-overlay{
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(250, 248, 245, 0.72) 0%, rgba(250, 248, 245, 0.96) 80%, #FAF8F5 100%),
    linear-gradient(to bottom, rgba(250, 248, 245, 0.6) 0%, transparent 30%, rgba(250, 248, 245, 0.95) 80%, #FAF8F5 100%);
}
[data-theme="light"] .hero__bg-glow{
  background: radial-gradient(circle, rgba(168, 121, 34, 0.14) 0%, transparent 65%);
  filter: blur(65px);
}

.hero__inner{
  position:relative;
  z-index:1;
  text-align:center;
  max-width: 980px;
  margin: 0 auto;
}

/* Status / Eyebrow Pill */
.hero__top-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(30, 26, 19, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 154, 73, 0.35);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
[data-theme="light"] .hero__top-pill{
  background: #FFFFFF;
  border: 1px solid rgba(168, 121, 34, 0.32);
  color: #14120E;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.hero__pulse-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70%{ box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.hero__top-divider{
  color: rgba(193, 154, 73, 0.5);
}
[data-theme="light"] .hero__top-divider{
  color: rgba(168, 121, 34, 0.38);
}
.hero__top-handle{
  color: var(--brass);
  transition: color 0.3s var(--ease);
}
.hero__top-handle:hover{
  color: var(--ivory);
  text-decoration: underline;
}
[data-theme="light"] .hero__top-handle{
  color: #8A6014;
  font-weight: 600;
}
[data-theme="light"] .hero__top-handle:hover{
  color: #14120E;
}

/* Wordmark */
.hero__wordmark{
  font-size: clamp(2.4rem, 7.2vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  display:flex; justify-content:center; flex-wrap:wrap;
  gap: 0.32em;
  margin: 12px 0 20px;
  line-height: 1.08;
}
.hero__word{
  display: inline-flex;
  gap: 0.04em;
  white-space: nowrap;
}
.hero__wordmark [data-letter]{
  opacity:0; transform: translateY(24px);
  animation: letterIn .7s var(--ease) forwards;
  display: inline-block;
}
.hero__word--accent [data-letter]{
  background: linear-gradient(135deg, #FFF6E0 0%, #C19A49 45%, #E5C383 80%, #9E7A2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 16px rgba(193, 154, 73, 0.4));
}
[data-theme="light"] .hero__wordmark{
  color: #12100E;
}
[data-theme="light"] .hero__word--accent [data-letter]{
  background: linear-gradient(135deg, #8A6014 0%, #C49126 50%, #754F0D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(138, 96, 20, 0.28));
}
@keyframes letterIn{ to{ opacity:1; transform:none; } }

/* Signboard Bar (HAIR | BEAUTY | MAKE-UP | NAIL) */
.hero__service-bar{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 24px;
  background: rgba(21, 19, 15, 0.82);
  border: 1px solid rgba(193, 154, 73, 0.3);
  border-radius: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.hero__service-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ivory);
  text-transform: uppercase;
}
.hero__service-icon{
  font-size: 14px;
}
.hero__service-sep{
  width: 2px;
  height: 16px;
  background: #E53935; /* Red separator matching the signboard */
  border-radius: 1px;
}
[data-theme="light"] .hero__service-bar{
  background: #FFFFFF;
  border: 1px solid rgba(168, 121, 34, 0.28);
  box-shadow: 0 8px 26px rgba(28, 25, 20, 0.06);
}
[data-theme="light"] .hero__service-item{
  color: #14120E;
  font-weight: 700;
}
[data-theme="light"] .hero__service-sep{
  background: #D32F2F;
}

/* Tagline */
.hero__tagline{
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--olive);
  margin-bottom: 26px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.hero__tagline em{
  color: var(--ivory);
  font-style: italic;
}
[data-theme="light"] .hero__tagline{
  color: #595245;
}
[data-theme="light"] .hero__tagline em{
  color: #14120E;
  font-weight: 600;
}

/* Branch Quick Cards */
.hero__branches-strip{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 740px;
  margin: 0 auto 28px;
  text-align: left;
}
.hero__branch-card{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(30, 26, 19, 0.72);
  border: 1px solid rgba(193, 154, 73, 0.22);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.hero__branch-card:hover{
  transform: translateY(-2px);
  border-color: var(--brass);
  background: rgba(30, 26, 19, 0.92);
  box-shadow: 0 8px 24px rgba(193, 154, 73, 0.16);
}
.branch-card__badge{
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(193, 154, 73, 0.14);
  border: 1px solid rgba(193, 154, 73, 0.35);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.branch-card__info{
  flex: 1;
  min-width: 0;
}
.branch-card__info strong{
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.branch-card__info span{
  display: block;
  font-size: 11.5px;
  color: var(--olive);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.branch-card__action{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--brass);
  white-space: nowrap;
}
.hero__branch-card:hover .branch-card__action{
  color: var(--ivory);
}
[data-theme="light"] .hero__branch-card{
  background: #FFFFFF;
  border: 1px solid rgba(28, 25, 20, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .hero__branch-card:hover{
  background: #FFFFFF;
  border-color: #A87922;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 121, 34, 0.15);
}
[data-theme="light"] .branch-card__badge{
  color: #8A6014;
  background: #FDF5E2;
  border: 1px solid rgba(168, 121, 34, 0.32);
}
[data-theme="light"] .branch-card__info strong{
  color: #14120E;
}
[data-theme="light"] .branch-card__info span{
  color: #696152;
}
[data-theme="light"] .branch-card__action{
  color: #8A6014;
}
[data-theme="light"] .hero__branch-card:hover .branch-card__action{
  color: #543A09;
}

/* Actions */
.hero__actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__btn-primary{
  background: linear-gradient(135deg, #C19A49 0%, #D8B15F 100%);
  color: #15130F;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(193, 154, 73, 0.35);
}
.hero__btn-primary:hover{
  background: #F3EEE4;
  color: #15130F;
  box-shadow: 0 8px 26px rgba(243, 238, 228, 0.4);
}
[data-theme="light"] .hero__btn-primary{
  background: linear-gradient(135deg, #C19A49 0%, #B28836 100%);
  color: #14120E;
  border: 1px solid #A87922;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(168, 121, 34, 0.28);
}
[data-theme="light"] .hero__btn-primary svg{
  color: #14120E;
  transition: color .3s var(--ease);
}
[data-theme="light"] .hero__btn-primary:hover{
  background: linear-gradient(135deg, #A87922 0%, #8C5F0E 100%);
  border-color: #8C5F0E;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(168, 121, 34, 0.38);
  transform: translateY(-2px);
}
[data-theme="light"] .hero__btn-primary:hover svg{
  color: #FFFFFF;
}
[data-theme="light"] .hero__actions .btn--outline{
  background: #FFFFFF;
  border: 1.5px solid rgba(28, 25, 20, 0.2);
  color: #14120E;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .hero__actions .btn--outline:hover{
  border-color: #A87922;
  color: #8A6014;
  background: #FFFDF9;
}
[data-theme="light"] .hero__actions .btn--ghost{
  color: #383329;
  font-weight: 600;
}
[data-theme="light"] .hero__actions .btn--ghost:hover{
  color: #8A6014;
}

/* Trust Strip */
.hero__trust-strip{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border-top: 1px solid rgba(243, 238, 228, 0.1);
  border-bottom: 1px solid rgba(243, 238, 228, 0.05);
  max-width: 820px;
  margin: 0 auto;
}
.hero__trust-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.trust-stars{
  color: #C19A49;
  font-size: 13px;
  letter-spacing: 2px;
}
.hero__trust-item strong{
  font-size: 13px;
  font-weight: 600;
  color: var(--ivory);
}
.hero__trust-item span{
  font-size: 11px;
  color: var(--olive);
  font-family: var(--mono);
}
.trust-divider{
  width: 1px;
  height: 28px;
  background: var(--line);
}
[data-theme="light"] .hero__trust-strip{
  border-top: 1px solid rgba(28, 25, 20, 0.1);
  border-bottom: 1px solid rgba(28, 25, 20, 0.06);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-radius: 8px;
}
[data-theme="light"] .trust-stars{
  color: #B88628;
}
[data-theme="light"] .hero__trust-item strong{
  color: #14120E;
}
[data-theme="light"] .hero__trust-item strong[style*="var(--brass)"]{
  color: #8A6014 !important;
}
[data-theme="light"] .hero__trust-item span{
  color: #696152;
}
[data-theme="light"] .trust-divider{
  background: rgba(28, 25, 20, 0.12);
}

.scroll-cue{
  display:block; width:1px; height:50px; margin: 40px auto 0;
  background: var(--line); position:relative; overflow:hidden;
}
.scroll-cue span{
  position:absolute; top:-50px; left:0; width:100%; height:100%;
  background: var(--brass);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue{ to{ top:50px; } }
[data-theme="light"] .scroll-cue{
  background: rgba(28, 25, 20, 0.14);
}
[data-theme="light"] .scroll-cue span{
  background: #8A6014;
}


/* =============== marquee =============== */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  overflow:hidden; background: var(--panel);
  padding: 16px 0;
}
.marquee__track{
  display:flex; gap: 14px; white-space:nowrap; width: max-content;
  font-family: var(--mono); font-size: 13px; letter-spacing:.1em;
  color: var(--olive);
  animation: marquee 26s linear infinite;
}
.marquee__track .dot{ color: var(--brass); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =============== section shared =============== */
section{ padding: 120px 0; }
.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head h2{ font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height:1.2; }
.section-head--split{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
  max-width: 100%;
}
.link-arrow{ font-family: var(--mono); font-size:13px; color: var(--brass); letter-spacing:.04em; white-space:nowrap; }
.link-arrow:hover{ color: var(--ivory); }

/* =============== collections =============== */
.collections{
  position: relative;
  background: var(--ink);
}
.collections-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Category Filter Tabs */
.cat-filters{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 36px;
}
.cat-filter-btn{
  background: rgba(243, 238, 228, 0.04);
  border: 1px solid var(--line);
  color: var(--olive);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
  user-select: none;
}
.cat-filter-btn:hover{
  border-color: var(--brass);
  color: var(--ivory);
}
.cat-filter-btn.active{
  background: var(--brass);
  border-color: var(--brass);
  color: #15130F;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(193, 154, 73, 0.3);
}
[data-theme="light"] .cat-filter-btn{
  background: rgba(28, 25, 20, 0.04);
  color: var(--olive);
  border-color: rgba(28, 25, 20, 0.1);
}
[data-theme="light"] .cat-filter-btn:hover{
  border-color: var(--brass);
  color: var(--ivory);
}
[data-theme="light"] .cat-filter-btn.active{
  background: var(--brass);
  border-color: var(--brass);
  color: #FFFFFF;
}

.cat-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), opacity .3s var(--ease);
  position: relative;
}
.cat-card:hover{
  transform: translateY(-8px);
  border-color: var(--brass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
[data-theme="light"] .cat-card{
  background: #FFFFFF;
  border: 1px solid rgba(28, 25, 20, 0.08);
  box-shadow: 0 4px 18px rgba(28, 25, 20, 0.04);
}
[data-theme="light"] .cat-card:hover{
  border-color: var(--brass);
  box-shadow: 0 16px 36px rgba(158, 122, 44, 0.16);
}

/* Card Media Banner */
.cat-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  background: var(--ink);
}
.cat-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.cat-card:hover .cat-card__img{
  transform: scale(1.08);
}
.cat-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  pointer-events: none;
}
.cat-card__num{
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.cat-card__badge{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  background: rgba(193, 154, 73, 0.9);
  color: #15130F;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
}

/* Collection Card Auto-Slider */
.cat-card__media--slider{
  position: relative;
}
.cat-slider-track{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cat-slider-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}
.cat-slider-img.is-active{
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.cat-card:hover .cat-slider-img.is-active{
  transform: scale(1.06);
}
.cat-slider-dots{
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 4;
  background: rgba(21, 19, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: auto;
}
.cat-slider-dots .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cat-slider-dots .dot.is-active{
  width: 16px;
  border-radius: 4px;
  background: var(--brass);
  box-shadow: 0 0 6px rgba(193, 154, 73, 0.8);
}

/* Card Body */
.cat-card__body{
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-card__header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cat-card__header h3{
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.25;
}
.cat-card__count{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.cat-card__body p{
  color: var(--olive);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
  min-height: 38px;
}

/* Category tags pills */
.cat-card__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.cat-card__tags span{
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  background: rgba(243, 238, 228, 0.05);
  border: 1px solid var(--line);
  padding: 2.5px 7px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
[data-theme="light"] .cat-card__tags span{
  background: rgba(28, 25, 20, 0.04);
  color: var(--olive);
}
.cat-card:hover .cat-card__tags span{
  border-color: rgba(193, 154, 73, 0.4);
}

/* Card CTA Action */
.cat-card__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brass);
  text-decoration: none;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.cat-card__cta svg{
  transition: transform .3s var(--ease);
}
.cat-card:hover .cat-card__cta{
  color: var(--ivory);
  gap: 12px;
}
[data-theme="light"] .cat-card:hover .cat-card__cta{
  color: var(--brass-deep);
}
.cat-card:hover .cat-card__cta svg{
  transform: translateX(4px);
}

/* Men's Exclusive Specialty Banner */
.mens-specialty-strip{
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(30, 26, 19, 0.95), rgba(21, 19, 15, 0.98));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
[data-theme="light"] .mens-specialty-strip{
  background: linear-gradient(135deg, #FFFFFF, #FAF4E9);
  border: 1px solid rgba(28, 25, 20, 0.1);
  box-shadow: 0 8px 30px rgba(28, 25, 20, 0.05);
}
.mens-specialty-strip::before{
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(193, 154, 73, 0.15), transparent 70%);
  pointer-events: none;
}
.mens-specialty-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.mens-specialty-head h3{
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ivory);
}
.mens-specialty-tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(193, 154, 73, 0.12);
  border: 1px solid rgba(193, 154, 73, 0.28);
  padding: 5px 12px;
  border-radius: 6px;
}
.mens-specialty-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mens-specialty-item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mens-specialty-item__icon{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(193, 154, 73, 0.1);
  border: 1px solid rgba(193, 154, 73, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  margin-bottom: 4px;
}
.mens-specialty-item h4{
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.3;
}
.mens-specialty-item p{
  font-size: 13px;
  color: var(--olive);
  line-height: 1.45;
}

/* =============== story =============== */
.story{
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story .eyebrow{ color: var(--brass); }
.story__grid{ display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items:center; }

/* Story Image Media Frame */
.story__media{
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.story__image-frame{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(193, 154, 73, 0.4);
  background: var(--panel);
  aspect-ratio: 3 / 4.2;
}
[data-theme="light"] .story__image-frame{
  box-shadow: 0 20px 48px rgba(115, 87, 26, 0.18);
  border-color: rgba(158, 122, 44, 0.35);
}
.story__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .7s var(--ease);
}
.story__media:hover .story__img{
  transform: scale(1.04);
}
.story__image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 13, 10, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  pointer-events: none;
}
.story__image-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 7px 15px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.badge-dot-gold{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass);
}
.story__floating-pill{
  position: absolute;
  top: -12px;
  right: -10px;
  background: var(--brass);
  color: #15130F;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
[data-theme="light"] .story__floating-pill{
  background: var(--brass-deep);
  color: #FFFFFF;
}

/* Story Copy & Typography */
.story__copy h2{
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 18px;
  color: var(--ivory);
  line-height: 1.22;
}
.story__lead{
  font-size: 16.5px !important;
  line-height: 1.6;
  color: var(--ivory) !important;
  font-weight: 500;
  margin-bottom: 14px;
}
.story__copy p{
  color: var(--olive);
  margin-bottom: 14px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Story Highlights */
.story__highlights{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0 24px;
}
.story__highlight-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(243, 238, 228, 0.03);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
}
.story__highlight-item:hover{
  background: rgba(193, 154, 73, 0.06);
  border-color: rgba(193, 154, 73, 0.35);
}
[data-theme="light"] .story__highlight-item{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .story__highlight-item:hover{
  border-color: var(--brass);
  box-shadow: 0 6px 16px rgba(158, 122, 44, 0.1);
}
.story__highlight-icon{
  width: 20px;
  height: 20px;
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 2px;
}
.story__highlight-text{
  display: flex;
  flex-direction: column;
}
.story__highlight-text strong{
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.3;
}
.story__highlight-text span{
  font-size: 11.5px;
  color: var(--olive);
  line-height: 1.35;
}

/* Story CTA Group */
.story__cta-group{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.story__cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--brass);
  color: #15130F;
  text-decoration: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 14px rgba(193, 154, 73, 0.25);
}
.story__cta-btn:hover{
  background: #DFC27D;
  color: #15130F;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(193, 154, 73, 0.4);
}
[data-theme="light"] .story__cta-btn{
  background: var(--brass-deep);
  color: #FFFFFF;
}
[data-theme="light"] .story__cta-btn:hover{
  background: #5E4613;
}
.story__cta-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.story__cta-link:hover{
  gap: 10px;
  color: #DFC27D;
}
[data-theme="light"] .story__cta-link{
  color: var(--brass-deep);
}

/* Story Stats */
.story__stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stat{ display:flex; flex-direction:column; gap:4px; }
.stat__num{ font-family: var(--display); font-size: 1.9rem; color: var(--brass); line-height: 1.1; }
.stat__label{ font-family: var(--mono); font-size: 11px; letter-spacing:.05em; text-transform:uppercase; color: var(--olive); }
[data-theme="light"] .story__stats{ border-top-color: rgba(28, 25, 20, 0.08); }
[data-theme="light"] .stat__num{ color: var(--brass-deep); }

/* =============== Modern Luxury Reviews Section =============== */
.reviews{
  background: var(--panel);
  position: relative;
}
.reviews-header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.reviews-header__left h2{
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--ivory);
  line-height: 1.15;
  margin: 6px 0 10px;
}
.reviews-header__desc{
  color: var(--olive);
  font-size: 14.5px;
  line-height: 1.5;
}
.reviews-score-text{
  color: var(--brass);
  font-weight: 700;
}

/* Google Trust Badge Box */
.google-trust-badge{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(243, 238, 228, 0.04);
  border: 1px solid var(--line);
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.google-trust-badge:hover{
  border-color: var(--brass);
  background: rgba(193, 154, 73, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.google-trust-badge__icon{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  flex-shrink: 0;
}
.google-trust-badge__content{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.google-stars-row{
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-stars-row .rating-num{
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}
.google-stars-row .gold-stars{
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}
.google-trust-badge__content .review-count{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.02em;
  font-weight: 500;
}

[data-theme="light"] .google-trust-badge{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.12);
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.06);
}
[data-theme="light"] .google-trust-badge:hover{
  border-color: var(--brass);
  box-shadow: 0 10px 24px rgba(158, 122, 44, 0.15);
}

/* Reviews Grid */
.reviews__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual Luxury Review Card */
.review-card{
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.review-card:hover{
  transform: translateY(-5px);
  border-color: rgba(193, 154, 73, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.review-card:hover::before{
  opacity: 1;
}

[data-theme="light"] .review-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.09);
  box-shadow: 0 4px 20px rgba(28, 25, 20, 0.04);
}
[data-theme="light"] .review-card:hover{
  box-shadow: 0 16px 36px rgba(158, 122, 44, 0.12);
  border-color: var(--brass);
}

/* Review Top Header */
.review-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-card__rating{
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-stars{
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
}
.review-verified-pill{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
[data-theme="light"] .review-verified-pill{
  background: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}
.review-card__quote-mark{
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.25;
  user-select: none;
}

/* Review Quote Body */
.review-card__quote{
  font-family: var(--display);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ivory);
  font-style: normal;
  margin: 0;
  flex: 1;
}
[data-theme="light"] .review-card__quote{
  color: var(--ivory);
}

/* Review Footer / Author */
.review-card__footer{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-author-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #DFC27D 0%, #9E7A2C 100%);
  color: #15130F;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(193, 154, 73, 0.3);
}
.review-author-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author-name{
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-author-name strong{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ivory);
  font-family: var(--body);
}
.verified-icon{
  flex-shrink: 0;
}
.review-author-tag{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.01em;
}

/* =============== visit =============== */
.visit__grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items:start; }
.info-block{ margin-bottom: 28px; }
.info-block h4{ font-family: var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--brass); margin-bottom:8px; }
.info-block p{ color: var(--olive); }
.info-block a{ color: var(--ivory); border-bottom:1px solid var(--line); }
.info-block a:hover{ color: var(--brass); border-color: var(--brass); }
.hours{ border-collapse: collapse; width:100%; }
.hours td{ padding: 8px 0; border-bottom:1px solid var(--line); color: var(--olive); font-size:14.5px; }
.hours td:last-child{ text-align:right; color: var(--ivory); font-family: var(--mono); font-size:13px; }
.visit__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:8px; }

.visit__map{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  background: var(--panel);
}
.visit__map iframe{
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(105%);
  transition: filter 0.4s var(--ease);
}
[data-theme="light"] .visit__map{
  box-shadow: 0 8px 24px rgba(28, 25, 20, 0.08);
  border-color: rgba(28, 25, 20, 0.12);
}
[data-theme="light"] .visit__map iframe{
  filter: none;
}

/* =============== footer =============== */
.site-footer{ background: var(--panel); border-top:1px solid var(--line); padding-top: 80px; }
.footer__inner{ display:grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.35fr; gap: 36px; padding-bottom: 56px; }
.brand-mark--footer{ margin-bottom: 18px; }
.footer__brand p{ color: var(--olive); font-size: 14px; line-height:1.7; }
.footer-branches{
  margin: 14px 0 16px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-branch{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-branch__name{
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.footer-branch__icon{
  font-size: 13px;
  line-height: 1;
}
.footer-branch__addr{
  color: var(--olive);
  display: block;
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.45;
}
.footer__col h5{ font-family: var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--brass); margin-bottom:16px; }
.footer__col{ display:flex; flex-direction:column; gap:11px; }
.footer__col a{ color: var(--olive); font-size:14px; }
.footer__col a:hover{ color: var(--ivory); }

/* Footer Hours Card */
.footer__col--hours{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-status-pill{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 2px;
}
.status-indicator-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.5; transform: scale(0.85); }
}
[data-theme="light"] .footer-status-pill{
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
  color: #16a34a;
}

.footer-hours-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(243, 238, 228, 0.03);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 8px;
}
[data-theme="light"] .footer-hours-list{
  background: rgba(28, 25, 20, 0.03);
  border-color: rgba(28, 25, 20, 0.08);
}
.footer-hours-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  white-space: nowrap;
}
.footer-hours-row .day-label{
  color: var(--ivory);
  font-weight: 500;
}
.footer-hours-row .time-label{
  font-family: var(--mono);
  color: var(--brass);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

.footer-hours-note{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--olive);
  margin-top: 2px;
}
.footer-hours-note svg{
  color: var(--brass);
  flex-shrink: 0;
}

.footer__bottom{ border-top:1px solid var(--line); padding: 22px 0; }
.footer__bottom p{ color: var(--ink-soft); font-size:12.5px; font-family: var(--mono); }

/* =============== theme toggle =============== */
.theme-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--line); background: rgba(243,238,228,0.05);
  color: var(--brass); cursor:pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.theme-toggle:hover{ border-color: var(--brass); transform: scale(1.08); background: rgba(193,154,73,0.12); }
[data-theme="light"] .theme-toggle{ background: rgba(28,25,20,0.05); color: var(--brass); }

/* =============== light mode specific overrides =============== */
[data-theme="light"] .site-header{
  background: rgba(250, 246, 240, 0.85);
}
[data-theme="light"] .site-header.is-scrolled{
  background: rgba(250, 246, 240, 0.94);
  border-bottom-color: rgba(28, 25, 20, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .brands-section{
  background: #FAF6F0;
  border-top-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .brand-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.08);
  color: #1C1914;
  box-shadow: 0 2px 8px rgba(28, 25, 20, 0.03);
}
[data-theme="light"] .brand-card:hover{
  background: #FFFFFF;
  border-color: var(--brass);
  box-shadow: 0 10px 24px rgba(158, 122, 44, 0.12);
}
[data-theme="light"] .brand-card__meta span{
  color: var(--olive);
}
[data-theme="light"] .videos-section{
  background: #F4EFE6;
  border-top-color: rgba(28, 25, 20, 0.08);
  border-bottom-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .video-card{
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(28, 25, 20, 0.08);
  border-color: rgba(28, 25, 20, 0.12);
}
[data-theme="light"] .video-card:hover{
  border-color: var(--brass);
  box-shadow: 0 16px 36px rgba(158, 122, 44, 0.2);
}
[data-theme="light"] .video-pill{
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(28, 25, 20, 0.12);
  color: #1C1914;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .video-card__mute{
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(28, 25, 20, 0.12);
  color: #1C1914;
}
[data-theme="light"] .video-card__mute:hover{
  background: #FFFFFF;
  color: var(--brass-deep);
  border-color: var(--brass-deep);
}
[data-theme="light"] .video-card__floating-info{
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 65%, transparent 100%);
}
[data-theme="light"] .video-card__floating-info h3{
  color: #1C1914;
  text-shadow: none;
}
[data-theme="light"] .video-card__category{
  color: var(--brass-deep);
}
[data-theme="light"] .video-card__action-row{
  border-top-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .video-card__watch-pill{
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 25, 20, 0.12);
  color: #14120E;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .video-card__watch-pill svg{
  color: #8A6014;
}
[data-theme="light"] .video-card__inquire-hint{
  color: #8A6014;
  font-weight: 700;
}
[data-theme="light"] .story{
  background: #FAF6F0;
  border-top-color: rgba(28, 25, 20, 0.08);
  border-bottom-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .reviews{
  background: #F4EFE6;
  border-top-color: rgba(28, 25, 20, 0.08);
  border-bottom-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .google-trust-badge{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.1);
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.04);
}
[data-theme="light"] .review-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.08);
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.04);
}
[data-theme="light"] .review-card:hover{
  background: #FFFFFF;
  border-color: var(--brass);
  box-shadow: 0 12px 32px rgba(158, 122, 44, 0.12);
}
[data-theme="light"] .social-section{
  background: #FAF6F0;
  border-bottom-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .social-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.08);
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.04);
}
[data-theme="light"] .social-card:hover{
  background: #FFFFFF;
  border-color: var(--brass);
  box-shadow: 0 12px 28px rgba(158, 122, 44, 0.12);
}
[data-theme="light"] .site-footer{
  background: #EDE6D8;
  border-top-color: rgba(28, 25, 20, 0.09);
}
[data-theme="light"] .footer__brand p{
  color: #4A4337;
}
[data-theme="light"] .footer-branch__name{
  color: #14120E;
  font-weight: 700;
}
[data-theme="light"] .footer-branch__addr{
  color: #4A4337;
  font-weight: 500;
}
[data-theme="light"] .footer__col h5{
  color: #8A6014;
}
[data-theme="light"] .footer__col a{
  color: #4A4337;
}
[data-theme="light"] .footer__col a:hover{
  color: #14120E;
}
[data-theme="light"] .footer-hours-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .footer-hours-row .day-label{
  color: #14120E;
  font-weight: 600;
}
[data-theme="light"] .footer-hours-row .time-label{
  color: #8A6014;
  font-weight: 600;
}
[data-theme="light"] .footer-hours-note{
  color: #4A4337;
}
[data-theme="light"] .footer-social-icons a{
  border-color: rgba(28, 25, 20, 0.18);
  color: #383329;
  background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .footer-social-icons a:hover{
  border-color: var(--brass);
  color: var(--brass);
  background: #FFFFFF;
}
[data-theme="light"] .footer__bottom{
  border-top-color: rgba(28, 25, 20, 0.08);
}
[data-theme="light"] .footer__bottom p{
  color: #595245;
}
[data-theme="light"] .footer__bottom a{
  color: #595245 !important;
}
[data-theme="light"] .btn--solid{
  background: var(--brass);
  color: #14120E;
  font-weight: 650;
}
[data-theme="light"] .btn--solid:hover{
  background: var(--brass-deep);
  color: #FFFFFF;
}

/* ========================================================
   Page Hero (About, Rate Card & Catalog Headers)
   ======================================================== */
.page-hero {
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(193, 154, 73, 0.14) 0%, rgba(21, 19, 15, 0.98) 75%), var(--ink);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: background 0.4s var(--ease);
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brass);
  margin-bottom: 16px;
}

.page-hero__breadcrumb a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
  color: var(--brass);
}

.page-hero__breadcrumb .sep {
  color: rgba(255, 255, 255, 0.2);
}

.page-hero__title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-hero__title em {
  font-style: italic;
  color: var(--brass);
}

.page-hero__desc {
  max-width: 660px;
  margin: 0 auto 26px;
  color: var(--olive);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-visit-box {
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
}

/* Light Theme Overrides for Page Hero & About Sections */
[data-theme="light"] .page-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(193, 154, 73, 0.16) 0%, rgba(245, 240, 232, 0.95) 75%), #FAF8F5 !important;
  border-bottom-color: rgba(28, 25, 20, 0.09) !important;
}

[data-theme="light"] .page-hero__breadcrumb a {
  color: #7A7264 !important;
}

[data-theme="light"] .page-hero__breadcrumb .sep {
  color: rgba(28, 25, 20, 0.25) !important;
}

[data-theme="light"] .page-hero__title {
  color: #15130F !important;
}

[data-theme="light"] .page-hero__title em {
  color: var(--brass-deep) !important;
}

[data-theme="light"] .page-hero__desc {
  color: #524B3F !important;
}

[data-theme="light"] .about-visit-box {
  background: #FAF6F0 !important;
  border-top-color: rgba(28, 25, 20, 0.08) !important;
}

[data-theme="light"] .about-visit-box h3 {
  color: #15130F !important;
}

[data-theme="light"] .about-visit-box p {
  color: #524B3F !important;
}

/* Light Theme Overrides for Services Catalog Page */
[data-theme="light"] .services-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(193, 154, 73, 0.16) 0%, rgba(245, 240, 232, 0.95) 75%), #FAF8F5 !important;
  border-bottom-color: rgba(28, 25, 20, 0.09) !important;
}

[data-theme="light"] .services-hero__title {
  color: #15130F !important;
}

[data-theme="light"] .services-hero__title em {
  color: var(--brass-deep) !important;
}

[data-theme="light"] .services-hero__desc {
  color: #524B3F !important;
}

[data-theme="light"] .services-hero__eyebrow {
  background: rgba(168, 121, 34, 0.1) !important;
  border-color: rgba(168, 121, 34, 0.25) !important;
  color: var(--brass-deep) !important;
}

[data-theme="light"] .services-search-input-wrap input {
  background: #FFFFFF !important;
  border-color: rgba(28, 25, 20, 0.12) !important;
  color: #15130F !important;
  box-shadow: 0 4px 16px rgba(28, 25, 20, 0.05) !important;
}

[data-theme="light"] .services-search-input-wrap input::placeholder {
  color: #8C8370 !important;
}

[data-theme="light"] .services-controls-card {
  background: #FFFFFF !important;
  border-color: rgba(28, 25, 20, 0.09) !important;
  box-shadow: 0 4px 18px rgba(28, 25, 20, 0.05) !important;
}

[data-theme="light"] .gender-pill {
  background: #FAF8F5 !important;
  border-color: rgba(28, 25, 20, 0.12) !important;
  color: #6B6152 !important;
}

[data-theme="light"] .gender-pill:hover {
  background: #F3EFE7 !important;
  color: #15130F !important;
}

[data-theme="light"] .gender-pill.active {
  background: var(--brass) !important;
  border-color: var(--brass) !important;
  color: #120F0C !important;
}

[data-theme="light"] .cat-pill {
  background: #FAF8F5 !important;
  border-color: rgba(28, 25, 20, 0.1) !important;
  color: #6B6152 !important;
}

[data-theme="light"] .cat-pill:hover {
  background: #F3EFE7 !important;
  color: #15130F !important;
}

[data-theme="light"] .cat-pill.active {
  background: rgba(168, 121, 34, 0.14) !important;
  border-color: var(--brass) !important;
  color: var(--brass-deep) !important;
}

[data-theme="light"] .service-item-card {
  background: #FFFFFF !important;
  border-color: rgba(28, 25, 20, 0.09) !important;
  box-shadow: 0 2px 10px rgba(28, 25, 20, 0.04) !important;
}

[data-theme="light"] .service-item-card:hover {
  border-color: var(--brass) !important;
  box-shadow: 0 10px 24px rgba(168, 121, 34, 0.12) !important;
}

[data-theme="light"] .service-title {
  color: #15130F !important;
}

[data-theme="light"] .service-pricing-row {
  background: #FAF8F5 !important;
  border-color: rgba(28, 25, 20, 0.08) !important;
}

[data-theme="light"] .tier-basic .price-tier-value {
  color: #15130F !important;
}

[data-theme="light"] .assurance-card {
  background: #FFFFFF !important;
  border-color: rgba(28, 25, 20, 0.08) !important;
  box-shadow: 0 2px 12px rgba(28, 25, 20, 0.04) !important;
}

[data-theme="light"] .assurance-card h3 {
  color: #15130F !important;
}

[data-theme="light"] .services-cta-banner {
  background: linear-gradient(135deg, #F5EFE4 0%, #EFE8DA 100%) !important;
  border-color: rgba(168, 121, 34, 0.25) !important;
}

[data-theme="light"] .cta-banner-title {
  color: #15130F !important;
}

[data-theme="light"] .cta-banner-desc {
  color: #524B3F !important;
}

/* =============== header right & mobile cta =============== */
.header-right{ display:flex; align-items:center; gap:14px; }
.header-cta{ display:flex; align-items:center; gap:16px; }
.header-social-icons{ display:flex; align-items:center; gap:8px; }
.header-icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--line); color: var(--ivory);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.header-icon-btn:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

.nav-mobile-cta{ display:none; }

/* =============== section head extensions =============== */
.section-desc{ color: var(--olive); font-size: 15px; max-width: 480px; margin-top: 8px; }
.section-head--center{ text-align: center; margin: 0 auto 56px; max-width: 640px; }
.section-head--center .section-desc{ margin-left: auto; margin-right: auto; }

/* =============== brands section =============== */
.brands-section{
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.instagram-two-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 28px auto 20px;
}
.instagram-two-grid .cat-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.instagram-two-grid .cat-card:hover{
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
[data-theme="light"] .instagram-two-grid .cat-card{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .instagram-two-grid .cat-card:hover{
  border-color: #A87922;
  box-shadow: 0 12px 32px rgba(168, 121, 34, 0.15);
}

/* Image framing & proportions (Compact height & clean framing) */
.instagram-two-grid .cat-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 195px;
  max-height: 210px;
  overflow: hidden;
  background: #100E0B;
}
.instagram-two-grid .cat-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.instagram-two-grid .cat-card__media--b1 img{
  object-position: center 18%; /* Frames the ROOP HAIR STUDIO signboard */
}
.instagram-two-grid .cat-card__media--b2 img{
  object-position: center 32%; /* Frames the luxury mirror station */
}
.instagram-two-grid .cat-card:hover .cat-card__media img{
  transform: scale(1.05);
}

/* Badges on image */
.branch-card__badge-pill{
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(14, 12, 10, 0.85);
  border: 1px solid rgba(193, 154, 73, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.branch-card__badge-pill svg{
  color: var(--brass);
}
.branch-card__insta-tag{
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 999px;
  z-index: 2;
}
.branch-card__insta-tag svg{
  color: #E1306C;
}

/* Card Body */
.instagram-two-grid .cat-card__body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
}
.branch-card__title-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.branch-card__title-row h3{
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-theme="light"] .branch-card__title-row h3{
  color: #14120E;
}
.instagram-two-grid .cat-card__body p{
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--olive);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-theme="light"] .instagram-two-grid .cat-card__body p{
  color: #595245;
}

/* Dual Actions inside Instagram Cards */
.cat-card__actions-dual{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.btn-branch-insta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ivory);
  background: rgba(193, 154, 73, 0.12);
  border: 1px solid rgba(193, 154, 73, 0.35);
  padding: 7px 10px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.btn-branch-insta svg{
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.btn-branch-insta:hover{
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.3);
}
.btn-branch-insta:hover svg{
  color: #FFFFFF;
  transform: scale(1.1);
}

.btn-branch-maps{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.btn-branch-maps svg{
  color: var(--brass);
  flex-shrink: 0;
}
.btn-branch-maps:hover{
  background: var(--brass);
  border-color: var(--brass);
  color: #15130F;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(193, 154, 73, 0.25);
}
.btn-branch-maps:hover svg{
  color: #15130F;
}

.btn-text-short{
  display: none;
}
.btn-text-full{
  display: inline;
}

[data-theme="light"] .btn-branch-insta{
  background: #FDF5E2;
  border-color: rgba(168, 121, 34, 0.35);
  color: #14120E;
}
[data-theme="light"] .btn-branch-insta svg{
  color: #8A6014;
}
[data-theme="light"] .btn-branch-insta:hover{
  color: #FFFFFF;
}
[data-theme="light"] .btn-branch-insta:hover svg{
  color: #FFFFFF;
}
[data-theme="light"] .btn-branch-maps{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.15);
  color: #14120E;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .btn-branch-maps svg{
  color: #8A6014;
}
[data-theme="light"] .btn-branch-maps:hover{
  background: #A87922;
  border-color: #A87922;
  color: #FFFFFF;
}
[data-theme="light"] .btn-branch-maps:hover svg{
  color: #FFFFFF;
}

/* MOBILE & TABLET: KEEP 2 CARDS IN ONE ROW (NEVER 1-COLUMN) */
@media (max-width: 860px){
  .instagram-two-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    margin: 20px 0 16px;
    max-width: 100%;
  }
  .instagram-two-grid .cat-card__media{
    height: 145px;
  }
  .instagram-two-grid .cat-card__body{
    padding: 12px 12px 14px;
  }
  .branch-card__title-row h3{
    font-size: 1.02rem;
  }
  .instagram-two-grid .cat-card__body p{
    font-size: 11.5px;
    margin-bottom: 8px;
  }
  .cat-card__tags{
    margin-bottom: 8px;
    gap: 4px;
  }
  .cat-card__tags span{
    font-size: 9.5px;
    padding: 2px 6px;
  }
  .cat-card__actions-dual{
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding-top: 10px;
  }
  .btn-branch-insta,
  .btn-branch-maps{
    font-size: 10px;
    padding: 6px 6px;
  }
}

@media (max-width: 580px){
  .instagram-two-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
    margin: 16px 0 12px;
  }
  .instagram-two-grid .cat-card{
    border-radius: 6px;
  }
  .instagram-two-grid .cat-card__media{
    height: 108px;
    aspect-ratio: 16 / 10;
  }
  .branch-card__badge-pill{
    top: 6px;
    left: 6px;
    font-size: 7.5px;
    padding: 2px 6px;
    letter-spacing: 0.02em;
    gap: 3px;
  }
  .branch-card__badge-pill svg{
    width: 9px;
    height: 9px;
  }
  .branch-card__insta-tag{
    bottom: 6px;
    right: 6px;
    font-size: 7.5px;
    padding: 2px 5px;
    gap: 3px;
  }
  .branch-card__insta-tag svg{
    width: 9px;
    height: 9px;
  }
  .instagram-two-grid .cat-card__body{
    padding: 8px 8px 10px;
  }
  .branch-card__title-row{
    margin-bottom: 4px;
    gap: 4px;
  }
  .branch-card__title-row h3{
    font-size: 11px;
    line-height: 1.25;
  }
  .branch-card__verified svg{
    width: 9px;
    height: 9px;
  }
  .instagram-two-grid .cat-card__body p{
    font-size: 9.5px;
    line-height: 1.35;
    margin-bottom: 6px;
    -webkit-line-clamp: 2;
  }
  .cat-card__tags{
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-bottom: 6px;
  }
  .cat-card__tags span{
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 3px;
  }
  .cat-card__actions-dual{
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding-top: 8px;
  }
  .btn-text-full{
    display: none;
  }
  .btn-text-short{
    display: inline;
  }
  .btn-arrow-icon{
    display: none;
  }
  .btn-branch-insta,
  .btn-branch-maps{
    font-size: 8.5px;
    padding: 5px 3px;
    gap: 3px;
    border-radius: 3px;
  }
  .btn-branch-insta svg,
  .btn-branch-maps svg{
    width: 10px;
    height: 10px;
  }
}

/* Gallery Header 2-Branch Nav with Directions */
.gallery-branches-nav{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-branch-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-branch-item:hover{
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.gallery-branch-badge{
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  background: rgba(193, 154, 73, 0.12);
  border: 1px solid rgba(193, 154, 73, 0.3);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.gallery-branch-content{
  display: flex;
  flex-direction: column;
}
.gallery-branch-content strong{
  font-size: 13px;
  color: var(--ivory);
  line-height: 1.25;
  white-space: nowrap;
}
.gallery-branch-content span{
  font-size: 11px;
  color: var(--olive);
  line-height: 1.25;
  white-space: nowrap;
}
.gallery-branch-dir-btn{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(193, 154, 73, 0.14);
  border: 1px solid rgba(193, 154, 73, 0.35);
  border-radius: 4px;
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.gallery-branch-dir-btn svg{
  color: var(--brass);
}
.gallery-branch-dir-btn:hover{
  background: var(--brass);
  border-color: var(--brass);
  color: #15130F;
  transform: translateY(-1px);
}
.gallery-branch-dir-btn:hover svg{
  color: #15130F;
}

/* Light theme for gallery branch header */
[data-theme="light"] .gallery-branch-item{
  background: #FFFFFF;
  border-color: rgba(28, 25, 20, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .gallery-branch-badge{
  color: #8A6014;
  background: #FDF5E2;
  border-color: rgba(168, 121, 34, 0.3);
}
[data-theme="light"] .gallery-branch-content strong{
  color: #14120E;
}
[data-theme="light"] .gallery-branch-content span{
  color: #696152;
}
[data-theme="light"] .gallery-branch-dir-btn{
  background: rgba(168, 121, 34, 0.1);
  border-color: rgba(168, 121, 34, 0.35);
  color: #14120E;
}
[data-theme="light"] .gallery-branch-dir-btn svg{
  color: #8A6014;
}
[data-theme="light"] .gallery-branch-dir-btn:hover{
  background: #A87922;
  border-color: #A87922;
  color: #FFFFFF;
}
[data-theme="light"] .gallery-branch-dir-btn:hover svg{
  color: #FFFFFF;
}
.brands-marquee-wrap{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0 44px;
}
/* Gradient edge masks for smooth fade in/out */
.brands-marquee-wrap::before,
.brands-marquee-wrap::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.brands-marquee-wrap::before{
  left: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 100%);
}
.brands-marquee-wrap::after{
  right: 0;
  background: linear-gradient(to left, var(--ink) 0%, transparent 100%);
}
.brands-marquee{
  overflow: hidden;
  width: 100%;
}
.brands-track{
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
/* Row 1 auto-scrolls left to right */
.brands-track--row1{
  animation: brandsScrollRight 34s linear infinite;
}
/* Row 2 auto-scrolls right to left */
.brands-track--row2{
  animation: brandsScrollLeft 36s linear infinite;
}
.brands-marquee:hover .brands-track{
  animation-play-state: paused;
}

/* Left to Right */
@keyframes brandsScrollRight{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}

/* Right to Left */
@keyframes brandsScrollLeft{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Individual Brand Card */
.brand-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 230px;
  text-decoration: none;
  color: var(--ivory);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  user-select: none;
  cursor: default;
}
.brand-card:hover{
  border-color: var(--brass);
  background: var(--panel-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
[data-theme="light"] .brand-card:hover{
  box-shadow: 0 10px 24px rgba(158, 122, 44, 0.15);
}
/* Brand Logo Container */
.brand-card__logo-frame{
  height: 38px;
  min-width: 60px;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 4px;
}
.brand-card__logo-img{
  max-height: 30px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform .3s var(--ease), filter .3s var(--ease);
  display: block;
}
.brand-card:hover .brand-card__logo-img{
  transform: scale(1.06);
}

/* U.S. Polo Assn. specific sizing */
.brand-card__logo-img--uspolo{
  max-height: 34px;
  max-width: 110px;
}

/* Preserve original brand colors (like Levi's red batwing, Diesel red box, Tommy Hilfiger flag) */
.brand-card__logo-img--keep-color{
  filter: none !important;
}

/* Lacoste crocodile */
.brand-card__logo-img--lacoste{
  filter: brightness(0) invert(1);
}

/* Light mode support: show original dark/navy/black graphics */
[data-theme="light"] .brand-card__logo-img{
  filter: none !important;
}

/* Brand Card Meta (Text & Tag) */
.brand-card__meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-card__name{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ivory);
  line-height: 1.2;
}
.brand-card__tag{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--olive);
  letter-spacing: 0.04em;
}

/* Brands Trust Badges Strip */
.brands-badges{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.brands-badge-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--olive);
  letter-spacing: 0.03em;
}
.brands-badge-item svg{
  color: var(--brass);
  flex-shrink: 0;
}
.badge-dot{
  color: var(--brass);
  font-size: 12px;
}

/* =============== videos section =============== */
.videos-section{ background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.videos-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.video-card{
  background: #0D0C0A;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.video-card:hover{
  transform: translateY(-8px);
  border-color: var(--brass);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55), 0 0 20px rgba(193, 154, 73, 0.2);
}
.video-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0b0907;
  overflow: hidden;
}
.video-card__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.video-card:hover .video-card__media video{
  transform: scale(1.05);
}

/* Floating Top Pill Badge */
.video-pill{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 13, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.video-pill__dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}



.video-card__mute{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 13, 10, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.video-card__mute:hover{
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.08);
}

/* Floating Bottom Gradient Info Bar (Integrated Inside the Reel) */
.video-card__floating-info{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px 14px 12px;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.88) 0%, rgba(10, 8, 6, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.video-card__category{
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
.video-card__floating-info h3{
  font-family: var(--display);
  font-size: 0.98rem;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.video-card__action-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: nowrap;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}
.video-card__watch-pill{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 9px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.video-card__watch-pill svg{
  color: var(--brass);
  flex-shrink: 0;
}
.video-card__inquire-hint{
  font-family: var(--mono);
  font-size: 9px;
  color: var(--brass);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.video-card:hover .video-card__inquire-hint{
  transform: translateX(3px);
}

/* =============== social section =============== */
.social-section{ background: var(--ink); border-bottom: 1px solid var(--line); }
.social-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  text-decoration: none;
}
.social-card:hover{
  transform: translateY(-5px);
  border-color: var(--brass);
  background: var(--panel-2);
}
.social-card__header{ display: flex; align-items: center; justify-content: space-between; }
.social-card__icon{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243,238,228,0.05);
  color: var(--brass);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease);
}
.social-card:hover .social-card__icon{ transform: scale(1.1); }
.social-card__icon--instagram{ color: #E1306C; border-color: rgba(225,48,108,0.25); background: rgba(225,48,108,0.08); }
.social-card__icon--whatsapp{ color: #25D366; border-color: rgba(37,211,102,0.25); background: rgba(37,211,102,0.08); }
.social-card__icon--google{ color: #4285F4; border-color: rgba(66,133,244,0.25); background: rgba(66,133,244,0.08); }
.social-card__icon--facebook{ color: #1877F2; border-color: rgba(24,119,242,0.25); background: rgba(24,119,242,0.08); }

.social-card__tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
}
.social-card__body h3{ font-size: 1.1rem; margin-bottom: 6px; color: var(--ivory); }
.social-card__body p{ font-size: 13.5px; color: var(--olive); line-height: 1.5; }
.social-card__footer{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--brass);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: color .3s var(--ease);
}
.social-card:hover .social-card__footer{ color: var(--ivory); }

/* =============== footer social icons =============== */
.footer-social-icons{ display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-social-icons a{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--olive);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer-social-icons a:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

/* =============== video modal lightbox =============== */
.video-modal{
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.video-modal.is-active{ opacity: 1; visibility: visible; }
.video-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(15,13,10,0.92);
  backdrop-filter: blur(12px);
}
.video-modal__content{
  position: relative; z-index: 1;
  width: 100%; max-width: 900px;
  max-height: 90vh;
  background: var(--ink);
  border: 1px solid var(--brass);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8);
  transform: scale(0.94);
  transition: transform .4s var(--ease);
}
.video-modal.is-active .video-modal__content{ transform: scale(1); }
.video-modal__close{
  position: absolute; top: 14px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(21,19,15,0.8); border: 1px solid var(--line);
  color: var(--ivory); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.video-modal__close:hover{ border-color: var(--brass); color: var(--brass); transform: rotate(90deg); }
.video-modal__player-wrap{
  width: 100%; background: #000;
  display: flex; justify-content: center; align-items: center;
  max-height: 70vh;
}
.video-modal__player-wrap video{ width: 100%; max-height: 70vh; object-fit: contain; }
.video-modal__caption{ padding: 20px 24px; background: var(--panel); border-top: 1px solid var(--line); }
.video-modal__caption h4{ font-size: 1.2rem; color: var(--ivory); margin-bottom: 4px; }
.video-modal__caption p{ font-size: 14px; color: var(--olive); }

/* =============== whatsapp fab (theme-aligned luxury) =============== */
.whatsapp-fab{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(21, 19, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 154, 73, 0.45);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-fab:hover{
  transform: translateY(-4px) scale(1.05);
  background: var(--brass);
  color: #15130F;
  border-color: var(--brass);
  box-shadow: 0 14px 32px rgba(193, 154, 73, 0.38);
}
.whatsapp-fab svg{
  width: 23px;
  height: 23px;
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover svg{
  transform: scale(1.06);
}
[data-theme="light"] .whatsapp-fab{
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(158, 122, 44, 0.35);
  color: var(--brass-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .whatsapp-fab:hover{
  background: var(--brass-deep);
  color: #FFFFFF;
  border-color: var(--brass-deep);
  box-shadow: 0 14px 32px rgba(158, 122, 44, 0.3);
}

/* =============== back to top button =============== */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 400;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(21, 19, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 154, 73, 0.45);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover{
  background: var(--brass);
  color: #15130F;
  border-color: var(--brass);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(193, 154, 73, 0.38);
}
.back-to-top svg{
  transition: transform .3s var(--ease);
}
.back-to-top:hover svg{
  transform: translateY(-2px);
}
[data-theme="light"] .back-to-top{
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(158, 122, 44, 0.35);
  color: var(--brass-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .back-to-top:hover{
  background: var(--brass-deep);
  color: #FFFFFF;
  border-color: var(--brass-deep);
  box-shadow: 0 14px 32px rgba(158, 122, 44, 0.3);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px){
  .videos-grid{ grid-template-columns: repeat(2, 1fr); }
  .video-card--featured{ grid-column: span 2; }
  .social-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .story__grid{ grid-template-columns: 1fr; gap: 40px; }
  .story__media{ order:-1; max-width:380px; margin:0 auto; }
  .story__highlights{ grid-template-columns: repeat(2, 1fr); }
  .visit__grid{ grid-template-columns: 1fr; gap: 48px; }
  .footer__inner{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .reviews__track{ grid-template-columns: repeat(2,1fr); }
  .grid--4{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px){
  section{ padding: 76px 0; }
  .wrap{ padding: 0 18px; }

  .site-header{ padding: 14px 0; }
  .site-header.is-scrolled{ padding: 10px 0; }

  .nav{
    position: fixed;
    inset: 58px 0 0 0;
    height: calc(100svh - 58px);
    background: #15130F;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 18px 36px;
    z-index: 500;
    overflow-y: auto;
  }
  [data-theme="light"] .nav{
    background: #FAF4E9;
  }
  .nav.is-open{ transform: none; }

  /* Drawer Top Header */
  .nav-drawer-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer-tag{
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 700;
  }
  .nav-drawer-status{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--olive);
  }

  /* Navigation Links Group */
  .nav-links-wrap{
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }
  .nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(243, 238, 228, 0.03);
    border: 1px solid var(--line);
    border-radius: 8px;
    text-decoration: none;
    transition: all .25s var(--ease);
    width: 100%;
  }
  [data-theme="light"] .nav-item{
    background: #FFFFFF;
    border-color: rgba(28, 25, 20, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  }
  .nav-item::after{ display: none; }
  .nav-item:hover, .nav-item:active{
    border-color: var(--brass);
    background: rgba(193, 154, 73, 0.1);
    transform: translateX(4px);
  }
  .nav-item__num{
    display: inline-block;
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--brass);
    background: rgba(193, 154, 73, 0.12);
    padding: 2px 5px;
    border-radius: 4px;
    min-width: 20px;
    text-align: center;
  }
  .nav-item__text{
    font-size: 14px;
    font-weight: 600;
    color: var(--ivory);
    flex: 1;
    text-align: left;
  }
  [data-theme="light"] .nav-item__text{
    color: #1C1914;
  }
  .nav-item__sub{
    display: inline-block;
    font-size: 10px;
    color: var(--olive);
    font-family: var(--mono);
    margin-right: 2px;
  }
  .nav-item__arrow{
    display: inline-block;
    color: var(--brass);
    transition: transform .25s var(--ease);
  }
  .nav-item:hover .nav-item__arrow{
    transform: translateX(3px);
  }

  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }

  /* Drawer Mobile CTA Area */
  .nav-mobile-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 16px 0 32px;
    border-top: 1px solid var(--line);
    width: 100%;
  }
  .nav-cta-actions{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 320px;
  }
  .nav-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 12px;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 550;
    text-transform: none;
    letter-spacing: 0.01em;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all .25s var(--ease);
  }
  .nav-cta-btn svg{
    width: 15px;
    height: 15px;
    flex-shrink: 0;
  }
  .nav-cta-btn.btn--solid{
    background: var(--brass);
    color: #15130F;
    border: 1px solid var(--brass);
    box-shadow: 0 4px 14px rgba(193, 154, 73, 0.25);
  }
  .nav-cta-btn.btn--solid svg{
    color: #15130F;
  }
  [data-theme="light"] .nav-cta-btn.btn--solid{
    background: linear-gradient(135deg, #F0DFB8 0%, #DFCA95 100%);
    color: #242018;
    border: 1px solid rgba(193, 154, 73, 0.4);
    box-shadow: 0 3px 10px rgba(193, 154, 73, 0.18);
  }
  [data-theme="light"] .nav-cta-btn.btn--solid svg{
    color: #242018;
  }
  .nav-cta-btn.btn--ghost{
    background: rgba(243, 238, 228, 0.05);
    border: 1px solid rgba(193, 154, 73, 0.45);
    color: var(--brass);
  }
  .nav-cta-btn.btn--ghost svg{
    color: var(--brass);
  }
  [data-theme="light"] .nav-cta-btn.btn--ghost{
    background: #FFFFFF;
    border: 1px solid rgba(28, 25, 20, 0.12);
    color: #242018;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  [data-theme="light"] .nav-cta-btn.btn--ghost svg{
    color: #25D366;
  }
  .nav-cta-btn:hover{
    transform: translateY(-2px);
  }

  .mobile-social-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
  }
  .mobile-social-row a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(193, 154, 73, 0.35);
    background: rgba(243, 238, 228, 0.05);
    color: var(--brass);
    transition: all .25s var(--ease);
  }
  .mobile-social-row a svg{
    width: 18px;
    height: 18px;
  }
  [data-theme="light"] .mobile-social-row a{
    background: #FFFFFF;
    border: 1px solid rgba(158, 122, 44, 0.35);
    color: var(--brass-deep);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .mobile-social-row a:hover{
    border-color: var(--brass);
    background: var(--brass);
    color: #15130F;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(193, 154, 73, 0.3);
  }
  [data-theme="light"] .mobile-social-row a:hover{
    background: var(--brass-deep);
    color: #FFFFFF;
    border-color: var(--brass-deep);
  }

  .hero{ min-height: auto; padding-top: 96px; padding-bottom: 40px; }
  .hero__top-pill{ font-size: 10px; padding: 5px 14px; gap: 8px; margin-bottom: 14px; }
  .hero__wordmark{ font-size: clamp(2rem, 9.5vw, 3.4rem); margin: 10px 0 16px; gap: 0.18em; }
  .hero__service-bar{ gap: 10px; padding: 8px 14px; margin-bottom: 18px; }
  .hero__service-item{ font-size: 11px; gap: 5px; }
  .hero__service-sep{ height: 12px; }
  .hero__tagline{ font-size: 1.05rem; margin-bottom: 20px; }
  .hero__branches-strip{ grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .hero__actions{ flex-direction:column; width:100%; gap: 12px; margin-bottom: 26px; }
  .hero__actions .btn{ justify-content:center; width: 100%; }
  .hero__trust-strip{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 10px; padding: 14px 8px 0; }
  .trust-divider{ display: none; }

  .cat-filters{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    margin-bottom: 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-filters::-webkit-scrollbar{ display: none; }
  .cat-filter-btn{
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 14px;
    font-size: 12px;
  }

  .collections-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .videos-grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .video-card__media{ aspect-ratio: 9 / 16; }
  .video-card__mute{ width: 30px; height: 30px; top: 10px; right: 10px; }
  .video-card__mute svg{ width: 14px; height: 14px; }

  .social-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .social-card{
    padding: 18px 12px;
    gap: 14px;
    border-radius: 6px;
  }
  .social-card__icon{
    width: 38px; height: 38px;
  }
  .social-card__icon svg{
    width: 20px; height: 20px;
  }
  .social-card__tag{
    font-size: 10px;
  }
  .social-card__body h3{
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .social-card__body p{
    font-size: 11.5px;
    line-height: 1.35;
  }
  .social-card__footer{
    padding-top: 10px;
    font-size: 11px;
  }

  .reviews-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .google-trust-badge{
    width: 100%;
    justify-content: flex-start;
  }
  .reviews__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .review-card{
    padding: 20px 18px;
    border-radius: 14px;
    gap: 14px;
  }
  .review-card__quote{
    font-size: 13.5px;
    line-height: 1.5;
  }
  .review-author-avatar{
    width: 34px;
    height: 34px;
    font-size: 13.5px;
  }
  .review-author-name strong{
    font-size: 12.5px;
  }
  .review-author-tag{
    font-size: 10px;
  }

  .collections-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mens-specialty-grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cat-card__body{ padding: 20px 18px; }
  .cat-card__header h3{ font-size: 1.2rem; }

  .story__cta-group{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 22px;
  }
  .story__cta-btn{
    width: 100%;
    max-width: 290px;
    justify-content: center;
    text-align: center;
  }
  .story__cta-link{
    justify-content: center;
    text-align: center;
  }

  .story__stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .stat{ display: flex; flex-direction: column; align-items: center; text-align: center; }
  .stat__num{ font-size: 1.7rem; line-height: 1.1; }
  .stat__label{ font-size: 10.5px; letter-spacing: 0; line-height: 1.2; margin-top: 4px; text-align: center; }

  .visit__grid{ gap: 36px; }
  .visit__copy{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .visit__copy .eyebrow{ text-align: center; }
  .visit__copy h2{ text-align: center; margin-bottom: 24px; }
  .info-block{
    margin-bottom: 20px;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
  .info-block h4{ text-align: center; margin-bottom: 6px; }
  .info-block p{ text-align: center; }
  .hours{
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .visit__actions{
    justify-content: center;
    width: 100%;
    max-width: 360px;
    gap: 12px;
    margin: 8px auto 0;
  }
  .visit__actions .btn{
    flex: 1;
    justify-content: center;
    text-align: center;
  }
  .visit__map iframe{ height: 320px; }

  .site-footer{ padding-top: 56px; }
  .footer__inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
    padding-bottom: 36px;
    max-width: 360px;
    margin: 0 auto;
  }
  .footer__brand{
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand p{
    text-align: center;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.55;
  }
  .footer-branches{
    align-items: center;
    text-align: center;
    margin: 12px 0 14px;
  }
  .footer-branch__name{
    justify-content: center;
  }
  .footer-branch__addr{
    padding-left: 0;
    text-align: center;
    max-width: 300px;
  }
  .footer-social-icons{
    justify-content: center;
    margin-top: 14px;
  }
  .footer__col{
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .footer__col h5{
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    padding-bottom: 6px;
    width: 100%;
  }
  .footer__col h5::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: var(--brass);
    opacity: 0.45;
  }
  .footer__col a, .footer__col p{
    font-size: 13px;
    text-align: center;
  }
  .footer__col--hours{
    grid-column: span 2;
    text-align: center;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 4px;
    width: 100%;
  }
  .footer__col--hours h5::after{
    display: none;
  }
  .footer-hours-list{
    width: 100%;
    max-width: 320px;
  }
  .footer__bottom{
    text-align: center;
    padding: 18px 0;
  }
  .footer__bottom p{
    text-align: center;
  }

  .whatsapp-fab{ width: 48px; height: 48px; right: 16px; bottom: 16px; }
  .whatsapp-fab svg{ width: 22px; height: 22px; }

  .video-modal{ padding: 8px; }
  .video-modal__content{ max-height: 94vh; border-radius: 6px; }
  .video-modal__player-wrap{ max-height: 58vh; }
  .video-modal__close{ width: 44px; height: 44px; font-size: 24px; top: 10px; right: 10px; }
}

@media (max-width: 480px){
  section{ padding: 48px 0; }
  .wrap{ padding: 0 12px; }
  .brand-mark{ font-size: 19px; }
  .theme-toggle{ width: 34px; height: 34px; }

  /* 2 Cards Per Row Collections Grid on Mobile */
  .collections-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card{
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: var(--ink);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .cat-card__media{
    aspect-ratio: 4 / 4.5;
  }
  .cat-slider-dots{
    bottom: 6px;
    padding: 2px 5px;
    gap: 3px;
  }
  .cat-slider-dots .dot{
    width: 4px;
    height: 4px;
  }
  .cat-slider-dots .dot.is-active{
    width: 10px;
    border-radius: 3px;
  }
  .cat-card__overlay{
    padding: 8px 8px;
  }
  .cat-card__num{
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 3px;
  }
  .cat-card__badge{
    font-size: 7.5px;
    padding: 2px 5px;
    letter-spacing: 0;
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cat-card__body{
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .cat-card__header{
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 4px;
  }
  .cat-card__header h3{
    font-size: 0.94rem;
    line-height: 1.2;
    margin: 0;
  }
  .cat-card__count{
    font-size: 8.5px;
    color: var(--brass);
  }
  .cat-card__body p{
    font-size: 10.5px;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cat-card__tags{
    gap: 3px;
    margin-bottom: 8px;
  }
  .cat-card__tags span{
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 3px;
  }
  .cat-card__cta{
    margin-top: auto;
    padding-top: 6px;
    font-size: 9.5px;
    gap: 3px;
  }
  .cat-card__cta svg{
    width: 10px;
    height: 10px;
  }

  /* 2 Reels Per Row Video Showcase on Mobile */
  .videos-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-card{
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--ink);
  }
  .video-card__media{ aspect-ratio: 9 / 16; }
  .video-card__mute{ width: 28px; height: 28px; top: 8px; right: 8px; }
  .video-card__mute svg{ width: 12px; height: 12px; }
  .video-pill{ top: 8px; left: 8px; font-size: 8.5px; padding: 3px 8px; }
  .video-card__floating-info{ padding: 24px 10px 10px; }
  .video-card__floating-info h3{ font-size: 0.86rem; }
  .video-card__category{ font-size: 8px; }
  .video-card__watch-pill{ font-size: 8.5px; padding: 2px 6px; white-space: nowrap; flex-shrink: 0; }
  .video-card__inquire-hint{ font-size: 8.5px; white-space: nowrap; flex-shrink: 0; }

  /* Men's Specialty in 2x2 Grid on Mobile */
  .mens-specialty-strip{
    padding: 20px 12px;
    border-radius: 12px;
    margin-top: 36px;
  }
  .mens-specialty-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .mens-specialty-head h3{
    font-size: 1.15rem;
    line-height: 1.25;
  }
  .mens-specialty-tag{
    font-size: 8px;
    padding: 2px 7px;
  }
  .mens-specialty-head .section-desc{
    font-size: 11px;
    line-height: 1.4;
  }
  .mens-specialty-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .mens-specialty-item{
    background: rgba(243, 238, 228, 0.03);
    border: 1px solid var(--line);
    padding: 10px 8px;
    border-radius: 8px;
    gap: 5px;
  }
  [data-theme="light"] .mens-specialty-item{
    background: rgba(28, 25, 20, 0.03);
    border-color: rgba(28, 25, 20, 0.08);
  }
  .mens-specialty-item__icon{
    width: 28px;
    height: 28px;
    border-radius: 6px;
    margin-bottom: 2px;
  }
  .mens-specialty-item__icon svg{
    width: 14px;
    height: 14px;
  }
  .mens-specialty-item h4{
    font-size: 11.5px;
    line-height: 1.25;
  }
  .mens-specialty-item p{
    font-size: 10px;
    line-height: 1.35;
  }

  .social-grid{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .social-card{ padding: 12px 8px; gap: 8px; }
  .social-card__body h3{ font-size: 0.85rem; }
  .social-card__body p{ font-size: 10px; }

  /* Reviews on Mobile 480px */
  .reviews-header{
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 14px;
  }
  .google-trust-badge{
    padding: 10px 14px;
    gap: 10px;
    width: 100%;
  }
  .google-trust-badge__icon{
    width: 32px;
    height: 32px;
  }
  .google-trust-badge__icon svg{
    width: 20px;
    height: 20px;
  }
  .google-stars-row .rating-num{
    font-size: 15px;
  }
  .google-stars-row .gold-stars{
    font-size: 12px;
  }
  .google-trust-badge__content .review-count{
    font-size: 10px;
  }
  .reviews__grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-card{
    padding: 18px 16px;
    gap: 12px;
    border-radius: 12px;
  }
  .review-card__quote-mark{
    font-size: 28px;
  }
  .review-card__quote{
    font-size: 13px;
    line-height: 1.45;
  }
  .review-card__footer{
    padding-top: 14px;
  }
  .review-author-avatar{
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .review-author-name strong{
    font-size: 12px;
  }
  .review-author-tag{
    font-size: 9.5px;
  }

  .hero__wordmark{ font-size: clamp(1.8rem, 9.5vw, 3.2rem); }
  .section-head h2{ font-size: 1.4rem; }

  .story__media{ max-width: 100%; }
  .story__highlights{ grid-template-columns: 1fr; gap: 8px; }
  .story__floating-pill{ top: 10px; right: 10px; font-size: 9px; padding: 4px 8px; }
  .story__cta-group{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
  }
  .story__cta-btn{
    width: 100%;
    max-width: 270px;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    padding: 11px 18px;
  }
  .story__cta-link{
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }
  .story__stats{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: center;
  }
  .stat__num{ font-size: 1.4rem; }
  .stat__label{ font-size: 9px; }

  /* Visit Store Centered Mobile */
  .visit__copy{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .visit__copy .eyebrow{ text-align: center; }
  .visit__copy h2{ text-align: center; margin-bottom: 20px; font-size: 1.45rem; }
  .info-block{
    margin-bottom: 18px;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .info-block h4{ text-align: center; margin-bottom: 4px; font-size: 11px; }
  .info-block p{ text-align: center; font-size: 13px; line-height: 1.45; }
  .hours{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid var(--line);
    background: rgba(243, 238, 228, 0.03);
    border-radius: 8px;
    padding: 4px 10px;
  }
  [data-theme="light"] .hours{
    background: rgba(28, 25, 20, 0.03);
    border-color: rgba(28, 25, 20, 0.08);
  }
  .hours tr:last-child td{ border-bottom: none; }
  .hours td{ font-size: 12px; padding: 7px 4px; text-align: left; }
  .hours td:last-child{ text-align: right; font-size: 11px; }
  .visit__actions{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    gap: 10px;
    margin: 8px auto 0;
  }
  .visit__actions .btn{
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    padding: 11px 18px;
  }
  .visit__map iframe{ height: 250px; border-radius: 10px; }

  .brands-section{ padding: 48px 0; }
  .brands-marquee-wrap{ margin: 18px 0 24px; gap: 8px; }
  .brands-marquee-wrap::before, .brands-marquee-wrap::after{ width: 30px; }
  .brand-card{ min-width: 160px; padding: 8px 10px; gap: 8px; }
  .brand-card__logo-frame{ height: 26px; min-width: 42px; max-width: 70px; }
  .brand-card__logo-img{ max-height: 20px; }
  .brand-card__name{ font-size: 12px; }
  .brand-card__tag{ font-size: 9px; }
  .brands-badges{ gap: 8px; }
  .brands-badge-item{ font-size: 10px; }

  .whatsapp-fab{ width: 44px; height: 44px; right: 14px; bottom: 16px; }
  .whatsapp-fab svg{ width: 21px; height: 21px; }
  .back-to-top{ width: 44px; height: 44px; right: 14px; bottom: 68px; }
  .back-to-top svg{ width: 18px; height: 18px; }
}
