/* ==========================================================================
   Shop Frost — design tokens
   ========================================================================== */
:root {
  --ink: #14121F;
  --paper: #FFF8EC;
  --paper-2: #FFF1D6;
  --sun: #FFC93C;
  --punch: #FF3D7F;
  --volt: #7B5CFF;
  --volt-2: #5A3FE0;
  --mint: #2FE6B8;

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 6px 6px 0 var(--ink);
  --shadow-lg: 9px 9px 0 var(--ink);

  --radius-md: 16px;
  --radius-lg: 22px;

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--volt);
  outline-offset: 3px;
  border-radius: 4px;
}

/* faint comic-print halftone texture over the whole page */
.halftone-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: radial-gradient(var(--ink) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.035;
}

section, header, footer { position: relative; z-index: 1; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(-1px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }

.btn-primary { background: var(--punch); color: var(--paper); }
.btn-outline { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-outline:hover { box-shadow: 8px 8px 0 var(--paper); }
.btn-outline:active { box-shadow: 2px 2px 0 var(--paper); }
.btn-ghost {
  background: var(--sun);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost:active { box-shadow: 1px 1px 0 var(--ink); }
.btn-buy {
  width: 100%;
  justify-content: center;
  background: var(--volt);
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}
.btn-buy:hover { box-shadow: 8px 8px 0 var(--ink); }

.icon-tg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.logo-gem { width: 32px; height: 32px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
}
.logo-text em { font-style: normal; color: var(--punch); }

.main-nav {
  display: none;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 0.95rem;
}
.main-nav a { position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--volt-2); }

.header-cta { display: none; }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.main-nav.nav-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  padding: 12px 24px 20px;
}
.main-nav.nav-open a { padding: 12px 0; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .burger { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    linear-gradient(rgba(20, 18, 31, 0.22), rgba(20, 18, 31, 0.22)),
    linear-gradient(135deg, var(--volt) 0%, var(--volt-2) 45%, var(--punch) 100%);
  color: var(--paper);
  overflow: hidden;
  padding: 64px 0 88px;
}
.hero-inner {
  display: grid;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(255, 248, 236, 0.14);
  border: 2px solid var(--paper);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 22px;
}
.eyebrow-icon { width: 16px; height: 16px; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--sun); }

.hero-sub {
  max-width: 46ch;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 700;
  font-size: 0.88rem;
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges img { width: 22px; height: 22px; }

.hero-art {
  position: relative;
  min-height: 220px;
  display: none;
}
.burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%) rotate(8deg);
  background-image: radial-gradient(var(--sun) 3px, transparent 3.5px);
  background-size: 26px 26px;
  opacity: 0.25;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ticket-float {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 26px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  animation: float 5s ease-in-out infinite;
}
.ticket-float img { width: 46px; height: 46px; object-fit: contain; }
.ticket-float { cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.ticket-float:hover {
  animation-play-state: paused;
  box-shadow: 9px 11px 0 var(--ink);
}
.ticket-1 { top: 0; left: 10%; animation-delay: 0s; }
.ticket-1:hover { transform: scale(1.08); }
.ticket-2 { bottom: 0; right: 6%; transform: rotate(-4deg); animation-delay: 1.2s; }
.ticket-2:hover { transform: rotate(-4deg) scale(1.08); }
.ticket-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
  background-size: 220% 220%;
  background-position: 130% 130%;
  transition: background-position 0.6s ease;
  pointer-events: none;
}
.ticket-float:hover::after { background-position: -30% -30%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.ticket-2 { animation-name: float2; }
@keyframes float2 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-14px); }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .hero-art { display: block; }
}

/* ==========================================================================
   Section shells
   ========================================================================== */
.section-eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--volt-2);
  margin: 0 0 8px;
}
.section-eyebrow-light { color: var(--sun); }
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 14px;
}
.section-title-light { color: var(--paper); }
.section-sub {
  max-width: 62ch;
  color: #4a4560;
  margin-bottom: 40px;
}
.section-sub-light { color: rgba(255, 248, 236, 0.82); }

.catalog { padding: 80px 0; }
.catalog-group { margin-bottom: 56px; }
.catalog-group:last-child { margin-bottom: 0; }
.group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.group-icon { width: 28px; height: 28px; object-fit: contain; }

/* ==========================================================================
   Ticket price cards
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 9px 11px 0 var(--ink); }

.price-card-badge {
  position: absolute;
  top: 2px;
  right: -34px;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 8px 40px;
  transform: rotate(38deg);
}

.price-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 20px 24px;
}
.price-card-top img { width: 64px; height: 56px; object-fit: contain; }
.price-card-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}
.price-card-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b6580;
  margin-top: -8px;
}

.price-card-divider {
  position: relative;
  margin: 0 18px;
  border-top: 3px dashed var(--ink);
}
.price-card-divider::before,
.price-card-divider::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--ink);
}
.price-card-divider::before { left: -30px; }
.price-card-divider::after { right: -30px; }

.price-card-bottom {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-card-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
}

/* price cards: foil sheen on hover */
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
  background-size: 220% 220%;
  background-position: 130% 130%;
  transition: background-position 0.6s ease;
  pointer-events: none;
}
.price-card:hover::after { background-position: -30% -30%; }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { padding: 80px 0; background: var(--paper-2); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.step {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 24px;
}
.step h3 { font-size: 1.15rem; margin: 14px 0 8px; }
.step p { color: #4a4560; font-size: 0.94rem; }
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--ink);
  color: var(--sun);
  padding: 5px 12px;
  border-radius: 8px;
}
.step:nth-child(1) .step-num { transform: rotate(-3deg); }
.step:nth-child(2) .step-num { transform: rotate(2deg); background: var(--volt-2); color: var(--paper); }
.step:nth-child(3) .step-num { transform: rotate(-2deg); background: var(--punch); color: var(--paper); }
.step:nth-child(4) .step-num { transform: rotate(3deg); background: var(--mint); color: var(--ink); }

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Trust
   ========================================================================== */
