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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f1f5f9;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background-color: #020617;
  color: #e5e7eb;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
}

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

.logo-title {
  font-weight: 600;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #e5e7eb;
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
}

.header-call {
  text-align: right;
  font-size: 0.8rem;
  color: #e5e7eb;
  border-left: 1px solid #1f2933;
  padding-left: 0.75rem;
}

.header-call strong {
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.hero-text {
  color: #475569;
  max-width: 32rem;
}

.hero-cta {
  margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background-color: white;
  border: 1px solid #cbd5f5;
  color: #1e293b;
}

.btn-secondary:hover {
  background-color: #e5edff;
}

.hero-hours {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #64748b;
}

.hero-video {
  background-color: #020617;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #e5e7eb;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background-color: white;
  border-radius: 0.9rem;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #475569;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.location-list {
  list-style: disc;
  margin: 0.75rem 0 1.25rem 1.1rem;
  color: #475569;
  font-size: 0.95rem;
}

.map-wrapper {
  height: 260px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.faq-item {
  background-color: white;
  border-radius: 0.9rem;
  padding: 1.25rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: #475569;
}

/* Footer */
.site-footer {
  background-color: #020617;
  color: #e5e7eb;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem 0.75rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-contact {
  text-align: right;
}

.footer-phone a {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #111827;
  margin-top: 0.75rem;
}

.footer-bottom-inner {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-video {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-call {
    border-left: none;
    padding-left: 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.25rem;
  }
}
