@font-face {
  font-family: "Caudex";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/caudex-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/marcellus-latin.woff2") format("woff2");
}

:root {
  --ink: #1f0b03;
  --ink-soft: rgba(31, 11, 3, 0.72);
  --paper: #ffffff;
  --paper-deep: #fff9f1;
  --white: #ffffff;
  --accent: #d19f8f;
  --accent-dark: #bc8777;
  --gold: #c69c6d;
  --line: rgba(84, 86, 85, 0.28);
  --line-light: rgba(84, 86, 85, 0.16);
  --shadow: 0 16px 40px rgba(31, 11, 3, 0.07);
  --serif: "Marcellus", "Songti SC", "STSong", "Times New Roman", serif;
  --sans: "Caudex", "Songti SC", "STSong", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--accent);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 4rem;
  font-weight: 400;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 78px;
  padding: 12px max(5vw, calc((100vw - 1440px) / 2 + 64px));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6e6e6;
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.wordmark__primary {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.18em;
}

.wordmark__secondary {
  margin-top: 7px;
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wordmark__image {
  width: auto;
  height: 38px;
  max-width: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 0.85rem;
}

.site-nav a {
  color: rgba(31, 11, 3, 0.72);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 26px;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.wordmark:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.button--compact {
  min-height: 44px;
  padding: 0 19px;
  font-size: 0.84rem;
}

.button--light {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

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

.button--accent {
  color: var(--white);
  background: var(--accent);
}

.button--accent:hover {
  background: var(--accent-dark);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--ink-soft);
}

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

.button[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(520px, 40.404vw, 760px);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #e7dfd6;
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.94);
}

.hero__wash {
  background: rgba(0, 0, 0, 0.1);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(560px, 46vw);
  padding: 84px max(22px, 7vw);
  padding-left: max(7vw, calc((100vw - 1440px) / 2 + 98px));
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero__content::before {
  position: absolute;
  z-index: -1;
  inset: -50px -98px;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(70px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 3.75vw, 3.4rem);
  letter-spacing: 0;
}

.hero__lead {
  max-width: 490px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.45;
}

.hero__meta {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  text-underline-offset: 5px;
}

.text-link--light {
  color: var(--white);
}

.hero__edition {
  position: absolute;
  z-index: 2;
  right: max(5vw, calc((100vw - 1440px) / 2 + 64px));
  bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-right: 1px solid var(--line-light);
  padding-right: 18px;
  text-align: right;
}

.hero__edition span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.hero__edition strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.campaign-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.campaign-bar__item {
  min-height: 132px;
  padding: 30px 3vw;
  border-right: 1px solid #e6e6e6;
}

.campaign-bar__item:last-child {
  border-right: 0;
}

.campaign-bar__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(31, 11, 3, 0.48);
  font-size: 0.72rem;
}

.campaign-bar__item strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.campaign-bar__item--countdown strong {
  color: var(--gold);
}

.section-shell {
  width: min(1380px, calc(100% - 9vw));
  margin: 0 auto;
}

.prize {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  gap: 8vw;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
}

.prize__visual {
  position: relative;
  min-height: 650px;
}

.prize__visual img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.prize__number {
  position: absolute;
  right: -34px;
  bottom: -34px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  font-family: var(--serif);
  font-size: 2.2rem;
  border-radius: 2px;
}

.prize__copy {
  max-width: 520px;
}

.lede {
  margin-bottom: 40px;
  color: rgba(31, 11, 3, 0.76);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.8;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.spec-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.spec-list div:nth-child(even) {
  padding-left: 24px;
}

.spec-list dt {
  margin-bottom: 5px;
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.72rem;
}

.spec-list dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.16rem;
}

.small-note {
  margin-bottom: 0;
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.78rem;
  line-height: 1.7;
}

.how {
  padding-top: 110px;
  padding-bottom: 130px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10vw;
  align-items: end;
  margin-bottom: 82px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -6vw;
}

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

.section-heading > p:last-child {
  max-width: 570px;
  margin-bottom: 5px;
  color: rgba(31, 11, 3, 0.7);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps li {
  min-height: 300px;
  padding: 38px 34px 44px;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

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

.steps__number {
  display: block;
  margin-bottom: 62px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.steps p {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(31, 11, 3, 0.68);
  font-size: 0.94rem;
}

.register-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 9vw;
  padding: 130px 7vw;
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.register-section__intro {
  max-width: 540px;
}

.register-section__intro h2 {
  margin-bottom: 28px;
}

.register-section__intro > p {
  color: rgba(31, 11, 3, 0.7);
  font-size: 1rem;
}

.register-section__date {
  display: flex;
  margin-top: 52px;
  flex-direction: column;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.register-section__date span {
  margin-bottom: 6px;
  color: rgba(31, 11, 3, 0.46);
  font-size: 0.72rem;
}

.register-section__date strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.registration-form {
  align-self: center;
  padding: 48px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}

.field {
  margin-bottom: 26px;
}

.field label,
.lookup-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 400;
}

.field input,
.lookup-form input {
  width: 100%;
  height: 56px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus,
.lookup-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(209, 159, 143, 0.18);
}

.field__hint {
  margin: 9px 0 0;
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.76rem;
}

.consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(31, 11, 3, 0.66);
  font-size: 0.76rem;
  line-height: 1.65;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.consent a {
  text-underline-offset: 3px;
}

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.form-message[data-state="success"] {
  color: #2e6a49;
}

.form-message[data-state="error"] {
  color: #a73522;
}

.entry-list {
  padding-top: 118px;
}

.entry-list__heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 46px;
}

.entry-list__heading h2 {
  margin-bottom: 0;
}

.entry-list__heading > p {
  margin-bottom: 6px;
  color: rgba(31, 11, 3, 0.7);
  font-size: 0.86rem;
}

.public-entry-list {
  border-top: 1px solid var(--line);
}

.public-entry-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 82px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 14px 8px;
}

.public-entry-row__number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.86rem;
}

.public-entry-row__email {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
}

.public-entry-row__time {
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.76rem;
  white-space: nowrap;
}

.entry-list__empty {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.entry-list__empty strong {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.entry-list__empty span {
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.8rem;
}

.lookup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 9vw;
  align-items: start;
  width: min(1380px, calc(100% - 9vw));
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 130px;
}

.lookup-section__copy {
  max-width: 520px;
}

.lookup-section__copy .eyebrow {
  color: var(--gold);
}

.lookup-section__copy > p:last-child {
  color: rgba(31, 11, 3, 0.7);
}

.lookup-panel {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 38px 0;
}

.lookup-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.lookup-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  background: #f8f8f8;
}

.lookup-result[data-state="winner"] {
  color: var(--white);
  background: var(--accent);
}

.lookup-result[data-state="not-winner"] {
  background: #f8f8f8;
}

.lookup-result[data-state="pending"] {
  background: var(--paper-deep);
}

.lookup-result__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.lookup-result strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
}

