@import url("https://api.fontshare.com/v2/css?f[]=array@400,600,700&f[]=supreme@400,500,700&display=swap");

:root {
  --font-display: "Array", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-body: "Supreme", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  --paper: #f2ebdd;
  --paper-deep: #e6dcc8;
  --charcoal: #24211f;
  --charcoal-soft: #5b554e;
  --ultramarine: #3155a6;
  --vermilion: #c84d36;
  --mustard: #be933a;
  --dusty-rose: #a66b74;
  --white: #fffdf8;
  --line: rgba(36, 33, 31, 0.55);
  --line-soft: rgba(36, 33, 31, 0.24);
  --page-pad: 48px;
  --section-space: 112px;
  --header-height: 62px;
  --radius: 2px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

button,
a,
summary {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 196px;
  min-height: 46px;
  gap: 28px;
  padding: 12px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
}

.button-paper {
  color: var(--charcoal);
  background: var(--paper);
}

.button-charcoal {
  color: var(--paper);
  background: var(--charcoal);
}

.button-vermilion {
  width: 100%;
  color: var(--white);
  background: var(--vermilion);
  border-color: var(--vermilion);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--page-pad);
  background: var(--paper);
  border-bottom: 1px solid var(--charcoal);
  transition: transform 180ms ease, min-height 180ms ease;
}

.site-header.is-compact {
  min-height: 54px;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.wordmark {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
}

.desktop-nav a {
  position: relative;
  padding: 20px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 1px;
  background: var(--vermilion);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
}

.tray-button,
.menu-button {
  min-width: 44px;
  min-height: 40px;
  background: transparent;
  border: 1px solid var(--charcoal);
  border-radius: 0;
}

.tray-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 9px;
}

.tray-button span {
  font-size: 9px;
  font-weight: 700;
}

.tray-button strong {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--vermilion);
  font-size: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  padding: 10px;
}

.menu-button i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] i:first-of-type {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] i:last-of-type {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: -1;
  inset: var(--header-height) 0 auto;
  display: none;
  min-height: calc(100svh - var(--header-height));
  padding: 50px 24px;
  color: var(--paper);
  background: var(--ultramarine);
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.is-open {
  z-index: 90;
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.45);
  font-family: var(--font-display);
  font-size: 32px;
}

.home-hero {
  position: relative;
  height: min(720px, calc(100svh - 118px));
  min-height: 600px;
  overflow: hidden;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.home-hero picture,
.home-hero picture img {
  width: 100%;
  height: 100%;
}

.home-hero img {
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: absolute;
  top: 17%;
  left: var(--page-pad);
  width: min(42%, 600px);
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero-copy h1 {
  color: var(--ultramarine);
  font-family: var(--font-body);
  font-size: 88px;
  font-weight: 700;
  line-height: 0.9;
}

.hero-copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.35;
}

.hero-proofline {
  position: absolute;
  right: var(--page-pad);
  bottom: 22px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
}

.hero-proofline i {
  flex: 1;
  height: 1px;
  background: var(--charcoal);
}

.shade-register {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 2.2fr);
  min-height: 620px;
  background: var(--paper);
  border-bottom: 1px solid var(--charcoal);
  --active-ink: #9e3e34;
}

.register-heading {
  padding: var(--section-space) var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.register-heading h2 {
  margin: 24px 0 30px;
  font-size: 54px;
}

.register-heading > p:last-child {
  max-width: 330px;
  color: var(--charcoal-soft);
}

.register-work {
  display: grid;
  grid-template-rows: auto 1fr;
}

.register-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--charcoal);
}

.register-tabs button {
  display: grid;
  min-height: 230px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--charcoal);
  border-radius: 0;
}

.register-tabs button:last-child {
  border-right: 0;
}

.register-tabs button i {
  position: relative;
  width: 100%;
  height: 92px;
  margin-bottom: 18px;
  background: var(--chip);
}

.register-tabs button i::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--paper);
  content: "";
}

.register-tabs button span {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}

.register-tabs button small {
  color: var(--charcoal-soft);
  font-size: 10px;
}

.register-tabs button.is-active {
  color: var(--paper);
  background: var(--active-ink);
}

.register-tabs button.is-active i {
  border: 1px solid var(--paper);
}

