/* =====================================================
   BRAND RESET & VARIABLES
===================================================== */
:root {
  --primary-black: #111;
  --accent-gold: #bfa15a;
  --light-gray: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--primary-black);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1 { font-size: 48px; font-weight: 700; letter-spacing: 1px; }
h2 { font-size: 32px; font-weight: 600; letter-spacing: 1px; }
h3 { font-size: 18px; font-weight: 600; }

p {
  font-size: 16px;
  line-height: 1.7;
  color: #505050;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 16px;
  color: #555;
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 80px 24px;
}

/* =====================================================
   MEGA MENU NAVBAR
===================================================== */

.navbar {
  height: 78px;
  background: #000000;
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  height: 56px;
  cursor: pointer;
}

.nav-center {
  display: flex;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-item a {
  font-size: 13px;
  letter-spacing: 1.4px;
  font-weight: 500;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =====================================================
   MEGA MENU PANEL
===================================================== */

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw;
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

/* SHOW ON HOVER */
.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* INNER GRID */
.mega-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  align-items: start;
}

/* =====================================================
   COLUMNS
===================================================== */

.mega-column h4 {
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  position: relative;
}

/* GOLD UNDERLINE */
.mega-column h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
  display: block;
  margin-top: 6px;
}

.mega-column a {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  transition: 0.25s;
}

.mega-column a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

/* =====================================================
   IMAGE PANEL
===================================================== */

.mega-image {
  position: relative;
  overflow: hidden;
}

.mega-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mega-image:hover img {
  transform: scale(1.05);
}

.mega-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.mega-image-overlay span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

/* =====================================================
   RESPONSIVE (Fallback → Dropdown)
===================================================== */

@media (max-width: 900px) {

  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 20px;
  }

  .mega-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

/* =====================================================
   PREMIUM HERO
===================================================== */
.premium-hero {
  height: 92vh;
  position: relative;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 54px;
  margin-bottom: 18px;
}

.hero-content p {
  color: #ddd;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-btn {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.hero-btn.primary {
  background: var(--accent-gold);
  color: #111;
}

.hero-btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

/* =====================================================
   BRAND STRIP — CENTER FIXED
===================================================== */

.brand-strip{
  background:#111;
  color:#fff;
  
}

.brand-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:center;
  justify-items:center;
  text-align:center;
  gap:40px;
}

.brand-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.brand-item h2{
  color:var(--accent-gold);
  font-size:42px;
  margin-bottom:6px;
  font-weight:600;
}

.brand-item p{
  font-size:14px;
  color:#bbb;
  letter-spacing:1px;
}


