:root {
  --red: #ee2429;
  --ink: #171717;
  --muted: #6b6660;
  --line: #e8e0d8;
  --paper: #f7f1ea;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(238, 36, 41, 0.07), transparent 34%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-shell {
  width: 100%;
  min-height: 100vh;
  padding: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 48px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: clamp(24px, 5vw, 72px);
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: min(280px, 58vw);
  padding: 14px 16px;
  background: var(--red);
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.location {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 780px;
  margin-top: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 950;
  line-height: 0.92;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: #3b3733;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 500;
  line-height: 1.35;
}

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

.info-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fffaf5;
}

.info-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.info-grid h2 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.1;
}

.info-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.visual-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--red);
}

.logomark {
  position: absolute;
  top: -12%;
  right: -44%;
  width: 118%;
  opacity: 0.12;
  filter: brightness(0) invert(1);
}

.preview-image {
  position: absolute;
  inset: auto 32px 32px 32px;
  width: calc(100% - 64px);
  max-height: 78%;
  object-fit: cover;
  object-position: center;
  border: 10px solid var(--white);
  box-shadow: 0 30px 80px rgba(35, 10, 10, 0.28);
}

@media (max-width: 980px) {
  .page-shell {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 28px);
  }

  .hero-content {
    gap: 42px;
  }

  .visual-panel {
    min-height: 520px;
  }

  .preview-image {
    max-height: none;
    height: calc(100% - 64px);
  }
}

@media (max-width: 720px) {
  .brand-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    padding: 24px;
  }

  h1 {
    font-size: 48px;
  }

  .lead {
    font-size: 19px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid article {
    min-height: 0;
  }
}
