/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #CC1B1B;
  --red-dark:  #A01212;
  --red-light: #E84040;
  --red-glow:  rgba(204,27,27,0.25);
  --yellow:    #F5C518;
  --black:     #0D0D0D;
  --dark:      #141414;
  --dark2:     #1A1A1A;
  --dark3:     #222222;
  --white:     #FFFFFF;
  --off-white: #F8F8F8;
  --gray:      #888888;
  --gray-light:#DDDDDD;
  --font-main:    'Inter', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --radius:    12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-dark { background: var(--dark); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label.light { color: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,0.6); }

.accent { color: var(--red); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
  display: block;
}
.navbar.scrolled .logo-img {
  height: 52px;
}
.logo-text-fallback {
  display: none;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text-fallback span { color: var(--red); font-size: 14px; letter-spacing: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Very faint red accent — top right corner only */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(204,27,27,0.07) 0%, transparent 45%);
  pointer-events: none;
}

/* Light grey grid for subtle texture */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,27,27,0.08);
  border: 1px solid rgba(204,27,27,0.25);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 100px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Override outline btn for light hero */
.hero .btn-outline {
  color: var(--black);
  border-color: rgba(0,0,0,0.25);
}
.hero .btn-outline:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,0.3);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* Hero right panel */
.hero-right { display: flex; flex-direction: column; }
.hero-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.hero-panel-title {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 20px;
}
.hero-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  transition: background var(--transition);
}
.hero-contact-row:hover { background: var(--off-white); }
.hero-contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-call .hero-contact-icon { background: rgba(204,27,27,0.1); color: var(--red); }
.hero-wa .hero-contact-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.hero-contact-label { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-contact-value { font-size: 15px; font-weight: 700; color: var(--black); margin-top: 1px; }
.hero-map-wrap { width: 100%; }
.hero-map-wrap iframe { display: block; width: 100%; height: 180px; border: none; }
.hero-directions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
  transition: background var(--transition);
  background: rgba(204,27,27,0.04);
  border-top: 1px solid rgba(204,27,27,0.1);
}
.hero-directions:hover { background: rgba(204,27,27,0.09); }

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ticker-track .dot {
  color: rgba(255,255,255,0.4);
  font-size: 7px;
  letter-spacing: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-4px); }
.about-card-icon { font-size: 28px; }
.about-card-text { font-size: 14px; font-weight: 600; line-height: 1.4; }
.card-red    { background: var(--red); color: var(--white); }
.card-dark   { background: var(--dark2); color: var(--white); }
.card-yellow { background: var(--yellow); color: var(--black); }

/* ─── TIKTOK SECTION ─────────────────────────────────────── */
.tiktok-section-wrap { background: var(--off-white); }
.tiktok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.tiktok-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--black);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tiktok-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.tiktok-embed-wrap {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
  overflow: hidden;
}
.tiktok-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* TikTok fallback link (shown when embed doesn't load) */
.tiktok-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.tiktok-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition), border-color var(--transition);
}
.tiktok-fallback a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.tiktok-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
  font-style: italic;
}

/* ─── WRITTEN TESTIMONIALS ───────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(204,27,27,0.2);
}
.review-stars { color: var(--yellow); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 14px; }
.review-role { font-size: 12px; color: var(--gray); }

/* ─── BRANDS ─────────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.brand-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-card:hover {
  border-color: rgba(204,27,27,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(204,27,27,0.12);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-card.featured {
  border-color: rgba(245,197,24,0.3);
  background: linear-gradient(135deg, var(--dark2), rgba(245,197,24,0.06));
}
.brand-card.featured::before { background: var(--yellow); transform: scaleX(1); }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.brand-cat {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.brands-more {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  margin-top: 32px;
  font-style: italic;
}

/* ─── HOURS + MAP ────────────────────────────────────────── */
.hours-map {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

/* Frosted glass overlay texture */
.hours-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204,27,27,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hours-col .section-label,
.map-col .section-label { color: var(--yellow) !important; }
.hours-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hours-col .section-title,
.map-col .section-title { color: var(--white); }

.hours-list { margin: 24px 0 16px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left var(--transition);
}
.hours-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.day { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; }
.time { color: rgba(255,255,255,0.5); font-size: 15px; }
.hours-row.saturday .time { color: var(--yellow); font-weight: 600; }
.hours-row.closed .day { color: rgba(255,255,255,0.3); }
.closed-label { color: rgba(255,255,255,0.3) !important; }
.today-row {
  border-left: 3px solid var(--red);
  padding-left: 12px;
  background: rgba(204,27,27,0.08);
  border-radius: 0 4px 4px 0;
}
.today-row .day { color: var(--white); font-weight: 700; }
.today-row .time { color: var(--yellow); font-weight: 600; }
.hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

.map-address-light {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-bottom: 16px;
}
.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.map-btn { width: 100%; justify-content: center; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.contact-card {
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}
.contact-value { font-size: 16px; font-weight: 700; }
.contact-hint { font-size: 12px; opacity: 0.55; }

.contact-call {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  color: var(--white);
}
.contact-call .contact-icon { background: rgba(255,255,255,0.15); color: var(--white); }

.contact-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: #25D366;
  color: var(--white);
}
.contact-whatsapp .contact-icon { background: rgba(255,255,255,0.15); color: var(--white); }

.contact-location {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.contact-location .contact-icon { background: rgba(204,27,27,0.2); color: var(--red-light); }

.contact-email {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
}
.contact-email .contact-icon { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 64px; width: auto; margin-bottom: 16px; mix-blend-mode: screen; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 14px; max-width: 280px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-quick a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--red); }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom { padding: 20px 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 340px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 72px;
  }
  .hero-right { display: none; }
  .hero-title { color: var(--black); }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: linear-gradient(160deg, #0D0D0D 0%, #1A0505 60%, #2a0808 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 60px 40px;
    z-index: 999;
    box-shadow: -8px 0 48px rgba(0,0,0,0.4);
  }
  /* Red accent bar on left edge of sidebar */
  .nav-links::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(to bottom, var(--red), transparent);
  }
  /* Decorative glow circle */
  .nav-links::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,27,27,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.5px;
    transition: color var(--transition), padding-left var(--transition);
  }
  .nav-links a:hover { color: var(--white); padding-left: 8px; }
  .nav-links a.nav-cta {
    margin-top: 16px;
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-sm);
    border: none;
    text-align: center;
    justify-content: center;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger span { background: var(--black); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { grid-template-columns: 1fr 1fr; }

  .hours-map-grid { grid-template-columns: 1fr; gap: 48px; }

  .tiktok-grid { grid-template-columns: 1fr; max-width: 360px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .hero-stats { gap: 20px; }
  .stat-num { font-size: 30px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}
