/* ==========================================================================
   BHAGYODAYA PROPERTY WEEKEND — standalone stylesheet (v3, PHP build)
   Ported from the Elementor v2 file. Because this is no longer inside a
   WordPress theme, the !important colour-reset block is gone and real
   body/font rules are back. Class prefix .bpw- is kept throughout.
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #150F3C;
  color: #F5F2FB;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- TOKENS ---------- */
.bpw-page {
  --bpw-indigo: #201856;
  --bpw-indigo-deep: #150F3C;
  --bpw-purple: #453181;
  --bpw-pink: #E3285F;
  --bpw-g1a: #4F2F7B;
  --bpw-g1b: #972057;
  /* Gradient 01 */
  --bpw-g2a: #EB5D31;
  --bpw-g2b: #E6354F;
  /* Gradient 02 */
  --bpw-ink: #F5F2FB;
  --bpw-muted: rgba(245, 242, 251, .66);
  --bpw-line: rgba(245, 242, 251, .14);
  --bpw-card: rgba(69, 49, 129, .30);

  background: var(--bpw-indigo-deep);
  overflow-x: hidden;
}

.bpw-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bpw-page p,
.bpw-page label,
.bpw-page input,
.bpw-page select,
.bpw-page textarea,
.bpw-page li {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.bpw-page h1,
.bpw-page h2,
.bpw-page h3,
.bpw-page h4,
.bpw-h1,
.bpw-h2,
.bpw-h3,
.bpw-logo-text,
.bpw-form-title,
.bpw-eyebrow,
.bpw-btn,
.bpw-pass-month,
.bpw-pass-num,
.bpw-pass-kicker,
.bpw-pass-k,
.bpw-pass-v {
  font-family: 'Josefin Sans', 'Poppins', sans-serif;
}

.bpw-page h1,
.bpw-page h2,
.bpw-page h3,
.bpw-page h4 {
  margin: 0 0 14px;
  line-height: 1.12;
}

.bpw-page a {
  text-decoration: none;
  color: var(--bpw-ink);
}

.bpw-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.bpw-logo-img {
  height: 64px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bpw-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.bpw-sec {
  padding: clamp(54px, 7.5vw, 104px) 0;
  position: relative;
}

/* Event Form Layout */
.bpw-event-form-sec {
  padding: clamp(40px, 5vw, 70px) 0;
  position: relative;
}

.bpw-event-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}

@media (max-width:991px) {
  .bpw-event-form-grid {
    grid-template-columns: 1fr;
  }
}


/* eyebrow */
.bpw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bpw-muted);
  margin-bottom: 18px;
}

.bpw-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--bpw-g2a), var(--bpw-g2b));
}

/* gradient text */
.bpw-grad {
  background: linear-gradient(92deg, var(--bpw-g2a) 0%, var(--bpw-g2b) 58%, var(--bpw-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- BUTTONS ---------- */
.bpw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
  box-shadow: 0 12px 30px -12px rgba(230, 53, 79, .85);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.bpw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -14px rgba(230, 53, 79, .95);
  filter: brightness(1.05);
  color: #fff;
}

.bpw-btn:focus-visible {
  outline: 2px solid var(--bpw-ink);
  outline-offset: 3px;
}

.bpw-btn[disabled] {
  opacity: .6;
  cursor: progress;
  transform: none;
}

.bpw-btn-ghost {
  background: transparent;
  border: 1px solid var(--bpw-line);
  color: var(--bpw-ink);
  box-shadow: none;
}

.bpw-btn-ghost:hover {
  border-color: var(--bpw-pink);
  background: rgba(227, 40, 95, .10);
  box-shadow: none;
  color: var(--bpw-ink);
}

/* ==========================================================
   1. HERO
   ========================================================== */
.bpw-hero {
  position: relative;
  padding: clamp(34px, 5vw, 60px) 0 clamp(56px, 7vw, 92px);
  background:
    radial-gradient(1100px 620px at 12% -10%, rgba(151, 32, 87, .45) 0%, transparent 62%),
    radial-gradient(900px 560px at 88% 8%, rgba(79, 47, 123, .60) 0%, transparent 60%),
    var(--bpw-indigo);
  overflow: hidden;
}

.bpw-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bpw-indigo-deep));
  pointer-events: none;
}

.bpw-hero-inner {
  position: relative;
  z-index: 2;
}

.bpw-logo {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.bpw-logo img {
  max-height: 124px;
  width: auto;
}

.bpw-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.bpw-logo-text em {
  font-style: normal;
  font-weight: 300;
  color: var(--bpw-muted);
}

.bpw-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.bpw-guj {
  font-family: 'Noto Sans Gujarati', 'Manrope', sans-serif;
  font-size: clamp(19px, 2.4vw, 29px);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 24ch;
}

.bpw-h1 {
  font-size: clamp(36px, 5.6vw, 68px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.bpw-h1 span {
  display: block;
}

.bpw-h1-lite {
  font-weight: 300;
  letter-spacing: .01em;
}

.bpw-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--bpw-muted);
  max-width: 44ch;
  margin: 18px 0 26px;
}

.bpw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.bpw-pills li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--bpw-line);
  background: rgba(21, 15, 60, .45);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

