:root {
  --navy: #06275f;
  --navy-2: #0d3a78;
  --blue: #1768b7;
  --sky: #edf6ff;
  --red: #e32722;
  --orange: #f28b16;
  --yellow: #ffd45a;
  --cream: #fffaf1;
  --paper: #ffffff;
  --ink: #162233;
  --muted: #667386;
  --line: #c9d5e8;
  --hairline: #e7edf5;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 16px 34px rgba(6, 39, 95, 0.1);
  --shadow-soft: 0 8px 20px rgba(6, 39, 95, 0.07);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 92px, rgba(227, 39, 34, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 87% 156px, rgba(242, 139, 22, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 520px, rgba(23, 104, 183, 0.08) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(6, 39, 95, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(6, 39, 95, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #fff8ec 0%, #fbf7ee 44%, #f5f8fc 100%);
  background-size: 120px 120px, 148px 148px, 180px 180px, 38px 38px, 38px 38px, auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

#site {
  overflow-x: hidden;
}

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

body::before {
  top: 0;
  right: 0;
  width: 210px;
  height: 130px;
  background:
    linear-gradient(145deg, var(--red) 0 34%, transparent 35%),
    linear-gradient(155deg, var(--navy) 0 48%, transparent 49%);
  border-bottom-left-radius: 80px;
}

body::after {
  left: 18px;
  bottom: 18px;
  width: 94px;
  height: 94px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(227, 39, 34, 0.55) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(227, 39, 34, 0.55) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(242, 139, 22, 0.5) 49% 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(242, 139, 22, 0.5) 49% 51%, transparent 52%);
  opacity: 0.35;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.hero {
  padding: 18px 0 0;
  color: var(--navy);
}

.hero__inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 342px;
  margin: 0 auto;
  padding: 24px 28px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(264px, 352px);
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 6% 14%, rgba(227, 39, 34, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 23%, rgba(242, 139, 22, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 15%, rgba(23, 104, 183, 0.16) 0 2px, transparent 3px),
    linear-gradient(135deg, #fff 0%, #fff9ef 54%, #eef7ff 100%);
  box-shadow: 0 18px 38px rgba(6, 39, 95, 0.13);
}

.hero__inner::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -54px;
  width: 170px;
  height: 130px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, transparent 0 42%, rgba(255, 255, 255, 0.28) 43% 48%, transparent 49%),
    linear-gradient(135deg, var(--red) 0 42%, var(--navy) 43% 100%);
  transform: rotate(-10deg);
}

.hero__inner::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 24px;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 47%, var(--red) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--red) 48% 52%, transparent 53%),
    linear-gradient(45deg, transparent 48%, var(--orange) 49% 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--orange) 49% 51%, transparent 52%);
  opacity: 0.8;
}

.hero__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 29% 15%, var(--red) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 24%, var(--orange) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 12%, var(--blue) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 36%, #21a66c 0 2px, transparent 3px),
    radial-gradient(circle at 50% 80%, var(--yellow) 0 2px, transparent 3px);
}

.hero__copy,
.hero__art,
.hero__facts {
  position: relative;
  z-index: 1;
}

.hero__copy {
  padding-left: 176px;
  min-width: 0;
  max-width: 100%;
}

.hero .eyebrow,
.section .eyebrow {
  width: fit-content;
  max-width: 100%;
  padding: 4px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  box-shadow: 0 3px 0 rgba(6, 39, 95, 0.18);
}

h1 {
  margin: 8px 0 4px;
  font-size: clamp(3.25rem, 6.6vw, 4.72rem);
  font-weight: 950;
  white-space: nowrap;
}

.lead {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 3.1vw, 1.65rem);
  font-weight: 850;
  color: #1d2c3f;
}

.lead strong {
  color: var(--red);
  font-size: 1.22em;
}

