/* ========== Section Base ========== */
section { padding: 120px 0; }
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 72px;
}
h2.display {
  font-size: clamp(40px, 5.4vw, 84px);
  margin: 16px 0 0;
  text-transform: uppercase;
}
h2.display .acid { color: var(--acid); }
.sec-head p { color: var(--ink-soft); font-size: 18px; max-width: 800px; margin: 0; }

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #141A1F;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/wp-content/uploads/New-Hero-Southern.svg');
  background-size: cover;
  background-position: 50% 35%;
  filter: contrast(1.05) saturate(1) brightness(1);
}
.hero-bg::after {
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 65% at 50% 50%, rgba(27,33,38,0.25) 0%, rgba(27,33,38,0.92) 75%),
    linear-gradient(180deg, rgba(27,33,38,0.5) 0%, rgba(27,33,38,0.0) 30%, rgba(27,33,38,0.95) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,255,61,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,255,61,0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 30px;
  min-height: calc(100vh - 140px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hero-content { max-width: 760px; }
.hero .display-head {
  font-family: 'Staatliches', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 150px);
  line-height: 0.9;
  margin: 24px 0 26px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.hero .display-head .acid { color: var(--acid); }
.hero .display-head .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero .lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tag {
  position: absolute;
  right: 32px;
  top: 60%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center right;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.4em;
  font-size: 16px;
  color: var(--ink-mute);
  z-index: 3;
}
.hero-tag::after { content: ""; display: inline-block; width: 60px; height: 1px; background: var(--ink-mute); vertical-align: middle; margin-left: 18px; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  color: var(--ink-mute);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.hero-scroll:hover { color: var(--acid); }
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, currentColor 20%, currentColor 80%, transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--acid), transparent);
  animation: scrollSlide 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.hero-scroll:hover svg { transform: translateY(4px); }
@keyframes scrollSlide {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== Hero Stats ========== */
.hero-stat-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(182,190,200,0.08), rgba(182,190,200,0)), rgba(27,33,38,0.9);
  backdrop-filter: blur(8px);
}
.hero-stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line-strong);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: 'Staatliches'; font-size: 64px; line-height: 1; color: var(--acid); display: inline-flex; align-items: flex-start; }
.stat-item .num small { align-self: flex-start; line-height: 1; }
.stat-item .label { font-family: 'Oswald'; text-transform: uppercase; font-size: 18px; letter-spacing: 0.14em; color: var(--ink-soft); line-height: 1.2; }

/* ========== Quick Contact Bar ========== */
.quick-bar {
  background: linear-gradient(180deg, rgba(182,190,200,0.08), rgba(182,190,200,0) 80%), linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.quick-bar::before, .quick-bar::after {
  content:""; position: absolute; left: 0; right: 0; height: 3px;
  background-image: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.4;
}
.quick-bar::before { top: 0; }
.quick-bar::after { bottom: 0; }
.quick-bar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.qb-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 16px;
  align-items: center;
}
.qb-cell:last-child { border-right: none; }
.qb-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--acid);
  flex-shrink: 0;
}
.qb-icon svg { width: 18px; height: 18px; }
.qb-text .k { font-family: 'Oswald'; text-transform: uppercase; font-size: 16px; letter-spacing: 0.14em; color: var(--ink-mute); }
.qb-text .v { font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.qb-text .v a:hover { color: var(--acid); }

/* ========== Intro Block ========== */
.intro {
  background: linear-gradient(180deg, rgba(182,190,200,0.05), rgba(182,190,200,0) 40%), var(--bg-1);
  position: relative;
  overflow: hidden;
}
.intro::before {
  content:"";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--acid-glow), transparent 60%);
  pointer-events: none;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-img {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  border: 1px solid var(--line);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.05); }
