:root {
  --black: #090909;
  --ink: #121212;
  --red: #f20d19;
  --red-dark: #bd0811;
  --white: #f6f3ee;
  --paper: #e9e5de;
  --gray: #aaa59e;
  --line: rgba(255, 255, 255, 0.16);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: white;
  background: var(--red);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  color: white;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  color: var(--red);
}

.brand-mark {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-mark span:last-child {
  color: var(--red);
}

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

nav > a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 18px;
  color: white;
  background: var(--red);
}

.button-primary {
  color: white;
  background: var(--red);
  box-shadow: 7px 7px 0 white;
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 4px 4px 0 white;
}

.hero {
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: white;
  background: var(--black);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 5vw 6vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: var(--red);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  font-size: clamp(64px, 8.3vw, 142px);
  line-height: 0.88;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy {
  max-width: 590px;
  margin: 34px 0 0;
  color: #d1ccc4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-block;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-facts {
  display: flex;
  gap: 56px;
  margin: 65px 0 0;
}

.hero-facts div {
  padding-left: 13px;
  border-left: 3px solid var(--red);
}

.hero-facts dt {
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.02em;
}

.deadline-bar {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 5vw;
  color: white;
  background: var(--red);
}

.deadline-bar > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  gap: 26px;
  white-space: nowrap;
}

.countdown span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown strong {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: 0;
}

.form-section,
.categories-section,
.bando-section {
  padding: 110px 5vw;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  column-gap: 8vw;
  background: var(--paper);
}

.section-intro h2,
.prize-section h2,
.bando-section h2,
.final-cta h2 {
  font-size: clamp(48px, 6vw, 94px);
  line-height: 0.92;
}

.section-intro > p:last-child,
.bando-section > div > p:last-child {
  max-width: 590px;
  margin: 25px 0 0;
  color: #5e5b57;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
}

.form-checklist {
  align-self: end;
  padding: 26px;
  color: white;
  background: var(--black);
  box-shadow: 8px 8px 0 var(--red);
}

