:root {
  color-scheme: light;
  --paper: #f1eee5;
  --ink: #22251f;
  --muted: #64675d;
  --rule: #d0d0c5;
  --green: #00486c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}
::selection {
  background: #f2a84b;
  color: var(--ink);
}
.masthead,
main,
footer {
  width: min(1100px, calc(100% - 80px));
  margin-inline: auto;
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}
.wordmark {
  font-size: 29px;
  letter-spacing: -1.5px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.wordmark-dot {
  width: 7px;
  height: 7px;
  background: #008672;
  border-radius: 50%;
  display: inline-block;
}
.eyebrow {
  font:
    11px/1.6 "Courier New",
    monospace;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-weight: 500;
}
.intro {
  padding: 79px 0 68px;
}
.intro > .eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
}
h1 {
  font:
    clamp(52px, 7vw, 91px)/1.04 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -3px;
  font-weight: 400;
  margin: 0;
}
h1 em {
  font-weight: 400;
  color: #526653;
}
.intro-copy {
  max-width: 435px;
  margin: 29px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 17px;
  gap: 20px;
}
.section-heading h2 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.section-heading .eyebrow {
  color: var(--muted);
}
.app-card {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  border: 1px solid var(--rule);
  border-radius: 23px;
  overflow: hidden;
  background: #faf9f4;
}
.colour-study {
  min-height: 430px;
  background: #e6e0d0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}
.study-caption {
  font:
    italic 17px/1.4 Georgia,
    serif;
}
.swatches {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr 0.68fr;
  height: 227px;
  border-radius: 100px 100px 9px 9px;
  overflow: hidden;
  transform: rotate(-6deg);
  margin: 4px 20px;
}
.swatches span:nth-child(1) {
  background: #f2a84b;
}
.swatches span:nth-child(2) {
  background: #00ac95;
}
.swatches span:nth-child(3) {
  background: #00486c;
}
.swatches span:nth-child(4) {
  background: #f7c9d5;
}
.study-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.study-foot > span:first-child {
  font:
    31px Georgia,
    serif;
  letter-spacing: -1px;
}
.study-foot .eyebrow {
  font-size: 10px;
}
.app-copy {
  padding: 39px 43px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.access-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 7px 12px;
  border-radius: 100px;
}
.access-label svg {
  width: 14px;
  height: 14px;
}
.app-copy h3 {
  font:
    52px/1 Georgia,
    serif;
  letter-spacing: -1.6px;
  margin: 28px 0 13px;
}
.app-copy .app-subtitle {
  color: var(--ink);
  font-size: 17px;
  margin: 0 0 15px;
}
.app-copy > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 320px;
  margin: 0;
}
.open-app {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  background: var(--ink);
  color: #faf9f4;
  font-size: 14px;
  padding: 15px 23px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s;
}
.open-app:hover {
  background: #3c503e;
}
.open-app span {
  font-size: 20px;
  line-height: 1;
}
.app-copy .access-note {
  font-size: 11px;
  margin-top: 11px;
}
.closing-note {
  font:
    23px/1.55 Georgia,
    serif;
  text-align: center;
  margin: 61px 0 67px;
}
.closing-note span {
  color: var(--muted);
  font-size: 18px;
}
footer {
  padding: 28px 0 35px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
footer .wordmark {
  font-size: 21px;
}
footer > span:nth-child(2),
footer > a {
  font-size: 11px;
  color: var(--muted);
}
footer > a {
  text-decoration: none;
}
@media (max-width: 700px) {
  .masthead,
  main,
  footer {
    width: calc(100% - 40px);
  }
  .masthead {
    padding: 24px 0;
  }
  .masthead > .eyebrow {
    font-size: 9px;
    max-width: 130px;
    text-align: right;
  }
  .wordmark {
    font-size: 25px;
  }
  .intro {
    padding: 54px 0 48px;
  }
  h1 {
    font-size: clamp(44px, 10.8vw, 68px);
    letter-spacing: -1.8px;
  }
  .intro-copy {
    font-size: 14px;
    max-width: 335px;
  }
  .intro > .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .app-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .colour-study {
    min-height: 320px;
    padding: 25px;
    gap: 27px;
  }
  .swatches {
    height: 172px;
    margin: 0 12px;
  }
  .study-caption {
    font-size: 15px;
  }
  .app-copy {
    padding: 29px 28px 33px;
  }
  .app-copy h3 {
    font-size: 45px;
    margin-top: 24px;
  }
  .app-copy > p {
    max-width: none;
  }
  .open-app {
    width: 100%;
    margin-top: 25px;
  }
  .app-copy .access-note {
    align-self: center;
  }
  .closing-note {
    margin: 43px 0 46px;
    font-size: 21px;
  }
  .closing-note span {
    font-size: 17px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer > span:nth-child(2) {
    margin-left: auto;
  }
  footer > a {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .open-app {
    transition: none;
  }
}
