/* Strike After Dark — The Alley */

:root {
  --cream: #faf6ec;
  --white: #ffffff;
  --ivory: #f3ecd9;
  --black: #161412;
  --ink: #2a2620;
  --gold-deep: #8a6a1f;
  --gold: #c9a227;
  --gold-bright: #e9cb70;
  --gold-pale: #f4e4ae;
  --line: rgba(201, 162, 39, 0.35);
  --muted: #6b6255;
  --muted-soft: #8a8071;

  /* Compatibility aliases used by shared form markup */
  --primary-green: var(--gold-deep);
  --secondary-green: var(--gold);
  --light-green: var(--gold-bright);
  --accent-yellow: var(--gold);
  --text-dark: var(--ink);
  --text-light: var(--muted);
  --bg-light: var(--cream);
  --border-color: var(--line);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: #fff;
}

.marble {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background:
    radial-gradient(ellipse 60% 30% at 20% 10%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(ellipse 50% 30% at 80% 90%, rgba(255, 255, 255, 0.5), transparent 60%);
}

/* ---------- NAV ---------- */
nav,
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: linear-gradient(to bottom, rgba(250, 246, 236, 0.96), rgba(250, 246, 236, 0.75));
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 20px;
  background: linear-gradient(135deg, #a97e17, var(--gold-bright) 40%, #8a6a1f 55%, var(--gold-bright) 75%, #a97e17);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.wordmark span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--gold-deep);
  -webkit-text-fill-color: var(--gold-deep);
}

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  padding: 11px 22px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(138, 106, 31, 0.35);
  border: none;
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 6vw 80px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(233, 203, 112, 0.35), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, var(--ivory) 60%, #ecdfb8 100%);
  overflow: hidden;
}

.badge-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 26px;
  margin-bottom: 34px;
  background: rgba(255, 255, 255, 0.6);
}

.badge-strip .item {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-strip .dot {
  color: var(--gold);
}

.eyebrow {
  position: relative;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(64px, 15vw, 150px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff6de 0%, var(--gold-bright) 35%, var(--gold) 60%, #a97e17 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(138, 106, 31, 0.25);
}

.hero .script {
  position: relative;
  z-index: 2;
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(48px, 10vw, 96px);
  color: var(--ink);
  margin-top: -6px;
  display: inline-block;
}

.hero .tagline {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

.affair-banner {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(30px, 5.5vw, 54px);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 40px;
}

.badge-row {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 30px;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(138, 106, 31, 0.08);
}

.info-card .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card .val {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
}

.hero-cta {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-bright));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 17px 40px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(138, 106, 31, 0.35);
  border: none;
  cursor: pointer;
}

.scroll-cue {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- SECTION SHARED ---------- */
section {
  padding: 110px 6vw;
  position: relative;
}

.sec-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.sec-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  color: var(--ink);
}

.sec-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- TIERS ---------- */
.tiers {
  background: linear-gradient(180deg, #ecdfb8 0%, var(--ivory) 12%, var(--cream) 100%);
}

.tier-track {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tier-card {
  position: relative;
  border-radius: 6px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(138, 106, 31, 0.06);
}

.tier-card:hover {
  transform: translateY(-6px);
}

.tier-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 700;
}

.tier-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold-deep);
  margin-top: 2px;
}

.tier-price sup {
  font-size: 13px;
  color: var(--muted-soft);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
}

.tier-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.tier-list {
  list-style: none;
  font-size: 12.5px;
  color: #4a4438;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tier-list li {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.tier-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.tier-btn {
  margin-top: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--cream);
  text-decoration: none;
  cursor: pointer;
  display: block;
  width: 100%;
  font-family: inherit;
}

.tier-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.t1 {
  border-color: var(--line);
}

.t2 {
  background: linear-gradient(180deg, #fff, var(--ivory));
}

.t3 {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(180deg, #fff, #f6ecc9);
}

.t4 {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff, #f2e2ab);
  box-shadow: 0 10px 34px rgba(201, 162, 39, 0.18);
}

.t5 {
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, #fff9ea, #f2e2ab);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35), 0 20px 50px rgba(201, 162, 39, 0.22);
}

.t5 .tier-btn {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  border: none;
}

.most-flex {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--ink);
  color: var(--gold-pale);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- ONSITE ORDERING ---------- */
.flow {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 6vw;
}

.flow-copy .sec-eyebrow {
  margin-bottom: 16px;
}

.flow-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}

.flow-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 440px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.flow-step .dot {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--gold-deep);
}

.flow-step h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.flow-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

.phone-mock {
  justify-self: center;
  width: 280px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  box-shadow: 0 30px 60px rgba(138, 106, 31, 0.15);
}