.lookup-result p {
  margin-bottom: 0;
  color: inherit;
  font-size: 0.83rem;
  opacity: 0.76;
}

.winners {
  padding-top: 20px;
  padding-bottom: 130px;
}

.winners__heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 46px;
}

.winners__heading h2 {
  margin-bottom: 0;
}

.winners__heading > p {
  margin-bottom: 6px;
  color: rgba(31, 11, 3, 0.7);
  font-size: 0.86rem;
}

.winner-board {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 2px;
}

.winner-board__empty {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.winner-board__empty span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.winner-board__empty strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.winner-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  padding: 0 30px;
}

.winner-row:last-child {
  border-bottom: 0;
}

.winner-row__label {
  color: rgba(31, 11, 3, 0.5);
  font-size: 0.72rem;
}

.winner-row__email {
  font-family: var(--serif);
  font-size: 1.24rem;
}

.winner-row__status {
  justify-self: end;
  color: #7f6b46;
  font-size: 0.78rem;
  font-weight: 400;
}

.next-round {
  padding: 120px 0;
  background: #f4f2ef;
  border-top: 1px solid #e6e6e6;
}

.next-round__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 8vw;
  align-items: center;
}

.next-round__visual img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.next-round__copy {
  max-width: 540px;
}

.next-round__specs {
  margin-top: 34px;
  margin-bottom: 0;
}

.next-round__link {
  margin-top: 34px;
  gap: 8px;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  padding-top: 110px;
  padding-bottom: 130px;
  border-top: 1px solid var(--line);
}

