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

:root {
  --primary: #5b73d1;
  --primary-soft: #e5ebff;
  --accent: #f5b567;
  --text: #1f2933;
  --muted: #6b7280;
  --bg: #f9fafb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 250, 251, 0.9);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #fffbeb);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #9a3412;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.header-phone {
  font-weight: 600;
}

.badge-soft {
  background: var(--primary-soft);
  color: #1d3a8a;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

/* Hero */
.hero {
  position: relative;
  color: #f9fafb;
  padding: 3rem 1.5rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.25), transparent 60%),
              linear-gradient(to bottom right, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.9));
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./images/hero-hands.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-end;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.1vw, 2.9rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1rem;
  max-width: 38rem;
  color: #e5e7eb;
  margin-bottom: 1.1rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 1.4rem;
}

.hero-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  color: #e5e7eb;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.45);
}

.hero-sub {
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Hero card */
.hero-card {
  background: rgba(15, 23, 42, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.hero-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: #e5e7eb;
}

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

.section.alt {
  background: #ffffff;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
}

.section-description {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Mission grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.mission-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.mission-card img {
  width: 100%;
  display: block;
  height: 220px;
  object-fit: cover;
}

.mission-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.mission-body h3 {
  margin: 0 0 0.6rem;
}

.mission-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    margin-top: 1.5rem;
  }
  .service-grid,
  .mission-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }
  .hero {
    padding-inline: 1rem;
    padding-top: 2.3rem;
    padding-bottom: 3rem;
  }
  .section {
    padding-inline: 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}
