:root {
  --accent: #cd1935;
  --ink: #161612;
  --muted: #62656a;
  --rule: #d9dce0;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--white);
}

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

.page-shell {
  display: grid;
  grid-template-columns: minmax(36rem, 45.5%) minmax(0, 54.5%);
  min-height: 100svh;
  overflow: hidden;
}

.content-panel {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: clamp(2rem, 4.1vw, 4rem) clamp(2rem, 4vw, 4.25rem) clamp(2rem, 4vw, 3.7rem);
  background: var(--white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  font-size: 0.98rem;
  font-weight: 650;
}

.site-nav a:not(.nav-contact) {
  border-bottom: 1px solid transparent;
  padding-block: 0.4rem;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:not(.nav-contact):hover,
.site-nav a:not(.nav-contact):focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.nav-contact {
  border: 2px solid var(--accent);
  border-radius: 0.3rem;
  color: var(--accent);
  padding: 0.78rem 1.2rem;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--white);
  background: var(--accent);
}

.hero-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: clamp(3rem, 7vh, 6rem) clamp(2.5rem, 4vh, 4rem);
}

.hero-copy h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4.5rem, 7.7vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero-copy p {
  margin: clamp(2rem, 4vh, 3rem) 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.55vw, 1.7rem);
  line-height: 1.48;
}

.primary-action {
  display: inline-flex;
  min-width: 17.5rem;
  min-height: 4.65rem;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2.25rem, 4.5vh, 3.5rem);
  border: 2px solid var(--accent);
  border-radius: 0.35rem;
  background: var(--accent);
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #b6112a;
  box-shadow: 0 0.75rem 2rem rgba(205, 25, 53, 0.2);
  transform: translateY(-2px);
}

.trust-line {
  width: min(100%, 24rem);
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 1.8rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.hero-media {
  position: relative;
  min-height: 100svh;
  margin: 0;
  background: #e9eef4;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

:focus-visible {
  outline: 3px solid rgba(205, 25, 53, 0.34);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .page-shell {
    grid-template-columns: minmax(31rem, 52%) minmax(0, 48%);
  }

  .content-panel {
    padding-inline: 2.5rem;
  }

  .site-nav a:not(.nav-contact) {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(4.2rem, 8vw, 6.4rem);
  }
}

@media (max-width: 760px) {
  .page-shell {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    overflow: visible;
  }

  .content-panel {
    min-height: auto;
    padding: 1.5rem 1.25rem 2rem;
  }

  .wordmark {
    font-size: 1.55rem;
  }

  .nav-contact {
    padding: 0.68rem 0.95rem;
  }

  .hero-copy {
    padding-block: clamp(4rem, 12vh, 6.75rem) 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 17vw, 5.25rem);
    line-height: 0.93;
  }

  .hero-copy p {
    margin-top: 1.75rem;
    font-size: 1.08rem;
  }

  .desktop-break {
    display: none;
  }

  .primary-action {
    width: 100%;
    min-width: 0;
    min-height: 4rem;
    margin-top: 2rem;
    font-size: 1.08rem;
  }

  .trust-line {
    padding-top: 1.35rem;
    font-size: 0.92rem;
  }

  .hero-media {
    min-height: 44svh;
  }

  .hero-media img {
    object-position: 64% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
