@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;700;900&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

:root {
  --color-gold: #EBB432;
  --color-gold-2: #D99E1F;
  --color-teal: #7AB9B4;
  --color-bg: #121212;
  --color-surface: #2A2A2A;
  --color-text: #FFFFFF;
  --color-text-muted: #A4A4A4;
  --color-grey: #C4C4C4;

  --font-heading: "Unbounded", sans-serif;
  --font-body: "Poppins", sans-serif;

  --text-hero: 70px;
  --text-section: 40px;
  --text-eyebrow: 12px;
  --text-card-title: 18px;
  --text-body-large: 22px;
  --text-body: 15px;
  --text-number: 70px;
  --text-label: 16px;
  --text-button: 18px;

  --lh-hero: 1.2em;
  --lh-section: 1.2em;
  --lh-eyebrow: 1.2em;
  --lh-card-title: 1.2em;
  --lh-body-large: 1.5em;
  --lh-body: 1.5em;
  --lh-number: 1em;
  --lh-label: 1.3em;
  --lh-button: 1.5em;

  --ls-eyebrow: 0.25em;

  --pk-header-bg: rgba(18,18,18,0);
  --pk-header-bg-scrolled: rgba(18,18,18,0.82);
  --pk-border: rgba(255,255,255,0.10);
  --pk-border-strong: rgba(255,255,255,0.18);
  --pk-header-h: 82px;
  --pk-header-h-small: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}

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

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

img {
  display: block;
  max-width: 100%;
}

.text-hero {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: var(--lh-hero);
}

.text-section {
  font-family: var(--font-heading);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: var(--lh-section);
}

.text-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  font-weight: 400;
  line-height: var(--lh-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.text-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-card-title);
  font-weight: 700;
  line-height: var(--lh-card-title);
}

.text-body-large {
  font-family: var(--font-body);
  font-size: var(--text-body-large);
  font-weight: 400;
  line-height: var(--lh-body-large);
}

.text-body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-body);
}

.text-number {
  font-family: var(--font-body);
  font-size: var(--text-number);
  font-weight: 600;
  line-height: var(--lh-number);
}

.text-label {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  line-height: var(--lh-label);
}

.text-button {
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: 600;
  line-height: var(--lh-button);
}

/* HEADER */
.pk-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--pk-header-h);
  background: var(--pk-header-bg);
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.pk-site-header.pk-scrolled {
  height: var(--pk-header-h-small);
  background: var(--pk-header-bg-scrolled);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--pk-border);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

.pk-site-header-inner {
  position: relative;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pk-header-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  text-transform: lowercase;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 3;
  background: transparent !important;
  box-shadow: none !important;
}

.pk-header-logo:hover,
.pk-header-logo:focus,
.pk-header-logo:active,
.pk-header-logo:visited {
  color: var(--color-text);
  text-decoration: none;
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}

.pk-header-logo span {
  color: var(--color-gold);
}

.pk-header-logo:hover span,
.pk-header-logo:focus span,
.pk-header-logo:active span,
.pk-header-logo:visited span {
  color: var(--color-gold);
}

.pk-header-pill-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.35s ease;
}

.pk-header-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 5px;
  background: rgba(18,18,18,0.72);
  border: 1px solid var(--pk-border-strong);
  border-radius: 100px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.pk-header-pill-indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  width: 0;
  border-radius: 100px;
  background: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition:
    transform 0.45s cubic-bezier(0.76, 0, 0.24, 1),
    width 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
  pointer-events: none;
}

.pk-header-pill-btn {
  position: relative;
  z-index: 2;
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  background: transparent !important;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
}

.pk-header-pill-btn:hover {
  color: var(--color-text);
}

.pk-header-pill-btn.active {
  color: #111111;
}

.pk-header-right {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.35s ease;
}

.pk-header-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pk-header-menu.hidden {
  display: none;
}

.pk-header-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.pk-header-link:hover {
  color: var(--color-text);
  background: transparent;
}

.pk-header-cta {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--color-gold);
  color: #111111;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.pk-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(235,180,50,0.25);
}

.pk-site-header.pk-scrolled .pk-header-logo {
  transform: scale(0.94);
  transform-origin: left center;
}

.pk-site-header.pk-scrolled .pk-header-pill-wrap {
  transform: translate(-50%, -50%) scale(0.95);
  transform-origin: center center;
}

.pk-site-header.pk-scrolled .pk-header-right {
  transform: scale(0.97);
  transform-origin: right center;
}

@media (max-width: 1024px) {
  .pk-site-header-inner {
    padding: 0 18px;
  }

  .pk-header-link {
    display: none;
  }

  .pk-header-cta {
    margin-left: 0;
  }

  .pk-header-pill-btn {
    padding: 11px 22px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  :root {
    --pk-header-h: 68px;
    --pk-header-h-small: 54px;
  }

  .pk-site-header-inner {
    padding: 0 14px;
  }

  .pk-header-logo {
    font-size: 17px;
  }

  .pk-header-pill-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .pk-header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .pk-site-header {
    height: auto;
    min-height: 92px;
  }

  .pk-site-header.pk-scrolled {
    height: auto;
    min-height: 78px;
  }

  .pk-site-header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo cta"
      "pill pill";
    align-items: center;
    gap: 8px 12px;
    padding: 8px 14px 10px;
  }

  .pk-header-logo {
    grid-area: logo;
    font-size: 16px;
    justify-self: start;
  }

  .pk-header-right {
    grid-area: cta;
    justify-self: end;
    transform: none !important;
  }

  .pk-header-pill-wrap {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    grid-area: pill;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pk-header-pill-btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .pk-header-cta {
    padding: 9px 12px;
    font-size: 12px;
  }
}

.pk-guest-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  /* BACKGROUND IMAGE */
  background: url("../images/image-public-hero-1.jpg") center center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 82px;
}

.pk-guest-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}