.status {
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  border: 1.5px solid rgba(227, 39, 34, 0.48);
  border-radius: var(--radius);
  color: var(--red);
  background: linear-gradient(180deg, #fff8d9, #fff 74%);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(227, 39, 34, 0.1);
}

.status span + span::before {
  content: " ";
}

.mobile-break {
  display: none;
}

.hero__facts {
  display: grid;
  gap: 12px;
}

.hero__facts div {
  min-width: 0;
  padding: 13px 16px 13px 46px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(6, 39, 95, 0.1);
}

.hero__facts div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--red);
  box-shadow: inset 0 5px 0 rgba(227, 39, 34, 0.16);
}

.hero__facts div:nth-child(2)::before {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--red);
  box-shadow: none;
}

.hero__facts span {
  display: block;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero__facts strong {
  display: block;
  margin-top: 4px;
  font-size: 1.04rem;
}

.hero__art {
  position: absolute;
  left: 38px;
  top: 126px;
  width: 144px;
  min-height: 128px;
}

.lottery-drum {
  position: absolute;
  left: 4px;
  top: 22px;
  width: 104px;
  height: 78px;
  border: 4px solid #8c2a1d;
  border-radius: 20px 20px 30px 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0 13%, transparent 14% 32%, rgba(255, 255, 255, 0.28) 33% 45%, transparent 46%),
    linear-gradient(135deg, #ed4334 0%, #c91f1d 58%, #ffbd41 100%);
  transform: rotate(-10deg);
  box-shadow: 0 8px 0 #dba13e, 0 14px 20px rgba(6, 39, 95, 0.16);
}

.lottery-drum::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 70px;
  width: 28px;
  height: 40px;
  border-left: 4px solid #526272;
  border-right: 4px solid #526272;
}

.lottery-drum::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 104px;
  width: 74px;
  height: 8px;
  border-radius: 999px;
  background: #dba13e;
}

.handbell {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border: 2px solid #a46512;
  border-radius: 8px 8px 24px 24px;
  background: linear-gradient(#ffe27c, #f28b16);
  transform: rotate(-15deg);
  box-shadow: 0 8px 14px rgba(6, 39, 95, 0.16);
}

.handbell::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -14px;
  width: 12px;
  height: 16px;
  border-radius: 999px 999px 0 0;
  background: #9b6422;
}

.handbell::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -5px;
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: #b56c11;
}

.quick-nav {
  width: min(1120px, calc(100% - 32px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quick-nav a,
.button,
.back-to-top {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.quick-nav a {
  min-width: 0;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quick-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(6, 39, 95, 0.14);
}

.quick-nav a:active {
  transform: translateY(0);
}

.quick-nav a:first-child {
  color: #fff;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.nav-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
}

.nav-icon--store {
  border: 3px solid currentColor;
  border-top: 9px solid currentColor;
  border-radius: 2px 2px 5px 5px;
}

.nav-icon--store::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -6px;
  height: 4px;
  background: #fff;
  box-shadow: 7px 0 0 rgba(255, 255, 255, 0.55);
}

.quick-nav a:not(:first-child) .nav-icon--store::before {
  background: var(--paper);
  box-shadow: 7px 0 0 rgba(6, 39, 95, 0.18);
}

.nav-icon--gift {
  border: 3px solid currentColor;
  border-radius: 5px;
}

.nav-icon--gift::before,
.nav-icon--gift::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.nav-icon--gift::before {
  left: 9px;
  top: -3px;
  width: 3px;
  height: 26px;
}

.nav-icon--gift::after {
  left: -3px;
  top: 8px;
  width: 26px;
  height: 3px;
}

.nav-icon--rule {
  border: 3px solid currentColor;
  border-radius: 4px;
}

.nav-icon--rule::before,
.nav-icon--rule::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 5px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.nav-icon--rule::before {
  top: 5px;
}

.nav-icon--pin {
  border-radius: 50% 50% 50% 0;
  background: currentColor;
  transform: rotate(-45deg);
}

.nav-icon--pin::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 0;
}

.section--framed {
  padding: 16px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(6, 39, 95, 0.82);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 3% 8%, rgba(242, 139, 22, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 96% 18%, rgba(227, 39, 34, 0.12) 0 2px, transparent 3px),
    #fff;
  box-shadow: var(--shadow);
}

.section--framed::before,
.coupon-section::before,
.notes-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--orange), var(--red));
}