/* =====================================================
   STORY SPLIT
===================================================== */
.home-story {
  background: #f8f8f8;
  padding: 40px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content p {
  margin: 18px 0 24px;
}

.story-btn {
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* =====================================================
   FRANCHISE CTA
===================================================== */
.home-franchise {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.home-franchise p {
  color: #ccc;
  margin: 14px 0 22px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

}

/* =====================================================
   COLLECTIONS GRID
===================================================== */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.collection-card h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  letter-spacing: 1.5px;
}

/* ================= HERO ================= */

.about-hero {
  height: 85vh;
  background: url("../images/about-banner.jpg") center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.about-hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
}

.about-hero h1 {
  font-size: 52px;
  margin-bottom: 18px;
}

/* ================= STORY ================= */

.about-story {
  padding-top: 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

/* ================= VALUES ================= */

.about-values {
  background: #111;
  color: #fff;
  padding: 20px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.value-card {
  border: 1px solid rgb(255, 255, 255);
  padding: 30px;
}

/* ================= STATS ================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  border: 1px solid #000000;
}

.stat-box h3 {
  font-size: 36px;
  color: var(--accent-gold);
}

/* ================= WHY ================= */

.about-why {
  background: #f7f7f7;
  padding: 50px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}

.why-card {
  background: #fff;
  padding: 26px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

/* ================= CTA ================= */

.about-cta {
  background: linear-gradient(135deg,#bfa15a,#d4bc7a);
  text-align: center;
  padding: 60px 20px;
}

.about-cta a {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .about-grid,
  .values-grid,
  .stats-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   EXPANSION HERO
===================================================== */
.expansion-hero {
  padding: 130px 20px;
  text-align: center;
  background: #f6f6f6;
}

/* =====================================================
   STATS STRIP
===================================================== */
.expansion-stats {
  background: #111;
  color: #fff;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box h2 {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: #ccc;
  letter-spacing: 1px;
}

/* =====================================================
   STATE BLOCK
===================================================== */
.state-premium-block {
  margin-bottom: 90px;
}

/* STATE TITLE */
.state-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 1px;
}

.state-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  display: block;
  margin: 14px auto 0;
}

/* =====================================================
   CITY CHIP GRID
===================================================== */
.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* CITY CHIP */
.city-chip {
  padding: 10px 18px;
  border: 1px solid #ddd;
  font-size: 13px;
  letter-spacing: 0.5px;
  background: #fafafa;
  transition: all 0.3s ease;
  cursor: default;
}

.city-chip:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}

/* =====================================================
   CTA STRIP
===================================================== */
.expansion-cta {
  background: linear-gradient(135deg, #111, #000);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
  margin-top: 80px;
}

.expansion-cta h2 {
  margin-bottom: 14px;
}

.expansion-cta p {
  color: #ccc;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: #111;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}

@media (max-width: 500px) {

  .stats-grid {
    grid-template-columns: 1fr;
  }

}


/* =====================================================
   LUXURY FOOTER — FIXED DARK + REDUCED HEIGHT
===================================================== */

.lb-footer {
  background: radial-gradient(circle at top, #111, #050505);
  color: #fff;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

/* GOLD TOP LINE */
.lb-footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #bfa15a, transparent);
}

/* GRID LAYOUT — REDUCED HEIGHT */
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  padding: 50px 24px 30px;   /* ↓ reduced from 80/60 */
  align-items: start;
}

/* BRAND */
.footer-brand img {
  height: 52px;          /* ↓ smaller logo */
  margin-bottom: 16px;
  margin-left: 90px;        /* remove extra shift */
}

.footer-brand p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 13px;
  max-width: 380px;
  margin-bottom: 18px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-left: 120px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.3s;
}

.footer-social a:hover {
  background: #bfa15a;
  color: #111;
  transform: translateY(-3px);
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 13px;
  margin-bottom: 6px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 22px;
  height: 2px;
  background: #bfa15a;
  display: block;
  margin-top: 4px;
}

.footer-col a {
  font-size: 12px;
  color: #bbb;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #bfa15a;
  padding-left: 3px;
}

/* NEWSLETTER */
.footer-newsletter h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-newsletter p {
  font-size: 12px;
  color: #bbb;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* INPUT GROUP */
.newsletter-input-group {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-input-group i {
  position: absolute;
  left: 12px;
  color: #777;
  font-size: 13px;
}

.newsletter-input-group input {
  flex: 1;
  padding: 12px 12px 12px 36px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 12px;
  outline: none;
}

.newsletter-input-group button {
  background: linear-gradient(135deg, #bfa15a, #d4bc7a);
  border: none;
  color: #111;
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* DIVIDER — REDUCED SPACE */
.footer-divider {
  height: 1px;
  margin: 30px 0 15px;   /* ↓ reduced */
  background: linear-gradient(
    90deg,
    transparent,
    rgba(191,161,90,0.8),
    transparent
  );
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

}

@keyframes shimmer {
  100% { left: 120%; }
}
/* STORE CTA */
.store-cta {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.store-cta h5 {
  font-size: 13px;
  margin-bottom: 6px;
}

.store-cta a {
  font-size: 13px;
  color: #bfa15a;
}

.store-cta a:hover {
  text-decoration: underline;
}
/* =====================================================
   CONTACT HERO
===================================================== */
.contact-hero {
  padding: 130px 20px;
  text-align: center;
  background: #f6f6f6;
}

/* =====================================================
   CONTACT GRID
===================================================== */
.contact-section {
  padding-top: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

/* ================= INFO ================= */
.contact-info h2 {
  margin-bottom: 14px;
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.contact-card i {
  font-size: 18px;
  color: var(--accent-gold);
  margin-top: 4px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= FORM ================= */
.contact-form-wrapper {
  border: 1px solid #eee;
  padding: 36px;
  background: #fafafa;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

.contact-form button {
  background: #111;
  color: #fff;
  padding: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
}

/* =====================================================
   MAP
===================================================== */
.contact-map {
  margin-top: 80px;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* =====================================================
   CTA
===================================================== */
.contact-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 5px;
  margin-top: 20px;
}

.contact-cta .cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: #111;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   SEASON HERO
===================================================== */

.season-hero {
  height: 85vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 70px 90px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
}

.season-hero-overlay h1 {
  font-size: 60px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.season-hero-overlay p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #eee;
}

.season-hero-overlay button {
  background: var(--accent-gold);
  color: #111;
  padding: 16px 34px;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.season-hero-overlay button:hover {
  background: #fff;
}

/* =====================================================
   INTRO
===================================================== */

.season-intro {
  text-align: center;
  max-width: 900px;
}

.season-intro h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.season-intro p {
  color: #666;
  line-height: 1.8;
}

/* =====================================================
   GRID
===================================================== */

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* CARD */
.season-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.season-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.season-overlay h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}

.season-overlay span {
  color: #ddd;
  font-size: 14px;
}

/* HOVER */
.season-card:hover img {
  transform: scale(1.08);
}

/* =====================================================
   WIDE BANNER
===================================================== */

.season-banner-wide {
  height: 55vh;
  background-size: cover;
  background-position: center;
  margin: 90px 0;
  position: relative;
}

.season-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
  color: #fff;
}

.season-banner-overlay h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.season-banner-overlay p {
  color: #ddd;
}

/* =====================================================
   CTA
===================================================== */

.season-cta {
  text-align: center;
}

.season-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.season-cta p {
  color: #666;
  margin-bottom: 26px;
}

.season-cta button {
  background: #111;
  color: #fff;
  padding: 14px 30px;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.season-cta button:hover {
  background: var(--accent-gold);
  color: #111;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .season-grid {
    grid-template-columns: 1fr;
  }

  .season-hero-overlay {
    padding: 40px;
  }

  .season-hero-overlay h1 {
    font-size: 40px;
  }
}
/* =====================================================
   EXPANSION HERO TEXT COLOR FIX
===================================================== */

.expansion-hero {
  position: relative;
  color: #fff; /* Force all text white */
}

/* Optional overlay for better readability */
.expansion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

/* Keep content above overlay */
.expansion-hero .container {
  position: relative;
  z-index: 2;
}

/* Heading Styling */
.expansion-hero h1 {
  color: #fff;
  font-size: 52px;
  letter-spacing: 1px;
}

/* Subtitle */
.expansion-hero .section-subtitle {
  color: #eee;
  font-size: 18px;
}
/* =====================================================
   HERO — LUXURY PARALLAX
===================================================== */

.expansion-hero {
  position: relative;
  padding: 160px 0 120px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}

/* Overlay */
.expansion-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.expansion-hero h1 {
  font-size: 58px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.expansion-hero h1::after {
  content: "";
  width: 70px;
  height: 2px;
  background: var(--accent-gold);
  display: block;
  margin: 18px auto 0;
}
/* =====================================================
    STRIP — BOTTOM KPI ALIGN
===================================================== */

.presence-strip {
  background: #111;
  color: #fff;
  position: relative;
  padding: 5px 0 5px;   /* TOP large, BOTTOM small */
  overflow: hidden;
}

/* GRID WRAPPER */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

/* KPI CARD */
.presence-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* NUMBER */
.presence-card h2 {
  font-size: 42px;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 600;
}

/* LABEL */
.presence-card p {
  color: #bbb;
  letter-spacing: 1px;
  font-size: 13px;
}



/* =========================================
   HERO
========================================= */

.franchise-hero{
  height:85vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:relative;
  color:#fff;
  max-width:720px;
}

.hero-content h1{
  font-size:56px;
  margin-bottom:18px;
}

.hero-content p{
  font-size:18px;
  margin-bottom:28px;
  color:#ddd;
}

.hero-cta{
  padding:14px 28px;
  background:#bfa15a;
  color:#111;
  border-radius:40px;
  font-weight:600;
}



/* =========================================
   CREDIBILITY
========================================= */

.cred-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.cred-box{
  padding:40px;
  border:1px solid #eee;
}

.cred-box h2{
  font-size:36px;
  color:#bfa15a;
}



/* =========================================
   WHY PARTNER
========================================= */

.partner-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.partner-card{
  padding:28px;
  border:1px solid #eee;
  background:#fafafa;
}



/* =========================================
   INVESTMENT
========================================= */

.investment-section{
  background:#111;
  color:#fff;
  padding:20px 0;
}

.investment-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.investment-card{
  background:#1a1a1a;
  padding:40px;
  text-align:center;
}



/* =========================================
   TIMELINE
========================================= */

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.timeline-step span{
  font-size:32px;
  color:#bfa15a;
}



/* =========================================
   FORM SECTION
========================================= */

.franchise-form-section{
  background:#f9f9f9;
  padding:30px 0;
}

.form-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.form-content h2{
  font-size:34px;
  margin-bottom:16px;
}

.form-content ul{
  margin-top:20px;
  line-height:2;
}



/* FORM */

.premium-form{
  background:#fff;
  padding:40px;
  border:1px solid #eee;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.premium-form input,
.premium-form textarea{
  padding:14px;
  border:1px solid #ddd;
  font-size:14px;
}

.premium-form textarea{
  margin-top:18px;
  min-height:120px;
}



/* SUBMIT BUTTON */

.premium-submit-btn{
  margin-top:20px;
  padding:16px;
  width:100%;
  border:none;
  background:linear-gradient(135deg,#c6a85b,#e0c878);
  font-weight:600;
  cursor:pointer;
}


/* SUCCESS */
.success-hero{
  height:80vh;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.success-box{
  text-align:center;
  color:#fff;
}
.checkmark{
  width:80px;
  height:80px;
  background:#bfa15a;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin:auto;
  font-size:28px;
  color:#111;
}

/* STEPS */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}
/* =========================================
   HERO
========================================= */

.collections-hero{
  height:85vh;
  background-size:cover;
  background-position:top center;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-dark-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-center-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.hero-center-content h1{
  font-size:64px;
  letter-spacing:2px;
  margin-bottom:16px;
}

.hero-center-content p{
  font-size:18px;
  color:#ddd;
}



/* =========================================
   SECTION HEADING
========================================= */

.collection-section{
  padding:90px 0;
}

.section-heading{
  text-align:center;
  margin-bottom:50px;
}

.section-heading h2{
  font-size:34px;
  margin-bottom:10px;
}

.section-heading p{
  color:#666;
}



/* =========================================
   LUXURY GRID
========================================= */

.luxury-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}



/* =========================================
   LUXURY CARD
========================================= */

.luxury-card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.luxury-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.6s;
}

.luxury-card:hover img{
  transform:scale(1.08);
}



/* OVERLAY */

.luxury-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:28px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.7),
    transparent
  );
  color:#fff;
}

.luxury-overlay h3{
  font-size:20px;
  margin-bottom:6px;
}

.luxury-overlay span{
  font-size:12px;
  letter-spacing:1px;
  opacity:.85;
}



/* =========================================
   ALT BG
========================================= */

.collection-alt-bg{
  background:#fafafa;
}



/* =========================================
   SEASONAL BANNER
========================================= */

.seasonal-banner{
  height:70vh;

  /* SHOW FULL IMAGE */
  background-size:fill;
  height:70vh;
  background-size:cover;

  /* FACE SAFE ZONE */
  background-position: 50% 15%;

  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}


.season-overlay{
  text-align:center;
  color:#fff;
  background:rgba(0,0,0,.55);
  padding:60px 80px;
}

.season-overlay h2{
  font-size:42px;
  margin-bottom:12px;
}

.season-overlay p{
  margin-bottom:26px;
}



/* CTA */

.season-cta{
  padding:14px 30px;
  background:#bfa15a;
  color:#111;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.season-cta:hover{
  background:#d4bc7a;
}
/* =========================================
   HERO
========================================= */

.season-hero{
  height:85vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.season-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}

.season-hero-content{
  position:relative;
  text-align:center;
  color:#fff;
}

.season-hero-content h1{
  font-size:64px;
  letter-spacing:2px;
}

.season-hero-content p{
  margin-top:14px;
  font-size:18px;
  color:#ddd;
}



/* =========================================
   INTRO EDITORIAL
========================================= */

.season-intro{
  padding:100px 0;
}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.intro-text h2{
  font-size:34px;
  margin-bottom:18px;
}

.intro-text p{
  color:#555;
  line-height:1.7;
  margin-bottom:24px;
}

.intro-image img{
  width:100%;
  height:520px;
  object-fit:cover;
}



/* BUTTON */

.luxury-btn{
  padding:14px 30px;
  background:#bfa15a;
  color:#111;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.luxury-btn:hover{
  background:#d8c48a;
}



/* =========================================
   FEATURED GRID
========================================= */

.season-featured{
  background:#fafafa;
  padding:90px 0;
}

.season-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}



/* CARDS */

.season-card{
  position:relative;
  overflow:hidden;
}

.season-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.6s;
}

.season-card:hover img{
  transform:scale(1.08);
}



/* OVERLAY */

.season-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color:#fff;
}

.season-overlay h3{
  font-size:20px;
}

.season-overlay span{
  font-size:12px;
  opacity:.85;
}



/* =========================================
   LOOKBOOK BANNER
========================================= */

.lookbook-banner{
  height:70vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lookbook-overlay{
  background:rgba(0,0,0,.6);
  padding:60px 80px;
  text-align:center;
  color:#fff;
}

.lookbook-overlay h2{
  font-size:42px;
  margin-bottom:12px;
}

.lookbook-overlay p{
  margin-bottom:22px;
}

.lookbook-btn{
  padding:14px 30px;
  background:#bfa15a;
  color:#111;
  border-radius:40px;
  font-weight:600;
}



/* =========================================
   CTA STRIP
========================================= */

.season-cta-strip{
  padding:50px 0;
  background:#111;
  color:#fff;
}

.cta-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cta-shop-btn{
  padding:14px 32px;
  background:#bfa15a;
  color:#111;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.cta-shop-btn:hover{
  background:#d4bc7a;
}
/* =====================================================
   PREMIUM FRANCHISE FORM
===================================================== */

.premium-franchise-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

/* ROW GRID */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

/* GROUP */
.form-group {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
  letter-spacing: 0.4px;
}

/* INPUT */
.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #bfa15a;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(191,161,90,0.15);
  outline: none;
}

/* TEXTAREA */
.form-group textarea {
  resize: none;
  min-height: 130px;
}

/* FULL WIDTH */
.full-width {
  grid-column: 1 / -1;
  margin-bottom: 26px;
}

/* SUBMIT BUTTON */
.franchise-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #bfa15a, #d6bf7c);
  color: #111;
  font-size: 13px;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER LUXURY EFFECT */
.franchise-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(191,161,90,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .form-row {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   FRANCHISE SUPPORT CONTACT BOX
===================================================== */

.franchise-support-box {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  margin-bottom: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* GOLD BORDER ACCENT */
.franchise-support-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#bfa15a, #d8c07a);
}

/* ICON */
.support-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bfa15a, #d6bf7c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #111;
  box-shadow: 0 8px 20px rgba(191,161,90,0.4);
}

/* TEXT */
.support-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.support-content p {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 14px;
  max-width: 420px;
  line-height: 1.6;
}

/* CONTACT BUTTONS */
.support-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PHONE BUTTON */
.support-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-phone:hover {
  background: #bfa15a;
  color: #111;
}

/* WHATSAPP BUTTON */
.support-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #25D366;
  color: #25D366;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-whatsapp:hover {
  background: #25D366;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {

  .franchise-support-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

}
/* =====================================================
   HERO BANNER (ALIGNED TO YOUR IMAGE)
===================================================== */

.contact-hero {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero-overlay {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}

/* GLASS CARD (Matches tech aesthetic) */

.hero-glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 50px 70px;
  border-radius: 18px;
  text-align: center;
  max-width: 700px;
  color: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.hero-glass-card h1 {
  font-size: 48px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.hero-glass-card p {
  color: #e5e5e5;
  line-height: 1.7;
}


/* =====================================================
   QUICK CONTACT STRIP
===================================================== */

.contact-quick-strip {
  background: #0b0b0b;
  padding: 5px 0;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.quick-card {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  text-align: center;
  border-radius: 14px;
  transition: 0.4s;
}

.quick-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
}

.quick-card i {
  font-size: 26px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.quick-card h3 {
  color: #fff;
  margin-bottom: 6px;
}

.quick-card p {
  color: #bbb;
}


/* =====================================================
   BRAND MESSAGE
===================================================== */

.contact-brand {
  padding: 30px 0;
  background: #f7f7f7;
}

.brand-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.brand-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.brand-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}


/* =====================================================
   CTA STRIP
===================================================== */

.contact-cta {
  background: linear-gradient(135deg,#000,#111);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.contact-cta p {
  color: #bbb;
  margin-bottom: 24px;
}

.contact-cta button {
  padding: 14px 40px;
  border-radius: 40px;
  border: none;
  background: var(--accent-gold);
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

.contact-cta button:hover {
  background: #fff;
  color: #000;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 992px){

  .quick-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .hero-glass-card {
    padding: 40px 30px;
  }

  .hero-glass-card h1 {
    font-size: 34px;
  }

}
/* =====================================================
   SEASONAL SUMMER HERO
===================================================== */

/* =====================================================
   SEASONAL HERO — FULL IMAGE VISIBLE
===================================================== */

.seasonal-summer-hero{
  width:100%;
  min-height:92vh;

  /* IMAGE CONTROL */
  background-size:contain;     /* SHOW FULL IMAGE */
  background-repeat:no-repeat;
  background-position:center;

  position:relative;
  display:flex;
  align-items:center;

  /* Optional background fill */
  background-color:#000;  /* fills empty space */
}


/* FULL IMAGE */
.hero-bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:fill;   /* SHOW FULL IMAGE */
  background:#000;
  filter:blur(5px);
  transform:scale(1.05);

}

/* OVERLAY */
.seasonal-hero-overlay{
  position:absolute;
  inset:0;
  height: 100%;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.35)
  );
}

.seasonal-hero-content{
  position:relative;
  color:#fff;
  max-width:680px;
}

.seasonal-hero-content h1{
  font-size:64px;
  letter-spacing:2px;
  margin-bottom:18px;
}

.seasonal-hero-content p{
  font-size:18px;
  color:#ddd;
  margin-bottom:28px;
  line-height:1.7;
}

/* HERO BUTTONS */

.seasonal-hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-gold{
  padding:14px 30px;
  background:linear-gradient(135deg,#bfa15a,#d6bf7c);
  color:#111;
  font-weight:600;
  letter-spacing:1px;
  border-radius:40px;
  transition:.35s;
}

.btn-gold:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(191,161,90,.35);
}

.btn-outline{
  padding:14px 30px;
  border:1px solid #fff;
  color:#fff;
  border-radius:40px;
  transition:.35s;
}

.btn-outline:hover{
  background:#fff;
  color:#111;
}



/* =====================================================
   EDITORIAL SPLIT
===================================================== */

.seasonal-editorial{
  padding-top:100px;
}

.editorial-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}

.editorial-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:10px;
}

.editorial-content h2{
  font-size:36px;
  margin-bottom:18px;
}

.editorial-content p{
  color:#555;
  line-height:1.8;
  margin-bottom:22px;
}

.luxury-link{
  font-size:13px;
  letter-spacing:1px;
  border-bottom:1px solid #111;
  padding-bottom:4px;
}



/* =====================================================
   PRODUCT GRID
===================================================== */

.seasonal-collection{
  padding-top:60px;
}

.seasonal-product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:34px;
}

.seasonal-product-card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.seasonal-product-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.6s;
}

.seasonal-product-card:hover img{
  transform:scale(1.08);
}

/* OVERLAY */

.seasonal-product-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    transparent
  );
}

.seasonal-product-overlay h3{
  color:#fff;
  font-size:20px;
  margin-bottom:4px;
}

.seasonal-product-overlay span{
  color:#ddd;
  font-size:13px;
}



/* =====================================================
   FABRIC STRIP
===================================================== */

.seasonal-fabric-strip{
  background:#111;
  color:#fff;
  padding:70px 0;
  margin-top:90px;
}

.fabric-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  text-align:center;
}

.fabric-card{
  padding:26px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.03);
}

.fabric-card h3{
  color:var(--accent-gold);
  margin-bottom:8px;
}

.fabric-card p{
  color:#bbb;
  font-size:14px;
}


/* =====================================================
   SALE PARALLAX BANNER
===================================================== */

.seasonal-sale-banner{
  height:60vh;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  position:relative;
  margin-top:100px;
}

.sale-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:#fff;
  text-align:center;
}

.sale-overlay h2{
  font-size:42px;
  margin-bottom:10px;
}

.sale-overlay p{
  color:#ddd;
  margin-bottom:22px;
}



/* =====================================================
   FINAL CTA
===================================================== */

.seasonal-final-cta{
  background:#ffffff;
  color:#000000;
  text-align:center;
  padding:90px 20px;
}

.seasonal-final-cta h2{
  font-size:34px;
  margin-bottom:12px;
}

.seasonal-final-cta p{
  color:#bbb;
  margin-bottom:26px;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1024px){

  .seasonal-product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .fabric-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .editorial-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .seasonal-product-grid{
    grid-template-columns:1fr;
  }

  .fabric-grid{
    grid-template-columns:1fr;
  }

  .seasonal-hero-content h1{
    font-size:42px;
  }

}
/* =====================================================
   FRANCHISE BRAND STRIP — CENTER ALIGNED
===================================================== */

.franchise-brand-strip{
  background:#ffffff;
  color:#fff;

  /* Height control */
  min-height:100px;

  /* Perfect vertical centering */
  display:flex;
  align-items:center;

  /* Spacing */
  padding:40px 0;
}

/* GRID */
.franchise-brand-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  /* Horizontal center */
  justify-items:center;

  /* Vertical center */
  align-items:center;

  text-align:center;
  gap:40px;
}

/* KPI CARD */
.franchise-brand-grid .brand-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* NUMBER */
.franchise-brand-grid h2{
  color:var(--accent-gold);
  font-size:42px;
  margin-bottom:6px;
  font-weight:600;
}

/* LABEL */
.franchise-brand-grid p{
  color:#000000;
  font-size:18px;
  letter-spacing:1px;
}
