
:root {
  --paper: #f3ead8;
  --paper-light: #fffaf0;
  --ink: #102b4e;
  --red: #df4b36;
  --blue: #a9c3cf;
  --mustard: #d3a52d;
  --charcoal: #1f2730;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    radial-gradient(circle at 20% 30%, rgb(16 43 78 / 8%) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 65%, rgb(97 71 32 / 9%) 0 0.7px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 4px;
}

main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.airmail {
  height: 15px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 32px,
    var(--paper-light) 32px 45px,
    var(--blue) 45px 77px,
    var(--paper-light) 77px 90px
  );
}

.site-nav {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid rgb(16 43 78 / 24%);
}

.wordmark {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.wordmark-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--ink);
  font: 800 24px/1 Georgia, serif;
  transform: rotate(-7deg);
}

.wordmark strong,
.wordmark small {
  display: block;
}

.wordmark strong {
  font: 900 20px/0.95 Arial, sans-serif;
  letter-spacing: 0.11em;
}

.wordmark small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.sound-button {
  border: 0;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: rgb(255 250 240 / 55%);
  box-shadow: inset 0 0 0 1px rgb(16 43 78 / 18%);
  cursor: pointer;
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sound-bars {
  height: 13px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.sound-bars i {
  width: 2px;
  height: 5px;
  background: var(--red);
}

.sound-bars i:nth-child(2) {
  height: 11px;
}

.sound-bars i:nth-child(3) {
  height: 8px;
}

.sound-bars i:nth-child(4) {
  height: 13px;
}

.sound-button.is-playing .sound-bars i {
  animation: sound 0.8s ease-in-out infinite alternate;
}

.sound-button.is-playing .sound-bars i:nth-child(2) {
  animation-delay: -0.55s;
}

.sound-button.is-playing .sound-bars i:nth-child(3) {
  animation-delay: -0.25s;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: 70px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow b {
  padding: 5px 7px;
  border: 1px solid currentColor;
  font-size: 8px;
  transform: rotate(-2deg);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 22px;
  color: var(--ink);
  font: 900 clamp(68px, 7vw, 108px)/0.78 Georgia, "Times New Roman", serif;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: var(--red);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

.hero-intro {
  max-width: 570px;
  margin: 0;
  font: 400 18px/1.62 Georgia, "Times New Roman", serif;
}

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

.hero-actions p {
  margin: 0;
  color: rgb(31 39 48 / 68%);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.hero-actions strong {
  color: var(--ink);
}

.primary-cta,
.final-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta {
  min-width: 245px;
  padding: 19px 20px;
  font-size: 11px;
}

.primary-cta b,
.final-cta b {
  color: var(--mustard);
  font-size: 20px;
}

.primary-cta:hover,
.final-cta:hover {
  box-shadow: 3px 3px 0 var(--red);
  transform: translate(4px, 4px);
}

.route-line {
  width: min(510px, 100%);
  margin-top: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 900 10px/1 Arial, sans-serif;
  letter-spacing: 0.13em;
}

.route-line i {
  height: 1px;
  border-top: 2px dashed rgb(16 43 78 / 35%);
}

.route-line b {
  color: var(--red);
  font-size: 19px;
  transform: rotate(6deg);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.portrait-wrap {
  position: absolute;
  top: 0;
  right: 18px;
  z-index: 2;
  width: min(390px, 76%);
  padding: 14px 14px 68px;
  background: #fffaf1;
  box-shadow: 15px 18px 35px rgb(44 35 20 / 19%);
  transform: rotate(3deg);
}

.portrait {
  height: 410px;
  overflow: hidden;
  background: var(--blue);
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 29%;
  filter: saturate(0.82) contrast(1.03);
}

.photo-caption {
  padding: 17px 8px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.photo-caption b {
  color: var(--red);
  font: italic 700 16px/1 Georgia, serif;
  letter-spacing: 0;
}

.tape {
  position: absolute;
  z-index: 4;
  width: 108px;
  height: 31px;
  background:
    linear-gradient(90deg, transparent 0 4px, rgb(255 255 255 / 20%) 4px 5px, transparent 5px),
    rgb(211 165 45 / 72%);
  box-shadow: 0 2px 7px rgb(56 42 15 / 8%);
}

.tape-top {
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}

.tape-side {
  right: -42px;
  bottom: 92px;
  transform: rotate(-43deg);
}

.passport-stamp {
  position: absolute;
  top: 55px;
  left: -14px;
  z-index: 3;
  width: 132px;
  aspect-ratio: 1;
  border: 3px double var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red);
  opacity: 0.83;
  text-align: center;
  transform: rotate(-17deg);
}

.passport-stamp::before,
.passport-stamp::after {
  width: 82%;
  height: 2px;
  margin: 5px;
  content: "";
  background: currentColor;
}

.passport-stamp span,
.passport-stamp small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.19em;
}

.passport-stamp b {
  font: 900 29px/1 Georgia, serif;
  letter-spacing: 0.07em;
}

.boarding-pass {
  position: absolute;
  right: -12px;
  bottom: -13px;
  z-index: 5;
  width: 510px;
  min-height: 155px;
  display: grid;
  grid-template-columns: 1fr 116px;
  color: var(--ink);
  background: #faf4e7;
  box-shadow: 9px 11px 0 rgb(16 43 78 / 12%);
  transform: rotate(-3deg);
}

.pass-main {
  padding: 20px 23px 16px;
}

.pass-main > small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.pass-route {
  margin: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pass-route span {
  display: flex;
  flex-direction: column;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pass-route b {
  font: 900 28px/1 Arial, sans-serif;
  letter-spacing: -0.04em;
}

.pass-route i {
  color: var(--red);
  font-size: 13px;
  font-style: normal;
}

.pass-meta {
  padding-top: 10px;
  border-top: 1px dashed rgb(16 43 78 / 34%);
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr;
  gap: 10px;
}

.pass-meta span {
  display: flex;
  flex-direction: column;
  color: rgb(16 43 78 / 55%);
  font-size: 6px;
  font-weight: 900;
}

.pass-meta strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 9px;
}

.pass-stub {
  position: relative;
  border-left: 2px dashed rgb(16 43 78 / 30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  font-size: 8px;
  font-weight: 900;
}

.pass-stub::before,
.pass-stub::after {
  position: absolute;
  left: -9px;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.pass-stub::before {
  top: -8px;
}

.pass-stub::after {
  bottom: -8px;
}

.pass-stub b {
  margin: 4px 0 10px;
  font: 900 30px/1 Georgia, serif;
}

.pass-stub i {
  width: 58px;
  height: 24px;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 4px,
    var(--ink) 4px 5px,
    transparent 5px 8px
  );
}

.story {
  padding: 94px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  color: var(--paper-light);
  background: var(--ink);
}

.section-heading p {
  margin: 0 0 17px;
  color: var(--mustard);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading h2,
.final-appeal h2 {
  margin: 0;
  font: 900 clamp(48px, 5vw, 76px)/0.88 Georgia, serif;
  letter-spacing: -0.055em;
}

.story-copy {
  max-width: 510px;
  margin: 0;
  color: rgb(255 250 240 / 73%);
  font: 400 18px/1.65 Georgia, serif;
}

.interests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--ink);
  background: var(--blue);
}

.interest-ticket {
  min-height: 300px;
  display: grid;
  grid-template-columns: 74px 1fr;
  background: var(--paper-light);
  border-right: 2px dashed rgb(16 43 78 / 25%);
}

.interest-ticket:nth-child(2) {
  background: #f6e8c1;
}

.interest-ticket:nth-child(3) {
  border-right: 0;
  background: #e7edf0;
}

.ticket-number {
  padding: 26px 0;
  border-right: 2px dashed rgb(16 43 78 / 22%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ticket-number span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ticket-number b {
  color: var(--red);
  font: 900 27px/1 Georgia, serif;
  transform: rotate(-90deg);
}

.ticket-copy {
  padding: 44px 38px;
}

.interest-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 27px;
  filter: grayscale(0.4);
  transform: rotate(-5deg);
}

.interest-ticket:nth-child(2) .interest-icon {
  transform: rotate(4deg);
}

.ticket-copy h3 {
  margin: 27px 0 12px;
  font: 900 27px/0.98 Georgia, serif;
  letter-spacing: -0.045em;
}

.ticket-copy p {
  max-width: 260px;
  margin: 0;
  color: rgb(16 43 78 / 68%);
  font: 400 14px/1.55 Georgia, serif;
}

.final-appeal {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 115px 0;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 70px;
}

.stamp-note {
  width: 145px;
  aspect-ratio: 1;
  border: 3px double var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--red);
  text-align: center;
  transform: rotate(-12deg);
}

.stamp-note span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.stamp-note b {
  margin: 4px 0;
  font: 900 20px/1 Georgia, serif;
}

.final-appeal .eyebrow {
  margin-bottom: 17px;
}

.final-appeal h2 {
  color: var(--ink);
}

.final-appeal > div:nth-child(2) > p:last-child {
  max-width: 480px;
  margin: 22px 0 0;
  font: 400 16px/1.6 Georgia, serif;
}

.final-cta {
  width: 250px;
  min-height: 74px;
  padding: 22px 24px;
  font-size: 11px;
}

footer {
  padding: 28px max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--paper-light);
  background: var(--red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer p:last-child {
  text-align: right;
}

footer button {
  border: 1px solid rgb(255 250 240 / 65%);
  padding: 8px 11px;
  color: var(--paper-light);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}

@keyframes sound {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(62px, 8vw, 86px);
  }

  .boarding-pass {
    right: 0;
    width: 450px;
  }

  .final-appeal {
    grid-template-columns: 130px 1fr;
  }

  .final-cta {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-nav {
    width: min(100% - 32px, 620px);
  }

  .nav-link {
    display: none;
  }

  .hero {
    width: min(100% - 36px, 620px);
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(55px, 15vw, 86px);
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 15px;
  }

  .portrait-wrap {
    right: 8%;
    width: 70%;
  }

  .passport-stamp {
    left: 1%;
  }

  .boarding-pass {
    right: 3%;
    width: 94%;
  }

  .story {
    padding-block: 72px;
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .interest-ticket {
    min-height: 230px;
    border-right: 0;
    border-bottom: 2px dashed rgb(16 43 78 / 25%);
  }

  .final-appeal {
    width: min(100% - 36px, 620px);
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .stamp-note {
    width: 115px;
  }

  .final-cta {
    grid-column: 1;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .site-nav {
    padding-top: 19px;
  }

  .wordmark small {
    display: none;
  }

  .sound-button {
    padding: 9px;
  }

  .sound-button > :not(.sound-bars) {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 480px);
    padding: 46px 0 68px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(50px, 17vw, 74px);
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .hero-visual {
    min-height: 530px;
  }

  .portrait-wrap {
    right: 2%;
    width: 82%;
    padding-bottom: 58px;
  }

  .portrait {
    height: 345px;
  }

  .passport-stamp {
    top: 55px;
    left: -3%;
    width: 108px;
  }

  .boarding-pass {
    right: -3%;
    bottom: 0;
    width: 106%;
    grid-template-columns: 1fr 85px;
  }

  .pass-main {
    padding-inline: 15px;
  }

  .pass-route i {
    font-size: 9px;
  }

  .pass-meta span:nth-child(3) {
    display: none;
  }

  .pass-meta {
    grid-template-columns: 1fr 0.5fr;
  }

  .story {
    padding-inline: 22px;
  }

  .section-heading h2,
  .final-appeal h2 {
    font-size: 49px;
  }

  .ticket-copy {
    padding: 36px 25px;
  }

  .final-appeal {
    width: min(100% - 32px, 480px);
    padding-block: 80px;
  }
}

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

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