.pk-guest-hero__content {
  position: relative;
  z-index: 2;

  max-width: 980px;
  padding: 0 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pk-guest-hero__heading {
  margin: 0 0 24px;

  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: var(--lh-hero);

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pk-guest-hero__heading-line1 {
  color: var(--color-text);
}

.pk-guest-hero__heading-line2 {
  color: var(--color-gold);
}

.pk-guest-hero__body {
  max-width: 720px;
  margin: 0 0 32px;

  font-family: var(--font-body);
  font-size: var(--text-body-large);
  line-height: var(--lh-body-large);
  font-weight: 300;

  color: var(--color-text-muted);
}

.pk-guest-hero__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* GLOW ON WRAPPER (this is the key fix) */
.pk-guest-hero__btn {
  display: inline-block;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.28),
    0 0 60px rgba(255, 255, 255, 0.14);
}

.pk-guest-hero__btn:hover {
  transform: translateY(-1px);

  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.38),
    0 0 80px rgba(255, 255, 255, 0.18);
}

/* IMAGE ONLY CONTROLS SIZE */
.pk-guest-hero__btn img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 999px;
  box-shadow: none;
}

.pk-guest-hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: 400;

  color: rgba(255,255,255,0.5);
}

.pk-guest-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../images/image-public-hero-1.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 82px;
}

@media (max-width: 1024px) {
  .pk-guest-hero {
    background-attachment: scroll;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .pk-guest-hero__heading {
    font-size: 56px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pk-guest-hero {
    padding-top: 92px;
    min-height: 100svh;
  }

  .pk-guest-hero__heading {
    font-size: 40px;
  }

  .pk-guest-hero__body {
    font-size: 15px;
  }

  .pk-guest-hero__buttons img {
    height: 52px;
  }
}

/* ===== BENEFITS SECTION ===== */

.pk-guest-benefits {
  padding: 100px 40px;
  background: #111111;
}

.pk-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pkf1-track {
  display: flex;
  gap: 20px;
}

.pkf1-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 34px 26px;
  text-align: center;
  transition: all 0.25s ease;
}

.pkf1-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding-top: 6px;
}

.pkf1-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 34px 26px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pkf1-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
  .pkf1-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 0;
  }

  .pkf1-card {
    flex: 0 0 60%;
    scroll-snap-align: start;
  }

  .pkf1-card:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  .pkf1-card {
    flex: 0 0 85%;
  }

  .pkf1-card:hover {
    transform: none;
  }
}
.pkf1-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.pkf1-icon svg {
  width: 100%;
  height: 100%;
  fill: #C4C4C4;
}

.pkf1-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pkf1-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: #C4C4C4;
  line-height: 1.5;
}

/* mobile scroll */

@media (max-width: 1024px) {
  .pkf1-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .pkf1-card {
    flex: 0 0 60%;
    scroll-snap-align: start;
  }
}

@media (max-width: 767px) {
  .pkf1-card {
    flex: 0 0 85%;
  }
}

/* ================= GALLERY SECTION ================= */

.pk-guest-gallery {
  padding: 100px 40px;
  background: #111111;
}

.pk-guest-gallery__intro {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.pk-guest-gallery__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  font-weight: 400;
  line-height: var(--lh-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold);
}

.pk-guest-gallery__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: var(--lh-section);
  color: var(--color-text);
}

.pk-guest-gallery__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

.pk-gallery-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pk-gallery-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 32px;
  cursor: grab;
}

.pk-gallery-rail::-webkit-scrollbar {
  display: none;
}

.pk-gallery-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pk-gallery-card {
  flex: 0 0 auto;
  height: 50vh;
  width: calc(50vh * 0.75);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pk-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.pk-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.pk-gallery-progress-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}

.pk-gallery-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #EBB432, #7AB9B4);
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s ease;
}

@media (max-width: 1024px) {
  .pk-gallery-card {
    height: 50vh;
    width: calc(50vh * 0.75);
  }

  .pk-gallery-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .pk-guest-gallery {
    padding: 72px 24px;
  }

  .pk-guest-gallery__title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .pk-gallery-rail {
    gap: 14px;
    padding: 8px 0 28px;
  }

  .pk-gallery-card {
    height: 50vh;
    width: calc(40vh * 0.75);
    border-radius: 14px;
  }
}

/* ================= APP CTA SECTION ================= */

.pk-guest-app-cta {
  padding: 120px 40px 140px;
  background: #000000;
  text-align: center;
}

.pk-guest-app-cta__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  font-weight: 400;
  line-height: var(--lh-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-gold);
}

.pk-guest-app-cta__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
}

.pk-guest-app-cta__text {
  max-width: 900px;
  margin: 0 auto 34px;
  font-family: var(--font-body);
  font-size: var(--text-body-large);
  font-weight: 300;
  line-height: var(--lh-body-large);
  color: var(--color-text-muted);
}

.pk-guest-app-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.pk-guest-app-cta__button {
  display: inline-block;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.28),
    0 0 60px rgba(255, 255, 255, 0.14);
}

.pk-guest-app-cta__button:hover {
  transform: translateY(-1px);

  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.38),
    0 0 80px rgba(255, 255, 255, 0.18);
}

.pk-guest-app-cta__button img {
  display: block;
  height: 50px;
  width: auto;
  border: 0;
  outline: 0;
  border-radius: 999px;
  box-shadow: none;
}

.pk-guest-app-cta__tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-eyebrow);
  font-weight: 400;
  line-height: var(--lh-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 1024px) {
  .pk-guest-app-cta {
    padding: 100px 32px 120px;
  }

  .pk-guest-app-cta__title {
    font-size: 40px;
  }

  .pk-guest-app-cta__button img {
    height: 50px;
  }
}

@media (max-width: 767px) {
  .pk-guest-app-cta {
    padding: 80px 24px 100px;
  }

  .pk-guest-app-cta__title {
    font-size: 30px;
  }

  .pk-guest-app-cta__text {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .pk-guest-app-cta__buttons {
    gap: 14px;
    margin-bottom: 22px;
  }

  .pk-guest-app-cta__button img {
    height: 50px;
  }

  .pk-guest-app-cta__tagline {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .pk-guest-app-cta__buttons {
    flex-direction: column;
  }
}

/* ================= VENUE HERO SECTION ================= */

#pk-venue-hero,
#pk-venue-hero .pk-vh-inner,
#pk-venue-hero .pk-vh-right,
#pk-venue-hero .pk-vh-visual {
  overflow-x: clip;
  max-width: 100%;
}

#pk-venue-hero,
#pk-venue-hero * {
  box-sizing: border-box;
}