.intro-img::after {
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196,255,61,0.0) 60%, rgba(196,255,61,0.18) 100%),
    linear-gradient(0deg, rgba(27,33,38,0.45), transparent 40%);
}
.intro-img .frame-label {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: 'Oswald';
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 16px;
  color: var(--ink);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro-img .frame-label::before { content:""; width: 28px; height: 1px; background: var(--acid); }
.intro p { font-size: 18px; color: var(--ink-soft); margin: 28px 0; }
.intro .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 30px 0 36px; }
.intro .checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 17px; font-weight: 500; }
.intro .checklist svg { width: 18px; height: 18px; color: var(--acid); flex-shrink: 0; margin-top: 3px; }
.intro ul { list-style: none; padding: 0; margin: 0; }

/* ========== Shop Categories ========== */
.shop {
  background: var(--bg-0);
  position: relative;
}
.shop::before {
  content:"";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(31,63,51,0.2), transparent 50%);
  pointer-events: none;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}
.cat-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition: 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--silver);
  box-shadow: 0 14px 40px -18px rgba(0,0,0,0.5), 0 0 0 1px rgba(182,190,200,0.15);
}
.cat-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  transition: 0.6s var(--ease);
}
.cat-card:hover .cat-bg { transform: scale(1.05); }
.cat-card::before {
  content:"";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(27,33,38,0.2) 0%, rgba(27,33,38,0.55) 50%, rgba(27,33,38,0.95) 100%);
}
.cat-content {
  position: relative; z-index: 2;
  padding: 36px 32px;
}
.cat-num {
  font-family: 'Oswald'; font-size: 16px; letter-spacing: 0.2em; color: var(--acid);
  margin-bottom: 12px;
}
.cat-title {
  font-family: 'Staatliches';
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cat-desc { color: var(--ink-soft); font-size: 17px; margin-bottom: 22px; }
.cat-link {
  font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 0.16em; font-size: 16px;
  display: inline-flex; gap: 10px; align-items: center; color: var(--acid);
}
.cat-link svg { width: 14px; height: 14px; transition: 0.2s var(--ease); }
.cat-card:hover .cat-link svg { transform: translateX(6px); }

/* ========== Featured Products ========== */
.featured {
  background: linear-gradient(180deg, rgba(182,190,200,0.06), rgba(182,190,200,0) 60%), linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  transition: 0.3s var(--ease);
  position: relative;
}
.prod:hover {
  border-color: var(--silver);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px -18px rgba(0,0,0,0.5), 0 0 0 1px rgba(182,190,200,0.15);
}
.prod-img {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(196,255,61,0.08), transparent 65%),
    linear-gradient(180deg, var(--bg-3), var(--bg-1));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.prod-img svg.bow { width: 72%; height: auto; color: var(--ink-mute); transition: 0.4s var(--ease); }
.prod:hover .prod-img svg.bow { color: var(--acid); transform: rotate(-3deg) scale(1.05); }
.prod-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--acid);
  color: #0A0D0E;
  padding: 4px 10px;
  font-family: 'Oswald';
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.prod-tag.alt { background: transparent; color: var(--ink-soft); border: 1px solid var(--line-strong); }
.prod-body { padding: 22px 22px 26px; }
.prod-brand { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 0.18em; font-size: 16px; color: var(--ink-mute); }
.prod-name { font-family: 'Oswald'; font-size: 22px; font-weight: 600; text-transform: uppercase; margin: 6px 0 8px; letter-spacing: 0.04em; }
.prod-spec { font-size: 17px; color: var(--ink-soft); display: flex; gap: 14px; flex-wrap: wrap; }
.prod-spec span { display: inline-flex; gap: 6px; align-items: center; }
.prod-spec strong { color: var(--ink); font-weight: 600; }

/* ========== Brands ========== */
.brands {
  background: linear-gradient(180deg, rgba(182,190,200,0.04), rgba(182,190,200,0) 50%), var(--bg-0);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 80px 0;
}
.brands-head { text-align: center; margin-bottom: 48px; }
.brands-head .eyebrow { justify-content: center; display: inline-flex; }
.brands-head h3 {
  font-family: 'Staatliches';
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  margin: 14px 0 12px;
  line-height: 1;
}
.brands-head p { color: var(--ink-soft); font-size: 18px; max-width: 640px; margin: 0 auto; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: transparent !important;
  border: none !important;
}
.brand-cell {
  background: var(--bg-2);
  aspect-ratio: 2/1;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s var(--ease);
  position: relative;
  padding: 24px;
}
.brand-cell img {
  max-width: 88%;
  max-height: 72%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: 0.3s var(--ease);
}
.brand-cell:hover { background: var(--bg-3); }
.brand-cell:hover img { transform: scale(1.04); }

