:root {
  --pn-gold: #f5c451;
  --pn-gold-dark: #b97818;
  --pn-cream: #fff3cf;
  --pn-black: #050505;
  --pn-panel: #0d0b08;
  --pn-line: rgba(245, 196, 81, 0.28);
  --pn-muted: #c7bfae;
  --pn-danger: #ff8e8e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--pn-black);
  color: #fff;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(245, 196, 81, 0.12), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.gold {
  color: var(--pn-gold);
}

.eyebrow {
  color: var(--pn-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid var(--pn-gold);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ffe08a, #c9871e);
  box-shadow: 0 12px 36px rgba(245, 196, 81, 0.22);
  color: #151006;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(245, 196, 81, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(245, 196, 81, 0.09);
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.site-nav {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--pn-line);
  background: rgba(7, 6, 4, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.admin-bar .site-nav {
  top: 32px;
}

.site-nav .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
}

.navlinks > a:not(.btn) {
  color: #e8dfcd;
}

.mobile-buy {
  display: none;
  white-space: nowrap;
}

.prom-night-page .event-section {
  padding: 96px 0;
}

.prom-night-page .title {
  margin: 0.25em 0;
  background: linear-gradient(180deg, #fff6cf 0%, #f5c451 46%, #a86813 100%);
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", Georgia, serif;
  line-height: 0.95;
  text-shadow: 0 10px 38px rgba(245, 196, 81, 0.12);
  -webkit-background-clip: text;
}

.prom-night-page .hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 70px;
}

.prom-night-page .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.prom-night-page .hero h1 {
  font-size: clamp(4rem, 9vw, 8.7rem);
  letter-spacing: -0.045em;
}

.prom-night-page .hero h1 span {
  display: block;
  font-size: 0.54em;
  letter-spacing: 0.02em;
}

.prom-night-page .hero-copy {
  max-width: 630px;
  color: #d7cfbf;
  font-size: 1.08rem;
  line-height: 1.8;
}

.prom-night-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.prom-night-page .quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.prom-night-page .quick > div {
  padding: 18px;
  border: 1px solid var(--pn-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.prom-night-page .quick b {
  display: block;
  margin-bottom: 7px;
  color: var(--pn-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prom-night-page .quick span {
  font-size: 0.92rem;
}

.prom-night-page .poster-wrap {
  position: relative;
}

.prom-night-page .poster-wrap::before {
  position: absolute;
  inset: 8% -7% -5% 10%;
  content: "";
  background: var(--pn-gold);
  filter: blur(90px);
  opacity: 0.12;
}

.prom-night-page .poster-wrap picture {
  position: relative;
  display: block;
}

.prom-night-page .poster {
  display: block;
  width: 100%;
  border: 1px solid rgba(245, 196, 81, 0.5);
  border-radius: 26px;
  box-shadow: 0 40px 100px #000, 0 0 0 8px rgba(245, 196, 81, 0.04);
  transform: rotate(1.2deg);
}

.prom-night-page .marquee {
  overflow: hidden;
  border-block: 1px solid var(--pn-line);
  background: #0b0906;
}

.prom-night-page .track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  animation: prom-night-marquee 22s linear infinite;
}

.prom-night-page .track span {
  margin-right: 46px;
  color: #e8cc82;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.14em;
}

@keyframes prom-night-marquee {
  to {
    transform: translateX(-50%);
  }
}

.prom-night-page .section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.prom-night-page .section-head h2 {
  margin: 12px 0;
  font: 700 clamp(2.2rem, 5vw, 4.6rem) / 1.04 "Cinzel", Georgia, serif;
}

.prom-night-page .section-head p {
  color: var(--pn-muted);
  line-height: 1.75;
}

.prom-night-page .experience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.prom-night-page .experience-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--pn-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(245, 196, 81, 0.1), transparent 38%),
    linear-gradient(145deg, #11100d, #080705);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.prom-night-page .experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 196, 81, 0.62);
}

.prom-night-page .experience-icon {
  margin-bottom: 24px;
  font-size: 2rem;
}

.prom-night-page .experience-card h3 {
  margin: 0 0 10px;
  color: var(--pn-cream);
  font-family: "Cinzel", Georgia, serif;
}

.prom-night-page .experience-card p {
  margin: 0;
  color: #bcb3a3;
  line-height: 1.65;
}

.prom-night-page .details {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.prom-night-page .price-box,
.prom-night-page .info-box {
  padding: 36px;
  border: 1px solid var(--pn-line);
  border-radius: 26px;
  background: linear-gradient(145deg, #11100d, #080705);
}

.prom-night-page .price-box {
  display: grid;
  place-items: center;
  text-align: center;
}

.prom-night-page .event-price {
  color: var(--pn-gold);
  font: 800 clamp(4.5rem, 10vw, 8.5rem) / 1 "Cinzel", Georgia, serif;
}

.prom-night-page .event-price .woocommerce-Price-currencySymbol {
  font-size: 0.72em;
}

.prom-night-page .event-price small {
  color: #fff;
  font: 600 1rem "DM Sans", system-ui, sans-serif;
}

.prom-night-page .info-list {
  display: grid;
  gap: 14px;
}

.prom-night-page .info-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prom-night-page .info-row:last-child {
  border: 0;
}

.prom-night-page .info-row strong {
  display: block;
  color: var(--pn-gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prom-night-page .info-row span {
  color: #eee5d6;
  overflow-wrap: anywhere;
}

.prom-night-page .buy {
  background: radial-gradient(circle at 50% 50%, rgba(245, 196, 81, 0.14), transparent 52%);
}

.prom-night-page .ticket-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 81, 0.45);
  border-radius: 30px;
  background: linear-gradient(145deg, #12100c, #080705);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}

.prom-night-page .ticket-selector {
  margin-bottom: 34px;
}

.prom-night-page .checkout-copy {
  padding: 44px;
  background: radial-gradient(circle at 0 0, rgba(245, 196, 81, 0.16), transparent 45%);
}

.prom-night-page .checkout-copy h2 {
  margin: 0.25em 0;
  font: 700 clamp(2.2rem, 5vw, 4rem) / 1.05 "Cinzel", Georgia, serif;
}

.prom-night-page .checkout-copy p {
  color: #c9c0b0;
  line-height: 1.7;
}

.prom-night-page .secure {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  color: #e4d6b5;
  font-size: 0.9rem;
}

.prom-night-page .ticket-order {
  padding: 44px;
}

.prom-night-page .ticket-field {
  margin-bottom: 18px;
}

.prom-night-page .ticket-field label {
  display: block;
  margin-bottom: 8px;
  color: #e9dfcb;
  font-size: 0.9rem;
}

.prom-night-page .ticket-field select {
  width: 100%;
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  outline: none;
  background: #080706;
  color: #fff;
}

.prom-night-page .ticket-field select:focus {
  border-color: var(--pn-gold);
}

.prom-night-page .ticket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 20px;
  padding: 18px 0;
  border-block: 1px solid var(--pn-line);
}

.prom-night-page .ticket-total strong {
  color: var(--pn-gold);
  font-size: 1.6rem;
}

.prom-night-page .ticket-order .btn {
  width: 100%;
  border-radius: 14px;
}

.prom-night-page .form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #dcd4c7;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.prom-night-page .form-status.is-error {
  color: var(--pn-danger);
}

.prom-night-page .tiny {
  margin-top: 10px;
  color: #9f978a;
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.prom-night-page .purchase-error {
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 142, 142, 0.6);
  border-radius: 14px;
  background: rgba(140, 30, 30, 0.2);
  color: #ffd1d1;
  line-height: 1.6;
}

.prom-night-page .inline-checkout {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px;
  scroll-margin-top: 100px;
  border: 1px solid rgba(245, 196, 81, 0.45);
  border-radius: 30px;
  background: linear-gradient(145deg, #12100c, #080705);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}

.prom-night-page .inline-checkout-head {
  max-width: 650px;
  margin: 0 auto 30px;
  text-align: center;
}

.prom-night-page .inline-checkout-head h2 {
  margin: 10px 0;
  color: var(--pn-cream);
  font: 700 clamp(2rem, 4vw, 3.5rem) / 1.08 "Cinzel", Georgia, serif;
}

.prom-night-page .inline-checkout-head p {
  color: var(--pn-muted);
  line-height: 1.7;
}

/* Classic WooCommerce checkout layout used by the embedded event checkout. */
.prom-night-page .inline-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 14px 28px;
}

.prom-night-page .inline-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.prom-night-page .inline-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.prom-night-page .inline-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
}

.prom-night-page .inline-checkout .woocommerce .col2-set {
  display: block;
}

.prom-night-page .inline-checkout .woocommerce .col2-set .col-1 {
  float: none;
  width: 100%;
}

.prom-night-page .inline-checkout .woocommerce .col2-set .col-2 {
  display: none;
}

.prom-night-page .inline-checkout .woocommerce-billing-fields h3,
.prom-night-page .inline-checkout #order_review_heading {
  color: var(--pn-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
}

.prom-night-page .inline-checkout .form-row {
  float: none !important;
  width: 100% !important;
  margin: 0 0 16px !important;
}

.prom-night-page .inline-checkout #billing_country_field {
  display: none !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-review-order-table td,
.prom-night-page .inline-checkout .woocommerce-checkout-review-order-table th {
  font-size: 0.95rem !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-review-order-table .amount {
  color: var(--pn-gold) !important;
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-size: 1rem !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-review-order-table .order-total .amount {
  font-size: 1.15rem !important;
}

.prom-night-page .inline-checkout #payment {
  margin-top: 18px;
}

.prom-night-page .inline-checkout #place_order {
  width: 100%;
  font-size: 1rem !important;
}

.prom-night-page .inline-checkout .woocommerce-form-coupon-toggle {
  display: none;
}

.prom-night-page .inline-checkout .woocommerce-privacy-policy-text,
.prom-night-page .inline-checkout .woocommerce-terms-and-conditions-wrapper {
  color: #aaa191;
  font-size: 0.8rem;
  line-height: 1.55;
}

.prom-night-page .inline-checkout .woocommerce-checkout-payment ul.payment_methods {
  padding: 0 !important;
  border: 0 !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-payment ul.payment_methods > li {
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid var(--pn-line) !important;
  border-radius: 14px !important;
  background: #0b0a08 !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-payment ul.payment_methods > li + li {
  margin-top: 12px !important;
}

.prom-night-page .inline-checkout .woocommerce-checkout-payment label {
  color: #fff !important;
  font-weight: 700 !important;
}

.prom-night-page .inline-checkout .wc-square-credit-card-hosted-field,
.prom-night-page .inline-checkout .wc-square-hosted-field {
  min-height: 48px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #fff;
}

.prom-night-page .inline-checkout .blockUI.blockOverlay {
  background: #080706 !important;
  opacity: 0.72 !important;
}

.prom-night-page .inline-checkout input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #080706 inset !important;
  -webkit-text-fill-color: #fff !important;
}

.prom-night-page .inline-checkout .woocommerce-invalid input.input-text {
  border-color: #e57373 !important;
}

.prom-night-page .inline-checkout .woocommerce-validated input.input-text {
  border-color: #6cc17c !important;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--pn-line);
  color: #a99f90;
}

.site-footer .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer .foot > div:first-child {
  display: grid;
  gap: 6px;
}

.site-footer b {
  color: var(--pn-gold);
  font-family: "Cinzel", Georgia, serif;
}

.site-footer .legal-links {
  display: flex;
  gap: 16px;
}

.site-footer .legal-links a:hover {
  color: #fff;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 16px 18px;
  transform: translateY(20px);
  border: 1px solid var(--pn-gold);
  border-radius: 14px;
  opacity: 0;
  background: #11100d;
  box-shadow: 0 20px 50px #000;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  transform: none;
  opacity: 1;
}

/* Standard WordPress and WooCommerce pages. */
.content-page {
  min-height: 100vh;
  padding: 120px 0 70px;
}

.content-shell {
  max-width: 1080px;
  padding: 34px;
  border: 1px solid var(--pn-line);
  border-radius: 24px;
  background: var(--pn-panel);
  overflow-wrap: anywhere;
}

.content-shell h1,
.content-shell h2,
.content-shell h3 {
  color: var(--pn-cream);
  font-family: "Cinzel", Georgia, serif;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 10px !important;
  background: #080706 !important;
  color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 22px !important;
}

.woocommerce-checkout #payment,
.woocommerce table.shop_table,
.woocommerce .woocommerce-customer-details address {
  border: 1px solid var(--pn-line) !important;
  border-radius: 16px !important;
  background: #11100d !important;
  color: #fff !important;
}

.woocommerce-checkout #payment div.payment_box {
  background: #1a1711 !important;
  color: #fff !important;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #1a1711 !important;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #payment #place_order {
  padding: 15px 22px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #ffe08a, #c9871e) !important;
  color: #151006 !important;
  font-weight: 800 !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #payment #place_order:hover {
  filter: brightness(1.06);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--pn-gold) !important;
  background: #12100c !important;
  color: #fff !important;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--pn-gold) !important;
}

.woocommerce-checkout-review-order-table,
.woocommerce-checkout-payment {
  margin-top: 18px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border-color: var(--pn-line);
  border-radius: 14px;
}

.woocommerce label {
  color: #e9dfcb;
}

@media (max-width: 900px) {
  .navlinks > a:not(.btn) {
    display: none;
  }

  .prom-night-page .hero-grid,
  .prom-night-page .details,
  .prom-night-page .ticket-checkout {
    grid-template-columns: 1fr;
  }

  .prom-night-page .poster-wrap {
    max-width: 620px;
    margin: auto;
  }

  .prom-night-page .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prom-night-page .quick {
    grid-template-columns: 1fr 1fr;
  }

  .prom-night-page .hero {
    text-align: center;
  }

  .prom-night-page .hero-copy {
    margin-inline: auto;
  }

  .prom-night-page .hero-actions {
    justify-content: center;
  }

  .prom-night-page .quick {
    text-align: left;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-nav {
    top: 46px;
  }
}

@media (max-width: 780px) {
  .prom-night-page .inline-checkout {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .prom-night-page .inline-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .prom-night-page .inline-checkout #customer_details,
  .prom-night-page .inline-checkout #order_review_heading,
  .prom-night-page .inline-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .prom-night-page .ticket-selector {
    margin-bottom: 22px;
  }

  .woocommerce-checkout .col2-set {
    grid-template-columns: 1fr;
  }

  .content-shell {
    padding: 22px;
  }

  .content-page {
    padding-top: 100px;
  }

  .navlinks {
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .site-nav .bar {
    height: 68px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .navlinks .desktop-buy {
    display: none;
  }

  .navlinks .mobile-buy {
    display: inline-flex;
  }

  .prom-night-page .hero {
    padding-top: 102px;
  }

  .prom-night-page .hero h1 {
    font-size: clamp(3.15rem, 18vw, 3.7rem);
  }

  .prom-night-page .quick,
  .prom-night-page .experience-cards {
    grid-template-columns: 1fr;
  }

  .prom-night-page .poster {
    border-radius: 18px;
  }

  .prom-night-page .checkout-copy,
  .prom-night-page .ticket-order,
  .prom-night-page .price-box,
  .prom-night-page .info-box {
    padding: 27px;
  }

  .prom-night-page .event-section {
    padding: 74px 0;
  }

  .prom-night-page .event-price {
    font-size: clamp(4rem, 24vw, 6rem);
  }

  .site-footer .foot {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .btn {
    padding: 14px 18px;
  }
}

@media (max-width: 380px) {
  .brand {
    max-width: 128px;
    line-height: 1.15;
  }

  .navlinks .mobile-buy {
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .prom-night-page .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .prom-night-page .poster,
  .btn:hover,
  .prom-night-page .experience-card:hover {
    transform: none;
  }
}
