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

:root {
  --blue:    #1a4fa0;
  --blue-lt: #2563eb;
  --gold:    #f5a623;
  --white:   #ffffff;
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-600:#4b5563;
  --gray-900:#111827;
  --radius:  8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HEADER === */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  border-bottom: 3px solid var(--gold);
}

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

.logo { height: 60px; width: auto; }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .01em;
}

.logo-sub {
  font-size: .72rem;
  color: var(--gray-600);
  font-style: italic;
}

nav a {
  color: var(--blue);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  transition: color .2s;
}
nav a:hover { color: var(--blue-lt); }

/* === HERO === */
.hero {
  position: relative;
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity .2s;
}
.btn:hover { opacity: .85; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  margin-top: 1rem;
}
.btn-outline:hover { background: var(--blue); color: var(--white); opacity: 1; }

/* === SECTIONS === */
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); }

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--blue);
  position: relative;
  padding-bottom: .5rem;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: .4rem;
}

/* === SERVICE CARDS === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 3px solid var(--gold);
}

.card-icon { font-size: 2rem; margin-bottom: .75rem; }

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--blue);
}

.card p { font-size: .93rem; color: var(--gray-600); }

/* === PROMOTIONS === */
.promo-list { display: flex; flex-direction: column; gap: 1rem; }

.promo-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.promo-badge {
  background: var(--gold);
  color: var(--gray-900);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* === HOURS === */
.hours-wrap { max-width: 480px; }

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table td {
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .97rem;
}

.hours-table td:last-child { text-align: right; font-weight: 600; }

.hours-note { margin-top: 1rem; font-size: .85rem; color: var(--gray-600); }

/* === LOCATION === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.location-info p { margin-bottom: .4rem; }
.location-note { font-size: .85rem; color: var(--gray-600); margin-top: .5rem; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.map-embed iframe { display: block; }

/* === FOOTER === */
footer {
  background: var(--blue);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 1.5rem 0;
  font-size: .875rem;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  nav a { margin-left: .9rem; font-size: .85rem; }
  .location-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 2.5rem; }
}