.register-tabs button.is-active small {
  color: var(--paper);
}

.register-output {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 14px 40px;
  padding: 56px 8%;
}

.register-output .eyebrow,
.register-output h3,
.register-output > p {
  grid-column: 1;
}

.register-output h3 {
  color: var(--active-ink);
  font-size: 66px;
}

.register-output > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--charcoal-soft);
  font-size: 18px;
}

.register-output a {
  grid-column: 1;
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.registration-mark {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  width: 160px;
  height: 160px;
  border: 1px solid var(--active-ink);
  border-radius: 50%;
}

.registration-mark::before,
.registration-mark::after,
.registration-mark i::before,
.registration-mark i::after {
  position: absolute;
  background: var(--active-ink);
  content: "";
}

.registration-mark::before {
  top: 50%;
  right: -18px;
  left: -18px;
  height: 1px;
}

.registration-mark::after {
  top: -18px;
  bottom: -18px;
  left: 50%;
  width: 1px;
}

.registration-mark i::before {
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border: 1px solid var(--active-ink);
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
}

.registration-mark i::after {
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.pigment-manifest {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.pigment-manifest img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.pigment-manifest::after {
  position: absolute;
  inset: 0;
  background: rgba(36, 33, 31, 0.24);
  content: "";
  pointer-events: none;
}

.pigment-manifest div {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: var(--page-pad);
  max-width: 580px;
  transform: translateY(-50%);
}

.pigment-manifest h2 {
  margin: 24px 0;
  font-size: 64px;
}

.pigment-manifest div > p:last-child {
  max-width: 470px;
}

.sequence-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: var(--section-space) var(--page-pad);
  border-bottom: 1px solid var(--charcoal);
}

.sequence-intro h2 {
  font-size: 58px;
}

.product-band {
  border-bottom: 1px solid var(--charcoal);
}

.product-band figure {
  overflow: hidden;
}

.product-band figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-press {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 720px;
}

.product-press figure {
  border-right: 1px solid var(--charcoal);
}

.band-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.band-number,
.study-number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--vermilion);
  font-size: 10px;
  font-weight: 700;
}

.band-copy h3 {
  margin: 24px 0 30px;
  color: var(--vermilion);
  font-size: 62px;
}

.band-copy > p:not(.eyebrow) {
  max-width: 450px;
  color: var(--charcoal-soft);
}

.band-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
}

.band-actions a,
.band-actions button,
.product-grain button,
.clear-caption button,
.study-row button {
  min-height: 44px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
}

.product-plate {
  position: relative;
}

.product-plate figure {
  height: 720px;
}

.plate-caption {
  display: grid;
  grid-template-columns: 100px 1.3fr 1fr 48px;
  align-items: center;
  min-height: 170px;
  border-top: 1px solid var(--charcoal);
}

.plate-caption > * {
  height: 100%;
  padding: 28px;
  border-right: 1px solid var(--charcoal);
}

.plate-caption > *:last-child {
  border-right: 0;
}

.plate-caption .band-number {
  position: static;
  display: grid;
  place-items: center;
}

.plate-caption h3 {
  margin-top: 9px;
  color: var(--dusty-rose);
  font-size: 38px;
}

.plate-caption > p {
  display: flex;
  align-items: center;
  color: var(--charcoal-soft);
}

.plate-caption button {
  display: grid;
  width: 100%;
  min-width: 48px;
  padding: 0;
  place-items: center;
  background: var(--dusty-rose);
  border: 0;
  font-size: 20px;
}

.product-grain {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 680px;
}

.product-grain .band-copy {
  border-right: 1px solid var(--charcoal);
}

.product-grain .band-copy h3 {
  color: var(--ultramarine);
}

.product-grain button {
  width: fit-content;
  margin-top: 46px;
}

.product-clear figure {
  height: 600px;
}

.clear-caption {
  display: grid;
  grid-template-columns: 100px 1fr 1fr auto;
  align-items: center;
  min-height: 176px;
  padding: 0 var(--page-pad);
}

.clear-caption .band-number {
  position: static;
}

.clear-caption h3 {
  color: var(--mustard);
  font-size: 50px;
}

.clear-caption p {
  max-width: 460px;
  color: var(--charcoal-soft);
}

