:root {
  --paper: #f8f5ed;
  --ink: #22221f;
  --muted: #60605a;
  --yellow: #f9d54b;
  --line: #dedbd2;
  --lavender: #e6e1f4;
  --radius: 28px;
  --space: 24px;
  --motion: 180ms;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #694ec4;
  outline-offset: 5px;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
}
header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -1.5px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.mark {
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 13px;
  width: 42px;
  height: 42px;
  font-size: 31px;
  transform: rotate(-7deg);
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 36px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 82px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 2px;
  display: block;
}
.eyebrow i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #547858;
  border-radius: 50%;
  margin-right: 6px;
}
h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -4px;
  margin: 27px 0;
}
h1 em {
  font-style: normal;
  position: relative;
  z-index: 0;
}
h1 em:after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: -5px;
  height: 20px;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-3deg);
}
.intro p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  background: var(--ink);
  color: white;
  border-radius: 99px;
  padding: 15px 24px;
  font-weight: 650;
  font-size: 14px;
  transition: transform var(--motion);
}
.button:hover {
  transform: translateY(-3px);
}
.availability {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.art {
  position: relative;
  padding-bottom: 30px;
}
.art img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 140px 140px 35px 35px;
}
.ticket {
  position: absolute;
  bottom: 54px;
  left: -20px;
  background: var(--yellow);
  padding: 18px 24px;
  transform: rotate(-8deg);
  box-shadow: 0 8px 24px #22221f15;
  border-radius: 12px;
}
.ticket span:first-child {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
}
.ticket strong {
  font-size: 30px;
  line-height: 1.2;
}
.ticket span:last-child {
  margin-left: 35px;
  font-size: 24px;
}
.art-note {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 11px;
  color: var(--muted);
}
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip .wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
}
.strip b {
  color: #9e9584;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 75px;
  padding-top: 95px;
  padding-bottom: 100px;
}
h2 {
  font-size: 43px;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 20px 0;
}
.section-head p {
  color: var(--muted);
}
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
li {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
li:first-child {
  padding-top: 0;
}
.number {
  font-size: 13px;
  color: var(--muted);
  padding-top: 7px;
}
h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}
li p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.privacy-panel {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
}
.privacy-panel p {
  margin-top: 0;
  font-size: 16px;
}
.text-link {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid;
  padding: 10px 0;
  display: inline-block;
}
.faq {
  padding-top: 90px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
}
.faq h2 {
  font-size: 32px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  min-height: 44px;
  align-content: center;
}
.faq p {
  color: var(--muted);
  font-size: 15px;
}
.faq p a {
  text-decoration: underline;
}
.closing {
  padding-top: 25px;
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.closing p {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -2px;
}
.closing strong {
  font-weight: 800;
}
footer {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  padding-bottom: 35px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer span {
  font-size: 11px;
  color: var(--muted);
}
footer nav {
  gap: 18px;
  flex-wrap: wrap;
  align-content: center;
}
footer nav a {
  font-size: 12px;
}
.skip {
  position: absolute;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 10;
}
.skip:focus {
  top: 0;
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  header {
    height: 85px;
  }
  header nav {
    gap: 16px;
  }
  header nav a {
    font-size: 12px;
  }
  .brand {
    font-size: 25px;
  }
  .mark {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 35px;
  }
  h1 {
    font-size: 59px;
    letter-spacing: -3px;
  }
  .intro p {
    font-size: 17px;
  }
  .art img {
    height: 330px;
    border-radius: 100px 100px 25px 25px;
  }
  .ticket {
    left: 0;
  }
  .strip .wrap {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
  }
  .strip b {
    display: none;
  }
  .steps,
  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 55px;
    padding-bottom: 55px;
  }
  h2 {
    font-size: 37px;
  }
  .privacy-panel {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .closing p {
    font-size: 32px;
  }
  .closing {
    gap: 20px;
    padding-bottom: 45px;
  }
  .closing .button {
    gap: 12px;
    white-space: nowrap;
  }
  footer {
    flex-direction: column;
  }
  footer nav {
    gap: 8px 18px;
  }
  .art-note {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
