/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #ffffff;
  --text:        #111827;
  --muted:       #6b7280;
  --subtle-bg:   #f9fafb;
  --border:      #e5e7eb;
  --accent:      #C8102E;
  --accent-h:    #A50D22;
  --error:       #dc2626;
  --success:     #16a34a;
  --nav-h:       68px;
  --max-w:       1360px;
  --radius:      6px;
  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

header nav {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 20px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--accent-h) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,16,46,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* ── Section shared ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Hero ── */
.hero {
  padding: 72px 24px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 48px;
}

.hero-text h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Hero Video ── */
.hero-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  aspect-ratio: 16/9;
  background: #f3f4f6;
  margin-bottom: 64px;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Services / Cards Grid ── */
.services {
  background: var(--subtle-bg);
  padding: 72px 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon i {
  font-size: 1.1rem;
  color: var(--accent);
}

.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Stat cards ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.stat-card .stat-icon i {
  font-size: 1.25rem;
  color: var(--accent);
}

.stat-card .stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Contact Strip ── */
.contact-strip {
  padding: 72px 24px;
}

.contact-strip .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-strip h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contact-strip p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--subtle-bg);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon i {
  font-size: 1rem;
  color: var(--accent);
}

.contact-item a {
  color: var(--text);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--accent); }

/* ── Footer ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 40px 24px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

footer nav {
  display: flex;
  gap: 24px;
}
footer nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
footer nav a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: rgba(255,255,255,0.55);
  font-size: 1.2rem;
  transition: color var(--transition);
}
.footer-social a:hover { color: #fff; }

.footer-bottom {
  padding-top: 16px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 4px;
  }
  .nav-links.open li a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text);
  }
  .nav-links.open .nav-cta {
    display: inline-block;
    margin-top: 8px;
    color: #fff !important;
  }
  .nav-toggle { display: flex; }

  .hero {
    padding: 48px 24px 0;
  }

  .contact-strip .section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom { text-align: left; }
}

/* ── Fade-in on load ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-text { animation: fadeUp 0.6s ease both; }
.hero-media { animation: fadeUp 0.6s 0.15s ease both; }