.process-section {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  min-height: 650px;
  color: var(--paper);
  background: var(--ultramarine);
  border-bottom: 1px solid var(--charcoal);
}

.process-title {
  padding: var(--section-space) var(--page-pad);
  border-right: 1px solid rgba(255, 253, 248, 0.45);
}

.process-title h2 {
  margin-top: 26px;
  font-size: 64px;
}

.process-section ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
}

.process-section li {
  display: grid;
  min-height: 325px;
  align-content: center;
  gap: 14px;
  padding: 54px;
  border-right: 1px solid rgba(255, 253, 248, 0.45);
  border-bottom: 1px solid rgba(255, 253, 248, 0.45);
}

.process-section li:nth-child(2n) {
  border-right: 0;
}

.process-section li:nth-child(n + 3) {
  border-bottom: 0;
}

.process-section li span {
  color: var(--paper-deep);
  font-size: 10px;
}

.process-section li strong {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
}

.process-section li p {
  max-width: 260px;
  color: rgba(255, 253, 248, 0.78);
}

.proof-notes {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--charcoal);
}

.proof-notes header {
  grid-row: 1 / span 3;
  padding: var(--section-space) var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.proof-notes header h2 {
  margin-top: 24px;
  font-size: 54px;
}

.proof-notes > a {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  min-height: 126px;
  gap: 24px;
  padding: 24px var(--page-pad);
  border-bottom: 1px solid var(--charcoal);
}

.proof-notes > a:last-child {
  border-bottom: 0;
}

.proof-notes > a span {
  color: var(--vermilion);
  font-size: 10px;
}

.proof-notes > a strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
}

.proof-notes > a i {
  font-style: normal;
}

.index-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.index-hero > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.index-hero > div:first-of-type {
  position: absolute;
  bottom: 70px;
  left: var(--page-pad);
  max-width: 560px;
}

.index-hero h1 {
  margin: 18px 0 22px;
  font-size: 84px;
}

.index-scale {
  position: absolute;
  right: var(--page-pad);
  bottom: 26px;
  display: grid;
  grid-template-columns: auto 120px 10px 120px auto;
  align-items: center;
  gap: 10px;
  font-size: 9px;
}

.index-scale i {
  height: 1px;
  background: var(--charcoal);
}

.index-scale b {
  width: 10px;
  height: 10px;
  background: var(--vermilion);
}

.specimen-sheet {
  border-bottom: 1px solid var(--charcoal);
}

.specimen-sheet > header {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.9fr;
  align-items: end;
  gap: 48px;
  padding: var(--section-space) var(--page-pad) 70px;
  border-bottom: 1px solid var(--charcoal);
}

.specimen-sheet > header h2 {
  font-size: 56px;
}

.specimen-sheet > header > p:last-child {
  color: var(--charcoal-soft);
}

.shade-rail {
  display: grid;
  grid-template-columns: 230px minmax(480px, 1fr) 90px;
  align-items: stretch;
  min-height: 142px;
  border-bottom: 1px solid var(--charcoal);
}

.shade-rail:last-child {
  border-bottom: 0;
}

.shade-rail > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 4px 12px;
  padding: 24px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.shade-rail > div span {
  grid-row: 1 / span 2;
  color: var(--vermilion);
  font-size: 10px;
}

.shade-rail > div strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.shade-rail > div small {
  font-size: 9px;
}

.shade-rail ol {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 8px;
  padding: 24px;
  list-style: none;
  border-right: 1px solid var(--charcoal);
}

.shade-rail li {
  height: 78px;
  background: var(--shade);
}

.shade-rail button {
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 700;
}

.rail-eye button {
  color: var(--paper);
  background: var(--ultramarine);
}

.rail-cheek button {
  color: var(--paper);
  background: var(--dusty-rose);
}

.rail-lip button {
  color: var(--paper);
  background: var(--vermilion);
}

.rail-clear button {
  background: var(--mustard);
}

.study-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.6fr;
  gap: 50px;
  padding: var(--section-space) var(--page-pad);
  border-bottom: 1px solid var(--charcoal);
}

.study-intro h2 {
  font-size: 58px;
}

.study-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 780px;
  border-bottom: 1px solid var(--charcoal);
}

.study-row figure {
  overflow: hidden;
}

