.ch-hero {
  position: relative;
  padding: var(--padding) 20px;
  background: 
    linear-gradient(rgba(0,0,0,var(--overlay)), rgba(0,0,0,var(--overlay))),
    var(--bg-url);
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-align: center;
}

.ch-hero__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* HEADING ABOVE BOX - White text on dark */
.ch-hero__main-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* WHITE CONTENT BOX */
.ch-hero__content {
  background: rgba(255, 255, 255, 0.97);
  color: #000;
  padding: 40px 50px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* BRAND NAME INSIDE BOX */
.ch-hero__brand-title {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 16px;
  color: #000;
  line-height: 1.2;
}

.ch-hero__subtitle {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.ch-hero__cta {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 16px 0 20px;
  color: #333;
}

.ch-hero__address {
  font-size: 15px;
  margin: 0 0 20px;
  color: #555;
  line-height: 1.5;
}

.ch-hero__hours-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #000;
}

.ch-hero__hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: #444;
}

.ch-hero__hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  &:last-child { margin-bottom: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  .ch-hero { padding: 80px 15px; min-height: 420px; }
  .ch-hero__main-title { font-size: 26px; }
  .ch-hero__content { padding: 32px 24px; }
  .ch-hero__brand-title { font-size: 22px; }
  .ch-hero__subtitle { font-size: 20px; }
}