:root {
  --paper: #faf7f2;
  --paper-deep: #efe6da;
  --ink: #171412;
  --muted: #645d55;
  --line: rgba(23, 20, 18, 0.16);
  --red: #d1372a;
  --red-dark: #a32219;
  --white: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "Segoe UI", Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0) 0%, var(--paper) 92%),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(23, 20, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 18, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 56px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.86) 38%, rgba(250, 247, 242, 0.18) 72%),
    linear-gradient(180deg, rgba(250, 247, 242, 0.06) 0%, rgba(250, 247, 242, 0.9) 100%);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__content {
  width: min(660px, 100%);
  animation: rise-in 760ms ease both;
}

.brand-lockup {
  margin: 0 0 22px;
}

.brand-lockup__main {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-lockup__season {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section__kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 620px;
  margin-block-end: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-block-end: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-block-end: 12px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero__lead {
  max-width: 560px;
  margin-block-end: 34px;
  color: #2e2925;
  font-size: 22px;
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--red-dark);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  box-shadow: 0 14px 30px rgba(163, 34, 25, 0.22);
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(163, 34, 25, 0.26);
}

.button:focus-visible,
.link-status:focus-visible {
  outline: 3px solid rgba(209, 55, 42, 0.35);
  outline-offset: 4px;
}

.button-note {
  max-width: 260px;
  margin: 0;
  color: #3c352f;
  font-size: 16px;
  line-height: 1.35;
}

.link-status {
  width: min(520px, 100%);
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: rgba(255, 250, 243, 0.82);
  color: #342c27;
  font-size: 15px;
  line-height: 1.45;
}

.section,
.steps,
.closing {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 72px 0 56px;
}

.section__inner {
  width: min(760px, 100%);
}

.section p,
.closing p {
  width: min(760px, 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 36px 0 72px;
  border-top: 1px solid var(--line);
}

.step {
  min-height: 230px;
  padding-top: 26px;
  border-top: 4px solid var(--ink);
}

.step__number {
  display: block;
  margin-bottom: 52px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.step p {
  margin: 0;
  font-size: 17px;
  line-height: 1.48;
}

.closing {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 64px 0 88px;
  border-top: 1px solid var(--line);
}

.closing h2 {
  margin: 0;
}

.closing p {
  margin: 0;
  align-self: end;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding: 34px 24px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 247, 242, 0.38) 0%, rgba(250, 247, 242, 0.96) 62%, var(--paper) 100%),
      linear-gradient(90deg, rgba(250, 247, 242, 0.9) 0%, rgba(250, 247, 242, 0.32) 100%);
  }

  .hero__image {
    height: 52%;
    object-position: center top;
  }

  .hero__content {
    padding-top: 40svh;
  }

  .brand-lockup {
    margin-bottom: 18px;
  }

  .brand-lockup__main {
    font-size: 48px;
  }

  h1 {
    font-size: 48px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 19px;
    line-height: 1.42;
  }

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

  .steps {
    gap: 18px;
    padding-bottom: 54px;
  }

  .step {
    min-height: auto;
  }

  .step__number {
    margin-bottom: 28px;
    font-size: 38px;
  }

  .closing {
    gap: 24px;
    padding-bottom: 64px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
    padding: 24px 18px;
  }

  .hero__content {
    padding-top: 36svh;
  }

  .section__kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .brand-lockup {
    margin-bottom: 16px;
  }

  .brand-lockup__main {
    font-size: 40px;
  }

  .brand-lockup__season {
    margin-top: 8px;
    font-size: 12px;
  }

  h1 {
    margin-block-end: 16px;
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  p,
  .hero__lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .button-note {
    max-width: none;
    font-size: 15px;
  }

  .section,
  .steps,
  .closing {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding-top: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