#pk-venue-hero {
  --pk-bg: #0b0b0f;
  --pk-surface: #14141b;
  --pk-surface-2: #1b1b24;
  --pk-border: rgba(255,255,255,0.10);
  --pk-border-2: rgba(255,255,255,0.16);
  --pk-text: #ffffff;
  --pk-text-soft: rgba(255,255,255,0.72);
  --pk-text-muted: rgba(255,255,255,0.48);
  --pk-accent: #EBB432;
  --pk-green: #4ade80;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(235,180,50,0.10) 0%, transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(90,70,220,0.12) 0%, transparent 26%),
    var(--pk-bg);
  color: var(--pk-text);
  min-height: 100vh;
  padding: 110px 0 90px;
  isolation: isolate;
}

#pk-venue-hero .pk-vh-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 200px);
}

#pk-venue-hero .pk-vh-left {
  position: relative;
  z-index: 2;
}

#pk-venue-hero .pk-vh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: rgba(235,180,50,0.10);
  border: 1px solid rgba(235,180,50,0.18);
  color: var(--pk-accent);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#pk-venue-hero .pk-vh-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pk-accent);
  box-shadow: 0 0 0 4px rgba(235,180,50,0.14);
}

#pk-venue-hero .pk-vh-title {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 2vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 620px;
}

#pk-venue-hero .pk-vh-title-line {
  display: block;
}

#pk-venue-hero .pk-vh-rotator-wrap {
  display: block;
  min-height: 2.25em;
  margin-top: 10px;
  max-width: 620px;
}

#pk-venue-hero .pk-vh-rotator {
  display: inline-block;
  font-size: 60px;
  color: var(--pk-accent);
  will-change: transform, opacity;
}

#pk-venue-hero .pk-vh-sub {
  max-width: 560px;
  margin: 0 0 34px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--pk-text-soft);
}

#pk-venue-hero .pk-vh-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

#pk-venue-hero .pk-vh-btn-primary,
#pk-venue-hero .pk-vh-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

#pk-venue-hero .pk-vh-btn-primary {
  background: var(--pk-accent);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(235,180,50,0.16);
}

#pk-venue-hero .pk-vh-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(235,180,50,0.22);
}

#pk-venue-hero .pk-vh-btn-secondary {
  border: 1px solid var(--pk-border-2);
  color: var(--pk-text-soft);
  background: rgba(255,255,255,0.03);
  font-weight: 500;
}

#pk-venue-hero .pk-vh-btn-secondary:hover {
  color: var(--pk-text);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

#pk-venue-hero .pk-vh-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

#pk-venue-hero .pk-vh-proof-avatars {
  display: flex;
  align-items: center;
}

#pk-venue-hero .pk-vh-proof-av {
  width: 36px;
  height: 36px;
  margin-right: -10px;
  border-radius: 50%;
  border: 2px solid var(--pk-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
}

#pk-venue-hero .pk-vh-proof-av:nth-child(1) { background: #EBB432; color: #111; }
#pk-venue-hero .pk-vh-proof-av:nth-child(2) { background: #8b5cf6; color: #fff; }
#pk-venue-hero .pk-vh-proof-av:nth-child(3) { background: #2563eb; color: #fff; }
#pk-venue-hero .pk-vh-proof-av:nth-child(4) { background: #1f2937; color: #fff; }

#pk-venue-hero .pk-vh-proof-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--pk-text-soft);
}

#pk-venue-hero .pk-vh-proof-text strong {
  color: var(--pk-text);
  font-weight: 600;
}

#pk-venue-hero .pk-vh-right {
  position: relative;
  min-height: 580px;
  z-index: 2;
}

#pk-venue-hero .pk-vh-right::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,180,50,0.12) 0%, rgba(235,180,50,0.06) 38%, transparent 72%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

#pk-venue-hero .pk-vh-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,15,0) 0%, rgba(11,11,15,0) 35%, rgba(11,11,15,0.18) 60%, rgba(11,11,15,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

#pk-venue-hero .pk-vh-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 580px;
  margin: 0 auto;
  z-index: 2;
}

#pk-venue-hero .pk-vh-phone {
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-42%, -50%) rotate(-4deg);
  width: 230px;
  z-index: 4;
  filter: drop-shadow(0 34px 68px rgba(0,0,0,0.65));
  animation: pkFloatPhone 5.8s ease-in-out infinite;
}

#pk-venue-hero .pk-vh-phone-shell {
  padding: 11px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2b2b36 0%, #1a1a22 58%, #14141b 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
}

#pk-venue-hero .pk-vh-phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  border-radius: 0 0 16px 16px;
  background: #09090c;
  z-index: 3;
}

#pk-venue-hero .pk-vh-phone-screen {
  min-height: 410px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  color: #111827;
}

#pk-venue-hero .pk-vh-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 16px 12px;
}

#pk-venue-hero .pk-vh-phone-back {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,163,141,0.08);
  color: #00a38d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

#pk-venue-hero .pk-vh-phone-heading {
  text-align: center;
  flex: 1;
  padding: 0 8px;
}

#pk-venue-hero .pk-vh-phone-heading strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

#pk-venue-hero .pk-vh-phone-heading span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #6b7280;
}

#pk-venue-hero .pk-vh-phone-media {
  padding: 0 14px;
}

#pk-venue-hero .pk-vh-phone-media-box {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.45)),
    linear-gradient(145deg, #1f1140 0%, #0f1d35 52%, #090c12 100%);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#pk-venue-hero .pk-vh-phone-crowd {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.35) 100%);
}

#pk-venue-hero .pk-vh-phone-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.82);
}

#pk-venue-hero .pk-vh-phone-toggle {
  margin: 14px 14px 12px;
  padding: 3px;
  background: #f1f5f9;
  border-radius: 999px;
  display: flex;
}

#pk-venue-hero .pk-vh-phone-tab {
  flex: 1;
  height: 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

