:root {
  --primary: #0a2540;
  --accent: #ffd60a;
  --text: #1a1a1a;
  --muted: #555;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --border: #e5e5e5;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  text-decoration: none;
}
.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 70%, #000));
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.tagline {
  font-size: 1.25rem;
  margin-bottom: 24px;
  opacity: 0.95;
}
.hero-quote {
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.85;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-primary { background: var(--accent); color: #1a1a1a; }
.btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* Sections */
section { padding: 64px 0; }
section h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 32px;
  color: var(--primary);
  text-align: center;
}

/* Services */
.services { background: var(--bg-soft); }
.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.services-list li {
  background: #fff;
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  font-weight: 600;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-grid .why-item {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: 8px;
}
.why-grid .why-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* Gallery */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Reviews */
.rating-summary {
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.reviews-grid .review {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: 8px;
  border-top: 4px solid var(--accent);
}
.reviews-grid .review p { font-style: italic; margin-bottom: 8px; }
.reviews-grid .review .reviewer { font-weight: 600; color: var(--muted); }

/* Contact */
.contact { background: var(--primary); color: #fff; text-align: center; }
.contact h2, .contact h3 { color: #fff; }
.contact a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact .address, .contact .phone { font-size: 1.15rem; margin-bottom: 16px; }
.hours { margin: 32px auto; max-width: 320px; text-align: left; background: rgba(255,255,255,0.08); padding: 20px; border-radius: 8px; }
.hours h3 { margin-bottom: 12px; text-align: center; }
.hours div { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours div:last-child { border-bottom: none; }

/* Footer */
.site-footer {
  background: #111;
  color: #888;
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero { padding: 60px 0; }
  .site-header .container { padding-top: 12px; padding-bottom: 12px; }
  section { padding: 48px 0; }
}
