:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #172331;
  background: #ffffff;
  font-synthesis: none;
  --navy: #0b3158;
  --accent: #b9341d;
  --accent-dark: #962713;
  --muted: #566474;
  --surface: #f2f3f4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #e05a37;
  outline-offset: 4px;
}

.review-hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1.1fr);
}

.review-hero__media {
  min-height: 560px;
  overflow: hidden;
  background: #dfe3e6;
}

.review-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.review-hero__content {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 7vw, 110px);
}

.brand {
  display: inline-flex;
  align-self: flex-start;
  flex-direction: column;
  margin-bottom: 70px;
  color: var(--navy);
  line-height: 1;
  text-decoration: none;
}

.brand__name {
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__name span {
  color: var(--accent);
}

.brand__descriptor {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin: 0 0 25px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.review-copy {
  max-width: 600px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.review-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 13px 24px;
  border: 2px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

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

.review-button:disabled {
  border-color: #7c8791;
  background: #dfe3e6;
  color: #4c5965;
  cursor: not-allowed;
}

.review-status {
  max-width: 600px;
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 0.84rem;
}

footer {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  background: var(--navy);
  color: #d7e1eb;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .review-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .review-hero__media {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

  .review-hero__content {
    max-width: none;
    padding: 46px 24px 58px;
  }

  .brand {
    margin-bottom: 48px;
  }
}

@media (max-width: 520px) {
  .review-hero__media {
    aspect-ratio: 4 / 3;
  }

  .review-hero__content {
    padding-inline: 18px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .review-button {
    width: 100%;
  }
}

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