:root {
  --ink: #111111;
  --paper: #ffffff;
  --quiet: #f4f4f1;
  --line: #d8d8d2;
  --muted: #565656;
  --red: #bc1f32;
  --coke-red: #f40009;
  --red-dark: #8f1724;
  --blue-gray: #253548;
  --sage: #61736a;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.agency-logo {
  display: grid;
  min-height: 66px;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--paper);
}

.agency-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 44px;
  object-fit: contain;
}

.agency-logo-ci {
  width: 260px;
}

.agency-logo-cm {
  width: 320px;
  background: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-actions a {
  border-bottom: 2px solid transparent;
  padding-block: 4px;
}

.header-actions a:hover {
  border-color: var(--red);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 560px;
  margin: 62px 0 36px;
  border-radius: 8px;
  padding: 76px;
  background: var(--coke-red);
  color: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

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

.hero .eyebrow {
  width: fit-content;
  margin-bottom: 26px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--paper);
}

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

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

h1 span {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: 1.45rem;
  font-weight: 800;
}

.choice-section {
  padding: 44px 0 22px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  align-items: end;
  gap: 26px;
  margin-bottom: 22px;
  border-top: 4px solid var(--ink);
  padding-top: 22px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
}

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

.agency-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  color: var(--paper);
  overflow: hidden;
  position: relative;
}

.agency-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(255, 255, 255, 0.12);
  transform: rotate(18deg);
}

.agency-card-pr {
  background: var(--coke-red);
}

.agency-card-mg {
  background:
    linear-gradient(135deg, var(--coke-red), var(--red-dark));
}

.card-kicker {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 4.75rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agency-card p:not(.card-kicker) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
  font-weight: 700;
}

.cta-link {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 430px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.cta-link:hover {
  background: var(--paper);
  color: var(--ink);
}

.cta-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 900;
}

.cta-link:hover .cta-icon {
  background: var(--red);
  color: var(--paper);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-strip div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 24px;
  color: var(--muted);
}

.service-strip div + div {
  border-left: 1px solid var(--line);
}

.service-label {
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 4px solid var(--ink);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

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

  .header-actions {
    justify-content: flex-start;
  }

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

  .section-heading,
  .agency-grid,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1180px);
  }

  .agency-logo-ci,
  .agency-logo-cm {
    width: min(100%, 310px);
  }

  .hero {
    padding: 30px 22px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 3rem;
  }

  .agency-card {
    min-height: 330px;
  }

  .cta-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