.section--framed > *,
.coupon-section > *,
.notes-section > * {
  position: relative;
  z-index: 1;
}

.map-section {
  background:
    radial-gradient(circle at 94% 10%, rgba(23, 104, 183, 0.08), transparent 22%),
    #fff;
}

.section--stores {
  background:
    linear-gradient(180deg, #f7fbff 0%, #fff 32%),
    #fff;
}

.section--prizes {
  background:
    radial-gradient(circle at 4% 16%, rgba(255, 212, 90, 0.22), transparent 24%),
    radial-gradient(circle at 96% 18%, rgba(227, 39, 34, 0.12), transparent 22%),
    linear-gradient(180deg, #fffaf0, #fff 48%);
}

.section--rules {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.section__heading {
  min-height: 34px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section .eyebrow {
  padding: 3px 12px;
  font-size: 0.75rem;
}

h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 0;
  font-weight: 900;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(292px, 0.82fr);
  gap: 14px;
  align-items: stretch;
}

.feature-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.map-panel {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
}

.map-panel figcaption {
  padding: 9px 12px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--hairline);
  font-size: 0.9rem;
  font-weight: 700;
}

.venue-card,
.coupon-box,
.notes-list,
.steps article,
.store-card,
.prize-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.venue-card {
  min-width: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.venue-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--hairline);
}

dl {
  margin: 0 0 14px;
}

dl div {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}

dt {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

dd {
  margin: 2px 0 0;
  color: var(--navy);
  font-weight: 900;
}

.button--primary {
  margin-top: auto;
  color: #fff;
  background: linear-gradient(180deg, #f0443f, var(--red));
  border: 0;
  box-shadow: 0 8px 16px rgba(227, 39, 34, 0.22);
}

.store-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.store-card {
  min-width: 0;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
}

.store-card__num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--navy));
  font-weight: 950;
  box-shadow: 0 3px 7px rgba(6, 39, 95, 0.24);
}

.store-card h3 {
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.store-card address {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.35;
}

.store-card__category {
  grid-column: 2;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: normal;
}

.category-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 50%;
  background: var(--sky);
  border: 1px solid rgba(23, 104, 183, 0.22);
}

.category-icon::before,
.category-icon::after {
  content: "";
  position: absolute;
}

.category-icon--food::before {
  left: 5px;
  top: 4px;
  width: 3px;
  height: 12px;
  background: var(--orange);
  box-shadow: 5px 0 0 var(--orange), 9px 0 0 var(--orange);
}

.category-icon--cafe::before {
  left: 4px;
  top: 8px;
  width: 10px;
  height: 6px;
  border-radius: 0 0 6px 6px;
  background: #8b5a33;
}

.category-icon--cafe::after {
  left: 14px;
  top: 8px;
  width: 4px;
  height: 4px;
  border: 2px solid #8b5a33;
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.category-icon--cleaning::before {
  left: 4px;
  top: 5px;
  width: 12px;
  height: 10px;
  border: 2px solid #69a9ee;
  border-top-width: 4px;
  border-radius: 2px;
}

.category-icon--beauty::before {
  left: 4px;
  top: 9px;
  width: 13px;
  height: 2px;
  background: #37a56a;
  transform: rotate(28deg);
}

.category-icon--beauty::after {
  left: 4px;
  top: 9px;
  width: 13px;
  height: 2px;
  background: #37a56a;
  transform: rotate(-28deg);
}

.category-icon--relax::before {
  left: 4px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: 2px solid #e65aa5;
  border-radius: 999px;
  box-shadow: 7px 0 0 -1px #fff, 7px 0 0 1px #e65aa5;
}

.category-icon--sweets::before {
  left: 5px;
  top: 6px;
  width: 10px;
  height: 9px;
  border-radius: 3px 3px 7px 7px;
  background: #d49a14;
}

.store-card__map {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

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

.prize-card {
  min-width: 0;
  padding: 14px 14px 16px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-color: var(--navy);
}

.prize-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--red));
}

