:root {
  --black: #000000;
  --white: #ffffff;
  --steel: #7d8491;
  --steel-dark: #4e5662;
  --red: #db2b39;
  --red-dark: #ad1f2a;
  --surface: #f5f6f7;
  --line: #d9dde2;
  --text: #111317;
  --muted: #5f6670;
  --max: 1180px;
  --shadow: 0 18px 50px rgba(17, 19, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(219, 43, 57, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(250px, 46vw);
  padding-top: 10px;
}

.brand img {
  width: 100%;
  aspect-ratio: 744 / 230;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: var(--steel-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--red);
}

.nav-cta {
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.48fr);
  gap: 30px;
  align-items: end;
  padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(90deg, rgba(217, 221, 226, 0.6) 1px, transparent 1px),
    linear-gradient(0deg, rgba(217, 221, 226, 0.52) 1px, transparent 1px),
    linear-gradient(135deg, var(--white) 0%, #f7f8f9 52%, #ebeef2 100%);
  background-size: 68px 68px, 68px 68px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw -22vw auto;
  width: 48vw;
  height: 48vw;
  min-width: 520px;
  min-height: 520px;
  background: var(--red);
  transform: rotate(12deg);
  opacity: 0.94;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding-bottom: clamp(12px, 3vw, 48px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  line-height: 0.9;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-content p {
  max-width: 630px;
  color: var(--steel-dark);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--black);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

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

.button.secondary {
  background: var(--white);
  color: var(--black);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.hero-panel {
  display: grid;
  gap: 1px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-panel span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.hero-panel span::before {
  content: "";
  width: 22px;
  height: 4px;
  margin-right: 12px;
  background: var(--red);
}

.hero-visual {
  position: absolute;
  inset: 18% auto auto 6%;
  width: min(32vw, 420px);
  min-width: 260px;
  height: 240px;
  opacity: 0.09;
}

.beam,
.hook,
.foundation {
  position: absolute;
  background: var(--black);
}

.beam-one {
  top: 16px;
  left: 58px;
  width: 290px;
  height: 28px;
}

.beam-two {
  top: 56px;
  left: 72px;
  width: 250px;
  height: 18px;
}

.hook {
  top: 40px;
  left: 44px;
  width: 7px;
  height: 112px;
}

.foundation {
  top: 168px;
  left: 0;
  width: 132px;
  height: 10px;
}

.intro,
.split-section,
.method,
.services,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 4vw, 28px);
}

.intro,
.split-section,
.contact {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.statement-only {
  display: block;
  max-width: 1060px;
}

.statement-only h2 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(2.3rem, 5.6vw, 5.1rem);
  line-height: 0.95;
}

.intro p,
.split-section p,
.services-heading p,
.contact p {
  color: var(--muted);
  font-size: 1.05rem;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.response-card,
.services-list article,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.response-card {
  padding: 22px;
}

.response-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.response-card p {
  margin-bottom: 0;
}

.method {
  max-width: none;
  background: #f4f5f6;
  color: var(--black);
}

.method > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.method h2 {
  max-width: var(--max);
}

.method-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.method-line div {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.method-line span {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-weight: 900;
}

.method-line strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.method-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.services-list article {
  min-height: 245px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.services-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 43, 57, 0.42);
  box-shadow: 0 16px 36px rgba(17, 19, 23, 0.08);
}

.services-list span {
  display: block;
  width: 46px;
  height: 8px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--red), var(--steel));
}

.services-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact {
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
}

.contact-box p {
  margin-bottom: 0;
  color: var(--steel-dark);
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 18px 36px;
  border-top: 1px solid var(--line);
  color: var(--steel-dark);
  font-weight: 800;
}

.footer img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--line);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    right: -260px;
    bottom: -260px;
  }

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

  .intro,
  .split-section,
  .contact,
  .services-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro > *,
  .split-section > *,
  .contact > *,
  .services-heading > * {
    min-width: 0;
  }

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

@media (max-width: 640px) {
  .brand {
    width: min(210px, 62vw);
  }

  .nav {
    gap: 10px;
    font-size: 0.86rem;
  }

  .nav a {
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 3.35rem);
    line-height: 0.96;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-panel,
  .response-grid,
  .method-line,
  .services-list {
    grid-template-columns: 1fr;
  }

  .method-line div,
  .services-list article {
    min-height: auto;
  }

  .button {
    width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 60;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.94);
  }

  .brand {
    width: min(210px, 62vw);
    padding-top: 0;
  }

  .hero {
    padding-top: 124px;
  }

  .menu-toggle {
    width: 46px;
    height: 42px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header .nav.is-open {
    display: flex;
  }

  .site-header .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-header .nav a:last-child {
    border-bottom: 0;
  }
}