#pk-venue-hero .pk-vh-phone-tab.active {
  background: #00a38d;
  color: #ffffff;
}

#pk-venue-hero .pk-vh-phone-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 14px 16px;
}

#pk-venue-hero .pk-vh-phone-btn-primary,
#pk-venue-hero .pk-vh-phone-btn-secondary {
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

#pk-venue-hero .pk-vh-phone-btn-primary {
  background: #00a38d;
  color: #ffffff;
}

#pk-venue-hero .pk-vh-phone-btn-secondary {
  background: #ffffff;
  color: #00a38d;
  border: 2px solid #00a38d;
}

#pk-venue-hero .pk-vh-device-card {
  position: absolute;
  top: 150px;
  right: 6px;
  width: 122px;
  transform: rotate(6deg);
  z-index: 5;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55));
  animation: pkFloatDevice 4.6s ease-in-out infinite 0.5s;
}

#pk-venue-hero .pk-vh-device-card-inner {
  background: linear-gradient(155deg, #262630 0%, #1b1b24 100%);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
}

#pk-venue-hero .pk-vh-device-card-screen {
  height: 92px;
  border-radius: 12px;
  background: #09090c;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#pk-venue-hero .pk-vh-device-lens {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pk-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk-accent);
  position: relative;
}

#pk-venue-hero .pk-vh-device-lens::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(235,180,50,0.24);
  animation: pkPulseRing 2.2s ease-out infinite;
}

#pk-venue-hero .pk-vh-device-label {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--pk-accent);
  text-transform: uppercase;
}

#pk-venue-hero .pk-vh-contact-badge {
  position: absolute;
  top: 44px;
  left: 12px;
  min-width: 176px;
  z-index: 5;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.55));
  animation: pkFloatBadge 5.6s ease-in-out infinite 1.3s;
}

#pk-venue-hero .pk-vh-contact-inner {
  background: rgba(11,11,15,0.94);
  border: 1px solid var(--pk-border-2);
  border-radius: 14px;
  padding: 13px 15px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#pk-venue-hero .pk-vh-contact-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--pk-text-muted);
}

#pk-venue-hero .pk-vh-contact-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pk-green);
  box-shadow: 0 0 10px rgba(74,222,128,0.7);
}

#pk-venue-hero .pk-vh-contact-number {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--pk-text);
}

#pk-venue-hero .pk-vh-contact-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--pk-text-muted);
}

#pk-venue-hero .pk-vh-sms {
  position: absolute;
  left: -6px;
  bottom: 100px;
  width: 248px;
  z-index: 6;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.60));
  animation: pkFloatSms 6s ease-in-out infinite 1.1s;
}

#pk-venue-hero .pk-vh-sms-inner {
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid var(--pk-border-2);
  background: rgba(14,14,20,0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: rotate(-2.3deg);
}

#pk-venue-hero .pk-vh-sms-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

#pk-venue-hero .pk-vh-sms-app {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
}

#pk-venue-hero .pk-vh-sms-name {
  flex: 1;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--pk-text-soft);
}

#pk-venue-hero .pk-vh-sms-time {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--pk-text-muted);
}

#pk-venue-hero .pk-vh-sms-body {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--pk-text-soft);
}

#pk-venue-hero .pk-vh-sms-link {
  display: block;
  margin-top: 5px;
  color: #60a5fa;
  font-size: 11px;
  line-height: 1.45;
  word-break: break-all;
}

@keyframes pkFloatPhone {
  0%,100% { transform: translate(-42%, -50%) rotate(-4deg); }
  50% { transform: translate(-42%, calc(-50% - 10px)) rotate(-4deg); }
}

@keyframes pkFloatDevice {
  0%,100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-8px); }
}

@keyframes pkFloatSms {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes pkFloatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pkPulseRing {
  0% { transform: scale(1); opacity: .75; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 1100px) {
  #pk-venue-hero .pk-vh-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: 36px;
    padding: 0 28px;
  }

  #pk-venue-hero .pk-vh-right {
    min-height: 540px;
  }

  #pk-venue-hero .pk-vh-visual {
    height: 540px;
    overflow: visible;
  }

  #pk-venue-hero .pk-vh-phone {
    width: 230px;
  }
}

@media (max-width: 860px) {
  #pk-venue-hero {
    padding: 90px 0 64px;
  }

  #pk-venue-hero .pk-vh-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #pk-venue-hero .pk-vh-left {
    order: 1;
  }

  #pk-venue-hero .pk-vh-right {
    order: 2;
    min-height: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    display: none;
  }

  #pk-venue-hero .pk-vh-sub {
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  #pk-venue-hero {
    padding: 76px 0 54px;
  }

  #pk-venue-hero .pk-vh-inner {
    padding: 0 18px;
  }

  #pk-venue-hero .pk-vh-title {
    font-size: 25px;
  }

  #pk-venue-hero .pk-vh-rotator-wrap {
    min-height: 2.35em;
  }

  #pk-venue-hero .pk-vh-sub {
    font-size: 15px;
    max-width: 600px;
  }

  #pk-venue-hero .pk-vh-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  #pk-venue-hero .pk-vh-btn-primary,
  #pk-venue-hero .pk-vh-btn-secondary {
    width: 100%;
  }

  #pk-venue-hero .pk-vh-rotator {
    font-size: 35px;
  }
}

/* ================= VENUE STATS SECTION ================= */

#pk-stats-split,
#pk-stats-split * {
  box-sizing: border-box;
}

#pk-stats-split {
  --pk-gold-primary: #EBB432;
  --pk-gold-secondary: #D99E1F;
  --pk-bg-light: #F7F7F7;
  --pk-text-dark: #171717;
  --pk-text-mid: #5F5F5F;
  --pk-text-soft: #7A7A7A;
  --pk-line: rgba(23,23,23,0.12);

  width: 100%;
  background: var(--pk-bg-light);
  padding: 88px 48px 72px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17,17,17,0.08);
}

#pk-stats-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pk-gold-primary) 0%, rgba(235,180,50,0.35) 60%, transparent 100%);
}

#pk-stats-split .pk-stats-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

#pk-stats-split .pk-stats-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 0;
  align-items: stretch;
}

