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

:root {
  --navy: #081E3B;
  --white: #ffffff;
  --soft-white: #f3f3f3;
  --text-light: rgba(255, 255, 255, 0.9);
  --curve: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --gold: #D4AF37;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-playfair: 'Playfair Display', serif;
  --font-inter: 'Inter', sans-serif;
  --font-times: 'times new roman', serif;
  --bg:        #E8E8E8;
  --gold-dark: #9E7D2C;
  --text:      #2A2A2A;
  --text-muted:#5A5A5A;
  --cream:     #FAFAF5;
  --shadow:    0 8px 40px rgba(0,0,0,0.13);
  --white-dim: #FFFFFF99;
  --white-faint: #FFFFFF33;
  --bg-dark:   #1a1a1a;
  --radius-card: 12px;
  --card-w:    200px;
  --card-h:    300px;
  --gap:       20px;
  --num-size:  50px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: var(--white);
  overflow-x: hidden;
  -ms-overflow-style: none;
}

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

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
}

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

.container {
    width: min(94%, 100%);
    max-width: 100rem;
    margin: 0 auto;
    padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}

::-webkit-scrollbar {
    display: none;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 180px;
}

.hero-overlay-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero-overlay-logo img {
  width: min(685px, 70vw);
  opacity: 40%;
  filter: saturate(0.9);
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #fff;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

#typing::after{
    content:"|";
    margin-left:3px;
    animation:blink .7s infinite;
}

@keyframes blink{

    50%{
        opacity:0;
    }

}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 3%;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;

  background: linear-gradient(
    90deg,
    #A98749 8%,
    #FEE490 20%,
    #FEFCC1 29%,
    #FEE28F 41%,
    #FBDF8C 55%,
    #C49C56 64%,
    #E4C376 76%,
    #B8924C 88%,
    #6C5522 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  color: var(--text-light);
  letter-spacing: 3%;
  font-family: "montserrat", sans-serif;
}

/* ===================== SCROLL CURVE ===================== */
.scroll-curve {
  position: absolute;
  left: 50%;
  top: 85%;
  bottom: -260px;
  transform: translateX(-50%);
  width: min(1077px, 120vw);
  height: 1077px;
  background: var(--curve);
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  box-shadow:
      0 -8px 25px rgba(255,255,255,.95),
      0 -25px 60px rgba(255,255,255,.45),
      0 -60px 120px rgba(255,255,255,.18);
}

/* profil ppq */
.profil {
    padding-block: clamp(4rem, 10vw, 8.75rem);
    background:#fff;
}

.section-heading {
    text-align:center;
    margin-bottom: clamp(2.5rem, 6vw, 5.625rem);
}

.section-title {
    font-family:"Playfair Display", serif;
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight:700;
    line-height:1.15;
    color: var(--gold);
    text-transform:uppercase;
}

.section-divider {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:25px;
}

.section-divider span {
    width:70px;
    height:2px;
    background: var(--gold);
}

.diamond {
    width:12px;
    height:12px;
    background: var(--gold);
    transform:rotate(45deg);
}

.profil-about {
    display:grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 3.75rem);
    align-items:center;
    background:#d9d9d9;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border-radius:0.5rem;
}

.profil-text {
  padding: 1.25rem 0;
}

.profil-text h3 {
    font-family:"Playfair Display";
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.profil-text p{
    font-family: var(--font-poppins);
    font-size: clamp(1rem, 1.8vw, 1.375rem);
    line-height:1.8;
    color:#000;
}

.profil-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 7 / 5;
    object-fit: cover;
    border-radius:0.5rem;
    display:block;
}

.profil-quote {
    margin:45px auto;
    text-align:center;
    max-width:1440px;
}

.profil-quote h4 {
    font-size: clamp(1.25rem, 3.5vw, 2.625rem);
    color: var(--gold);
    font-weight:700;
    margin-bottom: 1.125rem;
    font-family:"inter";
}

.profil-quote p {
    font-size: clamp(1rem, 1.8vw, 1.375rem);
    color:#666;
}

