:root {
  --primary: #e11d48;
  --primary-dark: #7f1d1d;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --line: #e5e7eb;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; }
.nav-links { display: flex; gap: 26px; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(20, 10, 12, 0.55), rgba(20, 10, 12, 0.6)),
              url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1600&q=80")
              center/cover no-repeat;
}
.hero-content { max-width: 720px; padding: 4rem 0; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.1; margin-bottom: 1rem; }
.hero h1 span { color: #fde68a; }
.hero p { font-size: 1.15rem; opacity: 0.95; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }

/* Stats */
.stats { background: var(--primary); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; padding: 2.2rem 0; text-align: center; }
.stat strong { display: block; font-size: 1.9rem; }
.stat span { opacity: 0.9; font-size: 0.95rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); font-weight: 700; font-size: 0.8rem; }
.section h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 0.4rem 0 2rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-text p { margin-bottom: 1rem; color: var(--muted); }
.split-img img, .card img { border-radius: 14px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.checks { list-style: none; margin-top: 1.2rem; }
.checks li { margin: 0.5rem 0; padding-left: 1.6rem; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.card { background: var(--bg); border-radius: 14px; padding-bottom: 1.4rem; box-shadow: var(--shadow); overflow: hidden; }
.card img { height: 180px; border-radius: 0; }
.card h3 { margin: 1rem 1.4rem 0.4rem; }
.card p { margin: 0 1.4rem; color: var(--muted); }

/* Offices */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.office { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow); }
.office h3 { margin-bottom: 0.6rem; color: var(--primary-dark); }
.office p { color: var(--muted); }
.office .tel { margin-top: 0.6rem; color: var(--ink); font-weight: 600; }

/* CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: 0.6rem; }
.cta p { color: var(--muted); margin-bottom: 1.6rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info p { margin-bottom: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
.form-note { color: var(--primary); font-weight: 600; min-height: 1.2em; }

/* Footer */
.site-footer { background: #111827; color: #d1d5db; padding: 3rem 0 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-col h4 { color: #fff; margin-bottom: 0.8rem; font-size: 1rem; }
.footer-col a, .footer-col p { display: block; color: #d1d5db; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fde68a; }
.footer-bottom { border-top: 1px solid #1f2937; margin-top: 2rem; padding-top: 1.2rem; text-align: center; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 68px; right: 0;
    flex-direction: column;
    background: #fff;
    width: 220px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .split, .contact-grid { grid-template-columns: 1fr; }
}