#pk-stats-split .pk-hero-stat {
  padding: 8px 72px 8px 0;
  border-right: 1px solid var(--pk-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

#pk-stats-split .pk-hero-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

#pk-stats-split .pk-stats-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pk-gold-secondary);
}

#pk-stats-split .pk-stats-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--pk-gold-secondary);
  flex-shrink: 0;
}

#pk-stats-split .pk-hero-number {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(68px, 9vw, 110px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--pk-text-dark);
}

#pk-stats-split .pk-hero-suffix {
  font-family: var(--font-heading);
  font-size: 0.34em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pk-gold-primary);
  margin-top: 16px;
}

#pk-stats-split .pk-hero-label {
  max-width: 360px;
  margin-bottom: 30px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--pk-text-mid);
}

#pk-stats-split .pk-hero-rule {
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: var(--pk-gold-primary);
}

#pk-stats-split .pk-supporting-stats {
  display: flex;
  flex-direction: column;
}

#pk-stats-split .pk-sub-stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 130px;
  padding: 0 0 0 68px;
  border-bottom: 1px solid var(--pk-line);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}

#pk-stats-split .pk-sub-stat:last-child {
  border-bottom: none;
}

#pk-stats-split .pk-sub-stat.visible {
  opacity: 1;
  transform: translateX(0);
}

#pk-stats-split .pk-sub-stat:nth-child(1) { transition-delay: 120ms; }
#pk-stats-split .pk-sub-stat:nth-child(2) { transition-delay: 240ms; }
#pk-stats-split .pk-sub-stat:nth-child(3) { transition-delay: 360ms; }

#pk-stats-split .pk-sub-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 2px;
  border-radius: 2px;
  background: var(--pk-gold-primary);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .28s cubic-bezier(.16,1,.3,1);
}

#pk-stats-split .pk-sub-stat:hover::before {
  transform: scaleY(1);
}

#pk-stats-split .pk-sub-number {
  min-width: 180px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #2F2F2F;
}

#pk-stats-split .pk-sub-suffix {
  font-family: var(--font-heading);
  font-size: 0.42em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pk-gold-primary);
}

#pk-stats-split .pk-sub-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--pk-text-soft);
}

#pk-stats-split .pk-stats-footnote {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--pk-line);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease .45s, transform .5s ease .45s;
}

#pk-stats-split .pk-stats-footnote.visible {
  opacity: 1;
  transform: translateY(0);
}

#pk-stats-split .pk-footnote-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(235,180,50,0.10);
  border: 1px solid rgba(235,180,50,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#pk-stats-split .pk-footnote-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  color: #8D877E;
}

@media (max-width: 980px) {
  #pk-stats-split {
    padding: 72px 32px 60px;
  }

  #pk-stats-split .pk-stats-layout {
    grid-template-columns: 1fr;
  }

  #pk-stats-split .pk-hero-stat {
    padding: 0 0 44px 0;
    border-right: none;
    border-bottom: 1px solid var(--pk-line);
    align-items: center;
    text-align: center;
  }

  #pk-stats-split .pk-hero-number {
    font-size: clamp(60px, 12vw, 96px);
    justify-content: center;
  }

  #pk-stats-split .pk-hero-label {
    max-width: 520px;
    text-align: center;
  }

  #pk-stats-split .pk-sub-stat {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    min-height: auto;
    width: 100%;
    padding: 26px 0 26px 18px;
    border-right: none;
    border-bottom: 1px solid var(--pk-line);
  }

  #pk-stats-split .pk-sub-stat:last-child {
    border-bottom: none;
  }

  #pk-stats-split .pk-sub-stat::before {
    top: 22%;
    bottom: 22%;
    left: 0;
    width: 2px;
    height: auto;
    transform: scaleY(0);
  }

  #pk-stats-split .pk-sub-stat:hover::before {
    transform: scaleY(1);
  }

  #pk-stats-split .pk-sub-number {
    min-width: 150px;
  }

  #pk-stats-split .pk-sub-label {
    max-width: 180px;
  }
}

@media (max-width: 580px) {
  #pk-stats-split {
    padding: 56px 20px 48px;
  }

  #pk-stats-split .pk-hero-stat {
    padding-bottom: 34px;
  }

  #pk-stats-split .pk-hero-number {
    font-size: clamp(54px, 16vw, 78px);
  }

  #pk-stats-split .pk-hero-label {
    font-size: 16px;
    max-width: 100%;
  }

  #pk-stats-split .pk-sub-stat {
    gap: 20px;
    width: 100%;
    padding: 22px 0 22px 14px;
    border-right: none;
    border-bottom: 1px solid var(--pk-line);
  }

  #pk-stats-split .pk-sub-stat:last-child {
    border-bottom: none;
  }

  #pk-stats-split .pk-sub-stat::before {
    top: 22%;
    bottom: 22%;
    left: 0;
    width: 2px;
    height: auto;
    transform: scaleY(0);
  }

  #pk-stats-split .pk-sub-stat:hover::before {
    transform: scaleY(1);
  }

  #pk-stats-split .pk-sub-number {
    min-width: 120px;
    font-size: clamp(30px, 8vw, 42px);
  }

  #pk-stats-split .pk-sub-label {
    max-width: 140px;
  }

  #pk-stats-split .pk-stats-footnote {
    margin-top: 30px;
    padding-top: 18px;
  }

  #pk-stats-split .pk-footnote-text {
    font-size: 11.5px;
  }
}

/* ================= VENUE VIDEO SECTION ================= */

.pk-video-section,
.pk-video-section * {
  box-sizing: border-box;
}

.pk-video-section {
  background: #0A0A0A;
  padding: 88px 24px 80px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pk-video-top {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.pk-video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(235, 180, 50, 0.08);
  border: 1px solid rgba(235, 180, 50, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #EBB432;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pk-video-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EBB432;
  flex-shrink: 0;
}

.pk-video-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.pk-video-headline span {
  color: #EBB432;
}

.pk-video-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.pk-video-stage {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  z-index: 1;
}

.pk-video-glow-behind {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -34px;
  width: 640px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(235, 180, 50, 0.13) 0%, transparent 72%);
  pointer-events: none;
  transition: opacity 0.45s ease;
  opacity: 0.72;
}

.pk-video-stage:hover .pk-video-glow-behind {
  opacity: 1;
}

.pk-video-frame-outer {
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(235, 180, 50, 0.42) 0%,
    rgba(235, 180, 50, 0.10) 38%,
    rgba(235, 180, 50, 0.03) 100%
  );
}