.study-row figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.study-row > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  border-left: 1px solid var(--charcoal);
}

.study-cheek > div {
  border-right: 1px solid var(--charcoal);
  border-left: 0;
}

.study-row h3 {
  margin: 24px 0 30px;
  font-size: 58px;
}

.study-row > div > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--charcoal-soft);
}

.study-row dl {
  margin-top: 44px;
  border-top: 1px solid var(--charcoal);
}

.study-row dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.study-row dt {
  font-size: 10px;
  font-weight: 700;
}

.study-row a,
.study-row button {
  width: fit-content;
  margin-top: 36px;
}

.study-lip h3 {
  color: var(--vermilion);
}

.study-cheek h3 {
  color: var(--dusty-rose);
}

.study-eye h3 {
  color: var(--ultramarine);
}

.comparison-section {
  display: grid;
  grid-template-columns: 0.75fr 2.25fr;
  min-height: 520px;
  border-bottom: 1px solid var(--charcoal);
}

.comparison-section > header {
  padding: 80px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.comparison-section > header h2 {
  margin-top: 24px;
  font-size: 50px;
}

.comparison-scroll {
  align-self: center;
  max-width: 100%;
  overflow-x: auto;
  padding: 48px;
}

.comparison-scroll table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 12px;
}

.comparison-scroll th,
.comparison-scroll td {
  padding: 20px 18px;
  text-align: left;
  border: 1px solid var(--charcoal);
}

.comparison-scroll thead th {
  color: var(--paper);
  background: var(--charcoal);
}

.comparison-scroll tbody th {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
}

.index-cta {
  display: grid;
  min-height: 500px;
  place-items: center;
  align-content: center;
  gap: 26px;
  color: var(--paper);
  text-align: center;
  background: var(--vermilion);
  border-bottom: 1px solid var(--charcoal);
}

.index-cta h2 {
  font-size: 70px;
}

.pdp-opening {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 790px;
  border-bottom: 1px solid var(--charcoal);
}

.pdp-opening > figure {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border-right: 1px solid var(--charcoal);
}

.pdp-opening > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-opening figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--charcoal);
  font-size: 9px;
}

.product-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  --active-ink: #9e3e34;
}

.product-summary h1 {
  margin: 24px 0 30px;
  color: var(--vermilion);
  font-size: 68px;
}

.product-lead {
  max-width: 540px;
  color: var(--charcoal-soft);
  font-size: 18px;
}

.product-facts {
  margin: 34px 0;
  border-top: 1px solid var(--charcoal);
}

.product-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.product-facts dt,
.product-information dt {
  font-size: 10px;
  font-weight: 700;
}

.pdp-shades {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--charcoal);
}

.pdp-shades button {
  min-width: 0;
  min-height: 114px;
  padding: 9px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--charcoal);
}

.pdp-shades button:last-child {
  border-right: 0;
}

.pdp-shades button i {
  display: block;
  height: 54px;
  margin-bottom: 9px;
  background: var(--chip);
}

.pdp-shades button span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.pdp-shades button.is-active {
  color: var(--paper);
  background: var(--active-ink);
}

.pdp-shades button.is-active i {
  border: 1px solid var(--paper);
}

.selected-proof {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  margin-top: 24px;
}

.selected-proof span {
  font-size: 9px;
}

.selected-proof strong {
  grid-row: 2;
  color: var(--active-ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.selected-proof small {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 9px;
}

.selected-copy {
  min-height: 72px;
  margin: 14px 0 20px;
  color: var(--charcoal-soft);
  font-size: 13px;
}

.proof-position {
  display: grid;
  grid-template-columns: 0.85fr 2.15fr;
  min-height: 340px;
  border-bottom: 1px solid var(--charcoal);
}

.proof-position > div {
  padding: 72px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.proof-position h2 {
  margin-top: 22px;
  font-size: 52px;
}

.proof-position ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
}

.proof-position li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 24px;
  border-right: 1px solid var(--charcoal);
}

.proof-position li:last-child {
  border-right: 0;
}

.proof-position li span {
  font-size: 9px;
}

.proof-position li strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.proof-position li small {
  color: var(--charcoal-soft);
}

.proof-position li.is-current {
  color: var(--paper);
  background: var(--vermilion);
}

.proof-position li.is-current small {
  color: var(--paper);
}

.wear-proof {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 700px;
  color: var(--paper);
  background: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}

.wear-proof figure {
  overflow: hidden;
  border-right: 1px solid var(--paper);
}

.wear-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wear-proof > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
}

