:root {
  --ink: #191714;
  --muted: #615b52;
  --paper: #fbfaf6;
  --line: #ded7ca;
  --rust: #9f4329;
  --rust-dark: #74301e;
  --green: #255b4f;
  --blue: #224a68;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(34, 28, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(25, 23, 20, 0.1);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  padding: 72px clamp(22px, 6vw, 92px) 48px;
  background:
    linear-gradient(rgba(251, 250, 246, 0.16), rgba(251, 250, 246, 0.96)),
    url("https://images.unsplash.com/photo-1495556650867-99590cea3657?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero__content {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rust-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: #332e28;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.32;
}

.hero__actions,
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--primary {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--white);
}

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

.button--secondary {
  background: rgba(255, 255, 255, 0.48);
}

.hero__note {
  align-self: end;
  max-width: 420px;
  padding: 28px;
  border-left: 4px solid var(--rust);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.hero__note span,
.hero__note strong {
  display: block;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.08;
}

.hero__note strong {
  margin-top: 8px;
}

.section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 9vw, 108px) clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.section__text {
  max-width: 560px;
}

.intro__copy {
  max-width: 760px;
  color: #37312b;
  font-size: 21px;
}

.intro__copy p:first-child {
  margin-top: 0;
}

.topic-grid,
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.topic-grid article,
.ticket,
.steps div,
.afterpay__box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.topic-grid article {
  min-height: 170px;
  padding: 22px;
}

.topic-grid p,
.ticket p,
.steps p,
.afterpay__box p {
  color: var(--muted);
}

.question-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: question;
}

.question-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 58px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.question-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 38px;
  color: var(--green);
  font-weight: 800;
  counter-increment: question;
  content: counter(question, decimal-leading-zero);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.steps div {
  padding: 24px;
}

.steps span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.tickets {
  background: #f4f0e8;
}

.tickets .ticket-grid {
  grid-column: 1 / -1;
}

.ticket {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
}

.ticket--featured {
  border-color: rgba(159, 67, 41, 0.45);
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--green);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: auto 0 18px;
  color: var(--ink) !important;
  font-size: 22px;
  font-weight: 800;
}

.ticket .button {
  width: 100%;
}

.afterpay__box {
  max-width: 760px;
  padding: 28px;
  font-size: 19px;
}

.afterpay__box p:first-child {
  margin-top: 0;
}

.afterpay__box p:last-child {
  margin-bottom: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(180px, 260px));
  gap: 28px;
  align-items: start;
  padding: 28px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.footer__brand {
  margin: 0;
  font-weight: 800;
}

.footer__group {
  display: grid;
  gap: 8px;
}

.footer__group h2 {
  margin: 0 0 4px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer a {
  color: var(--rust-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
  }

  .hero__note {
    max-width: 680px;
  }

  .topic-grid,
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0 18px;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    gap: 28px;
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__note {
    padding: 22px;
  }

  h1 {
    font-size: 52px;
  }

  .lead,
  .intro__copy {
    font-size: 19px;
  }

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

  .ticket {
    min-height: 0;
    padding: 22px;
  }

  .price {
    margin-top: 18px;
  }

  .question-list li {
    padding-left: 48px;
    font-size: 18px;
  }

  .footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 380px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 46px;
  }
}