.pk-video-frame {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: pointer;
  background: #0c0a04;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pk-video-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pk-video-scene {
  position: absolute;
  inset: 0;
}

.pk-video-scene-base {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.35)),
    url("../images/image-hero-video-cover-1.jpg") center center / cover no-repeat;
}

.pk-video-light-cone {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(235, 180, 50, 0.10) 0%, transparent 80%);
  clip-path: polygon(35% 0%, 65% 0%, 90% 100%, 10% 100%);
}

.pk-video-floor-reflect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(235, 180, 50, 0.05) 0%, transparent 100%);
}

.pk-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.30);
  transition: background 0.3s ease;
}

.pk-video-frame:hover .pk-video-overlay {
  background: rgba(0, 0, 0, 0.18);
}

.pk-video-play-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pk-video-play-outer {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(235, 180, 50, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pk-video-frame:hover .pk-video-play-outer {
  border-color: rgba(235, 180, 50, 1);
  transform: scale(1.05);
}

.pk-video-play-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #EBB432;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.pk-video-frame:hover .pk-video-play-inner {
  transform: scale(1.08);
}

.pk-video-play-tri {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  margin-left: 4px;
}

.pk-video-play-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.76);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.pk-video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(235, 180, 50, 0.15);
  border: 1px solid rgba(235, 180, 50, 0.3);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: var(--font-body);
  font-size: 10px;
  color: #EBB432;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pk-video-dur {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 6px;
  padding: 4px 9px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.66);
}

.pk-video-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.96) 70%),
    #000;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 24px;
}

.pk-video-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.pk-video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.pk-video-modal-inner {
  width: min(96vw, 1400px);
  height: min(88vh, 820px);
  background: #000;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  outline: 1px solid rgba(255,255,255,0.08);
}

.pk-video-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 10px 18px;
  min-width: 88px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  background: rgba(255,255,255,0.92);
  color: #111;
  border: none;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pk-video-modal-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  background: #EBB432;
  color: #111;
}

.pk-video-modal-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/* ================= APP LAUNCH MODAL ================= */

.pk-app-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.pk-app-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pk-app-modal-inner {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 36px 28px 30px;
  border-radius: 20px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.pk-app-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pk-app-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.pk-app-modal-title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #ffffff;
}

.pk-app-modal-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
  .pk-app-modal-inner {
    padding: 32px 22px 24px;
    border-radius: 16px;
  }

  .pk-app-modal-title {
    font-size: 24px;
  }

  .pk-app-modal-text {
    font-size: 15px;
  }
}

body.pk-lock,
html.pk-lock {
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .pk-video-section {
    padding: 64px 20px 56px;
  }

  .pk-video-top {
    margin-bottom: 42px;
  }

  .pk-video-glow-behind {
    width: 100%;
  }

  .pk-video-modal {
    padding: 76px 12px 12px;
  }

  .pk-video-modal-inner {
    width: 100%;
    height: min(78vh, 520px);
    border-radius: 12px;
  }

  .pk-video-modal-close {
    top: 16px;
    right: 16px;
    min-width: 78px;
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ================= VENUE BENEFITS SECTION ================= */

.pk-benefits-wrap,
.pk-benefits-wrap * ,
.pk-benefits-wrap *::before,
.pk-benefits-wrap *::after {
  box-sizing: border-box;
}

.pk-benefits-wrap {
  background: #F7F7F7;
  padding: 80px 48px;
  font-family: var(--font-body);
  color: #4A4A4A;
  isolation: isolate;
}

.pk-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pk-benefits-heading {
  margin-bottom: 56px;
}

.pk-benefits-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111111;
  max-width: 900px;
}

.pk-benefits-heading h2 span {
  color: #EBB432;
}

.pk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  align-items: stretch;
}

.pk-t1 { grid-column: 1 / 5;  grid-row: 1; }
.pk-t2 { grid-column: 5 / 9;  grid-row: 1; }
.pk-t3 { grid-column: 9 / 13; grid-row: 1; }
.pk-t4 { grid-column: 1 / 5;  grid-row: 2; }
.pk-t5 { grid-column: 5 / 9;  grid-row: 2; }
.pk-t6 { grid-column: 9 / 13; grid-row: 2; }

.pk-tile {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #EAEAEA;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 430px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform .7s cubic-bezier(.22,1,.36,1),
    opacity .6s ease,
    box-shadow .22s ease;
}

.pk-tile.reveal {
  opacity: 1;
  transform: translateY(0);
}

.pk-t1.reveal { transition-delay: .05s; }
.pk-t2.reveal { transition-delay: .12s; }
.pk-t3.reveal { transition-delay: .19s; }
.pk-t4.reveal { transition-delay: .26s; }
.pk-t5.reveal { transition-delay: .33s; }
.pk-t6.reveal { transition-delay: .40s; }

.pk-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.pk-tile-image {
  width: 100%;
  height: 210px;
  flex: 0 0 210px;
  overflow: hidden;
  position: relative;
  background: #E5E7EB;
}

.pk-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.pk-tile:hover .pk-tile-image img {
  transform: scale(1.05);
}

.pk-tile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent 45%);
  pointer-events: none;
}

.pk-tile-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 28px;
  background: #FFFFFF;
  border-top: 1px solid rgba(17,17,17,0.08);
  min-height: 0;
}

.pk-tile-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.pk-tile-label::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  display: inline-block;
}

.pk-tile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111111;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.pk-tile-body {
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.65;
  color: #4A4A4A;
  font-weight: 400;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pk-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pk-t1 { grid-column: 1 / 2; grid-row: 1; }
  .pk-t2 { grid-column: 2 / 3; grid-row: 1; }
  .pk-t3 { grid-column: 1 / 2; grid-row: 2; }
  .pk-t4 { grid-column: 2 / 3; grid-row: 2; }
  .pk-t5 { grid-column: 1 / 2; grid-row: 3; }
  .pk-t6 { grid-column: 2 / 3; grid-row: 3; }

  .pk-tile-image {
    height: 190px;
    flex: 0 0 190px;
  }
}