.wear-proof h2 {
  margin: 24px 0 30px;
  font-size: 58px;
}

.wear-proof > div > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.75);
}

.wear-proof dl {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 253, 248, 0.5);
}

.wear-proof dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.3);
}

.wear-proof dt {
  font-size: 9px;
  font-weight: 700;
}

.texture-proof {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-bottom: 1px solid var(--charcoal);
}

.texture-proof > header {
  padding: 80px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.texture-proof h2 {
  margin: 24px 0 28px;
  font-size: 50px;
}

.texture-proof header > p:last-child {
  color: var(--charcoal-soft);
}

.texture-proof figure {
  border-right: 1px solid var(--charcoal);
}

.texture-proof figure:last-child {
  border-right: 0;
}

.texture-proof figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.texture-proof figcaption {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 84px;
  align-items: center;
  padding: 16px;
  border-top: 1px solid var(--charcoal);
}

.texture-proof figcaption span {
  font-size: 9px;
}

.texture-proof figcaption strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
}

.proof-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--charcoal);
}

.proof-details article {
  min-height: 660px;
  padding: 80px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.proof-details article:last-child {
  border-right: 0;
}

.proof-details h2 {
  margin: 20px 0 42px;
  font-size: 42px;
}

.application-order ol {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--charcoal);
}

.application-order li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.application-order li > span {
  color: var(--vermilion);
  font-size: 10px;
}

.application-order strong {
  font-size: 11px;
}

.application-order p {
  margin-top: 5px;
  color: var(--charcoal-soft);
  font-size: 13px;
}

.formula-roles dl,
.product-information dl {
  border-top: 1px solid var(--charcoal);
}

.formula-roles dl div,
.product-information dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.formula-roles dt {
  color: var(--vermilion);
  font-size: 10px;
  font-weight: 700;
}

.formula-roles dd,
.product-information dd {
  color: var(--charcoal-soft);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  border-bottom: 1px solid var(--charcoal);
}

.faq-section > div:first-child {
  padding: 80px var(--page-pad);
  border-right: 1px solid var(--charcoal);
}

.faq-section h2 {
  margin-top: 24px;
  font-size: 52px;
}

.faq {
  padding: 44px var(--page-pad);
}

.faq details {
  border-bottom: 1px solid var(--charcoal);
}

.faq summary {
  position: relative;
  min-height: 72px;
  padding: 24px 40px 24px 0;
  list-style: none;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  font-size: 18px;
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding: 0 40px 24px 0;
  color: var(--charcoal-soft);
}

.next-proof {
  display: grid;
  min-height: 500px;
  align-content: center;
  padding: 80px var(--page-pad);
  color: var(--paper);
  background: var(--dusty-rose);
  border-bottom: 1px solid var(--charcoal);
}

.next-proof h2 {
  margin: 26px 0;
  font-size: 72px;
}

.next-proof > p:not(.eyebrow) {
  max-width: 440px;
}

.next-proof a {
  width: fit-content;
  margin-top: 38px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 54px;
  padding: 76px var(--page-pad) 30px;
  color: var(--paper);
  background: var(--charcoal);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.footer-brand p {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 9px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
  font-size: 11px;
}

.proof-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
}

.proof-form > div {
  display: grid;
  grid-template-columns: 1fr 46px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.5);
}

.proof-form input {
  min-width: 0;
  height: 48px;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
}

.proof-form input::placeholder {
  color: rgba(255, 253, 248, 0.4);
}

.proof-form button {
  color: var(--paper);
  background: transparent;
  border: 0;
}

.proof-form [data-form-status] {
  min-height: 28px;
  padding-top: 8px;
  color: var(--paper-deep);
  font-size: 10px;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 18px;
  color: rgba(255, 253, 248, 0.42);
  border-top: 1px solid rgba(255, 253, 248, 0.24);
  font-size: 9px;
}

.tray-dialog {
  width: min(540px, calc(100% - 32px));
  max-height: min(720px, calc(100svh - 32px));
  padding: 0;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--charcoal);
  border-radius: 0;
}

