/* ============================================================
   8GBT — VIP Club & Lounge Brand System
   Concept: High-end Nightclub / Private Members' Club
   Palette: Deep Violet (#0a0618) + Rose Gold (#d4748a) + Ice Blue (#7ec8e3)
   Font: 'Playfair Display' (headings), 'DM Sans' (body), Noto Sans SC (CN)
   Accent element: Geometric diamond/facet motifs
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep: #0a0618;
  --bg-mid: #120c24;
  --bg-card: #1c1430;
  --bg-card-hover: #281d42;

  --rose: #d4748a;
  --rose-light: #e8a0b0;
  --rose-dark: #a84a62;

  --ice: #7ec8e3;
  --ice-dim: rgba(126, 200, 227, 0.15);

  --gold: #c89050;
  --gold-light: #dfb070;

  --text: #e8e0f0;
  --text-muted: #a898c0;
  --text-dim: #706888;

  --border: rgba(212, 116, 138, 0.15);
  --border-glow: rgba(212, 116, 138, 0.35);

  --font-disp: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-cn: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --radius: 6px;
  --radius-lg: 14px;
  --trans: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-cn);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── SCROLL ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--rose-dark); border-radius: 3px; }

/* ── WRAPPER ── */
.page-wrapper { flex: 1 0 auto; position: relative; z-index: 1; }

/* ── VIGNETTE BG ── */
.vignette {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 600px 800px at 20% 30%, rgba(212, 116, 138, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 500px 500px at 80% 40%, rgba(126, 200, 227, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 400px 300px at 50% 85%, rgba(200, 144, 80, 0.03) 0%, transparent 50%);
}

/* ── DIAMOND FACET OVERLAY ── */
.facet-overlay {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.01) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.01) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.01) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

/* ── NAV ── */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 6, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2.5rem;
}
.logo {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--ice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.nav-links a { transition: var(--trans); }
.nav-links a:hover { color: var(--rose); }
.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--rose); font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}
.btn-hero-nav { margin-left: auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-cn);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose), var(--rose-dark));
  background-size: 200% 100%;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 0 25px rgba(212, 116, 138, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-cn);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice);
  background: transparent;
  border: 1px solid var(--ice);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--ice-dim);
  box-shadow: 0 0 15px rgba(126, 200, 227, 0.2);
}

/* ── SECTION ── */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge::before { content: '◇'; font-size: 0.5rem; opacity: 0.6; }
.section h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.section-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 120%; height: 120%;
  background:
    radial-gradient(ellipse 500px 400px at 30% 30%, rgba(212,116,138,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 400px 500px at 70% 50%, rgba(126,200,227,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  font-size: 0.7rem;
  color: var(--rose);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text) 30%, var(--rose), var(--ice));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .accent-rose { -webkit-text-fill-color: var(--rose); color: var(--rose); }
.hero h1 .accent-ice { -webkit-text-fill-color: var(--ice); color: var(--ice); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 2rem;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust span { display: flex; align-items: center; gap: 0.3rem; }

/* ── INNER HERO ── */
.inner-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 30% 30%, rgba(212,116,138,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 400px 500px at 70% 50%, rgba(126,200,227,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.breadcrumb { color: var(--text-dim); font-size: 0.75rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.breadcrumb a { color: var(--rose); }
.inner-hero h1 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative; z-index: 1;
}
.inner-hero .hero-sub {
  position: relative; z-index: 1;
}

/* ── BRAND GRID ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--trans);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.brand-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--ice), var(--rose));
  opacity: 0;
  transition: var(--trans);
}
.brand-card:hover::after { opacity: 1; }
.brand-card:hover {
  border-color: rgba(212, 116, 138, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.brand-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.brand-card h3 { font-size: 0.9rem; color: var(--rose-light); margin-bottom: 0.25rem; }
.brand-card p { font-size: 0.75rem; color: var(--text-dim); }

/* ── CARDS ── */
.card-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.card-grid-2 { grid-template-columns: 1fr 1fr; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--trans);
}
.card:hover { border-color: rgba(212, 116, 138, 0.3); background: var(--bg-card-hover); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.card h3 { font-size: 1rem; color: var(--rose-light); margin-bottom: 0.5rem; }
.card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── BENTO ── */
.bento { display: grid; gap: 1rem; margin-top: 2rem; }
.bento-3 { grid-template-columns: 1fr 1fr 1fr; }
.bento-2 { grid-template-columns: 1fr 1fr; }
.bento-wide { grid-column: span 2; }
.bento-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--trans);
}
.bento-item:hover { border-color: rgba(212, 116, 138, 0.3); background: var(--bg-card-hover); }
.bento-item h3 { font-size: 1rem; color: var(--rose); margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.bento-item .ico { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.bento-highlight {
  background: linear-gradient(135deg, rgba(212,116,138,0.12), rgba(126,200,227,0.06));
  border-color: rgba(212, 116, 138, 0.3);
}

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.split-visual {
  background: linear-gradient(135deg, rgba(212,116,138,0.1), rgba(126,200,227,0.05));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
}
.split-visual .big-icon { font-size: 5rem; line-height: 1; }
.split-text h3 { font-family: var(--font-disp); font-size: 1.3rem; color: var(--rose); margin-bottom: 0.75rem; }
.split-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.split-text ul { margin: 1rem 0; }
.split-text li { font-size: 0.85rem; color: var(--text-muted); padding: 0.3em 0; padding-left: 1.5em; position: relative; }
.split-text li::before { content: '◇'; position: absolute; left: 0; color: var(--rose); }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 3rem; margin-top: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 12px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--rose), var(--ice), transparent);
}
.tl-item { position: relative; margin-bottom: 2rem; }
.tl-item::before {
  content: '◇';
  position: absolute; left: -2.4rem; top: 0.15rem;
  color: var(--rose); font-size: 0.8rem;
}
.tl-item h3 { font-size: 1rem; color: var(--rose); margin-bottom: 0.2rem; }
.tl-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ── TABLE ── */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.comp-table th {
  background: rgba(212, 116, 138, 0.12); color: var(--rose);
  padding: 1rem; text-align: left;
  font-size: 0.8rem; letter-spacing: 0.06em;
}
.comp-table td { padding: 1rem; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-muted); }
.comp-table tr:hover td { background: rgba(212, 116, 138, 0.04); }
.comp-table .check { color: var(--ice); }
.comp-table .cross { color: var(--text-dim); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.testi-card p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }
.testi-author { display: block; margin-top: 1rem; font-size: 0.8rem; color: var(--rose); }
.testi-author small { color: var(--text-dim); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-num { font-family: var(--font-disp); font-size: 2.2rem; color: var(--rose); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.25rem; }

/* ── AWARDS ── */
.award-list { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.award-badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.78rem; color: var(--text-muted);
}

/* ── GALLERY STRIP ── */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.gallery-cell {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-dim);
  transition: var(--trans);
}
.gallery-cell:hover { border-color: var(--rose); background: var(--bg-card-hover); }