/* ========== About ========== */
.about {
  position: relative;
  background: var(--bg-1);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  overflow: hidden;
}
.about::before {
  content:"";
  position: absolute;
  inset: 0;
  background-image: url('images/about-texture.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  pointer-events: none;
}
.about::after {
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,33,38,0.35) 0%, rgba(27,33,38,0.15) 40%, rgba(27,33,38,0.45) 100%);
  pointer-events: none;
}
.about > .wrap { position: relative; z-index: 1; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  align-items: center;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--acid);
  color: #0A0D0E;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Staatliches';
  text-transform: uppercase;
  line-height: 0.95;
  text-align: center;
  box-shadow: 0 12px 40px rgba(196,255,61,0.25);
  transform: rotate(-6deg);
  border: 4px solid var(--bg-1);
}
.about-badge .big { font-size: 64px; }
.about-badge .small { font-size: 18px; letter-spacing: 0.16em; margin-top: 4px; font-family: 'Oswald'; }
.about-content h2 { margin-bottom: 28px; }
.about-content p { font-size: 18px; color: var(--ink-soft); margin: 0 0 22px; }
.about-content .signature {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; gap: 16px; align-items: center;
}
.about-content .signature .name { font-family: 'Staatliches'; font-size: 28px; text-transform: uppercase; line-height: 1; }
.about-content .signature .title { font-family: 'Oswald'; font-size: 16px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); margin-top: 4px; }

/* ========== Map / Visit ========== */
.visit {
  background: var(--bg-0);
  padding: 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 560px;
}
.visit-info {
  background: linear-gradient(180deg, rgba(182,190,200,0.1), rgba(182,190,200,0) 50%), linear-gradient(180deg, var(--moss), #1F3A30);
  color: var(--ink);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visit-info::after {
  content:"";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--acid-glow), transparent 70%);
  pointer-events: none;
}
.visit-info h2 { color: var(--ink); margin-bottom: 32px; }
.visit-info .row {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243,244,239,0.15);
}
.visit-info .row:last-of-type { border-bottom: none; }
.visit-info .row .ico { width: 38px; height: 38px; border-radius: 50%; background: rgba(196,255,61,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--acid); }
.visit-info .row .ico svg { width: 16px; height: 16px; }
.visit-info .row .k { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-soft); font-size: 16px; }
.visit-info .row .v { font-size: 18px; font-weight: 500; margin-top: 4px; }
.visit-info .row .v.small { font-size: 17px; font-weight: 400; color: var(--ink-soft); }
.visit-map { position: relative; min-height: 480px; }
.visit-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(0.98); }

/* ========== Testimonials ========== */
.reviews {
  background: linear-gradient(180deg, rgba(182,190,200,0.05), rgba(182,190,200,0) 60%), var(--bg-1);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content:"";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.5;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-strong);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.3s var(--ease);
}
.review-card:hover { border-color: var(--acid); transform: translateY(-4px); }
.review-card.feat { background: linear-gradient(180deg, var(--moss) 0%, var(--bg-2) 80%); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; color: var(--acid); }
.quote-mark {
  font-family: 'Staatliches'; font-size: 80px; line-height: 0.6; color: var(--acid); opacity: 0.4;
  margin-bottom: -10px;
}
.review-text { font-size: 17px; line-height: 1.65; color: var(--ink-soft); flex-grow: 1; margin: 0 0 24px; }
.review-by {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex; align-items: center; gap: 12px;
}
.review-card.feat .review-by { border-top-color: rgba(243,244,239,0.15); }
.review-by .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Staatliches'; font-size: 20px; color: var(--acid);
  border: 1px solid var(--line-strong);
}
.review-by .nm { font-family: 'Oswald'; text-transform: uppercase; font-size: 17px; letter-spacing: 0.1em; font-weight: 600; }
.review-by .src { font-size: 16px; color: var(--ink-mute); }