.tray-dialog::backdrop {
  background: rgba(36, 33, 31, 0.72);
}

.tray-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-left: 22px;
  color: var(--paper);
  background: var(--ultramarine);
}

.tray-head button {
  width: 64px;
  align-self: stretch;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 253, 248, 0.5);
  font-size: 24px;
}

.tray-intro {
  padding: 24px;
  border-bottom: 1px solid var(--charcoal);
}

.tray-items {
  max-height: 330px;
  overflow-y: auto;
}

.tray-items > div {
  display: grid;
  grid-template-columns: 48px 1fr 50px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--charcoal);
}

.tray-items > div > * {
  padding: 16px;
}

.tray-items > div span {
  color: var(--vermilion);
  font-size: 10px;
}

.tray-items > div strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
}

.tray-items > div button {
  height: 100%;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--charcoal);
  font-size: 20px;
}

.tray-empty {
  min-height: 120px;
  padding: 36px 24px;
  color: var(--charcoal-soft);
}

.tray-dialog > .button {
  margin: 24px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  max-width: 360px;
  padding: 14px 18px;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 36px;
    --section-space: 88px;
  }

  .hero-copy h1 {
    font-size: 72px;
  }

  .register-heading h2,
  .sequence-intro h2,
  .study-intro h2 {
    font-size: 48px;
  }

  .register-output h3 {
    font-size: 54px;
  }

  .registration-mark {
    width: 120px;
    height: 120px;
  }

  .band-copy {
    padding: 52px;
  }

  .band-copy h3 {
    font-size: 50px;
  }

  .study-row > div {
    padding: 58px;
  }

  .study-row h3 {
    font-size: 50px;
  }

  .product-summary {
    padding: 44px;
  }

  .product-summary h1 {
    font-size: 56px;
  }

  .wear-proof > div {
    padding: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 24px;
    --section-space: 76px;
    --header-height: 58px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .home-hero {
    height: min(680px, calc(100svh - 110px));
    min-height: 590px;
  }

  .hero-copy {
    top: 15%;
    width: 52%;
  }

  .hero-copy h1 {
    font-size: 64px;
  }

  .shade-register {
    grid-template-columns: 1fr;
  }

  .register-heading {
    padding-bottom: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .register-heading > p:last-child {
    max-width: 560px;
  }

  .register-tabs button {
    min-height: 190px;
  }

  .register-output {
    min-height: 350px;
  }

  .pigment-manifest,
  .pigment-manifest img {
    min-height: 520px;
    height: 520px;
  }

  .product-press,
  .product-grain {
    grid-template-columns: 1fr;
  }

  .product-press figure,
  .product-grain .band-copy {
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .product-press figure,
  .product-grain figure {
    height: 580px;
  }

  .product-grain .band-copy {
    order: 2;
  }

  .product-grain figure {
    order: 1;
  }

  .plate-caption {
    grid-template-columns: 78px 1.2fr 1fr 48px;
  }

  .plate-caption > * {
    padding: 20px;
  }

  .clear-caption {
    grid-template-columns: 72px 1fr 1fr;
    gap: 20px;
  }

  .clear-caption button {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .process-section,
  .proof-notes,
  .comparison-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .process-title,
  .proof-notes header,
  .comparison-section > header,
  .faq-section > div:first-child {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .proof-notes header {
    grid-row: auto;
  }

  .index-hero {
    min-height: 650px;
  }

  .index-hero > img {
    height: 650px;
  }

  .specimen-sheet > header {
    grid-template-columns: 1fr 1.5fr;
  }

  .specimen-sheet > header > p:last-child {
    grid-column: 2;
  }

  .shade-rail {
    grid-template-columns: 190px minmax(430px, 1fr) 72px;
  }

  .shade-rail > div {
    padding: 20px 24px;
  }

  .study-row {
    grid-template-columns: 1fr;
  }

  .study-row figure {
    min-height: 680px;
  }

  .study-row > div,
  .study-cheek > div {
    min-height: 560px;
    border: 0;
    border-top: 1px solid var(--charcoal);
  }

  .study-cheek > div {
    order: 2;
  }

  .study-cheek figure {
    order: 1;
  }

  .pdp-opening {
    grid-template-columns: 1fr;
  }

  .pdp-opening > figure {
    min-height: 680px;
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .product-summary {
    min-height: 680px;
  }

  .proof-position {
    grid-template-columns: 1fr;
  }

  .proof-position > div {
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .wear-proof {
    grid-template-columns: 1fr;
  }

  .wear-proof figure {
    height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--paper);
  }

  .wear-proof > div {
    min-height: 540px;
  }

  .texture-proof {
    grid-template-columns: 1fr 1fr;
  }

  .texture-proof > header {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .proof-details {
    grid-template-columns: 1fr;
  }

  .proof-details article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .proof-details article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .proof-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
    --section-space: 64px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 14px;
  }

  .wordmark {
    font-size: 20px;
  }

  .tray-button span {
    display: none;
  }

  .home-hero {
    height: min(620px, calc(100svh - 150px));
    min-height: 560px;
  }

  .home-hero img {
    object-position: center;
  }

  .hero-copy {
    top: 8%;
    left: 18px;
    width: 72%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .hero-copy > p:not(.eyebrow) {
    margin: 18px 0 24px;
    font-size: 20px;
  }

  .hero-copy .button {
    min-width: 170px;
    min-height: 42px;
  }

  .hero-proofline {
    right: 18px;
    bottom: 12px;
    left: 18px;
    font-size: 7px;
  }

  .register-heading {
    padding: 64px 18px 42px;
  }

  .register-heading h2,
  .sequence-intro h2,
  .study-intro h2 {
    font-size: 38px;
  }

  .register-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-tabs button {
    min-height: 174px;
    padding: 14px;
    border-bottom: 1px solid var(--charcoal);
  }

  .register-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .register-tabs button:nth-child(n + 3) {
    border-bottom: 0;
  }

  .register-tabs button i {
    height: 70px;
    margin-bottom: 10px;
  }

  .register-output {
    display: block;
    min-height: 430px;
    padding: 52px 18px;
  }

  .register-output h3 {
    margin: 12px 0 20px;
    font-size: 44px;
  }

  .register-output > p:not(.eyebrow) {
    font-size: 15px;
  }

  .registration-mark {
    position: absolute;
    top: 44px;
    right: 30px;
    width: 76px;
    height: 76px;
    opacity: 0.38;
  }

  .registration-mark i::before {
    width: 34px;
    height: 34px;
  }

  .pigment-manifest,
  .pigment-manifest img {
    min-height: 540px;
    height: 540px;
  }

  .pigment-manifest img {
    object-position: center;
  }

  .pigment-manifest div {
    right: 18px;
    left: 18px;
  }

  .pigment-manifest h2 {
    font-size: 43px;
  }

  .sequence-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 64px 18px;
  }

  .product-press figure,
  .product-grain figure {
    height: 340px;
  }

  .band-copy {
    min-height: 440px;
    padding: 60px 18px 42px;
  }

  .band-copy h3 {
    font-size: 43px;
  }

  .band-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 34px;
  }

  .product-plate figure {
    height: 360px;
  }

  .plate-caption {
    grid-template-columns: 58px 1fr 48px;
  }

  .plate-caption > * {
    padding: 16px 12px;
  }

  .plate-caption > p {
    grid-column: 1 / -1;
    min-height: 104px;
    border-top: 1px solid var(--charcoal);
    border-right: 0;
  }

  .plate-caption h3 {
    font-size: 27px;
  }

  .product-clear figure {
    height: 340px;
  }

  .clear-caption {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 310px;
    padding: 34px 18px;
  }

  .clear-caption h3 {
    font-size: 38px;
  }

  .clear-caption p,
  .clear-caption button {
    grid-column: 2;
  }

  .process-title {
    padding: 64px 18px;
  }

  .process-title h2 {
    font-size: 46px;
  }

  .process-section ol {
    grid-template-columns: 1fr;
  }

  .process-section li {
    min-height: 210px;
    padding: 38px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.45);
  }

  .process-section li:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 253, 248, 0.45);
  }

  .process-section li:last-child {
    border-bottom: 0;
  }

  .proof-notes header {
    padding: 64px 18px;
  }

  .proof-notes header h2 {
    font-size: 40px;
  }

  .proof-notes > a {
    grid-template-columns: 58px 1fr auto;
    min-height: 126px;
    gap: 12px;
    padding: 18px;
  }

  .proof-notes > a strong {
    font-size: 17px;
  }

  .index-hero {
    min-height: 590px;
  }

  .index-hero > img {
    height: 590px;
    object-position: 55% center;
  }

  .index-hero > div:first-of-type {
    right: 18px;
    bottom: 62px;
    left: 18px;
  }

  .index-hero h1 {
    font-size: 60px;
  }

  .index-scale {
    right: 18px;
    bottom: 14px;
    left: 18px;
    grid-template-columns: auto 1fr 8px 1fr auto;
  }

  .specimen-sheet > header {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 64px 18px 42px;
  }

  .specimen-sheet > header h2 {
    font-size: 40px;
  }

  .specimen-sheet > header > p:last-child {
    grid-column: auto;
  }

  .shade-rails {
    overflow: hidden;
  }

  .shade-rail {
    grid-template-columns: 1fr 54px;
    min-height: 230px;
  }

  .shade-rail > div {
    grid-column: 1;
    padding: 18px;
    border-right: 1px solid var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
  }

  .shade-rail ol {
    grid-column: 1;
    grid-template-columns: repeat(8, 42px);
    gap: 5px;
    overflow-x: auto;
    padding: 16px 18px;
    border-right: 1px solid var(--charcoal);
  }

  .shade-rail li {
    height: 64px;
  }

  .shade-rail button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .study-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 64px 18px;
  }

  .study-row figure {
    min-height: 470px;
    height: 470px;
  }

  .study-row > div,
  .study-cheek > div {
    min-height: 520px;
    padding: 58px 18px 42px;
  }

  .study-row h3 {
    font-size: 42px;
  }

  .comparison-section > header {
    padding: 64px 18px;
  }

  .comparison-section > header h2 {
    font-size: 42px;
  }

  .comparison-scroll {
    padding: 32px 18px;
  }

  .index-cta {
    min-height: 430px;
    padding: 64px 18px;
  }

  .index-cta h2 {
    font-size: 52px;
  }

  .pdp-opening > figure {
    min-height: 520px;
    height: 520px;
  }

  .product-summary {
    min-height: 760px;
    padding: 58px 18px;
  }

  .product-summary h1 {
    font-size: 52px;
  }

  .product-lead {
    font-size: 16px;
  }

  .pdp-shades {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-shades button {
    min-height: 108px;
    border-bottom: 1px solid var(--charcoal);
  }

  .pdp-shades button:nth-child(2n) {
    border-right: 0;
  }

  .pdp-shades button:nth-child(n + 3) {
    border-bottom: 0;
  }

  .proof-position > div {
    padding: 64px 18px;
  }

  .proof-position h2 {
    font-size: 40px;
  }

  .proof-position ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-position li {
    min-height: 150px;
    border-bottom: 1px solid var(--charcoal);
  }

  .proof-position li:nth-child(2n) {
    border-right: 0;
  }

  .proof-position li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .wear-proof figure {
    height: 430px;
  }

  .wear-proof > div {
    min-height: 560px;
    padding: 58px 18px;
  }

  .wear-proof h2 {
    font-size: 43px;
  }

  .texture-proof {
    grid-template-columns: 1fr;
  }

  .texture-proof > header {
    grid-column: auto;
    padding: 64px 18px;
  }

  .texture-proof h2 {
    font-size: 42px;
  }

  .texture-proof figure {
    border-right: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .texture-proof figure:last-child {
    border-bottom: 0;
  }

  .proof-details article {
    padding: 64px 18px;
  }

  .proof-details h2 {
    font-size: 38px;
  }

  .faq-section > div:first-child {
    padding: 64px 18px;
  }

  .faq-section h2 {
    font-size: 42px;
  }

  .faq {
    padding: 24px 18px 48px;
  }

  .faq summary {
    min-height: 70px;
    padding-right: 30px;
  }

  .next-proof {
    min-height: 430px;
    padding: 64px 18px;
  }

  .next-proof h2 {
    font-size: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 64px 18px 28px;
  }

  .proof-form,
  .copyright {
    grid-column: auto;
  }

  .footer-brand strong {
    font-size: 32px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

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