.form-checklist p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-checklist ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.form-checklist li::before {
  margin-right: 9px;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.form-shell {
  grid-column: 1 / -1;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid #cbc5bc;
  background: white;
  box-shadow: 14px 14px 0 var(--black);
}

.form-heading {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  color: white;
  background: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading a {
  color: #d9d4cc;
}

.airtable-embed {
  display: block;
  width: 100%;
  height: 1180px;
  border: 0;
  background: white;
}

.form-fallback {
  padding: 24px;
}

.steps-section,
.dates-section {
  padding: 110px 5vw;
  color: white;
  background: var(--black);
}

.section-intro-light h2 {
  color: white;
}

.steps {
  display: grid;
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps > li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 35px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
}

.steps h3,
.category-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.steps p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #bdb8b0;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.5;
}

.steps small {
  display: block;
  margin-top: 10px;
  color: #d7d2ca;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.copy-button {
  display: flex;
  width: min(100%, 560px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 19px;
  padding: 14px 16px;
  color: white;
  border: 1px dashed #67635e;
  background: #1b1b1b;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.copy-button span {
  font-family: monospace;
  font-size: 12px;
}

.copy-button strong {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.light-link {
  margin-top: 20px;
}

.categories-section {
  background: var(--white);
}

.section-intro .categories-note {
  max-width: 690px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.categories-note a {
  color: var(--red);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  border-top: 1px solid #b8b2aa;
  border-left: 1px solid #b8b2aa;
}

.category-grid article {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid #b8b2aa;
  border-bottom: 1px solid #b8b2aa;
  transition: 180ms ease;
}

.category-grid article:hover {
  color: white;
  background: var(--red);
}

.category-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: var(--red);
  font-family: var(--display);
  font-size: 18px;
}

.category-grid article:hover > span {
  color: white;
}

.category-grid p {
  max-width: 450px;
  margin: 15px 0 0;
  color: #6b6761;
  font-family: Georgia, serif;
  line-height: 1.5;
}

.category-grid article:hover p {
  color: white;
}

.prize-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1.3fr;
  align-items: center;
  gap: 8vw;
  padding: 90px 5vw;
  color: white;
  background: var(--red);
}

.prize-stamp {
  font-family: var(--display);
  font-size: clamp(180px, 27vw, 440px);
  line-height: 0.7;
  text-shadow: 9px 9px 0 var(--black);
}

.prize-section h2 {
  max-width: 820px;
}

.prize-section > div:last-child > p:last-child {
  max-width: 680px;
  margin-top: 30px;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

.prize-section .prize-note {
  display: inline-block;
  margin: 28px 0 0;
  padding: 9px 13px;
  color: var(--black);
  background: white;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.friend-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: 110px 5vw;
  color: var(--ink);
  background: var(--paper);
}

.friend-heading h2 {
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.86;
}

.friend-heading > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: #5e5b57;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}

.friend-details {
  display: grid;
  align-content: start;
  border-top: 1px solid #aaa49c;
}

.friend-details article {
  display: grid;
  grid-template-columns: 150px 190px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #aaa49c;
}

.friend-value {
  color: var(--red);
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}

.friend-details h3 {
  margin: 3px 0 0;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}

.friend-details p {
  margin: 2px 0 0;
  color: #625e58;
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
}

.button-friend {
  width: max-content;
  margin-top: 30px;
  color: white;
  background: var(--black);
  box-shadow: 7px 7px 0 var(--red);
}

.button-friend:hover {
  box-shadow: 4px 4px 0 var(--red);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.timeline div {
  position: relative;
  min-height: 150px;
  padding: 26px 20px 0 0;
  border-top: 2px solid #4a4845;
}

.timeline div::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4a4845;
  content: "";
}

.timeline div.active {
  border-color: var(--red);
}

.timeline div.active::before {
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(242, 13, 25, 0.18);
}

.timeline span {
  color: var(--red);
  font-family: var(--display);
  font-size: 33px;
}

.timeline p {
  max-width: 200px;
  margin: 12px 0 0;
  color: #bab5ae;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.bando-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  background: var(--paper);
}

.document-actions {
  display: grid;
  align-content: center;
  gap: 14px;
}

.document-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 100px;
  padding: 18px;
  border: 1px solid #c1bbb2;
  background: var(--white);
  text-decoration: none;
  transition: 180ms ease;
}

.document-card:hover {
  color: white;
  border-color: var(--red);
  background: var(--red);
  transform: translateX(6px);
}

.document-icon {
  display: grid;
  width: 54px;
  height: 64px;
  place-items: center;
  color: white;
  background: var(--black);
  font-size: 10px;
  font-weight: 900;
}

.document-card strong,
.document-card small {
  display: block;
}

.document-card strong {
  font-size: 14px;
  text-transform: uppercase;
}

.document-card small {
  margin-top: 5px;
  color: #77726b;
}

.document-card:hover small {
  color: white;
}

.final-cta {
  padding: 120px 5vw 135px;
  color: white;
  text-align: center;
  background: var(--black);
}

.final-cta > p {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.final-cta .button {
  margin-top: 42px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
  padding: 45px 5vw;
  color: #a7a29a;
  border-top: 1px solid #292929;
  background: var(--black);
  font-size: 11px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand p,
footer > div > p {
  margin: 0 0 6px;
  line-height: 1.5;
}

footer strong {
  color: white;
  text-transform: uppercase;
}

footer a {
  color: white;
}

.footer-note {
  margin: 0;
}

.mobile-cta {
  display: none;
}

@media (max-width: 960px) {
  nav > a:not(.button) {
    display: none;
  }

  .hero-content {
    min-height: 740px;
    padding-top: 100px;
  }

  .form-section,
  .bando-section,
  .prize-section,
  .friend-section {
    grid-template-columns: 1fr;
  }

  .friend-section {
    gap: 55px;
  }

  .form-checklist {
    margin-top: 40px;
  }

  .prize-stamp {
    font-size: 230px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    padding: 0 20px;
  }

  .site-header .button {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .hero-content {
    min-height: 670px;
    padding: 80px 20px 60px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-facts {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-top: 50px;
  }

  .hero-facts dd {
    font-size: 24px;
  }

  .deadline-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 20px;
  }

  .countdown {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .countdown strong {
    font-size: 30px;
  }

  .form-section,
  .categories-section,
  .steps-section,
  .friend-section,
  .dates-section,
  .bando-section {
    padding: 78px 20px;
  }

  .section-intro h2,
  .prize-section h2,
  .friend-heading h2,
  .bando-section h2,
  .final-cta h2 {
    font-size: 47px;
  }

  .section-intro > p:last-child,
  .bando-section > div > p:last-child {
    font-size: 16px;
  }

  .form-shell {
    margin-top: 38px;
    box-shadow: 7px 7px 0 var(--black);
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .airtable-embed {
    height: 1260px;
  }

  .steps {
    margin-top: 48px;
  }

  .steps > li {
    grid-template-columns: 65px 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  .step-number {
    font-size: 38px;
  }

  .steps h3,
  .category-grid h3 {
    font-size: 27px;
  }

  .copy-button {
    align-items: flex-start;
    flex-direction: column;
  }

  .copy-button span {
    word-break: break-all;
  }

  .category-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .category-grid article {
    min-height: 210px;
    padding: 26px;
  }

  .category-grid article > span {
    margin-bottom: 36px;
  }

  .prize-section {
    gap: 30px;
    padding: 78px 20px;
  }

  .friend-section {
    gap: 45px;
  }

  .friend-details article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 25px 0;
  }

  .friend-details h3 {
    margin-top: 4px;
  }

  .prize-stamp {
    font-size: 180px;
  }

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

  .timeline div {
    min-height: 115px;
  }

  .bando-section {
    gap: 45px;
  }

  .document-card {
    grid-template-columns: auto 1fr;
  }

  .document-card b {
    display: none;
  }

  .final-cta {
    padding: 90px 20px 120px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding: 42px 20px 100px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 15;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    color: white;
    background: var(--red);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.34);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta span {
    font-size: 22px;
  }
}

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

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