:root {
  --red: #e02626;
  --red-deep: #a11414;
  --black: #0d0d0d;
  --white: #ffffff;
  --grey: #7a7a7a;
  --line: rgba(255,255,255,0.14);
  --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(--black); 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: 1180px; margin: 0 auto; padding: 0 28px; }

/* header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-mark { width: 22px; }
.brand-word { font-weight: 900; font-size: 19px; letter-spacing: -0.01em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.main-nav a:hover { color: var(--red); }
.header-cta { font-size: 12.5px; font-weight: 800; letter-spacing: 0.03em; padding: 10px 18px; background: var(--red); border-radius: 3px; white-space: nowrap; }
.header-cta:hover { background: var(--red-deep); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); 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; padding: 140px 0 0; overflow: hidden; }
.hero-shape { position: absolute; inset: 0; background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 45%, var(--black) 100%); clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); z-index: -1; }
.hero-inner { padding-bottom: 90px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.hero h1 { font-size: clamp(64px, 12vw, 160px); font-weight: 900; line-height: 0.86; letter-spacing: -0.02em; }
.hero-sub { margin-top: 28px; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 480px; font-weight: 500; }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 30px; border-radius: 3px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s ease, background 0.2s ease; }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { transform: translateY(-2px); background: #1c1c1c; }
.btn-white-out { border-color: var(--white); color: var(--white); background: transparent; }
.btn-white-out:hover { background: var(--white); color: var(--black); }
.btn-block { width: 100%; }

.hero-stats { display: flex; max-width: 1180px; margin: 0 auto; border-top: 1px solid var(--line); }
.stat-block { flex: 1; padding: 30px 28px; border-right: 1px solid var(--line); }
.stat-block:last-child { border-right: none; }
.stat-block strong { display: block; font-size: 42px; font-weight: 900; }
.stat-block span { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.05em; }

/* about */
.about { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.about h2 { font-size: clamp(38px, 5vw, 58px); font-weight: 900; line-height: 0.95; letter-spacing: -0.01em; }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--white); }
.about-copy > p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar-card { background: #161616; border: 1px solid var(--line); border-radius: 6px; padding: 28px; transition: transform 0.25s ease, border-color 0.25s ease; }
.pillar-card:hover { transform: translateY(-4px); border-color: var(--red); }
.pillar-card-alt { background: linear-gradient(160deg, var(--red-deep), #2a0a0a); }
.pillar-num { font-size: 12px; font-weight: 800; color: var(--red); letter-spacing: 0.05em; }
.pillar-card h3 { font-size: 18px; font-weight: 800; margin: 14px 0 10px; }
.pillar-card p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* companies */
.companies { padding: 110px 0; background: #111111; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--red); text-transform: uppercase; margin-bottom: 16px; }
.section-eyebrow-light { color: rgba(255,255,255,0.5); }
.section-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; line-height: 1.02; margin-bottom: 56px; letter-spacing: -0.01em; }
.section-title-light { margin-bottom: 56px; }
.group-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; padding: 8px 16px; background: var(--red); border-radius: 3px; margin-bottom: 24px; }
.group-tag-alt { margin-top: 56px; background: var(--white); color: var(--black); }
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-card { position: relative; background: #1a1a1a; border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px; transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease; display: flex; flex-direction: column; }
.brand-card:hover { transform: translateY(-5px); border-color: var(--red); background: #201414; }
.brand-card-red:hover { border-color: var(--white); background: #1a1414; }
.brand-index { position: absolute; top: 20px; right: 22px; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.25); }
.brand-logo { height: 44px; display: flex; align-items: center; margin-bottom: 22px; }
.brand-logo img { max-height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.brand-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.brand-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; flex-grow: 1; }
.brand-link { font-size: 11px; font-weight: 800; letter-spacing: 0.04em; color: var(--red); }

/* values */
.values { padding: 110px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-item { padding: 24px 0; border-top: 3px solid var(--red); }
.value-num { font-size: 12px; font-weight: 800; color: var(--red); }
.value-item h4 { font-size: 17px; font-weight: 800; margin: 12px 0 10px; }
.value-item p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* contact */
.contact { padding: 110px 0 100px; background: #111111; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-copy > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 18px 0 28px; max-width: 440px; }
.call-card { display: flex; flex-direction: column; gap: 4px; padding: 22px 26px; background: var(--red); border-radius: 6px; margin-bottom: 20px; transition: transform 0.2s ease; }
.call-card:hover { transform: translateY(-2px); }
.call-card span { font-size: 12px; color: rgba(255,255,255,0.8); }
.call-card strong { font-size: 22px; font-weight: 900; }
.address-line { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 24px; }
.map-container { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.5) invert(0.9) contrast(0.85); }
.map-container iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: #1a1a1a; border: 1px solid var(--line); border-radius: 6px; padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; background: #0d0d0d; border: 1px solid var(--line); border-radius: 4px;
  color: var(--white); font-family: var(--font); font-size: 14px; outline: none; transition: border-color 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 14px center; background-size: 16px; color: rgba(255,255,255,0.55); }
.contact-form select:valid { color: var(--white); }
.contact-form textarea { resize: vertical; min-height: 90px; font-family: var(--font); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }

#formResponse { font-size: 13px; }
.alert { padding: 10px 0; }
.alert-success { color: #6fe3a0; }
.alert-error { color: #ff8787; }

/* footer */
.site-footer { padding: 30px 28px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 14px; }
.footer-brand img { width: 16px; }
.footer-text { font-size: 12px; color: var(--grey); }

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

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .stat-block { flex: 1 1 33%; }

  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0d0d0d; border-bottom: 1px solid var(--line); padding: 20px 28px 26px; gap: 18px; }
}
@media (max-width: 620px) {
  .brand-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