.phone-mock .ph-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.phone-mock .ph-head b {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.phone-mock .ph-head span {
  font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qr-block {
  background: var(--ink);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.qr-block .qr {
  width: 100%;
  aspect-ratio: 1;
  background-image:
    repeating-linear-gradient(90deg, var(--gold-pale) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(0deg, var(--gold-pale) 0 6px, transparent 6px 12px);
  background-blend-mode: screen;
  border-radius: 4px;
}

.qr-block small {
  display: block;
  margin-top: 10px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--gold-pale);
  text-transform: uppercase;
  font-weight: 700;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}

.order-row b {
  color: var(--ink);
  font-weight: 600;
}

.order-row span {
  color: var(--gold-deep);
  font-weight: 700;
}

.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.reorder-tag {
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 6px;
  line-height: 1.5;
}

.reorder-tag b {
  color: var(--gold-deep);
}

/* ---------- CHECKOUT PREVIEW ---------- */
.checkout {
  background: linear-gradient(180deg, var(--cream), var(--ivory) 60%, var(--cream));
  text-align: center;
}

.checkout-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: #fff;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(138, 106, 31, 0.15);
}

.checkout-card .co-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 2px;
  color: var(--ink);
}

.checkout-card .co-sub {
  font-size: 11px;
  color: var(--muted-soft);
  margin-bottom: 20px;
}

.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}

.co-line.total {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 17px;
  border-bottom: none;
  padding-top: 16px;
  color: var(--gold-deep);
}

.pay-btn {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.co-note {
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--muted-soft);
  text-align: center;
}

/* ---------- PAYMENT / SUCCESS PAGES ---------- */
.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 110px 6vw 60px;
}

.payment-page-container,
.success-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 60px rgba(138, 106, 31, 0.15);
}

.payment-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.payment-header h1,
.success-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 8px;
}

.payment-header .co-sub {
  margin: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--gold);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group small {
  color: var(--muted-soft);
  font-size: 0.85rem;
  display: block;
  margin-top: 6px;
}

.event-date-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 600;
  color: var(--ink);
}

.event-date-pill-icon {
  color: var(--gold);
}

.form-summary {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  margin: 22px 0;
}

.summary-row,
.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}

.summary-row:last-child,
.summary-row.total {
  border-bottom: none;
}

.summary-row.total {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 17px;
  padding-top: 14px;
  color: var(--gold-deep);
}

.btn-purchase,
.back-button,
.btn-close {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 34px rgba(138, 106, 31, 0.25);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-purchase:hover:not(:disabled),
.back-button:hover,
.btn-close:hover {
  filter: brightness(1.05);
}

.btn-purchase:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#cardErrors {
  color: #9b2c2c;
  font-size: 13px;
  margin: 10px 0;
  min-height: 1.2em;
}

#testModeNotice {
  padding: 14px 16px;
  background: #fff9ea;
  border: 1px solid var(--gold);
  border-radius: 6px;
  margin: 15px 0;
  color: var(--ink);
  font-size: 13px;
}

.cf-turnstile {
  margin: 16px 0;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

.spinner.hidden {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-container {
  text-align: center;
  margin-top: 40px;
}

.success-icon {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.success-message {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.back-button {
  width: auto;
  padding: 14px 28px;
}

/* ---------- MODAL ---------- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 20, 18, 0.55);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(138, 106, 31, 0.2);
}

.modal-content.success h2 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ---------- FOOTER ---------- */
footer,
.footer {
  position: relative;
  z-index: 2;
  padding: 50px 6vw 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted-soft);
  letter-spacing: 0.05em;
  background: transparent;
}

footer .fw,
.footer .fw {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--gold-deep);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a {
  color: var(--gold-deep);
  text-decoration: none;
}

.footer-contact,
.footer-terms {
  margin-top: 6px;
}

/* Legacy page containers (farm-tours / harvest / scan) */
.page-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  padding-top: 90px;
}

.hero-section,
.ticket-section,
.event-details,
.details-content,
.venue-section {
  background: transparent;
  color: var(--ink);
}

.hero-section {
  display: block;
  min-height: auto;
  padding: 40px 6vw;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(233, 203, 112, 0.28), transparent 65%),
    linear-gradient(180deg, var(--cream), var(--ivory));
}

.hero-section::before {
  display: none;
}

.hero-info h1,
.section-title,
.event-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--ink);
}

.get-tickets-btn,
.select-event-btn,
.map-btn,
.more-events-btn {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #fff;
  border: none;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(138, 106, 31, 0.06);
}

.event-price,
.ticket-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold-deep);
  font-weight: 800;
}

@media (max-width: 980px) {
  .tier-track {
    grid-template-columns: 1fr 1fr;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .phone-mock {
    order: -1;
  }
}

@media (max-width: 600px) {
  .tier-track {
    grid-template-columns: 1fr;
  }

  .badge-row {
    flex-direction: column;
    align-items: center;
  }

  .payment-page-container,
  .success-container {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
