:root {
  --blue: #1c4f9c;
  --blue-dark: #123a75;
  --red: #ef3e42;
  --cream: #fff8ef;
  --white: #ffffff;
  --ink: #22262b;
  --muted: #5b6470;
  --border: #ecdfcd;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(28, 79, 156, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Baloo 2', cursive;
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  vertical-align: -0.2em;
}

.heading-icon {
  width: 0.85em;
  height: 0.85em;
  color: var(--red);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
}

.main-nav a:hover { color: var(--blue); text-decoration: none; }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 999px;
}
.nav-call:hover { background: #d92f33; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 56px 0 48px;
  text-align: center;
}

.hero-logo {
  max-width: 380px;
  margin: 0 auto 16px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--blue-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary { background: var(--red); color: var(--white); }
.btn-secondary:hover { background: #d92f33; }

.btn-ghost { background: var(--white); color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--cream); }

.btn-block { width: 100%; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--ink);
}
.rating-badge:hover { text-decoration: none; border-color: var(--red); }
.stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 1px; }
.rating-text strong { color: var(--blue-dark); }

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--cream); }

.section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blue-dark);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  border: 1px solid var(--border);
}

.location-info h3 { color: var(--blue-dark); }
.address { font-size: 1.05rem; }
.phone a { font-weight: 800; font-size: 1.1rem; }

.open-status {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  background: var(--cream);
  color: var(--muted);
}
.open-status.open { background: #e6f6ea; color: #1c7a37; }
.open-status.closed { background: #fdeceb; color: var(--red); }

/* Hours */
.hours-table { max-width: 480px; margin: 24px auto 0; padding: 10px 28px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--blue-dark); }
.hours-row.today {
  background: var(--cream);
  margin: 0 -16px;
  padding: 12px 16px;
  border-radius: 10px;
  border-bottom-color: transparent;
}

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.brand-badge {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-dark);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.brand-badge:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.service-card { text-align: center; }
.service-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--blue);
}
.service-icon .icon { width: 30px; height: 30px; }
.service-card h3 { color: var(--blue-dark); font-size: 1.2rem; }
.service-card p { color: var(--muted); margin-bottom: 0; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item { padding: 0; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--red);
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
  color: var(--muted);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 36px 0;
  margin-top: 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  padding: 8px 14px;
}
.footer-info p { margin: 0 0 6px; color: #dbe6f5; }
.footer-info a { color: var(--white); font-weight: 700; }
.footer-policy {
  display: inline-block;
  margin-top: 4px !important;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(239, 62, 66, 0.16);
  color: #ffd7d8 !important;
  font-size: 0.85rem;
  font-weight: 700;
}
.footer-note { color: #9fb3d1 !important; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 860px) {
  .location-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 3px solid var(--red);
    display: none;
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-call { align-self: flex-start; }
}
