:root {
  --black: #0b0c0e;
  --near-black: #141518;
  --dark-grey: #1f2125;
  --grey: #6b6f76;
  --light-grey: #f2f2f3;
  --white: #ffffff;
  --red: #d81324;
  --red-dark: #a80f1c;
  --font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--black);
}

.section-sub {
  color: var(--grey);
  max-width: 560px;
  margin-top: 8px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-full { width: 100%; }

.btn-header {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-header:hover { background: var(--red-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 14, 0.95);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--red); }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--light-grey);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to bottom, rgba(8,9,11,0.55), rgba(8,9,11,0.85)),
    url("https://images.unsplash.com/photo-1571901205682-f0f75571f6b8?fm=jpg&q=80&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 820px;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 620px;
  color: var(--light-grey);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--light-grey);
  font-weight: 600;
}
.hero-trust .divider { color: var(--red); }

/* Trust strip */
.strip {
  background: var(--near-black);
  color: var(--white);
  padding: 28px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--white);
}
.strip-item span:not(.divider) {
  color: #a9adb4;
  font-size: 0.85rem;
}

/* Services */
.services { padding: 90px 0; background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 24px;
  border: 1px solid #e7e7e9;
  border-radius: 8px;
  background: var(--light-grey);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--red);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p { color: var(--grey); font-size: 0.95rem; }

/* Why */
.why { background: var(--black); color: var(--white); padding: 90px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { color: var(--white); margin-bottom: 20px; }
.why-text p { color: #c7c9cd; margin-bottom: 16px; }
.why-text .btn { margin-top: 12px; }

.why-stats {
  display: grid;
  gap: 20px;
}
.stat {
  background: var(--near-black);
  border-left: 4px solid var(--red);
  padding: 22px 24px;
  border-radius: 4px;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}
.stat-label {
  color: #c7c9cd;
  font-size: 0.9rem;
}

/* Gallery */
.gallery { padding: 90px 0; background: var(--light-grey); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}
.gallery-1 { background-image: url("https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?fm=jpg&q=75&w=900&auto=format&fit=crop"); }
.gallery-2 { background-image: url("https://images.unsplash.com/photo-1651954884976-3549be5452bf?fm=jpg&q=75&w=900&auto=format&fit=crop"); }
.gallery-3 { background-image: url("https://images.unsplash.com/photo-1449426468159-d96dbf08f19f?fm=jpg&q=75&w=900&auto=format&fit=crop"); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { margin-bottom: 24px; opacity: 0.95; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--red-dark);
}
.cta-band .btn-primary:hover { background: var(--light-grey); }

/* Contact */
.contact { padding: 90px 0; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--grey); margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e7e7e9;
  color: var(--near-black);
}
.contact-list a { color: var(--red); text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: var(--light-grey);
  padding: 32px;
  border-radius: 8px;
}
.contact-form h3 { margin-bottom: 20px; color: var(--black); }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 14px;
  color: var(--near-black);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5d6d9;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form button { margin-top: 20px; }
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
}
.form-note a { color: var(--red); font-weight: 600; text-decoration: none; }

/* Footer */
.site-footer {
  background: var(--near-black);
  color: #a9adb4;
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-inner a { color: var(--red); text-decoration: none; font-weight: 600; }

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .strip-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* Mobile nav open state */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--near-black);
  padding: 20px 24px;
  gap: 18px;
}
