:root {
  --ink: #0a0a0a;
  --ink-soft: #111111;
  --panel: #151515;
  --panel-2: #1b1b1b;
  --line: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --muted: #9a9a9a;
  --muted-2: #6d6d6d;
  --red: #E02626;
  --red-dark: #9D1B1B;
  --red-light: #F05A3C;
  --radius: 14px;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow.center { text-align: center; }

h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; }
h2.center { text-align: center; margin-bottom: 56px; }

/* ---------- noise overlay for premium texture ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark { width: 22px; height: auto; }
.brand-word {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--white); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.header-cta svg { width: 15px; height: 15px; color: var(--red); }
.header-cta:hover { border-color: var(--red); background: rgba(224, 38, 38, 0.08); }

.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);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224, 38, 38, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(157, 27, 27, 0.12), transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  max-width: 880px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  font-weight: 400;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(224, 38, 38, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(224, 38, 38, 0.4); }
.btn-ghost {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.btn-block { width: 100%; }

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
}
.hero-scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--white), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
.hero-scroll-cue small {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---------- trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}
.trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
  min-width: 130px;
}
.trust-item strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.trust-item span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ---------- about ---------- */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin-top: 18px;
}
.about-copy h2 { margin-top: 4px; }
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.pillar-card:hover { border-color: rgba(224, 38, 38, 0.4); transform: translateY(-3px); }
.pillar-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(224, 38, 38, 0.12);
  color: var(--red);
  margin-bottom: 16px;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pillar-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- companies ---------- */
.companies {
  padding: 110px 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.company-group { margin-bottom: 64px; }
.company-group:last-child { margin-bottom: 0; }
.group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.group-label img { width: 20px; height: auto; }
.group-label h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 38, 38, 0.45);
  background: var(--panel-2);
}
.brand-logo {
  width: 100%;
  height: 80px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 20px;
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.brand-card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-bottom: 18px; flex-grow: 1; }
.brand-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.02em;
}

/* ---------- values ---------- */
.values { padding: 110px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-item { padding: 8px; }
.value-num {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.value-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---------- contact ---------- */
.contact {
  padding: 110px 0 90px;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy p { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 16px 0 28px; }

.call-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.call-card:hover { border-color: rgba(224, 38, 38, 0.4); transform: translateY(-2px); }
.call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224, 38, 38, 0.14);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-icon svg { width: 20px; height: 20px; }
.call-text { display: flex; flex-direction: column; gap: 3px; }
.call-text span { font-size: 12px; color: var(--muted); }
.call-text strong { font-size: 17px; font-weight: 700; }

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.address-card svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.address-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}
.map-container iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-header h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.form-header p { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  color: var(--muted);
}
.contact-form select:valid { color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 100px; font-family: var(--font); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: rgba(224, 38, 38, 0.05);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }

#formResponse { font-size: 13px; }
.alert { padding: 12px 16px; border-radius: 10px; margin-top: 4px; }
.alert-success { background: rgba(46, 204, 113, 0.14); border: 1px solid rgba(46, 204, 113, 0.35); color: #6fe3a0; }
.alert-error { background: rgba(224, 38, 38, 0.14); border: 1px solid rgba(224, 38, 38, 0.35); color: #ff8787; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.footer-brand img { width: 16px; }
.footer-text {
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta span { display: none; }
  .header-cta { padding: 10px; border-radius: 50%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 26px;
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .trust-inner { justify-content: center; }
  .trust-item { min-width: 42%; }
  .trust-divider { display: none; }
  .brand-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
