:root {
  color-scheme: dark;
  --charcoal: #110b08;
  --night: #1c130e;
  --wood: #4b2815;
  --wood-dark: #241109;
  --ember: #ff6a22;
  --flame: #ffb32c;
  --beer: #f7cf63;
  --pine: #2f7d46;
  --moss: #7ba85b;
  --sky: #49b8ff;
  --paper: #fff0cf;
  --text: #fff6df;
  --muted: #dcc8a3;
  --smoke: rgba(255, 246, 223, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --ring: rgba(255, 179, 44, 0.62);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--charcoal);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 106, 34, 0.36), transparent 25rem),
    radial-gradient(circle at 85% 4%, rgba(73, 184, 255, 0.2), transparent 22rem),
    linear-gradient(rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(
      92deg,
      #2b160b 0,
      #3b2112 10px,
      #221007 22px,
      #4b2815 38px,
      #2a1308 52px
    );
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 238, 197, 0.16) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, transparent 0 5rem, rgba(0, 0, 0, 0.26) 5.15rem 5.35rem);
  background-size: 19rem 100%, 100% 100%;
  mix-blend-mode: soft-light;
}

body::after {
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 179, 44, 0.22), transparent 15rem),
    radial-gradient(circle at 50% 100%, rgba(255, 106, 34, 0.18), transparent 24rem);
}

.hero {
  width: 100%;
  padding: clamp(0.45rem, 1.6vw, 1.35rem);
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
  border: clamp(4px, 0.8vw, 10px) solid #2a1509;
  border-radius: clamp(0.8rem, 2vw, 2rem);
  box-shadow:
    0 0 0 2px rgba(255, 211, 105, 0.32),
    0 32px 90px rgba(0, 0, 0, 0.68);
  background: #050509;
}

main,
footer {
  width: min(1160px, calc(100% - clamp(1rem, 5vw, 4rem)));
  margin: 0 auto;
}

.must-do,
.panel,
.detail-card {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 211, 105, 0.25);
  box-shadow: var(--shadow);
}

.must-do::before,
.panel::before,
.detail-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px);
}

.must-do > *,
.panel > *,
.detail-card > * {
  position: relative;
  z-index: 1;
}

.must-do {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin: clamp(0.75rem, 2.4vw, 1.8rem) 0 1rem;
  padding: clamp(1rem, 3vw, 1.7rem);
  border-color: rgba(255, 106, 34, 0.58);
  border-radius: 1.6rem;
  background:
    linear-gradient(115deg, rgba(88, 34, 10, 0.96), rgba(39, 18, 8, 0.96)),
    repeating-linear-gradient(90deg, #5b2d12 0 18px, #3a1a0b 18px 36px);
}

.must-do__stamp {
  width: clamp(5.3rem, 12vw, 8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 4px solid var(--charcoal);
  border-radius: 50%;
  color: #1b0d06;
  background: radial-gradient(circle, #ffe27e, var(--flame) 62%, var(--ember));
  box-shadow: 0 0 0 4px rgba(255, 179, 44, 0.26), 0 14px 30px rgba(0, 0, 0, 0.4);
  font-size: clamp(0.78rem, 1.5vw, 1rem);
  font-weight: 1000;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.must-do h1 {
  max-width: 16ch;
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 5.8vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.45);
}

.must-do p:last-child {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--paper);
  font-weight: 700;
}

.panel {
  border-radius: 2rem;
  background:
    linear-gradient(145deg, rgba(23, 14, 8, 0.94), rgba(53, 27, 12, 0.9)),
    repeating-linear-gradient(88deg, #3c1d0e 0 18px, #281108 18px 35px);
}

.intro {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.4rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--beer);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

.intro h1 {
  max-width: 13ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.4rem, 8vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.lede,
.must-do p,
.detail-card p,
footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.6;
}

.lede {
  max-width: 62ch;
  margin-bottom: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.countdown > div {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 2px solid rgba(255, 211, 105, 0.24);
  border-radius: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 179, 44, 0.2), rgba(70, 32, 12, 0.7)),
    repeating-linear-gradient(90deg, rgba(255, 238, 197, 0.06) 0 1px, transparent 1px 16px);
}

.countdown strong {
  display: block;
  color: var(--flame);
  font-size: clamp(1.9rem, 6vw, 4.3rem);
  line-height: 0.95;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.46);
}

.countdown span {
  display: block;
  margin-top: 0.35rem;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.detail-card {
  min-height: 17rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg, rgba(25, 44, 23, 0.92), rgba(46, 24, 12, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
}

.detail-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(23, 56, 50, 0.94), rgba(38, 22, 12, 0.94));
}

.detail-card--lodging {
  border-color: rgba(255, 179, 44, 0.72);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 179, 44, 0.24), transparent 9rem),
    linear-gradient(145deg, rgba(70, 36, 13, 0.96), rgba(21, 11, 6, 0.96));
}