/* ========== Social / Connect ========== */
.connect {
  background: var(--bg-0);
  position: relative;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.fb-embed-wrap, .ig-feed {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.fb-embed-wrap h3, .ig-feed h3 {
  font-family: 'Staatliches';
  font-size: 32px;
  text-transform: uppercase;
  margin: 0 0 8px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.fb-embed-wrap p, .ig-feed p { color: var(--ink-soft); margin: 0 0 20px; font-size: 17px; }
.fb-frame {
  flex-grow: 1;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.fb-frame iframe { width: 100%; height: 100%; border: 0; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-grow: 1;
}
.ig-grid a {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ig-grid a::after {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,33,38,0.7));
  opacity: 0; transition: 0.2s var(--ease);
}
.ig-grid a:hover::after { opacity: 1; }

/* ========== Memberships ========== */
.memberships {
  padding: 80px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--line-strong);
}
.mb-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.mb-row h3 { font-family: 'Staatliches'; font-size: 36px; text-transform: uppercase; margin: 12px 0 0; line-height: 1; }
.mb-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mb-item {
  border: 1px solid var(--line-strong);
  padding: 28px 18px;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  text-align: center;
  transition: 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mb-item:hover { border-color: var(--acid); }
.mb-item img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
}
.mb-item .nm { font-size: 16px; color: var(--ink-soft); line-height: 1.35; }

/* ========== Header & Footer (Included for Context) ========== */
header.site {
  background: var(--bg-1);
  border-bottom: 1px solid var(--line-strong);
  position: sticky; top: 44px; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11, 13, 14, 0.92);
}
footer.site {
  background: #11161B;
  color: var(--ink-soft);
  padding: 80px 0 0;
  border-top: 1px solid var(--line-strong);
  position: relative;
}

/* ========== Responsive Media Queries ========== */
@media (max-width: 1100px) {
  .nav-row { grid-template-columns: auto 1fr auto; gap: 16px; }
  nav.primary { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stat-strip .wrap { grid-template-columns: repeat(1, 1fr); }
  .stat-item { border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(2n) { border-right: none; }
  .quick-bar .wrap { grid-template-columns: 1fr; }
  .qb-cell { border-bottom: 1px solid var(--line); flex-wrap: wrap; }
  .qb-cell:nth-child(2n) { border-right: none; }
  .intro-grid, .about-inner, .visit-grid, .connect-grid, .mb-row { grid-template-columns: 1fr; gap: 48px; }
  .cat-grid, .prod-grid, .review-grid, .mb-list { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sec-head { grid-template-columns: 1fr; }
  .visit-info { padding: 56px 32px; }
}

@media (max-width: 640px) {
  .util-bar { position: static; }
  header.site { top: 0; }
  .util-bar .wrap { flex-direction: column; height: auto; padding: 10px 24px; gap: 8px; }
  .util-left { flex-wrap: wrap; gap: 12px; }
  .hero { min-height: 600px; }
  .hero-inner { padding: 25px 15px 100px; min-height: calc(-200px + 100vh); }
  .hero-scroll { display: none; }
  .cat-grid, .prod-grid, .review-grid, .mb-list { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero-stat-strip .wrap { grid-template-columns: 1fr; }

  .hero-tag{
    right: 15px;
    font-size: 12px;
    top: 38%;
    transform: translateY(-50%) rotate(90deg);
  }

  .quick-bar .wrap{
    padding-top: 35px;
  }

  .fb-embed-wrap h3, .ig-feed h3{
    font-size: 25px;
  }

  .connect-grid{
    display: flex;
    flex-direction: column;
  }

  .visit-info .row .v{
    font-size: 16px;
  }
}