/* ===== HOME PAGE STYLES ===== */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 21, 16, 0.72) 0%,
    rgba(26, 21, 16, 0.5) 50%,
    rgba(26, 21, 16, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-5);
  max-width: none;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 3.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-6);
  text-wrap: balance;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: var(--space-10);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn--outline-light {
  display: inline-flex;
  align-items: center;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  letter-spacing: 0.03em;
  transition: border-color var(--transition), background var(--transition);
}

.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* ── Welcome strip ── */
.welcome-strip {
  background: var(--color-primary);
  padding-block: var(--space-4);
  overflow: hidden;
}

.welcome-strip__text {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  max-width: none;
}

/* ── Intro section ── */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-24));
  align-items: center;
}

.intro__heading {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.intro__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ── Services preview ── */
.services-preview__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.services-preview__header h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.services-preview__header p {
  color: var(--color-text-muted);
  margin-inline: auto;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
  margin-bottom: var(--space-5);
}

.service-card__link {
  color: var(--color-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: auto;
}

.service-card__link:hover { color: var(--color-primary-hover); }

/* ── Specialties ── */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.specialty-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.specialty-item__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ── Insurance ── */
.insurance__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

.insurance__badge {
  padding: var(--space-3) var(--space-7);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 36, 24, 0.78), rgba(107, 124, 94, 0.7));
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__content h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-banner__content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  margin-inline: auto;
  max-width: 48ch;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .services-preview__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__heading {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .intro__grid {
    grid-template-columns: 1fr;
  }

  .intro__visual {
    order: -1;
  }

  .intro__img {
    height: 300px;
  }

  .specialties__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
