:root {
  --navy: #082d61;
  --navy-deep: #061c3d;
  --red: #d50718;
  --ink: #101828;
  --muted: #667085;
  --line: #dce1e8;
  --paper: #f8f8f6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-x: hidden;
}
.hero {
  width: 100%;
  min-height: calc(100svh - 58px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
}
.hero-content {
  padding: clamp(54px, 7vh, 92px) clamp(32px, 7vw, 108px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(213,7,24,.1);
  animation: pulse 2.4s ease-in-out infinite;
}
h1 {
  margin: 28px 0 24px;
  max-width: 720px;
  color: var(--navy-deep);
  font-size: clamp(56px, 6.3vw, 104px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .93;
}
h1 span { color: var(--red); }
.intro {
  max-width: 555px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}
.contact-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.primary-button {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}
.primary-button:hover { background: var(--red); transform: translateY(-2px); }
.text-link {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #aeb8c7;
  padding-bottom: 4px;
}
.text-link:hover { color: var(--red); border-color: var(--red); }
.office {
  margin-top: clamp(46px, 7vh, 80px);
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 17px;
  align-items: flex-start;
  max-width: 555px;
}
.office-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1px solid #e2b9bd;
  font-size: 22px;
}
.office-label {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
address { color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.6; }
.visual-panel {
  min-height: 610px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--red);
}
.top-index, .panel-note {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.top-index { top: 34px; right: 38px; }
.panel-note { left: 42px; bottom: 34px; margin: 0; }
.outline-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  z-index: -1;
}
.ring-one { width: 570px; height: 570px; }
.ring-two { width: 410px; height: 410px; border-color: rgba(213,7,24,.7); }
.motor-lines {
  position: absolute;
  inset: auto 0 92px auto;
  display: grid;
  gap: 13px;
  opacity: .22;
}
.motor-lines span { display: block; width: 180px; height: 1px; background: white; }
.motor-lines span:nth-child(2), .motor-lines span:nth-child(4) { width: 220px; }
.motor-lines span:nth-child(3) { width: 260px; }
.logo-card {
  width: min(78%, 540px);
  aspect-ratio: 888 / 648;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: white;
  border: 12px solid rgba(255,255,255,.12);
  box-shadow: 22px 22px 0 rgba(6,28,61,.5);
  animation: cardIn 900ms cubic-bezier(.22,.8,.25,1) both;
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; display: block; }
.site-footer {
  min-height: 58px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8991a0;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reveal { opacity: 0; transform: translateY(18px); animation: reveal 700ms cubic-bezier(.22,.8,.25,1) forwards; }
.reveal-1 { animation-delay: 100ms; }
.reveal-2 { animation-delay: 190ms; }
.reveal-3 { animation-delay: 280ms; }
.reveal-4 { animation-delay: 370ms; }
.reveal-5 { animation-delay: 460ms; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes cardIn { from { opacity: 0; transform: translateX(28px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(213,7,24,0); } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 72px clamp(24px, 7vw, 70px) 64px; }
  .visual-panel { min-height: 560px; }
  h1 { font-size: clamp(60px, 11vw, 92px); }
}
@media (max-width: 600px) {
  .hero-content { padding: 54px 22px 48px; }
  .eyebrow { font-size: 10px; letter-spacing: .11em; }
  h1 { margin-top: 25px; font-size: clamp(48px, 15vw, 68px); line-height: .96; }
  .intro { font-size: 16px; line-height: 1.62; }
  .contact-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .primary-button { width: 100%; }
  .text-link { width: fit-content; }
  .office { margin-top: 48px; }
  .visual-panel { min-height: 440px; }
  .visual-panel::after { width: 5px; }
  .logo-card { width: 86%; border-width: 8px; box-shadow: 14px 14px 0 rgba(6,28,61,.5); }
  .ring-one { width: 420px; height: 420px; }
  .ring-two { width: 300px; height: 300px; }
  .panel-note { left: 25px; bottom: 24px; }
  .top-index { top: 25px; right: 24px; }
  .site-footer { min-height: 82px; padding: 18px 22px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .site-footer p { margin: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