.aktivitas-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:38px;
}

.aktivitas-card {
    text-align:center;
}

.aktivitas-card img{
    width:100%;
    aspect-ratio:399/266;
    object-fit:cover;
    border-radius:14px;
    display:block;
}

.aktivitas-card p {
    margin-top: 0.9375rem;
    color: var(--gold);
    font-weight:600;
    font-size: clamp(1rem, 1.8vw, 1.375rem);
}

/*SEJARAH PPQ ======*/
.sejarah {
    padding-block: clamp(4rem, 10vw, 8.75rem);
    background:#fff;
}

.sejarah-box{
    border-top:1px solid #DDDDDD;
    border-bottom:1px solid #DDDDDD;
    padding-block:1px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sejarah-box h3 {
    margin-bottom:10px;
}

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

.sejarah h3 {
    font-family:"Playfair Display",serif;
    font-size: clamp(1.375rem, 3vw, 2.25rem);
    margin: 1.25rem 0;
    color:#000000;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.sejarah p {
    font-size: clamp(0.9375rem, 1.6vw, 1.25rem);
    line-height:1.55;
    color:#000;
    opacity: 70%;
    font-family: var(--font-poppins);
}

.main-image,
.bottom-image {
    display:block;
    border-radius:0px;
    object-fit:cover;
}

.main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 0.5rem;
}

.bottom-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 0.5rem;
}

/*====== STRUKTUR =======[*/
.struktur {
    padding-block: clamp(4rem, 8vw, 6.875rem);
    background:#fff;
}

.slide-wrap {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 0px 10px 0px;
}

.deko {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      pointer-events: none;
}
    .deko-kiri  { left: 0; }
    .deko-kanan { right: 0; }

    .deko-garis {
      width: 1.5px;
      height: 120px;
      background: var(--gold);
    }
    .deko-diamond {
      width: 16px;
      height: 16px;
      background: var(--gold);
      transform: rotate(45deg);
      flex-shrink: 0;
    }

    .foto-card {
      position: relative;
      width: min(780px, 90vw);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .foto-overflow {
      overflow: hidden;
      width: 100%;
      border-radius: 6px;
    }

    .foto-inner {
      display: flex;
      transition: transform .55s cubic-bezier(.77,0,.175,1);
      will-change: transform;
    }

    .foto-slide {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      position: relative;
    }

    .foto-slide img {
      width: 100%;
      height: auto;
      aspect-ratio: 16/10;
      object-fit: cover;
      display: block;
    }

    .foto-placeholder {
      width: 100%;
      aspect-ratio: 16/10;
      background: #ccc;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #888;
    }
    .foto-placeholder svg { opacity: .4; }
    .foto-placeholder span { font-family: 'Playfair Display', serif; font-size: 14px; }

    .caption-area {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .caption {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.25rem, 4vw, 2.0625rem);
      font-weight: 700;
      color: var(--text);
      text-align: center;
    }

    .controls {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-nav {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: var(--gold);
      color: var(--cream);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .15s;
      flex-shrink: 0;
    }
    .btn-nav:hover  { background: var(--gold-dark); }
    .btn-nav:active { transform: scale(.93); }
    .btn-nav svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

    .btn-susunan {
      font-family: 'Inter', serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      padding: 10px 24px;
      border-radius: 999px;
      border: none;
      background: var(--gold);
      color: var(--cream);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .15s;
    }
    .btn-susunan:hover  { background: var(--gold-dark); }
    .btn-susunan:active { transform: scale(.97); }
    .btn-susunan svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

    /* ── DOTS INDICATOR ──────────────────────────────── */
    .dots {
      display: flex;
      gap: 8px;
      margin-top: 4px;
      align-items: center;
      justify-content: center;
    }
    .dot {
      width: 8px !important; 
      height: 8px !important;
      padding: 0 !important;
      margin: 0 !important;
      border-radius: 50%;
      background: rgba(201,168,76,.3);
      cursor: pointer;
      transition: all .3s;
      flex-shrink: 0;
      box-sizing: border-box;
    }
    .dot.aktif {
      background: var(--gold);
      transform: scale(1.45);
    }

    /* ── LOADING STATE ───────────────────────────────── */
    .loading-bar {
      display: none;
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
      animation: loadBar .8s ease infinite alternate;
    }
    @keyframes loadBar { from { opacity:.3 } to { opacity:1 } }

    /* ── ERROR / EMPTY STATE ─────────────────────────── */
    .error-msg {
      display: none;
      text-align: center;
      padding: 20px;
      font-size: 13px;
      color: var(--text-muted);
      font-family: 'Lora', serif;
    }

    /* ── TOAST NOTIF ─────────────────────────────────── */
    #toast {
      position: fixed;
      bottom: 28px; left: 50%;
      transform: translateX(-50%) translateY(60px);
      background: var(--navy);
      color: var(--cream);
      font-family: 'Lora', serif;
      font-size: 13px;
      padding: 10px 24px;
      border-radius: 999px;
      border: 1px solid var(--gold-line);
      opacity: 0;
      transition: all .35s cubic-bezier(.22,.68,0,1.2);
      pointer-events: none;
      z-index: 999;
      white-space: nowrap;
    }
    #toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

/* ── SECTION BASE ─────────────────────────────────── */
.proker {
  position: relative;
  width: 100%;
  height: clamp(36rem, 85vh, 64rem);
  min-height: 36rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

/* ── COVER INTRO ─────────────────────────────────── */
.proker .pk-cover {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 200;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

/* ── FLOATING PARTICLES ──────────────────────────── */
.pk-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.pk-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: pk-float 6s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pk-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(15px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-60px) translateX(-10px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(-20px) scale(1.1);
    opacity: 0.5;
  }
}

/* ── TOP INDICATOR BAR ───────────────────────────── */
.proker .pk-indicator {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #C9A84C, var(--gold));
  z-index: 100;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.5);
}

/* ── HEADER ──────────────────────────────────────── */
.proker .pk-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 60;
  text-align: center;
  padding: clamp(60px, 8vh, 120px) 20px 0;
  pointer-events: none;
}

