:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7fb;
  color: #111827;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f6f7fb;
}

body::before {
  display: block;
  width: 100%;
  height: 0.55rem;
  background: linear-gradient(90deg, #118ab2 0%, #06d6a0 34%, #ffd166 68%, #ef476f 100%);
  content: "";
}

a {
  color: #0b6f88;
  font-weight: 700;
  text-decoration-color: rgba(11, 111, 136, 0.35);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #084f61;
  text-decoration-color: currentColor;
}

.page {
  min-height: 100vh;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 22rem);
  align-items: end;
  gap: clamp(2rem, 8vw, 6rem);
  width: min(100%, 820px);
  min-height: calc(100vh - 0.55rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 2rem;
}

.content {
  border-left: 0.35rem solid #ef476f;
  padding-left: clamp(1rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #5b6070;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0 0 2rem;
  font-size: clamp(3rem, 9vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.copy {
  display: grid;
  gap: 0.7rem;
  max-width: 37rem;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.copy p {
  margin: 0;
}

h2 {
  margin: 2.5rem 0 0;
  color: #ef476f;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.shirt {
  width: min(100%, 22rem);
  height: auto;
  justify-self: end;
}

@media (max-width: 560px) {
  .intro {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 0.55rem);
    padding: 1.5rem;
  }

  .shirt {
    width: min(70vw, 14rem);
    justify-self: start;
  }
}
