:root {
  --navy-950: #071726;
  --navy-900: #0d2742;
  --navy-800: #123a61;
  --navy-700: #184d7d;
  --blue-500: #2776af;
  --gold-600: #b58a2c;
  --gold-500: #c9a44a;
  --gold-300: #ead89c;
  --red-700: #a71d2a;
  --red-600: #c22635;
  --ink: #172033;
  --muted: #667184;
  --line: #dce2e8;
  --soft: #f3f6f9;
  --sand: #f7f2e8;
  --white: #fff;
  --success: #237443;
  --danger: #a12631;
  --warning: #8b6216;
  --shadow-sm: 0 6px 20px rgba(13, 39, 66, .08);
  --shadow-md: 0 18px 50px rgba(13, 39, 66, .12);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--red-600); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.13; color: var(--navy-900); }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3.2vw, 3.1rem); letter-spacing: -.035em; }
h3 { font-size: 1.22rem; letter-spacing: -.015em; }
p { color: var(--muted); }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 36px), 780px); margin-inline: auto; }
.section { padding: 88px 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy-900); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.72); }
.section--overlap { padding-top: 0; margin-top: -34px; position: relative; z-index: 4; }
.lead { font-size: 1.18rem; line-height: 1.75; }
.note { padding: 14px 16px; border-left: 4px solid var(--gold-500); background: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: 18px; padding: 10px 14px; background: #fff; color: var(--navy-900); z-index: 9999; border-radius: 8px; }
.skip-link:focus { top: 18px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red-600);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--gold-300); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 40px; padding: 9px 16px; font-size: .92rem; }
.button--large { min-height: 56px; padding: 15px 24px; }
.button--full { width: 100%; }
.button--gold { background: var(--gold-500); color: var(--navy-950); box-shadow: 0 8px 24px rgba(201, 164, 74, .26); }
.button--gold:hover { background: #dbb85d; color: var(--navy-950); }
.button--navy { background: var(--navy-900); color: #fff; }
.button--navy:hover { background: var(--navy-700); color: #fff; }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); }
.button--ghost:hover { background: #fff; color: var(--navy-900); }
.button--light { background: #fff; color: var(--navy-900); }
.button--outline { border-color: var(--line); background: #fff; color: var(--navy-900); }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 800; color: var(--navy-700); }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }

.top-strip { background: var(--navy-950); color: rgba(255,255,255,.8); font-size: .84rem; }
.top-strip__inner { min-height: 37px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-strip a { color: var(--gold-300); font-weight: 800; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(13,39,66,.08); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--navy-900); min-width: 300px; }
.brand:hover { color: var(--navy-900); }
.brand__mark { width: 62px; height: 62px; border-radius: 50%; border: 1px solid var(--line); background: #fff; padding: 4px; flex: 0 0 auto; box-shadow: var(--shadow-sm); }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 1.05rem; }
.brand__text span { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a:not(.button) { color: var(--ink); font-size: .93rem; font-weight: 700; position: relative; padding: 28px 0; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; background: var(--red-600); transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--soft); border-radius: 10px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy-900); }
.flash { padding: 13px 0; font-weight: 700; }
.flash--success { background: #e8f7ed; color: #1f6339; }
.flash--error { background: #fff0f1; color: #8e1e2a; }

.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: #fff; min-height: 650px; display: flex; align-items: center; }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; right: -230px; top: -180px; box-shadow: 0 0 0 120px rgba(255,255,255,.025), 0 0 0 240px rgba(255,255,255,.018); }
.hero__pattern { position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.32) 1px, transparent 0); background-size: 34px 34px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 80px; padding-top: 76px; padding-bottom: 110px; }
.hero h1 { color: #fff; max-width: 760px; margin-bottom: 24px; }
.hero__copy > p { color: rgba(255,255,255,.76); font-size: 1.18rem; max-width: 680px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,.72); font-size: .92rem; }
.hero__meta span { display: flex; gap: 8px; align-items: center; }
.hero__meta b { color: var(--gold-300); }
.hero__panel { position: relative; }
.hero__crest { position: absolute; right: -18px; top: -76px; width: 120px; height: 120px; border-radius: 50%; background: #fff; padding: 9px; box-shadow: 0 20px 50px rgba(0,0,0,.25); z-index: 2; }
.friday-card { position: relative; overflow: hidden; padding: 42px; border-radius: var(--radius-lg); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.friday-card::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 190px; height: 190px; border: 36px solid rgba(201,164,74,.15); border-radius: 50%; }
.friday-card h2 { color: #fff; margin-bottom: 24px; }
.friday-card ul { margin: 0 0 20px; padding: 0; list-style: none; position: relative; z-index: 1; }
.friday-card li { display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.86); }
.friday-card li span { min-width: 72px; color: var(--gold-300); font-weight: 800; }
.friday-card p { margin: 0; color: rgba(255,255,255,.68); }

.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card { display: flex; align-items: center; gap: 16px; padding: 22px; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); transition: transform .18s ease, border-color .18s ease; }
.quick-card:hover { transform: translateY(-5px); border-color: var(--gold-500); color: var(--ink); }
.quick-card__icon { display: grid; place-items: center; flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--sand); color: var(--red-600); font-size: 1.2rem; font-weight: 900; }
.quick-card div { display: flex; flex-direction: column; }
.quick-card strong { color: var(--navy-900); }
.quick-card span:last-child { color: var(--muted); font-size: .84rem; margin-top: 3px; }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 38px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading__copy { max-width: 520px; margin: 0; }
.event-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.event-grid--wide { grid-template-columns: repeat(3, 1fr); }
.event-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-card__media { position: relative; display: block; height: 210px; background: var(--navy-900); overflow: hidden; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.event-card:hover .event-card__media img { transform: scale(1.04); }
.event-card__placeholder { height: 100%; display: grid; place-items: center; position: relative; overflow: hidden; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); }
.event-card__placeholder::before, .event-card__placeholder::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.event-card__placeholder::before { width: 160px; height: 160px; right: -50px; bottom: -70px; }
.event-card__placeholder::after { width: 90px; height: 90px; left: -25px; top: -35px; }
.badge { position: absolute; top: 14px; left: 14px; display: inline-flex; padding: 6px 10px; border-radius: 999px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.badge--gold { background: var(--gold-500); color: var(--navy-950); }
.event-card__body { display: grid; grid-template-columns: 58px 1fr; gap: 15px; padding: 22px; }
.event-date { text-align: center; padding-right: 14px; border-right: 1px solid var(--line); }
.event-date strong { display: block; font-size: 1.4rem; line-height: 1; color: var(--red-600); }
.event-date span { display: block; margin-top: 6px; font-size: .66rem; line-height: 1.3; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.event-card h3 { margin-bottom: 8px; }
.event-card h3 a { color: var(--navy-900); }
.event-card p { font-size: .9rem; margin: 0 0 8px; }
.event-card small { color: var(--muted); }

.draw-band { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr auto; align-items: center; gap: 30px; }
.draw-band h2 { margin-bottom: 10px; }
.draw-band p { margin-bottom: 0; }
.jackpot { padding: 20px 22px; border-left: 1px solid rgba(255,255,255,.16); }
.jackpot span, .jackpot small { display: block; color: rgba(255,255,255,.62); }
.jackpot strong { display: block; color: var(--gold-300); font-size: 1.65rem; margin: 5px 0; }

.benefits-split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.benefit-list { display: grid; gap: 0; }
.benefit-list article { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.benefit-list__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--red-600); font-weight: 900; }
.benefit-list h3 { margin: 0 0 5px; }
.benefit-list p { margin: 0; }
.benefit-list .text-link { margin-top: 24px; }

.about-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: center; }
.about-visual { min-height: 430px; position: relative; display: grid; place-items: center; border-radius: var(--radius-lg); background: var(--navy-900); overflow: hidden; }
.about-visual::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.about-visual__ring { width: 220px; height: 220px; padding: 20px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.08); }
.about-visual__ring img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.about-visual__stat { position: absolute; min-width: 145px; padding: 16px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-md); }
.about-visual__stat strong { display: block; color: var(--red-600); font-size: 1.7rem; }
.about-visual__stat span { color: var(--muted); font-size: .82rem; }
.about-visual__stat:nth-of-type(2) { left: 24px; bottom: 24px; }
.about-visual__stat:nth-of-type(3) { right: 24px; top: 24px; }

.cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 48px 52px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(120deg, var(--red-700), var(--navy-900)); box-shadow: var(--shadow-md); }
.cta h2 { color: #fff; margin-bottom: 10px; }
.cta p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.cta__actions { display: flex; gap: 12px; flex: 0 0 auto; }
.cta--flat { padding: 0; background: none; box-shadow: none; }

.page-hero { position: relative; overflow: hidden; padding: 88px 0 78px; background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); color: #fff; }
.page-hero::after { content: ""; position: absolute; width: 400px; height: 400px; right: -120px; top: -170px; border-radius: 50%; border: 70px solid rgba(255,255,255,.05); }
.page-hero--compact { padding: 65px 0 60px; }
.page-hero h1 { color: #fff; margin-bottom: 18px; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.page-hero p { color: rgba(255,255,255,.76); max-width: 720px; font-size: 1.1rem; margin-bottom: 0; }
.page-hero__inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.page-hero__crest { width: 160px; height: 160px; border-radius: 50%; background: #fff; padding: 13px; flex: 0 0 auto; box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.page-hero__crest img { width: 100%; height: 100%; object-fit: contain; }
.back-link { display: inline-flex; color: rgba(255,255,255,.72); margin-bottom: 22px; font-weight: 700; }
.back-link:hover { color: #fff; }

.prose-grid, .detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 70px; align-items: start; }
.prose h2 { margin-top: 42px; margin-bottom: 16px; font-size: 2rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: 1.03rem; line-height: 1.8; }
.info-card { position: sticky; top: 116px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.info-card h2 { font-size: 1.5rem; }
.info-card dl { margin: 0 0 26px; }
.info-card dt { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-top: 18px; }
.info-card dd { margin: 4px 0 0; color: var(--ink); }
.info-card .button + .button { margin-top: 10px; }
.dining-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.award-card { padding: 34px; border-radius: var(--radius); background: var(--navy-900); color: #fff; box-shadow: var(--shadow-md); }
.award-card h3 { color: #fff; font-size: 1.6rem; }
.award-card ul { padding-left: 20px; color: rgba(255,255,255,.76); }
.award-card li { margin: 10px 0; }
.award-card__icon { font-size: 2rem; display: block; margin-bottom: 16px; }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.archive-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.archive-card > a { display: block; color: inherit; }
.archive-card img, .archive-card__placeholder { height: 190px; width: 100%; object-fit: cover; }
.archive-card__placeholder { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .78rem; }
.archive-card__body { padding: 22px; }
.archive-card__body > span { color: var(--red-600); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; font-weight: 800; }
.archive-card h3 { margin: 8px 0; }
.archive-card p { font-size: .9rem; }
.archive-card small { color: var(--muted); }
.event-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 30px; }
.event-facts > div { padding: 18px; border-radius: 14px; background: var(--soft); }
.event-facts span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.event-facts strong { display: block; margin-top: 7px; color: var(--navy-900); }
.detail-poster { width: 100%; max-height: 620px; object-fit: contain; background: var(--soft); border-radius: var(--radius); margin-bottom: 38px; }
.photo-grid { columns: 3 260px; column-gap: 18px; }
.photo-grid figure { break-inside: avoid; margin: 0 0 18px; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.photo-grid figcaption { padding: 10px 13px; color: var(--muted); font-size: .88rem; }

.membership-price { min-width: 230px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.membership-price span, .membership-price small { display: block; color: rgba(255,255,255,.68); }
.membership-price strong { display: block; color: var(--gold-300); font-size: 2.5rem; line-height: 1.1; margin: 5px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card { position: relative; padding: 28px; min-height: 250px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.benefit-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -45px; bottom: -45px; border: 18px solid var(--sand); border-radius: 50%; }
.benefit-card__number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--sand); color: var(--red-600); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.benefit-card h2 { font-size: 1.4rem; margin: 24px 0 12px; }

.jackpot-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; min-width: 620px; }
.jackpot-mini > div { padding: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(255,255,255,.08); }
.jackpot-mini span { display: block; color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.jackpot-mini strong { display: block; color: var(--gold-300); font-size: 1.35rem; margin-top: 6px; }
.year-filter { display: flex; align-items: center; gap: 8px; margin-bottom: 36px; }
.year-filter strong { margin-right: 10px; }
.year-filter a { padding: 8px 13px; border-radius: 999px; background: var(--soft); color: var(--ink); font-weight: 800; }
.year-filter a.active { background: var(--navy-900); color: #fff; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.results-grid > section { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.results-grid > section.results-wide { grid-column: 1/-1; }
.results-heading { display: flex; gap: 16px; align-items: center; padding: 24px; background: var(--soft); border-bottom: 1px solid var(--line); }
.results-heading > span { width: 48px; height: 48px; display: grid; place-items: center; background: #fff; border-radius: 50%; font-size: 1.3rem; }
.results-heading h2 { margin: 0 0 4px; font-size: 1.45rem; }
.results-heading p { margin: 0; font-size: .88rem; }
.results-list article { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.results-list article:last-child { border-bottom: 0; }
.results-list img, .winner-avatar { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.winner-avatar { display: grid; place-items: center; background: var(--navy-900); color: #fff; font-weight: 900; }
.results-list span { color: var(--muted); font-size: .75rem; }
.results-list h3 { margin: 3px 0; font-size: 1rem; }
.results-list p { margin: 0; font-size: .84rem; }
.winner-prize { color: var(--red-600); }
.empty-state { padding: 34px; text-align: center; }
.empty-state strong { color: var(--navy-900); }

.membership-layout { display: grid; grid-template-columns: 1fr 330px; gap: 38px; align-items: start; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.form-section { display: flex; gap: 16px; align-items: center; padding: 22px 0 18px; border-top: 1px solid var(--line); margin-top: 24px; }
.form-section:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.form-section h2 { margin: 0 0 4px; font-size: 1.45rem; }
.form-section p { margin: 0; font-size: .9rem; }
.form-step { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--navy-900); color: #fff; font-weight: 900; flex: 0 0 auto; }
.form-grid, .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full, .field-grid .full { grid-column: 1/-1; }
.split-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 800; font-size: .9rem; }
label span { color: var(--muted); font-weight: 500; }
input, select, textarea {
  width: 100%;
  border: 1px solid #bcc7d2;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(39,118,175,.12); }
textarea { resize: vertical; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.choice { display: block; margin: 0; position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice > span { display: flex; flex-direction: column; height: 100%; padding: 17px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.choice input:checked + span { border-color: var(--navy-700); background: #f0f6fb; box-shadow: 0 0 0 3px rgba(24,77,125,.08); }
.choice strong { color: var(--navy-900); }
.choice small { margin-top: 4px; color: var(--muted); font-weight: 500; }
.choice--disabled > span { opacity: .58; cursor: not-allowed; }
.renewal-number { display: none; padding: 16px; background: var(--soft); border-radius: 12px; margin-bottom: 20px; }
.renewal-number.active { display: block; }
.check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-weight: 500; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.summary-card, .help-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--soft); }
.summary-card { position: sticky; top: 118px; }
.summary-price { display: flex; align-items: end; gap: 9px; margin: 5px 0 20px; }
.summary-price strong { font-size: 2.7rem; color: var(--navy-900); line-height: 1; }
.summary-price span { color: var(--muted); }
.summary-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.summary-card li { padding: 9px 0 9px 24px; position: relative; border-bottom: 1px solid var(--line); }
.summary-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.help-card { margin-top: 16px; background: #fff; }
.help-card h2 { font-size: 1.25rem; }
.help-card p { margin-bottom: 0; }
.success-card { text-align: center; padding: 52px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.success-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: #e7f6ec; color: var(--success); font-size: 2rem; font-weight: 900; }
.success-card h1 { font-size: 3rem; margin-bottom: 15px; }
.receipt, .bank-card { margin: 28px 0; text-align: left; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.receipt > div, .bank-card > div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.receipt > div:last-child, .bank-card > div:last-child { border-bottom: 0; }
.receipt span, .bank-card span { color: var(--muted); }
.bank-card .full { flex-wrap: wrap; background: var(--sand); }
.copy-value { font-size: 1.15rem; color: var(--navy-900); }
.copy-button { border: 0; background: var(--navy-900); color: #fff; padding: 8px 12px; border-radius: 8px; font-weight: 800; }
.success-actions { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact-cards { display: grid; gap: 12px; }
.contact-cards article { padding: 22px; border: 1px solid var(--line); border-radius: 14px; }
.contact-cards article > span { font-size: 1.4rem; }
.contact-cards h2 { font-size: 1.2rem; margin: 8px 0 5px; }
.contact-cards p { margin: 0; }
.contact-cards small { color: var(--muted); }
.map-wrap { margin-top: 16px; border-radius: var(--radius); overflow: hidden; height: 300px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.empty-page { padding: 70px 30px; text-align: center; background: #fff; border-radius: var(--radius); }
.empty-page > span { display: block; color: var(--gold-500); font-size: 4rem; font-weight: 900; }

.site-footer { padding: 68px 0 22px; background: var(--navy-950); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .8fr; gap: 42px; }
.brand--footer { min-width: 0; color: #fff; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand__text span { color: rgba(255,255,255,.6); }
.site-footer h2 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer p { color: rgba(255,255,255,.62); font-size: .9rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold-300); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .8rem; }

.reveal { animation: rise .65s ease both; }
.reveal--delay { animation-delay: .12s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

/* Administration */
.admin-body { background: #edf1f5; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 270px 1fr; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 24px 18px; display: flex; flex-direction: column; background: var(--navy-950); color: #fff; overflow-y: auto; z-index: 200; }
.admin-brand { display: flex; align-items: center; gap: 12px; padding: 0 9px 24px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); }
.admin-brand:hover { color: #fff; }
.admin-brand img { width: 48px; height: 48px; object-fit: contain; background: #fff; border-radius: 50%; padding: 3px; }
.admin-brand div { display: flex; flex-direction: column; line-height: 1.15; }
.admin-brand span { color: rgba(255,255,255,.55); font-size: .76rem; margin-top: 4px; }
.admin-sidebar nav { display: grid; gap: 4px; margin-top: 22px; }
.admin-sidebar nav a { display: flex; gap: 11px; align-items: center; padding: 11px 12px; border-radius: 9px; color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 700; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.admin-sidebar nav span { width: 20px; text-align: center; color: var(--gold-300); }
.admin-sidebar__bottom { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 8px; }
.admin-sidebar__bottom a, .admin-sidebar__bottom button { width: 100%; border: 0; background: none; color: rgba(255,255,255,.65); text-align: left; padding: 8px 10px; font-size: .86rem; }
.admin-sidebar__bottom a:hover, .admin-sidebar__bottom button:hover { color: #fff; }
.admin-main { min-width: 0; }
.admin-topbar { min-height: 86px; padding: 14px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border-bottom: 1px solid var(--line); }
.admin-topbar > div:first-of-type span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.admin-topbar h1 { margin: 2px 0 0; font-size: 1.55rem; letter-spacing: -.02em; }
.admin-user { display: flex; align-items: center; gap: 14px; font-size: .86rem; }
.admin-user span { font-weight: 800; }
.admin-menu { display: none; border: 0; background: var(--soft); width: 42px; height: 42px; border-radius: 9px; }
.admin-content { padding: 28px 30px 50px; }
.admin-alert { padding: 13px 16px; border-radius: 10px; margin-bottom: 18px; border: 1px solid; }
.admin-alert--success { background: #e9f7ed; border-color: #b7dfc2; color: #205f38; }
.admin-alert--error { background: #fff0f1; border-color: #efc3c8; color: #8d1f2a; }
.admin-alert--warning { background: #fff7e2; border-color: #ead39a; color: #76531b; }
.admin-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 22px; }
.admin-stats article { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.admin-stats span { display: block; color: var(--muted); font-size: .78rem; font-weight: 700; }
.admin-stats strong { display: block; color: var(--navy-900); font-size: 2rem; margin: 4px 0 8px; }
.admin-stats a { font-size: .78rem; font-weight: 800; }
.admin-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; }
.admin-panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-panel + .admin-panel { margin-top: 18px; }
.admin-panel--narrow { max-width: 760px; margin-inline: auto; }
.admin-panel__head { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.admin-panel__head h2 { margin: 0 0 4px; font-size: 1.15rem; }
.admin-panel__head p { margin: 0; font-size: .82rem; }
.admin-actions { display: grid; padding: 8px 20px 20px; }
.admin-actions a { display: flex; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.admin-actions a:last-child { border-bottom: 0; }
.admin-actions a > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--red-600); font-weight: 900; }
.admin-actions div { display: flex; flex-direction: column; }
.admin-actions small { color: var(--muted); }
.admin-toolbar { min-height: 52px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-toolbar p { margin: 0; }
.admin-button { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 14px; border: 1px solid var(--line); background: #fff; color: var(--navy-900); border-radius: 8px; font-weight: 800; font-size: .84rem; }
.admin-button:hover { background: var(--soft); color: var(--navy-900); }
.admin-button--primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.admin-button--primary:hover { background: var(--navy-700); color: #fff; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 16px; color: var(--muted); background: #f8fafc; border-bottom: 1px solid var(--line); font-size: .7rem; text-align: left; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .88rem; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table td > strong, .admin-table td > small { display: block; }
.admin-table td > small { color: var(--muted); margin-top: 3px; max-width: 420px; }
.admin-item { display: flex; align-items: center; gap: 11px; min-width: 230px; }
.admin-item > div:last-child { display: flex; flex-direction: column; }
.admin-thumb { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 9px; overflow: hidden; display: grid; place-items: center; background: var(--soft); color: var(--navy-700); font-weight: 900; }
.admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.actions { text-align: right; white-space: nowrap; }
.actions > a, .actions form, .actions button { display: inline; }
.actions a, .actions button { border: 0; background: none; padding: 5px; color: var(--navy-700); font-weight: 800; font-size: .8rem; }
.actions button { color: var(--danger); }
.status { display: inline-flex; align-items: center; padding: 5px 9px; border-radius: 999px; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.status--paid, .status--upcoming { background: #e7f6ec; color: #216b3e; }
.status--pending { background: #fff4d8; color: #7c5815; }
.status--expired, .status--failed, .status--past { background: #ffeaec; color: #90202c; }
.status--inactive, .status--closed { background: #edf0f3; color: #5d6878; }
.admin-empty { padding: 36px; text-align: center; color: var(--muted); }
.admin-form-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 20px; align-items: start; }
.admin-form .field-grid { padding: 22px; }
.check-stack { display: grid; align-content: start; }
.admin-preview { width: calc(100% - 40px); max-height: 330px; object-fit: contain; margin: 20px; border-radius: 10px; background: var(--soft); }
.admin-panel > input[type=file] { width: calc(100% - 40px); margin: 20px; }
.admin-panel > .check { margin: 0 20px 20px; }
.admin-photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 20px 20px; }
.admin-photo-grid > div { position: relative; }
.admin-photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.admin-photo-grid form { position: absolute; right: 4px; bottom: 4px; }
.admin-photo-grid button { border: 0; padding: 4px 7px; border-radius: 6px; background: rgba(7,23,38,.88); color: #fff; font-size: .7rem; }
.admin-savebar { position: sticky; bottom: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 20px; padding: 14px 18px; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 -8px 30px rgba(13,39,66,.08); backdrop-filter: blur(10px); }
.admin-savebar--narrow { max-width: 760px; margin-inline: auto; margin-top: 20px; }
.admin-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.admin-settings-grid .admin-panel:last-child { grid-column: 1/-1; }
.admin-filter { display: flex; gap: 8px; flex: 1; max-width: 720px; }
.admin-filter input { max-width: 360px; }
.record-grid { display: grid; grid-template-columns: 160px 1fr; margin: 0; padding: 22px; }
.record-grid dt, .record-grid dd { padding: 12px 0; border-bottom: 1px solid var(--line); }
.record-grid dt { color: var(--muted); font-size: .78rem; font-weight: 800; }
.record-grid dd { margin: 0; }
.payment-list { display: grid; }
.payment-list article { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.payment-list article:last-child { border-bottom: 0; }
.payment-list strong, .payment-list small { display: block; }
.payment-list small { color: var(--muted); margin-top: 3px; }
.payment-list form { grid-column: 1/-1; }
.message-list { padding: 18px; display: grid; gap: 12px; }
.message-card { padding: 18px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.message-card--new { border-left: 4px solid var(--gold-500); }
.message-card__head { display: flex; justify-content: space-between; gap: 20px; }
.message-card__head strong, .message-card__head span { display: block; }
.message-card__head span, .message-card__head time { color: var(--muted); font-size: .78rem; }
.message-card p { margin: 16px 0; color: var(--ink); }
.message-card__actions { display: flex; justify-content: space-between; align-items: center; }

.admin-auth { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.auth-shell { width: min(100%, 470px); }
.auth-card { padding: 34px; background: #fff; border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.auth-brand { display: flex; align-items: center; gap: 12px; padding-bottom: 24px; margin-bottom: 26px; border-bottom: 1px solid var(--line); color: var(--navy-900); }
.auth-brand img { width: 58px; height: 58px; object-fit: contain; }
.auth-brand div { display: flex; flex-direction: column; }
.auth-brand span { color: var(--muted); font-size: .82rem; }
.auth-card h1 { font-size: 2rem; }
.auth-card form { display: grid; gap: 8px; margin-top: 24px; }
.auth-card input { margin-bottom: 10px; }
.auth-back { display: block; text-align: center; margin-top: 22px; font-weight: 700; font-size: .88rem; }

@media (max-width: 1100px) {
  .main-nav { gap: 16px; }
  .main-nav > a:not(.button) { font-size: .85rem; }
  .brand { min-width: 270px; }
  .hero__grid { gap: 50px; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .event-grid { grid-template-columns: repeat(2,1fr); }
  .draw-band { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .draw-band .button { grid-column: 1/-1; justify-self: start; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .admin-stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .top-strip__inner span { display: none; }
  .top-strip__inner { justify-content: center; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; inset: 84px 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; background: #fff; border-top: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button) { padding: 13px 8px; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 8px; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 95px; }
  .hero__panel { max-width: 620px; }
  .benefits-split, .about-split, .dining-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 2; }
  .draw-band { grid-template-columns: 1fr 1fr; }
  .draw-band > div:first-child { grid-column: 1/-1; }
  .prose-grid, .detail-grid, .membership-layout { grid-template-columns: 1fr; gap: 35px; }
  .info-card, .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero__crest { width: 120px; height: 120px; }
  .jackpot-mini { min-width: 0; width: 100%; }
  .page-hero__inner { align-items: flex-start; }
  .results-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: repeat(2,1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: fixed; left: -290px; width: 270px; transition: left .2s ease; }
  .admin-sidebar.open { left: 0; }
  .admin-menu { display: block; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .admin-grid, .admin-form-grid, .admin-settings-grid { grid-template-columns: 1fr; }
  .admin-settings-grid .admin-panel:last-child { grid-column: auto; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .header-inner { min-height: 72px; }
  .brand { min-width: 0; }
  .brand__mark { width: 52px; height: 52px; }
  .brand__text strong { font-size: .93rem; }
  .brand__text span { font-size: .72rem; }
  .main-nav { top: 72px; }
  .hero__grid { padding-top: 56px; padding-bottom: 78px; }
  .hero h1 { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__crest { width: 88px; height: 88px; top: -45px; right: 12px; }
  .friday-card { padding: 30px 22px; }
  .friday-card li { display: grid; gap: 3px; }
  .quick-grid, .event-grid, .event-grid--wide, .archive-grid, .benefits-grid { grid-template-columns: 1fr; }
  .quick-card { padding: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .draw-band { grid-template-columns: 1fr; }
  .draw-band > div:first-child { grid-column: auto; }
  .jackpot { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .cta { padding: 34px 24px; flex-direction: column; align-items: flex-start; }
  .cta__actions { width: 100%; flex-direction: column; }
  .page-hero { padding: 66px 0 58px; }
  .page-hero__inner { flex-direction: column; }
  .page-hero__crest { display: none; }
  .membership-price { min-width: 0; width: 100%; }
  .jackpot-mini { grid-template-columns: 1fr; }
  .event-facts { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .form-grid, .field-grid, .choice-grid { grid-template-columns: 1fr; }
  .form-grid .full, .field-grid .full { grid-column: auto; }
  .success-card { padding: 36px 20px; }
  .success-actions { flex-direction: column; }
  .receipt > div, .bank-card > div { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .results-list article { grid-template-columns: 48px 1fr; }
  .winner-prize { grid-column: 2; }
  .admin-content { padding: 20px 14px 40px; }
  .admin-topbar { padding: 12px 14px; }
  .admin-user span { display: none; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-toolbar { align-items: stretch; flex-direction: column; }
  .admin-filter { flex-direction: column; max-width: none; }
  .admin-filter input { max-width: none; }
  .admin-form .field-grid { padding: 18px; }
  .admin-savebar { flex-direction: column; align-items: stretch; }
  .admin-photo-grid { grid-template-columns: repeat(2,1fr); }
  .record-grid { grid-template-columns: 1fr; }
  .record-grid dt { border-bottom: 0; padding-bottom: 0; }
  .record-grid dd { padding-top: 5px; }
  .message-card__head { flex-direction: column; gap: 6px; }
}

.section--soft { background: var(--soft); }
.latest-winners { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.latest-winners article { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 15px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.latest-winners img, .latest-winners .winner-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.latest-winners span { color: var(--muted); font-size: .73rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; }
.latest-winners h3 { margin: 4px 0 0; }
.latest-winners p { margin: 4px 0 0; font-size: .84rem; }
.latest-winners > article > strong { color: var(--red-600); font-size: 1.15rem; }
@media (max-width: 700px) {
  .latest-winners { grid-template-columns: 1fr; }
  .latest-winners article { grid-template-columns: 50px 1fr; }
  .latest-winners > article > strong { grid-column: 2; }
}
.payment-notice { margin: 24px 0; padding: 20px; text-align: left; border: 1px solid #d6b55b; border-radius: 14px; background: #fff9e8; }
.payment-notice strong { display: block; color: var(--navy-900); font-size: 1.05rem; }
.payment-notice p { margin: 7px 0 16px; color: var(--muted); }
.payment-notice form { margin: 0; }
.payment-notice--done { border-color: #9fc7aa; background: #eff8f1; }
.payment-notice--done p { margin-bottom: 0; }
.info-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.info-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.formatted-copy { color: var(--muted); line-height: 1.75; }
@media (max-width: 760px) { .info-columns { grid-template-columns: 1fr; } }
.admin-toolbar__actions { display: flex; gap: 10px; flex-wrap: wrap; }