@media (max-width: 640px) {
  .pk-benefits-wrap {
    padding: 56px 20px;
  }

  .pk-benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pk-t1, .pk-t2, .pk-t3,
  .pk-t4, .pk-t5, .pk-t6 {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: auto;
  }

  .pk-tile-image {
    height: 180px;
    flex: 0 0 180px;
  }

  .pk-tile-content {
    padding: 20px 22px 24px;
  }

  .pk-tile-body {
    font-size: 0.92rem;
  }
}

/* ================= VENUE FAQ SECTION ================= */

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

.pk-faq {
  background: #111111;
  padding: 96px 0 112px;
  font-family: var(--font-body);
  width: 100%;
}

.pk-faq__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
}

.pk-faq__header {
  margin-bottom: 64px;
}

.pk-faq__label {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EBB432;
  margin-bottom: 14px;
  display: block;
}

.pk-faq__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #F5F5F5;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.pk-faq__title-accent {
  color: #EBB432;
}

.pk-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  align-items: start;
}

.pk-faq__col-header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(235,180,50,0.35) 0%, rgba(235,180,50,0.06) 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: bottom left;
}

.pk-faq__col-header-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #EBB432;
  opacity: 0.8;
}

.pk-faq__col-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.pk-faq__item {
  position: relative;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 60%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: bottom left;
  transition: background-color 0.3s ease;
}

.pk-faq__item:last-child {
  background-image: none;
}

.pk-faq__item--open {
  background-color: rgba(235, 180, 50, 0.032);
  background-image: linear-gradient(90deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.015) 60%, transparent 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: bottom left;
}

.pk-faq__item--open:last-child {
  background-image: none;
}

.pk-faq__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.pk-faq__trigger:hover,
.pk-faq__trigger:focus {
  background: none;
  outline: none;
}

.pk-faq__trigger:focus-visible {
  box-shadow: none;
  outline: 2px solid rgba(235, 180, 50, 0.4);
  outline-offset: -2px;
  border-radius: 2px;
}

.pk-faq__number {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: #EBB432;
  opacity: 0.4;
  padding-top: 3px;
  flex-shrink: 0;
  width: 20px;
  transition: opacity 0.25s ease;
  letter-spacing: 0.02em;
}

.pk-faq__item--open .pk-faq__number {
  opacity: 1;
}

.pk-faq__q-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  flex: 1;
  transition: color 0.22s ease;
  letter-spacing: -0.01em;
}

.pk-faq__trigger:hover .pk-faq__q-text {
  color: #EBB432;
}

.pk-faq__item--open .pk-faq__q-text,
.pk-faq__item--open .pk-faq__trigger:hover .pk-faq__q-text {
  color: #FFFFFF;
}

.pk-faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  margin-top: 3px;
}

.pk-faq__icon::before,
.pk-faq__icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 1px;
  transition: background 0.22s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.pk-faq__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pk-faq__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pk-faq__trigger:hover .pk-faq__icon::before,
.pk-faq__trigger:hover .pk-faq__icon::after {
  background: rgba(235, 180, 50, 0.7);
}

.pk-faq__item--open .pk-faq__icon::before,
.pk-faq__item--open .pk-faq__icon::after {
  background: #EBB432;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pk-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 34px;
}

.pk-faq__item--open .pk-faq__answer {
  grid-template-rows: 1fr;
}

.pk-faq__answer-inner {
  overflow: hidden;
}

.pk-faq__answer-body {
  padding-bottom: 22px;
  padding-right: 24px;
  padding-top: 0px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease 0.12s, transform 0.28s ease 0.12s;
}

.pk-faq__item--open .pk-faq__answer-body {
  opacity: 1;
  transform: translateY(0);
}

.pk-faq__answer-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .pk-faq {
    padding: 56px 0 72px;
  }

  .pk-faq__inner {
    padding: 0 20px;
  }

  .pk-faq__grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .pk-faq__title {
    font-size: clamp(22px, 6vw, 30px);
  }

  .pk-faq__q-text {
    font-size: 12px;
    white-space: normal;
    min-width: 0;
  }

  .pk-faq__trigger {
    padding: 16px 16px 16px 0;
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow: visible;
    min-width: 0;
  }

  .pk-faq__answer-text {
    font-size: 13.5px;
  }

  .pk-faq__answer-body {
    padding-right: 20px;
  }
}

/* ================= ABOUT US SECTION ================= */

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

.ba-section {
  background: #F4F4F4;
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.ba-section .ba-content-col {
  position: relative;
  z-index: 10;
  padding: 80px 56px 80px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ba-section .ba-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EBB432;
  display: block;
  margin-bottom: 2px;
}

.ba-section .ba-headline {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: #111111;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 2px;
}

.ba-section .ba-body {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #4A4A4A;
  line-height: 1.82;
  max-width: 400px;
  margin-bottom: 8px;
}

.ba-section .ba-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  background: #EBB432;
  border: none;
  border-radius: 6px;
  padding: 12px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, transform .14s ease;
  width: fit-content;
}

.ba-section .ba-btn:hover {
  background: #c99a2e;
  transform: translateY(-1px);
}

.ba-section .ba-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform .16s ease;
}

.ba-section .ba-btn:hover svg {
  transform: translateX(3px);
}

.ba-section .ba-img-col {
  position: relative;
  overflow: hidden;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.ba-section .ba-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(28%) brightness(.86) saturate(.72) contrast(1.07);
  display: block;
}

.ba-section .ba-img-col::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(244,244,244,.6) 0%,
    transparent 28%
  );
}

@media (max-width: 960px) {
  .ba-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ba-section .ba-img-col {
    display: none;
  }

  .ba-section .ba-content-col {
    padding: 64px 40px;
  }

  .ba-section .ba-body {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ba-section .ba-content-col {
    padding: 52px 24px;
  }

  .ba-section .ba-headline {
    font-size: 26px;
  }
}

/* ================= SPECS SECTION ================= */

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

.ts-section {
  background: #111111;
  padding: 96px 40px;
}

.ts-section .ts-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.ts-section .ts-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EBB432;
  display: block;
  margin-bottom: 10px;
}