.proker .pk-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 52px);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.25;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 168, 76, 0.2);
}
.proker .pk-title span { display: block; }

.proker .pk-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.proker .pk-deco-line {
  display: block;
  width: clamp(50px, 8vw, 90px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}
.proker .pk-deco-star {
  width: clamp(24px, 3vw, 30px);
  height: clamp(24px, 3vw, 30px);
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
  animation: pk-star-pulse 2s ease-in-out infinite;
}

@keyframes pk-star-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 1; }
}

/* ── CARDS ───────────────────────────────────────── */
#pk-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pk-card {
  position: absolute;
  left: 0; top: 0;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: center center;
  will-change: transform, width, height, border-radius;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
}

.pk-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

/* ── CARD CONTENT (thumbnail) ───────────────────── */
.pk-card-content {
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 12px 10px;
  color: #fff;
  pointer-events: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.pk-cc-bar {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
  margin-bottom: 4px;
}

.pk-cc-dept {
  font-size: 10px;
  line-height: 1.3;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
  opacity: 0.85;
}

.pk-cc-t1,
.pk-cc-t2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

/* ── DETAIL PANEL ───────────────────────────────── */
.pk-details {
  position: absolute;
  top: 0; left: 0;
  z-index: 22;
  width: 100%;
  max-width: clamp(280px, 38vw, 500px);
  padding: clamp(80px, 12vh, 160px) clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  min-height: 100%;
}

.pk-dept {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #fff;
  margin-bottom: 6px;
  padding-top: 3px;
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  width: 28px;
  padding-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pk-title-wrap {
  margin-bottom: 12px;
}

.pk-title-box {
  height: clamp(48px, 6vw, 70px);
  overflow: hidden;
}

.pk-t1, .pk-t2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pk-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 16px;
}

.pk-gallery {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pk-gallery img {
  width: clamp(100px, 12vw, 140px);
  height: clamp(65px, 8vw, 90px);
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pk-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pk-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: all;
  flex-wrap: wrap;
}

.pk-btn-visit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pk-btn-visit:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.pk-btn-visit svg {
  width: 14px;
  height: 14px;
}

.pk-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(225, 48, 108, 0.15);
  border: 1.5px solid #E1306C;
  color: #E1306C;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
}

.pk-btn-ig:hover {
  background: rgba(225, 48, 108, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.pk-btn-ig svg {
  width: 14px;
  height: 14px;
}

/* ── PAGINATION ─────────────────────────────────── */
.pk-pagination {
  position: absolute;
  display: inline-flex;
  align-items: center;
  z-index: 60;
  opacity: 0;
  pointer-events: all;
}

.pk-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pk-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.pk-arrow:active {
  transform: scale(0.95);
}

.pk-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pk-arrow-right {
  margin-left: 14px;
}

.pk-progress-wrap {
  margin-left: 20px;
  width: clamp(180px, 22vw, 320px);
  height: 44px;
  display: flex;
  align-items: center;
}

.pk-progress-bg {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.pk-progress-fg {
  height: 3px;
  background: linear-gradient(90deg, #C9A84C, var(--gold));
  border-radius: 99px;
  width: 0%;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.pk-slide-numbers {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
  margin-left: 16px;
}

.pk-slide-numbers .pk-num {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0; left: 0;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ── AUTO-TIMER BAR ─────────────────────────────── */
.pk-timer-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: rgba(201, 168, 76, 0.2);
  width: 100%;
  z-index: 70;
}

.pk-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, #C9A84C, var(--gold));
  width: 0%;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
}

/* ── GRID MODE (tablet & mobile) ─────────────────── */
.proker.is-grid-mode {
  height: auto;
  min-height: unset;
  overflow: visible;
  padding-block: clamp(4rem, 10vw, 6.5rem);
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
}

.proker.is-grid-mode .pk-grid-container {
  width: 100%;
}

.proker.is-grid-mode .pk-header--grid {
  position: relative;
  padding: 0 0 clamp(2rem, 5vw, 3rem);
  pointer-events: auto;
}

.proker.is-grid-mode .pk-title {
  text-shadow: none;
}

.pk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: stretch;
}

.pk-grid-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  overflow: hidden;
  min-height: clamp(380px, 50vw, 420px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  will-change: transform;
}

.pk-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 0 30px rgba(201, 168, 76, 0.1);
}

.pk-grid-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.pk-grid-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pk-grid-card:hover .pk-grid-card__media img {
  transform: scale(1.05);
}

.pk-grid-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 3vw, 1.25rem);
  gap: 0.5rem;
}

.pk-grid-card__dept {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 2vw, 12px);
  color: rgba(255, 255, 255, 0.55);
  padding-top: 0.4rem;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pk-grid-card__title {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-height: clamp(50px, 8vw, 56px);
}

.pk-grid-card__t1,
.pk-grid-card__t2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pk-grid-card__desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.pk-grid-card__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0 clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.25rem);
  margin-top: auto;
  min-height: 50px;
}

/* ── REVEAL ANIMATIONS ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="blur"] {
  filter: blur(10px);
  transform: translateY(20px);
}

[data-reveal="blur"].is-visible {
  filter: blur(0);
  transform: translateY(0);
}

.img-reveal-wrap {
  position: relative;
  overflow: hidden;
}

.img-reveal-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-reveal-wrap.is-loaded::after {
  transform: scaleX(1);
}

.img-reveal {
  opacity: 0;
  transform: scale(1.15);
  transition:
    opacity 0.5s ease 0.3s,
    transform 0.5s ease 0.3s;
}

.img-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pk-particle {
    animation: none;
  }

  .pk-deco-star {
    animation: none;
  }

  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .img-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .pk-card,
  .pk-card-content {
    transition: none;
  }
}