.prize-card--gold {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 212, 90, 0.22), transparent 26%),
    linear-gradient(180deg, #fff9dc 0%, #fff 72%);
}

.prize-card--silver {
  background:
    radial-gradient(circle at 22% 18%, rgba(23, 104, 183, 0.13), transparent 28%),
    linear-gradient(180deg, #f4f8ff 0%, #fff 72%);
}

.prize-card--bronze {
  background:
    radial-gradient(circle at 24% 20%, rgba(242, 139, 22, 0.15), transparent 30%),
    linear-gradient(180deg, #fff1df 0%, #fff 72%);
}

.prize-card__rank {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.prize-card__icon {
  width: 68px;
  height: 68px;
  margin: 8px auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #ffe9aa);
  border: 2px solid rgba(242, 139, 22, 0.35);
  box-shadow: 0 6px 12px rgba(242, 139, 22, 0.16);
}

.prize-icon::before,
.prize-icon::after {
  content: "";
  position: absolute;
}

.prize-icon {
  position: relative;
}

.prize-icon--crown::before {
  left: 13px;
  top: 25px;
  width: 42px;
  height: 23px;
  clip-path: polygon(0 100%, 0 34%, 24% 62%, 50% 8%, 76% 62%, 100% 34%, 100% 100%);
  background: linear-gradient(180deg, #ffe27c, #f2a21a);
}

.prize-icon--crown::after {
  left: 21px;
  top: 48px;
  width: 26px;
  height: 6px;
  border-radius: 999px;
  background: #c37a12;
}

.prize-icon--gift::before {
  left: 16px;
  top: 25px;
  width: 36px;
  height: 30px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 43%, #fff6c8 44% 56%, transparent 57%),
    linear-gradient(180deg, #ff5a3c, #e32722);
}

.prize-icon--gift::after {
  left: 13px;
  top: 19px;
  width: 42px;
  height: 10px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 44%, #fff6c8 45% 55%, transparent 56%),
    #f28b16;
}

.prize-icon--coin::before {
  left: 16px;
  top: 22px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe27c, #f2a21a);
  box-shadow: 16px 8px 0 -2px #f4b43d, 7px 18px 0 -5px #d9941b;
}

.prize-icon--coin::after {
  left: 26px;
  top: 27px;
  width: 5px;
  height: 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.prize-card h3 {
  margin: 0 0 4px;
  font-size: 1.28rem;
}

.prize-card p {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 1.35rem;
}

.prize-card small {
  color: var(--navy);
  font-weight: 900;
}

.miss-note {
  width: fit-content;
  margin: 10px 0 0;
  padding: 3px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.steps article {
  padding: 13px 14px;
  position: relative;
  border-color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #fffaf1 100%);
}

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--orange), var(--red));
  font-weight: 950;
}

.steps h3 {
  margin: 10px 0 5px;
  font-size: 1.05rem;
}

.steps p {
  margin-bottom: 0;
}

.steps strong {
  color: var(--red);
}

.coupon-section,
.notes-section {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  padding: 16px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(6, 39, 95, 0.82);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.section--coupon {
  background:
    radial-gradient(circle at 96% 16%, rgba(242, 139, 22, 0.14), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff9ef 100%);
}

.coupon-section > *,
.notes-section > * {
  width: auto;
  margin-left: 0;
  margin-right: 0;
}

.coupon-box {
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: stretch;
}

.coupon-box__lead {
  min-width: 0;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff4cb, #fff 76%);
  border: 1px solid rgba(242, 139, 22, 0.34);
}

.coupon-box__lead p {
  min-width: 0;
  margin-bottom: 0;
  color: var(--navy);
  overflow-wrap: anywhere;
}

.ticket-icon {
  width: 56px;
  height: 38px;
  flex: 0 0 auto;
  position: relative;
  border-radius: 7px;
  background:
    radial-gradient(circle at 0 50%, #fff 0 6px, transparent 7px),
    radial-gradient(circle at 100% 50%, #fff 0 6px, transparent 7px),
    linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 7px 14px rgba(227, 39, 34, 0.16);
}

.ticket-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 28px;
  width: 1px;
  border-left: 2px dashed rgba(255, 255, 255, 0.78);
}

.coupon-rules,
.notes-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

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

.coupon-rules li {
  min-width: 0;
  padding: 10px 10px 10px 34px;
  position: relative;
  border-radius: var(--radius);
  background: #f8fbff;
  border: 1px solid var(--hairline);
  font-weight: 800;
  color: var(--navy);
}

.coupon-rules li span {
  position: absolute;
  left: 10px;
  top: 13px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
}

.coupon-rules li span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.notes-list {
  padding: 8px 10px;
}

.notes-list li {
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  color: #334255;
  font-size: 0.92rem;
}

.notes-list li:last-child {
  border-bottom: 0;
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 18px;
  padding: 18px 16px 22px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 35%, rgba(255, 212, 90, 0.58) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 35%, rgba(242, 139, 22, 0.62) 0 2px, transparent 3px),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  background-size: 72px 72px, 88px 88px, auto;
  box-shadow: var(--shadow);
}

.back-to-top {
  min-height: 42px;
  margin-bottom: 16px;
  color: var(--navy);
  background: var(--yellow);
}

.footer p {
  margin-bottom: 5px;
  font-weight: 800;
}

.maintenance {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: var(--navy);
}

.maintenance__inner {
  max-width: 640px;
}

.maintenance h1 {
  color: #fff;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.organizer {
  margin-top: 32px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-left: 0;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero__art {
    position: relative;
    left: auto;
    top: auto;
    justify-self: center;
  }

  .hero__facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .store-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-box,
  .coupon-rules {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body::before,
  body::after {
    display: none;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__inner,
  .section,
  .quick-nav,
  .coupon-section,
  .notes-section,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .hero__inner {
    min-height: 0;
    padding: 20px 16px 16px;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .hero__inner::after {
    left: auto;
    right: 18px;
    top: 16px;
    width: 34px;
    height: 34px;
  }

  .hero__copy {
    display: grid;
    justify-items: center;
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.6rem);
    white-space: nowrap;
  }

  .lead {
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-break {
    display: block;
  }

  .lead strong {
    font-size: 1.08em;
  }

  .status {
    width: 100%;
    font-size: 0.74rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .status span {
    display: block;
  }

  .status span + span::before {
    content: "";
  }

  .hero__art {
    width: 178px;
    min-height: 82px;
    margin: 0 auto;
    order: 2;
  }

  .lottery-drum {
    left: 32px;
    top: 4px;
    width: 76px;
    height: 58px;
  }

  .lottery-drum::before,
  .lottery-drum::after {
    display: none;
  }

  .handbell {
    right: 34px;
    bottom: 4px;
    width: 32px;
    height: 32px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    width: 100%;
    order: 3;
  }

  .hero__facts div {
    padding: 10px 12px 10px 40px;
    text-align: left;
  }

  .hero__facts div::before {
    left: 14px;
    top: 17px;
  }

  .quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .quick-nav a {
    min-height: 48px;
    gap: 6px;
    padding: 8px 8px;
    font-size: 0.82rem;
  }

  .nav-icon {
    width: 22px;
    height: 22px;
  }

  .nav-icon--gift::before {
    left: 8px;
    height: 22px;
  }

  .nav-icon--gift::after {
    top: 7px;
    width: 22px;
  }

  .section,
  .coupon-section,
  .notes-section {
    margin-top: 14px;
    padding: 12px;
  }

  .section__heading {
    gap: 8px;
  }

  .map-panel img {
    min-height: 210px;
  }

  .store-list,
  .prize-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .store-card {
    padding: 9px 10px;
  }

  .coupon-box {
    padding: 10px;
  }

  .coupon-box__lead {
    padding: 12px;
    gap: 10px;
  }

  .coupon-box__lead p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .ticket-icon {
    width: 46px;
    height: 32px;
  }

  .coupon-rules {
    gap: 6px;
  }

  .coupon-rules li {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.9rem;
  }

  .notes-list {
    padding: 6px 8px;
  }
}