.bpw-pills li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
}

.bpw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bpw-cta-note {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bpw-muted);
}

/* ---- the event pass ---- */
.bpw-pass {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bpw-g1a) 0%, var(--bpw-g1b) 100%);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .85);
}

.bpw-pass-top {
  padding: 26px 26px 30px;
}

.bpw-pass-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 22px;
}

.bpw-pass-date {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 6px;
}

.bpw-pass-num {
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .85;
  color: #fff;
}

.bpw-pass-amp {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  padding-bottom: 8px;
}

.bpw-pass-month {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 9px;
}

.bpw-pass-days {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.bpw-pass-rip {
  position: relative;
  height: 26px;
}

.bpw-pass-rip::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 50%;
  border-top: 2px dashed rgba(255, 255, 255, .38);
}

.bpw-pass-rip span {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bpw-indigo);
  transform: translateY(-50%);
}

.bpw-pass-rip span:first-child {
  left: -13px;
}

.bpw-pass-rip span:last-child {
  right: -13px;
}

.bpw-pass-bottom {
  padding: 8px 26px 26px;
}

.bpw-pass-row {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.bpw-pass-row:last-child {
  border-bottom: 0;
}

.bpw-pass-k {
  flex: 0 0 74px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  padding-top: 3px;
}

.bpw-pass-v {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}

.bpw-pass-v small {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .72);
  margin-top: 3px;
}

.bpw-stamp {
  position: absolute;
  right: 16px;
  bottom: 18px;
  padding: 8px 14px;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  transform: rotate(-8deg);
}

/* ==========================================================
   2. MARQUEE
   ========================================================== */
.bpw-marquee {
  border-top: 1px solid var(--bpw-line);
  border-bottom: 1px solid var(--bpw-line);
  background: var(--bpw-indigo-deep);
  padding: 16px 0;
  overflow: hidden;
}

.bpw-marquee-track {
  display: flex;
  width: max-content;
  animation: bpw-scroll 26s linear infinite;
}

.bpw-marquee-track span {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bpw-muted);
  white-space: nowrap;
}

.bpw-marquee-track span::after {
  content: "\25C6";
  color: var(--bpw-pink);
  font-size: 9px;
}

@keyframes bpw-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================
   3. WHY ATTEND
   ========================================================== */
.bpw-head {
  max-width: 640px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.bpw-h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.015em;
}

.bpw-head p {
  color: var(--bpw-muted);
  font-size: 16px;
  margin: 0;
}

.bpw-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bpw-card {
  border: 1px solid var(--bpw-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bpw-card);
  transition: border-color .3s ease, transform .3s ease;
}

.bpw-card:hover {
  border-color: rgba(227, 40, 95, .55);
  transform: translateY(-4px);
}

.bpw-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bpw-purple);
}

.bpw-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bpw-card:hover .bpw-card-media img {
  transform: scale(1.05);
}

.bpw-card-body {
  padding: 22px 22px 26px;
}

.bpw-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}

.bpw-card p {
  font-size: 14.5px;
  color: var(--bpw-muted);
  margin: 0;
}

/* ==========================================================
   4. PROJECT GRID
   ========================================================== */
.bpw-projects {
  background: var(--bpw-indigo);
}

.bpw-pgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.bpw-tile {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bpw-purple);
}

.bpw-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.bpw-tile:hover img {
  transform: scale(1.06);
}

.bpw-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 15, 60, .88) 100%);
}

.bpw-tile-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.bpw-tile-label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(255, 255, 255, .7);
  margin-top: 3px;
}

.bpw-pnote {
  margin: 26px 0 0;
  font-size: 13.5px;
  color: var(--bpw-muted);
  letter-spacing: .02em;
}

/* ==========================================================
   5. VENUE
   ========================================================== */
.bpw-venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
}

.bpw-venue-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bpw-line);
}

.bpw-venue-media img,
.bpw-venue-media iframe {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 0;
  display: block;
}

.bpw-venue-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}

.bpw-venue-list li {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bpw-line);
}

.bpw-venue-list li:first-child {
  border-top: 1px solid var(--bpw-line);
}

.bpw-venue-list b {
  flex: 0 0 96px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bpw-muted);
  padding-top: 3px;
}

.bpw-venue-list span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================
   6. REGISTRATION
   ========================================================== */
.bpw-reg {
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(151, 32, 87, .42), transparent 65%),
    var(--bpw-indigo);
}

.bpw-reg-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.bpw-reg-aside p {
  color: var(--bpw-muted);
  font-size: 15.5px;
}

.bpw-reg-aside .bpw-h2 {
  margin-bottom: 12px;
}

.bpw-slots {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.bpw-slots li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 7px 0;
}

.bpw-slots li::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
}