.ts-section .ts-headline {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ts-section .ts-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 48px;
}

.ts-section .ts-panel {
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid #EBB432;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  overflow: hidden;
}

.ts-section .ts-panel-divider {
  background: rgba(255,255,255,.08);
}

.ts-section .ts-specs,
.ts-section .ts-features {
  padding: 32px 36px;
}

.ts-section .ts-col-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: 24px;
}

.ts-section .ts-spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ts-section .ts-spec-row:last-child {
  border-bottom: none;
}

.ts-section .ts-spec-key {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
}

.ts-section .ts-spec-val {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.ts-section .ts-feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ts-section .ts-feature-row:last-child {
  border-bottom: none;
}

.ts-section .ts-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(235,180,50,.15);
  border: 1px solid rgba(235,180,50,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ts-section .ts-check::after {
  content: "";
  width: 5px;
  height: 3px;
  border-left: 1.5px solid #EBB432;
  border-bottom: 1.5px solid #EBB432;
  transform: rotate(-45deg) translateY(-1px);
}

.ts-section .ts-feature-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.75);
}

.ts-section .ts-bottom-rule {
  height: 1px;
  margin-top: 56px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(235,180,50,.2) 30%,
    rgba(235,180,50,.2) 70%,
    transparent
  );
}

@media (max-width: 960px) {
  .ts-section {
    padding: 72px 32px;
  }

  .ts-section .ts-panel {
    grid-template-columns: 1fr;
  }

  .ts-section .ts-panel-divider {
    height: 1px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .ts-section {
    padding: 56px 24px;
  }

  .ts-section .ts-headline {
    font-size: 24px;
  }

  .ts-section .ts-specs,
  .ts-section .ts-features {
    padding: 24px 20px;
  }
}

/* ================= CONTACT SECTION ================= */

.pk-contact-section,
.pk-contact-section *,
.pk-contact-section *::before,
.pk-contact-section *::after {
  box-sizing: border-box;
}

.pk-contact-section {
  background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
  padding: 96px 40px 110px;
}

.pk-contact-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.pk-contact-top {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 860px;
}

.pk-contact-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EBB432;
}

.pk-contact-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pk-contact-sub {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.pk-contact-form {
  max-width: 1150px;
  margin: 0 auto;
}

.pk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  align-items: start;
}

.pk-field {
  display: flex;
  flex-direction: column;
}

.pk-field--full {
  grid-column: 1 / -1;
}

.pk-field label {
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.pk-field input,
.pk-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f2f2f2;
  color: #111111;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
  border-radius: 14px;
  padding: 12px 16px;
  transition: box-shadow .2s ease, background .2s ease;
}

.pk-field input {
  min-height: 44px;
}

.pk-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
}

.pk-field input:focus,
.pk-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(235,180,50,0.45);
}

.pk-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center; /* THIS centers the button */
  gap: 12px;
  margin-top: 4px;
  text-align: center;
}

.pk-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 10px;
  background: #EBB432;
  color: #111111;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.pk-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(235,180,50,0.20);
}

.pk-contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.pk-contact-status {
  min-height: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
  .pk-contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pk-field--full {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .pk-contact-section {
    padding: 72px 20px 84px;
  }

  .pk-contact-top {
    margin-bottom: 40px;
  }

  .pk-contact-title {
    font-size: 34px;
  }

  .pk-field label {
    margin-bottom: 6px;
    font-size: 12.5px;
  }

  .pk-field input,
  .pk-field textarea {
    font-size: 14px;
    padding: 11px 14px;
  }

  .pk-field input {
    min-height: 42px;
  }

  .pk-field textarea {
    min-height: 110px;
  }
}

/* ================= COOKIE NOTICE ================= */

.pk-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.pk-cookie-notice.show {
  transform: translateY(0);
}

.pk-cookie-notice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pk-cookie-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.pk-cookie-text a {
  color: #EBB432;
  text-decoration: underline;
  text-decoration-color: rgba(235, 180, 50, 0.5);
  transition: text-decoration-color 0.2s ease;
}

.pk-cookie-text a:hover {
  text-decoration-color: #EBB432;
}

.pk-cookie-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pk-cookie-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  outline: none;
}

.pk-cookie-accept {
  background: #EBB432;
  color: #111111;
  box-shadow: 0 2px 8px rgba(235, 180, 50, 0.3);
}

.pk-cookie-accept:hover {
  background: #d4a035;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(235, 180, 50, 0.4);
}

.pk-cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pk-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.pk-cookie-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
}

.pk-cookie-settings:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .pk-cookie-notice {
    padding: 16px 20px;
  }

  .pk-cookie-notice-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .pk-cookie-text {
    text-align: center;
    font-size: 13px;
  }

  .pk-cookie-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .pk-cookie-btn {
    padding: 9px 16px;
    font-size: 12px;
  }

  .pk-cookie-settings {
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .pk-cookie-notice {
    padding: 14px 16px;
  }

  .pk-cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .pk-cookie-btn {
    width: 100%;
    justify-content: center;
  }

  .pk-cookie-settings {
    width: auto;
    align-self: center;
  }
}

/* ================= FOOTER ================= */

.pk-site-footer {
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.pk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pk-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pk-footer-left {
  flex: 1;
  min-width: 180px;
}

.pk-footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.pk-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.pk-footer-link:hover {
  color: #ffffff;
}

.pk-footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.pk-footer-copyright p {
  margin: 0;
}


@media (max-width: 768px) {
  .pk-site-footer {
    padding: 20px 0;
  }

  .pk-footer-inner {
    padding: 0 20px;
  }

  .pk-footer-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .pk-footer-links {
    order: 2;
    justify-content: center;
  }

  .pk-footer-left {
    order: 1;
  }

  .pk-footer-copyright {
    order: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pk-footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .pk-footer-link {
    font-size: 8px;
  }
}