.faq .section-heading {
  display: block;
  margin-bottom: 0;
}

.faq .section-heading h2 {
  max-width: 340px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 48px 24px 0;
  font-family: var(--serif);
  font-size: 1.18rem;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  content: "+";
  color: var(--accent);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
}

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

.faq-list details p {
  max-width: 710px;
  padding: 0 54px 26px 0;
  color: rgba(31, 11, 3, 0.68);
  font-size: 0.92rem;
}

.terms {
  padding: 64px 7vw;
  color: rgba(31, 11, 3, 0.64);
  background: var(--paper-deep);
  border-top: 1px solid #e6e6e6;
  font-size: 0.78rem;
}

.terms h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.6rem;
}

.terms p {
  max-width: 1180px;
  margin-bottom: 12px;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 52px 7vw;
  color: rgba(31, 11, 3, 0.64);
  background: var(--white);
  border-top: 1px solid #e6e6e6;
  font-size: 0.72rem;
}

.site-footer .wordmark__image {
  height: 46px;
}

.site-footer p {
  margin: 10px 0 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero__content {
    width: min(620px, 76vw);
  }

  .campaign-bar {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-bar__item:nth-child(2) {
    border-right: 0;
  }

  .prize {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .prize__copy {
    max-width: 720px;
  }

  .register-section,
  .lookup-section,
  .next-round__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .register-section__intro,
  .lookup-section__copy,
  .next-round__copy {
    max-width: 700px;
  }

  .next-round__visual img {
    height: 520px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 2.65rem;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 5vw;
  }

  .wordmark__secondary {
    display: none;
  }

  .wordmark__image {
    height: 30px;
  }

  .site-footer .wordmark__image {
    height: 38px;
  }

  .hero {
    min-height: 540px;
    align-items: center;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__wash {
    background: rgba(0, 0, 0, 0.2);
  }

  .hero__content {
    width: 100%;
    margin-top: 0;
    padding: 72px 6vw;
  }

  .hero__content::before {
    inset: -30px -22px;
    filter: blur(46px);
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__edition {
    right: 6vw;
    bottom: 24px;
  }

  .campaign-bar {
    grid-template-columns: 1fr;
  }

  .campaign-bar__item {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .campaign-bar__item:last-child {
    border-bottom: 0;
  }

  .section-shell {
    width: min(100% - 10vw, 1380px);
  }

  .prize {
    gap: 60px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .prize__visual {
    min-height: auto;
  }

  .prize__visual img {
    height: 440px;
  }

  .prize__number {
    right: -16px;
    bottom: -26px;
    width: 86px;
    height: 86px;
    font-size: 1.7rem;
  }

  .lede {
    font-size: 1.08rem;
  }

  .how {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    display: block;
    margin-bottom: 52px;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    margin-bottom: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li:first-child {
    min-height: 0;
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .steps__number {
    margin-bottom: 28px;
  }

  .register-section {
    padding: 88px 5vw;
  }

  .registration-form {
    padding: 30px 22px;
  }

  .lookup-section {
    width: min(100% - 10vw, 1380px);
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .lookup-form__row {
    grid-template-columns: 1fr;
  }

  .lookup-result {
    grid-template-columns: 48px 1fr;
    padding: 20px 16px;
  }

  .lookup-result__mark {
    width: 48px;
    height: 48px;
  }

  .winners {
    padding-bottom: 88px;
  }

  .next-round {
    padding: 88px 0;
  }

  .next-round__inner {
    gap: 44px;
  }

  .next-round__visual img {
    height: 340px;
  }

  .next-round__link {
    width: 100%;
  }

  .winners__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .entry-list {
    padding-top: 88px;
  }

  .entry-list__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .public-entry-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 17px 0;
  }

  .public-entry-row__time {
    grid-column: 2;
    white-space: normal;
  }

  .winner-board__empty {
    padding: 30px;
  }

  .winner-board__empty strong {
    font-size: 1.2rem;
  }

  .winner-row {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding: 18px 20px;
  }

  .winner-row__label {
    grid-column: 1 / -1;
  }

  .winner-row__status {
    grid-column: 2;
    grid-row: 2;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .terms {
    padding: 52px 5vw;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 5vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