/* ── INFO PANEL ── */
.info-panel { display: grid; gap: 1rem; margin-top: 2rem; }
.info-panel-3 { grid-template-columns: repeat(3, 1fr); }
.info-panel-4 { grid-template-columns: repeat(4, 1fr); }
.info-item { text-align: center; padding: 1.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.info-item h4 { font-size: 0.9rem; color: var(--rose); margin-bottom: 0.3rem; }
.info-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ── PRICING TIERS ── */
.tier-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: var(--trans);
}
.tier-card:hover { border-color: var(--rose); background: var(--bg-card-hover); transform: translateY(-3px); }
.tier-card.featured { border-color: var(--rose); background: linear-gradient(135deg, rgba(212,116,138,0.1), rgba(126,200,227,0.05)); }
.tier-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.tier-card h3 { font-family: var(--font-disp); font-size: 1.2rem; color: var(--rose); }
.tier-card .tier-sub { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1rem; }
.tier-card ul { text-align: left; }
.tier-card li { font-size: 0.85rem; color: var(--text-muted); padding: 0.3em 0; padding-left: 1.2em; position: relative; }
.tier-card li::before { content: '◇'; position: absolute; left: 0; color: var(--ice); font-size: 0.6rem; }

/* ── CTA ── */
.cta-box {
  background: linear-gradient(135deg, rgba(212,116,138,0.1), rgba(126,200,227,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-box h2 { font-family: var(--font-disp); font-size: 1.6rem; color: var(--text); margin-bottom: 0.5rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin-top: 2rem; }
details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
summary {
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem 0;
  transition: var(--trans);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
summary::before {
  content: '+';
  color: var(--rose);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  flex-shrink: 0;
}
details[open] summary::before { content: '−'; }
summary:hover { color: var(--rose-light); }
details[open] summary { color: var(--rose); }
details[open] > div {
  padding: 0.75rem 1.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--bg-mid) 0%, #06030e 100%);
  border-top: 2px solid rgba(212, 116, 138, 0.25);
  position: relative; z-index: 2;
  display: block; width: 100%;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.75rem; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-disp);
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links a, .footer-contact a {
  display: block;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: var(--trans);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--rose-light); }
.tg-link { color: var(--ice) !important; }
.btn-footer { margin-top: 1rem; font-size: 0.8rem; text-align: center; justify-content: center; width: 100%; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--rose); }

/* ── ANIMATIONS ── */
.card, .brand-card, .testi-card, .bento-item, .tier-card, .stat-item, .award-badge {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}
.card:nth-child(1), .brand-card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2), .brand-card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3), .brand-card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4), .brand-card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5), .brand-card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6), .brand-card:nth-child(6) { animation-delay: 0.3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-hero-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,6,24,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem; gap: 1rem;
  }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2, .card-grid-3, .card-grid-4,
  .split, .testi-grid, .stats-row, .bento-3, .bento-2,
  .tier-row, .info-panel-3, .info-panel-4 {
    grid-template-columns: 1fr;
  }
  .gallery-strip { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
}
