:root {
  --navy: #062957;
  --navy-deep: #031a38;
  --red: #b5121b;
  --red-dark: #8d0e15;
  --paper: #f7f7f4;
  --white: #ffffff;
  --ink: #10233f;
  --muted: #5e6c7d;
  --line: #d8dde5;
  --panel: #ffffff;
  --panel-soft: #eef2f7;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header-inner { min-height: 92px; }
.brand { text-decoration: none; }
.brand-logo {
  width: min(360px, 54vw);
  height: auto;
}
nav { display: flex; gap: 1.25rem; }
nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
}
nav a:hover { color: var(--red); }

.hero {
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(135deg, rgba(6, 41, 87, 0.05), rgba(181, 18, 27, 0.03)),
    var(--paper);
}
.hero-grid,
.split,
.contact-panel,
.fit-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 720px; }
.hero-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 18px 50px rgba(3, 26, 56, 0.08);
}
.hero-visual img { border-radius: 16px; }
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  line-height: 1.12;
  margin-top: 0;
  color: var(--navy-deep);
}
h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  max-width: 11ch;
  margin-bottom: 1.3rem;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
.lede { max-width: 62ch; font-size: 1.18rem; color: var(--muted); }
.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--red); color: var(--white); }
.button.primary:hover { background: var(--red-dark); }
.button.secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.button.secondary:hover { background: var(--navy); color: var(--white); }

.section { padding: 5rem 0; }
.section.muted {
  background: var(--panel-soft);
  border-block: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card,
.fit-panel,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
}
.card {
  padding: 1.5rem;
  border-top: 4px solid var(--navy);
}
.card:nth-child(2n) { border-top-color: var(--red); }
.card p,
.prose,
.fit-panel > p,
.contact-panel p { color: var(--muted); }
.prose p:first-child { margin-top: 0; }
.fit-panel,
.contact-panel { padding: 2rem; }
.contact-panel { border-left: 5px solid var(--red); }
.contact-section { padding-top: 2rem; }
.contact-actions { align-items: flex-start; flex-direction: column; margin-top: 0; }
.fine-print { font-size: 0.86rem; max-width: 42ch; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
  color: var(--muted);
  background: var(--white);
}
.footer-inner p { margin: 0; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 820px) {
  .header-inner { align-items: center; padding: 0.9rem 0; }
  .brand-logo { width: min(300px, 70vw); }
  nav { display: none; }
  .hero { padding-top: 4rem; }
  .hero-grid,
  .split,
  .contact-panel,
  .fit-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-visual { max-width: 520px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .brand-logo { width: min(260px, 78vw); }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