.bpw-form-shell {
  border: 1px solid var(--bpw-line);
  border-radius: 22px;
  background: rgba(21, 15, 60, .62);
  padding: clamp(22px, 3vw, 38px);
  backdrop-filter: blur(6px);
}

.bpw-form-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}

.bpw-form-note {
  font-size: 13.5px;
  color: var(--bpw-muted);
  margin: 0 0 26px;
}

/* ---------- STEPPER ---------- */
.bpw-stepper {
  position: relative;
  margin-bottom: 28px;
}

.bpw-stepper-track {
  position: absolute;
  left: 17px;
  right: 17px;
  top: 17px;
  height: 2px;
  background: var(--bpw-line);
  border-radius: 2px;
  overflow: hidden;
}

.bpw-stepper-track i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
  transition: width .4s ease;
}

.bpw-stepper-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bpw-stepper-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: 1;
}

.bpw-stepper-list li b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--bpw-line);
  background: var(--bpw-indigo-deep);
  font-size: 13px;
  font-weight: 700;
  color: var(--bpw-muted);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.bpw-stepper-list li span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bpw-muted);
  text-align: center;
}

.bpw-stepper-list li.is-active b,
.bpw-stepper-list li.is-done b {
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
  border-color: transparent;
  color: #fff;
}

.bpw-stepper-list li.is-active span {
  color: var(--bpw-ink);
}

/* ---------- STEPS ---------- */
.bpw-step {
  display: none;
}

.bpw-step.is-active {
  display: block;
  animation: bpw-fade .3s ease both;
}

@keyframes bpw-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.bpw-field {
  margin-bottom: 22px;
}

.bpw-f-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bpw-muted);
  margin-bottom: 10px;
}

.bpw-f-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--bpw-line);
  background: rgba(32, 24, 86, .75);
  color: var(--bpw-ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.bpw-f-input::placeholder {
  color: rgba(245, 242, 251, .38);
}

.bpw-f-input:focus {
  outline: none;
  border-color: var(--bpw-pink);
  box-shadow: 0 0 0 3px rgba(227, 40, 95, .22);
}

.bpw-f-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bpw-f-radios label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 100px;
  border: 1px solid var(--bpw-line);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.bpw-f-radios label:hover {
  border-color: rgba(227, 40, 95, .6);
}

.bpw-f-radios label:has(input:checked) {
  border-color: var(--bpw-pink);
  background: rgba(227, 40, 95, .14);
}

.bpw-f-radios input {
  accent-color: var(--bpw-pink);
  margin: 0;
  width: 16px;
  height: 16px;
}

.bpw-f-radios input:focus-visible {
  outline: 2px solid var(--bpw-ink);
  outline-offset: 2px;
}

/* validation */
.bpw-err {
  display: none;
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFB3C6;
}

.bpw-field.has-error .bpw-err {
  display: block;
}

.bpw-field.has-error .bpw-f-input {
  border-color: var(--bpw-pink);
}

.bpw-form-msg {
  display: none;
  margin: 0 0 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #FFB3C6;
}

.bpw-form-msg.is-on {
  display: block;
}

/* honeypot */
.bpw-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bpw-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.bpw-step-nav .bpw-btn-ghost {
  padding: 16px 26px;
}

/* ---------- SUCCESS ---------- */
.bpw-done {
  text-align: center;
  padding: 14px 0 6px;
  animation: bpw-fade .35s ease both;
}

.bpw-done-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(92deg, var(--bpw-g2a), var(--bpw-g2b));
  box-shadow: 0 14px 34px -14px rgba(230, 53, 79, .9);
}

.bpw-done-mark svg {
  width: 26px;
  height: 26px;
}

.bpw-done .bpw-form-note {
  max-width: 46ch;
  margin: 0 auto 26px;
}

/* ==========================================================
   7. FOOTER
   ========================================================== */
.bpw-foot {
  border-top: 1px solid var(--bpw-line);
  padding: 34px 0;
  background: var(--bpw-indigo-deep);
}

.bpw-foot-in {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.bpw-foot-org {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bpw-muted);
}

.bpw-foot-name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
}

.bpw-foot a {
  font-size: 14px;
}

.bpw-foot a:hover {
  color: var(--bpw-pink);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width:1024px) {
  .bpw-hero-grid {
    grid-template-columns: 1fr;
  }

  .bpw-pass {
    max-width: 440px;
  }

  .bpw-cards {
    grid-template-columns: 1fr 1fr;
  }

  .bpw-pgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bpw-reg-grid {
    grid-template-columns: 1fr;
  }

  .bpw-venue-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .bpw-cards {
    grid-template-columns: 1fr;
  }

  .bpw-pgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bpw-pass-k {
    flex: 0 0 62px;
  }

  .bpw-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bpw-cta-row .bpw-btn {
    width: 100%;
  }

  .bpw-cta-note {
    text-align: center;
  }

  .bpw-stepper-list li span {
    font-size: 9.5px;
    letter-spacing: .08em;
  }

  .bpw-step-nav {
    flex-direction: column-reverse;
  }

  .bpw-step-nav .bpw-btn {
    width: 100%;
  }
}

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