.trust { padding: 80px 0; }
.trust-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
.trust-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}
.trust-card img { width: 40px; height: 40px; margin-bottom: 14px; }
.trust-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.trust-card p { color: #4a4560; font-size: 0.94rem; }

.reviews {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 0.95rem;
}
.review-card p { margin-bottom: 14px; }
.review-author {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--volt-2);
  font-weight: 700;
}
.reviews-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: #8a8398;
  font-style: italic;
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 80px 0 90px; background: var(--paper-2); }
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}
.faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-question .chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[data-open="true"] .chevron { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq-item[data-open="true"] .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 22px 20px;
  color: #4a4560;
  font-size: 0.94rem;
  max-width: 60ch;
}

/* ==========================================================================
   Contacts
   ========================================================================== */
.contacts { background: var(--ink); padding: 72px 0; }
.contacts-inner {
  display: grid;
  gap: 40px;
}
.contacts-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #201d33;
  border: 3px solid #3a3555;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  color: var(--paper);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--mint); }
.contact-card .icon-tg { width: 30px; height: 30px; color: var(--mint); }
.contact-card span { display: flex; flex-direction: column; gap: 2px; }
.contact-card strong { font-size: 1.05rem; }
.contact-card em { font-style: normal; font-family: var(--font-mono); color: #a39dc0; font-size: 0.9rem; }

@media (min-width: 900px) {
  .contacts-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); border-top: 3px solid #3a3555; padding: 36px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.logo-footer .logo-text { color: var(--paper); }
.logo-footer .logo-text em { color: var(--sun); }
.footer-disclaimer { color: #8a84a3; font-size: 0.8rem; max-width: 68ch; }
.footer-copy { color: #8a84a3; font-size: 0.78rem; }

/* ==========================================================================
   Blog
   ========================================================================== */
.page-header { padding: 56px 0 24px; }
.page-header .section-sub { margin-bottom: 0; }

.blog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  padding: 24px 0 80px;
}
@media (min-width: 700px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.blog-tag-guide { background: var(--sun); }
.blog-tag-compare { background: var(--mint); }
.blog-tag-tips { background: #ffb3cf; }

.blog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card p { color: #4a4560; font-size: 0.94rem; margin-bottom: 18px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #8a8398;
  margin-top: auto;
  margin-bottom: 14px;
}
.blog-card-link {
  font-weight: 800;
  color: var(--volt-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s ease;
}
.blog-card:hover .blog-card-link { gap: 10px; }

/* Article page */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--volt-2);
  padding: 32px 0 0;
}
.article-header { padding: 20px 0 32px; border-bottom: 3px solid var(--ink); margin-bottom: 40px; }
.article-header h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); margin: 14px 0 16px; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #6b6580;
}

.article-body { max-width: 68ch; padding-bottom: 64px; }
.article-body p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; color: #2c2a3a; }
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 36px 0 14px; }
.article-body ul { margin: 0 0 20px; padding-left: 22px; }
.article-body li { font-size: 1.02rem; line-height: 1.65; margin-bottom: 10px; color: #2c2a3a; }
.article-body strong { color: var(--ink); }

.article-cta {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  margin-bottom: 80px;
  max-width: 68ch;
}
.article-cta h3 { font-size: 1.2rem; margin-bottom: 10px; }
.article-cta p { color: #4a4560; font-size: 0.95rem; margin-bottom: 18px; }

/* ==========================================================================
   Order modal
   ========================================================================== */
.order-modal {
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0;
  background: var(--paper);
  max-width: 420px;
  width: calc(100% - 48px);
}
.order-modal::backdrop {
  background: rgba(20, 18, 31, 0.6);
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px 28px;
}
.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.order-modal-title { font-size: 1.3rem; margin: 4px 0 6px; }
.order-modal-sub { color: #4a4560; font-size: 0.9rem; margin: 0 0 4px; }
.order-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}
.order-field input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
}
.order-error { color: var(--punch); font-size: 0.85rem; font-weight: 700; }
.order-submit { margin-top: 8px; width: 100%; justify-content: center; }
.order-submit:disabled { opacity: 0.7; cursor: default; }
.order-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 48px 28px 40px;
}
.order-success-icon { font-size: 2.4rem; margin-bottom: 4px; }
.order-form[hidden], .order-success[hidden] { display: none; }

/* ==========================================================================
   Motion & accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticket-float { animation: none; }
  .price-card, .btn, .contact-card, .blog-card, .ticket-float { transition: none; }
  .price-card::after, .ticket-float::after { transition: none; }
}
