/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #111; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --red:     #d93526;
  --orange:  #e8621a;
  --yellow:  #f0b429;
  --green:   #2d9e6b;
  --teal:    #1a9ab0;
  --blue:    #2563eb;
  --purple:  #7c3aed;
  --dark:    #111111;
  --gray:    #64748b;
  --light:   #f8f9fa;
  --border:  #e5e7eb;
  --radius:  8px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 15px 34px; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.03em; border-radius: var(--radius); transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent; }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; text-align: center; display: block; }
.map-btn { margin-top: 24px; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; border-bottom: 3px solid var(--orange); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.logo { font-size: 1.05rem; font-weight: 900; letter-spacing: 0.04em; color: var(--dark); line-height: 1.2; }
.logo span { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; color: var(--orange); }
.nav-logo img { height: 48px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.87rem; font-weight: 600; color: var(--gray); transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { font-size: 0.85rem; font-weight: 700; color: #fff; background: var(--red); padding: 10px 22px; border-radius: var(--radius); transition: all 0.2s; white-space: nowrap; }
.nav-cta:hover { background: #b82d1f; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--border); padding: 8px 0 24px; }
.mobile-menu a { padding: 14px 40px; font-size: 0.97rem; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-menu .mobile-cta { color: var(--red); font-weight: 700; border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO — bold color split
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 70px;
}
.hero-left {
  background: linear-gradient(135deg, #d93526 0%, #e8621a 60%, #f0b429 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.hero h1 { font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; line-height: 1.0; letter-spacing: -0.03em; color: #fff; margin-bottom: 24px; position: relative; z-index: 1; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 420px; margin-bottom: 40px; line-height: 1.75; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-right {
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.color-swatch {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
.color-swatch .swatch-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.color-swatch .swatch-brand { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.swatch-1 { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.swatch-2 { background: linear-gradient(135deg, #2d9e6b, #16a34a); }
.swatch-3 { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.swatch-4 { background: linear-gradient(135deg, #1a9ab0, #0891b2); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--dark); padding: 20px 0; }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }
.trust-item span:first-child { font-size: 1rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 56px 0; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.stat { text-align: center; flex: 1; }
.stat-num { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; color: var(--dark); }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.stat-divider { width: 1px; height: 56px; background: var(--border); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--light); }
.services .eyebrow { color: var(--orange); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-item {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-item:nth-child(1)::before { background: var(--red); }
.service-item:nth-child(2)::before { background: var(--orange); }
.service-item:nth-child(3)::before { background: var(--yellow); }
.service-item:nth-child(4)::before { background: var(--green); }
.service-item:nth-child(5)::before { background: var(--teal); }
.service-item:nth-child(6)::before { background: var(--blue); }
.service-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.service-num { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; color: var(--gray); margin-bottom: 16px; }
.service-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.service-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.82rem; font-weight: 700; color: var(--orange); letter-spacing: 0.03em; transition: color 0.2s; }
.service-link:hover { color: var(--red); }

/* ============================================================
   BRANDS
   ============================================================ */
.brands { padding: 100px 0; background: #fff; }
.brands .eyebrow { color: var(--blue); }
.brands-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-card {
  border-radius: 10px;
  padding: 32px 24px;
  border: 2px solid var(--border);
  transition: all 0.2s;
  text-align: center;
}
.brand-card:nth-child(1) { border-color: #e3eeff; background: #f0f5ff; }
.brand-card:nth-child(2) { border-color: #e0f7ef; background: #f0fdf7; }
.brand-card:nth-child(3) { border-color: #fde8d8; background: #fff4ee; }
.brand-card:nth-child(4) { border-color: #e8e0ff; background: #f5f0ff; }
.brand-card:nth-child(5) { border-color: #d8f4f8; background: #eef9fc; }
.brand-card:nth-child(6) { border-color: #fde8d8; background: #fff4ee; }
.brand-card:nth-child(7) { border-color: #fef3cd; background: #fffbea; }
.brand-card:nth-child(8) { border-color: #fce8e8; background: #fff5f5; }
.brand-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.brand-name { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.brand-type { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 8px; }
.brand-logo-card { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.brand-logo-card img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(20%); transition: filter 0.2s; }
.brand-logo-card:hover img { filter: none; }

/* ============================================================
   ABOUT — bold color block
   ============================================================ */
.about { padding: 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-color-block {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.about-color-block::after {
  content: '1969';
  position: absolute;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  bottom: -20px;
  right: -20px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.about-year { font-size: 5rem; font-weight: 900; color: #fff; text-align: center; line-height: 1; }
.about-year span { display: block; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.about-text-block { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.about-text-block .eyebrow { color: var(--purple); }
.about-text-block h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--dark); }
.about-text-block p { font-size: 0.97rem; color: var(--gray); line-height: 1.8; margin-bottom: 18px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-badges span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; }
.about-badges span:nth-child(1) { background: #fef3cd; color: #92400e; }
.about-badges span:nth-child(2) { background: #dbeafe; color: #1e3a8a; }
.about-badges span:nth-child(3) { background: #dcfce7; color: #14532d; }
.about-badges span:nth-child(4) { background: #ede9fe; color: #4c1d95; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--light); }
.testimonials .eyebrow { color: var(--green); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: #fff; padding: 40px 32px; border-radius: 12px; border: 1px solid var(--border); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem; font-weight: 900; color: #f0f0f0; line-height: 1; }
.stars { font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.stars.red { color: var(--red); }
.stars.orange { color: var(--orange); }
.stars.yellow { color: var(--yellow); }
.testimonial blockquote { font-size: 0.97rem; color: #333; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial cite { font-size: 0.78rem; font-weight: 700; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.contact-left {
  background: linear-gradient(135deg, #d93526 0%, #e8621a 100%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left .eyebrow { color: rgba(255,255,255,0.65); }
.contact-left h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #fff; margin-bottom: 18px; }
.contact-left p { color: rgba(255,255,255,0.8); font-size: 0.97rem; line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; font-size: 0.97rem; color: rgba(255,255,255,0.85); }
.detail-icon { font-size: 1.1rem; width: 22px; flex-shrink: 0; }
.hours-list { display: flex; flex-direction: column; gap: 5px; }
.hours-list div { display: flex; gap: 16px; font-size: 0.88rem; }
.hours-list div span:first-child { width: 76px; color: rgba(255,255,255,0.55); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-right { background: #fff; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 32px; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.contact-form input, .contact-form textarea { background: var(--light); border: 2px solid var(--border); border-radius: var(--radius); padding: 13px 16px; color: var(--dark); font-family: inherit; font-size: 0.95rem; outline: none; transition: border-color 0.2s; width: 100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #bbb; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); background: #fff; }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px 56px; display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 60px; }
.footer-left .logo { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer-left .logo span { color: var(--orange); }
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 14px; filter: brightness(1.1); }
.footer-left p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 12px; }
.footer-social { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social:hover { color: var(--orange); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-right { display: flex; flex-direction: column; gap: 8px; }
.footer-right a { font-size: 0.95rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-right a:hover { color: var(--orange); }
.footer-hours p { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 120px; }
  .color-swatch { min-height: 120px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-color-block { padding: 60px; min-height: 240px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 60px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 28px; justify-content: center; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-text-block, .contact-left, .contact-right { padding: 60px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { padding: 20px; }
  .hero-right { grid-template-columns: repeat(2, 1fr); grid-template-rows: 100px 100px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .brands-grid { grid-template-columns: 1fr; }
}
