:root {
  --ink: #0c0c0c;
  --muted: #5f6368;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f4f4f4;
  --accent: #d71920;
  --accent-dark: #a90f15;
  --gold: #e0a72e;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  min-width: 360px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  flex: 0 0 78px;
  width: 78px;
  min-width: 78px;
  height: 78px;
  min-height: 78px;
  overflow: hidden;
  background: #162a63;
  border: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 42px;
  min-height: calc(100vh - 83px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 24px 76px;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.98;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #242424;
  font-size: 1.24rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: #fff;
}

.hero-panel {
  border-left: 6px solid var(--accent);
  background: var(--soft);
  padding: 28px;
}

.hero-panel p {
  margin-top: 0;
  font-weight: 800;
  font-size: 1.1rem;
}

.hero-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #303030;
}

.experience-list li {
  display: grid;
  gap: 1px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ddd;
}

.experience-list strong {
  font-size: 0.94rem;
}

.experience-list small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.linkedin-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.linkedin-link:hover {
  color: var(--accent-dark);
}

.section,
.band,
.contact-band {
  padding: 74px max(24px, calc((100vw - var(--max)) / 2));
}

.intro,
.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 44px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.copy p,
.proof p,
.image-split p,
.contact-band p {
  color: #333;
  font-size: 1.06rem;
}

.band {
  background: #111;
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  border-top: 5px solid var(--gold);
  border-radius: 4px;
}

.service span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.service p,
.service strong {
  margin: 0;
}

.service strong {
  font-size: 0.95rem;
}

.service a {
  margin-top: auto;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

.image-split img {
  border-radius: 4px;
  border: 1px solid var(--line);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 46px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: #111;
}

.site-footer p {
  margin: 8px 0 0;
  color: #d8d8d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.page-hero {
  max-width: 900px;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 46px;
}

.page-content {
  max-width: 900px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 78px;
}

.page-content h2 {
  margin-top: 36px;
  font-size: 2rem;
}

.page-content li {
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .intro,
  .proof,
  .image-split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    flex-basis: 62px;
    width: 62px;
    min-width: 62px;
    height: 62px;
    min-height: 62px;
  }

  .brand strong,
  .brand small {
    white-space: normal;
  }

  .nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-panel ul,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
