@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);
}

.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;
}

.pk-guest-hero__buttons img {
  height: 64px;
  display: block;
}

.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;
  }
}