.detail-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(58, 38, 82, 0.9), rgba(46, 24, 12, 0.94));
}

.detail-card__label {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.65rem;
  border: 2px solid rgba(27, 13, 6, 0.35);
  border-radius: 999px;
  color: #1b0d06;
  background: linear-gradient(135deg, #ffe27e, var(--flame));
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8rem;
  margin-top: 0.7rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid rgba(255, 226, 126, 0.34);
  border-radius: 999px;
  color: #1b0d06;
  background: linear-gradient(135deg, var(--beer), var(--flame));
  font-size: 0.82rem;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.15rem;
  border: 3px solid rgba(27, 13, 6, 0.52);
  border-radius: 999px;
  color: #1b0d06;
  font-weight: 1000;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button--big {
  min-height: 4rem;
  padding-inline: clamp(1.2rem, 3vw, 2rem);
  font-size: clamp(1rem, 2vw, 1.28rem);
  white-space: nowrap;
}

.button:hover,
.button:focus-visible,
.detail-card__link:hover,
.detail-card__link:focus-visible {
  transform: translateY(-2px) rotate(-0.5deg);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.button:focus-visible,
.detail-card__link:focus-visible {
  outline: 4px solid var(--ring);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(135deg, #ffe27e, var(--flame) 55%, var(--ember));
}

footer {
  padding: 1rem 0 2rem;
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

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

  .must-do__stamp {
    grid-row: span 2;
  }

  .button--big {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 0;
  }

  .hero__image {
    border-width: 0 0 5px;
    border-radius: 0;
  }

  main,
  footer {
    width: calc(100% - 0.75rem);
  }

  .must-do,
  .panel,
  .detail-card {
    border-radius: 1rem;
  }

  .must-do {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.75rem;
    margin: 0.65rem 0;
    padding: 0.9rem;
  }

  .must-do__stamp {
    grid-row: span 2;
    width: 4.2rem;
    border-width: 3px;
    font-size: 0.62rem;
  }

  .must-do .eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .must-do h1 {
    max-width: 11ch;
    margin-bottom: 0.35rem;
    font-size: clamp(1.65rem, 11vw, 3rem);
  }

  .must-do p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .must-do .button {
    grid-column: 1 / -1;
  }

  .button--big {
    min-height: 3.35rem;
    font-size: 0.95rem;
  }

  .intro {
    gap: 1rem;
    padding: 1.05rem;
  }

  .intro h1 {
    max-width: 11ch;
    margin-bottom: 0.65rem;
    font-size: clamp(2.1rem, 13vw, 3.35rem);
  }

  .lede {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .countdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .countdown > div {
    padding: 0.8rem 0.55rem;
    border-radius: 0.85rem;
  }

  .countdown strong {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .countdown span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin: 0.65rem 0 0.8rem;
  }

  .detail-card {
    min-height: 0;
    padding: 0.95rem;
  }

  .detail-card__label {
    margin-bottom: 0.65rem;
    font-size: 0.62rem;
  }

  .detail-card h2 {
    font-size: 1.35rem;
  }

  .detail-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .detail-card__link {
    min-height: 2.65rem;
    margin-top: 0.8rem;
  }

  footer {
    padding-bottom: 1.2rem;
  }
}
