/* ============================================================
   PEEKO SELFIEBOX — Responsive CSS (Frontend Only)
   File: /assets/css/responsive.css
   Scope: Semua halaman public (index, about, services,
          contact, testimonials, find-photo)
   Admin panel TIDAK terpengaruh.
   ============================================================ */

/* ============================================================
   BASE: Fluid container & section spacing
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--sm { padding: clamp(2rem, 5vw, 4rem) 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.navbar__container {
  height: 64px;
  gap: 1rem;
}
.navbar__logo-main {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* ============================================================
   PAGE HERO (Generic — semua halaman selain homepage)
   ============================================================ */
.page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 6vw, 6rem);
  min-height: auto;
}
.page-hero__title {
  font-size: clamp(1.75rem, 5vw, 4rem);
  word-break: break-word;
}
.page-hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.7;
}
.page-hero__eyebrow {
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
}

/* ============================================================
   HERO CAROUSEL (Homepage — hero-slider.css supplement)
   ============================================================ */
/* min-height hanya berlaku di tablet ke atas.
   Di mobile (≤640px), tinggi diatur oleh hero-slider.css
   agar tidak ada ruang kosong berlebih di layar HP tall. */
@media (min-width: 641px) {
  .pko-hero {
    min-height: 100svh;
  }
}

/* ============================================================
   TYPOGRAPHY — fluid scale
   ============================================================ */
.section-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.2;
}
.section-body {
  font-size: clamp(0.875rem, 2vw, 1.05rem);
  line-height: 1.75;
}

/* ============================================================
   GRID UTILITIES — uniform responsive collapse
   ============================================================ */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.25rem, 3vw, 2rem);
}
.footer__grid {
  gap: clamp(1.5rem, 4vw, 3rem);
}
.footer__logo-main {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}

/* ============================================================
   ══ BREAKPOINT: max-width 1280px (Large tablets / small desktops)
   ============================================================ */
@media (max-width: 1280px) {
  /* Services page — product layout */
  .pkg-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  /* Why grid on about/homepage */
  .why-grid {
    gap: 3rem;
  }
}

/* ============================================================
   ══ BREAKPOINT: max-width 1024px (Tablets landscape)
   ============================================================ */
@media (max-width: 1024px) {
  /* Container */
  .container { padding: 0 1.5rem; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* About visual */
  .about-visual { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-badge-float { bottom: -10px; left: -10px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Services */
  .pkg-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pkg-video-col {
    position: relative;
    top: 0;
    max-width: 380px;
    margin: 0 auto;
  }
  .pkg-video-frame { max-height: 360px; }
  .pkg-bg-orb { display: none; }



  /* Albums find-photo */
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hero stats */
  .hero__stats { gap: 1.5rem; }

  /* Services header flex */
  .services-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ══ BREAKPOINT: max-width 900px (Tablets portrait)
   ============================================================ */
@media (max-width: 900px) {
  /* Values grid */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Team grid */
  .grid-4.team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Search box (contact) */
  .booking-form { padding: 2rem 1.5rem; }

  /* Testimonials header */
  .testi-header { margin-bottom: 2rem; }

  /* Partner strip */
  .partners-section::before,
  .partners-section::after { width: 60px; }

  /* Instagram widget */
  .ig-widget__header { padding: 1.25rem; }
  .ig-widget__header-right { width: 100%; justify-content: space-between; }
  .ig-embed-grid { grid-template-columns: repeat(2, 1fr); }

  /* IG v2 mosaic */
  .ig-v2-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .ig-v2-tile--0 { grid-column: span 2; grid-row: span 2; }
  .ig-v2-tile--5 { grid-column: span 1; }
  .ig-v2-embed-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ══ BREAKPOINT: max-width 768px (Mobile landscape / large phones)
   ============================================================ */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 1.25rem; }

  /* Section spacing */
  .section { padding: 3rem 0; }
  .section--sm { padding: 2rem 0; }

  /* Typography */
  .section-title { font-size: clamp(1.4rem, 5vw, 2.2rem); }
  .page-hero__title { font-size: clamp(1.75rem, 6vw, 2.8rem); }

  /* Navbar */
  .navbar__container { height: 60px; }
  .navbar__menu {
    position: fixed;
    top: 60px; left: 0; right: 0;
    height: calc(100dvh - 60px);
    background: rgba(250, 247, 245, 0.97);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    padding: 1.5rem 1.25rem 2.5rem;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(122,75,75,0.14);
  }
  .navbar__menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  /* Stagger list items on open */
  .navbar__menu li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }
  .navbar__menu.open li { opacity: 1; transform: translateX(0); }
  .navbar__menu.open li:nth-child(1) { transition-delay: 0.07s; }
  .navbar__menu.open li:nth-child(2) { transition-delay: 0.12s; }
  .navbar__menu.open li:nth-child(3) { transition-delay: 0.17s; }
  .navbar__menu.open li:nth-child(4) { transition-delay: 0.22s; }
  .navbar__menu.open li:nth-child(5) { transition-delay: 0.27s; }
  .navbar__menu.open li:nth-child(6) { transition-delay: 0.32s; }
  .navbar__menu.open li:nth-child(7) { transition-delay: 0.37s; }
  .navbar__toggle { display: flex; }
  /* Mobile link styling */
  .navbar__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.975rem;
    font-weight: 400;
    color: var(--text-soft); /* Ensure dark color on mobile menu */
    position: relative;
    overflow: hidden;
    transition: background var(--transition), color var(--transition);
  }
  .navbar__link::after { display: none; } /* hide desktop underline */
  .navbar__link::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px; height: 50%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 0 3px 3px 0;
    transition: transform 0.22s ease;
  }
  .navbar__link:hover,
  .navbar__link.active {
    background: rgba(232,166,166,0.1);
    color: var(--secondary);
  }
  .navbar__link:hover::before,
  .navbar__link.active::before { transform: translateY(-50%) scaleY(1); }
  /* Mobile CTA */
  .navbar__link--cta {
    margin-top: 0.875rem;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }
  .navbar__link--cta::before { display: none; }
  .navbar__link--cta:hover { background: none; transform: translateY(-1px); }
  .navbar__logo-sub { display: none; }
  /* Backdrop overlay */
  .navbar__backdrop {
    position: fixed;
    inset: 0;
    top: 60px;
    background: rgba(30, 20, 20, 0.32);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .navbar__backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Grids collapse to 1 column */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; }
  .booking-form .btn-lg { width: 100%; justify-content: center; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* About visual */
  .about-visual { gap: 1rem; }
  .about-photo { aspect-ratio: 4/3; }
  .about-photo--sm { aspect-ratio: 16/9; }
  .about-badge-float {
    position: relative;
    bottom: auto; left: auto;
    display: inline-block;
    margin-top: 1rem;
  }

  /* Hero (homepage) */
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__stats { justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
  .hero__visual { max-width: 340px; margin: 0 auto; }
  .hero__photo-badge--1 { left: -5px; }
  .hero__photo-badge--2 { right: -5px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Services PKG section */
  .pkg-section { padding: 3rem 0; }
  .pkg-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .pkg-tagline { font-size: 0.9rem; }
  .pkg-video-col { max-width: 380px; margin: 0 auto; }
  .pkg-video-frame { max-height: 320px; }

  /* Bundle cards */
  .bundle-card { padding: 1.75rem; }
  .bundle-card__products { gap: 0.375rem; }



  /* Find photo */
  .fp-search-box { padding: 1.5rem; }
  .fp-search-row { flex-wrap: wrap; gap: 0.5rem; }
  .fp-search-input-wrap { width: 100%; }
  .fp-btn-search { width: 100%; justify-content: center; }
  .fp-btn-qr { width: 100%; justify-content: center; }
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .album-modal__panel { max-height: 96vh; }
  .modal-photos-grid,
  .modal-skeleton { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-swiper { padding-bottom: 2.5rem; }

  /* Contact info */
  .contact-info-card { flex-wrap: wrap; }

  /* Instagram widget */
  .ig-widget__stats { gap: 1.25rem; }
  .ig-widget__footer {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
  .ig-widget__footer-btn { width: 100%; justify-content: center; border-radius: var(--radius-full); }
  .ig-embed-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA banner */
  .cta-banner-section .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Services header */
  .services-header { margin-bottom: 2rem; }
  .services-header .btn { width: 100%; justify-content: center; }

  /* Why Peeko on homepage */
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* IG v2 */
  .ig-v2-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ig-v2-tile--0 { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/7; }
  .ig-v2-tile--5 { grid-column: span 2; }
  .ig-v2-tile-promo { display: none; }
  .ig-v2-embed-grid { grid-template-columns: 1fr; }
  .ig-v2-header { flex-direction: column; align-items: flex-start; }
  .ig-v2-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
    border-radius: var(--radius-lg);
  }
  .ig-v2-bar__actions { width: 100%; }
  .ig-v2-bar__btn { flex: 1; justify-content: center; }

  /* QR Modal */
  .qr-modal__card { border-radius: var(--radius-lg); }

  /* Hero Carousel bottom bar */
  .pko-hero__bottom { padding: 1rem 1.25rem 1.5rem; }
}

/* ============================================================
   ══ BREAKPOINT: max-width 640px (Small phones)
   ============================================================ */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 1rem; }

  /* Typography */
  .section-title { font-size: clamp(1.25rem, 6vw, 1.75rem); }
  .page-hero__title { font-size: clamp(1.5rem, 7vw, 2.25rem); }

  /* Navbar logo sub */
  .navbar__logo { gap: 7px; }
  .navbar__logo-main { font-size: 1rem; }

  /* Grids */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }



  /* Find photo */
  .fp-search-box { padding: 1.25rem 1rem; border-radius: var(--radius-lg); }
  .fp-search-input { font-size: 0.85rem; letter-spacing: 0.03em; }
  .albums-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .album-card__info { padding: 0.875rem 0.875rem 0.75rem; }
  .album-card__name { font-size: 0.82rem; }
  .album-card__date { font-size: 0.68rem; }

  /* Modal photos */
  .album-modal__header { padding: 0.75rem 1rem 1rem; }
  .album-modal__body { padding: 1rem; }
  .modal-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .modal-skeleton { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* Services */
  .pkg-layout { gap: 2rem; }
  .pkg-eyebrow { margin-bottom: 1.5rem; }
  .pkg-item__title { font-size: 0.7rem; letter-spacing: 0.14em; }
  .pkg-addons__list { gap: 0.4rem; }
  .pkg-addon-pill { padding: 0.35rem 0.7rem; }
  .pkg-addon-name { font-size: 0.75rem; }
  .pkg-cta-btn { width: 100%; justify-content: center; }
  .pkg-video-col { max-width: 100%; width: 100%; }
  .bundle-card { padding: 1.5rem 1.25rem; }
  .bundle-cta { font-size: 0.82rem; }

  /* About team grid */
  .grid-4.team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .team-card__avatar-wrap { width: 88px; height: 88px; }
  .team-card__photo { width: 88px; height: 88px; }
  .team-card__initial { width: 88px; height: 88px; font-size: 2rem; }

  /* Contact */
  .booking-form { padding: 1.25rem 1rem; border-radius: var(--radius-lg); }
  .contact-info-card { padding: 1rem; gap: 0.75rem; }
  .contact-info-icon { width: 38px; height: 38px; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card__quote { font-size: 3rem; }

  /* Marquee */
  .marquee-item { font-size: 0.875rem; }

  /* CTA banner */
  .section--sm.cta-banner-section { padding: 2.5rem 0; }

  /* Tags (includes pills) */
  .tag { font-size: 0.72rem; padding: 0.25rem 0.625rem; }

  /* Lang switcher */
  .lang-switcher { padding: 2px 4px; }
  .lang-switcher__btn { padding: 2px 6px; font-size: 0.68rem; }
  .lang-switcher__flag { font-size: 0.75rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer__logo-main { font-size: 1rem; }
  .footer__tagline { font-size: 0.82rem; }
  .footer__links a { font-size: 0.82rem; }

  /* Partners strip */
  .partners-section::before,
  .partners-section::after { width: 40px; }
  .partner-item img { height: 28px; }

  /* Scroll hint on hero — hidden by hero-slider.css */

  /* IG Widget */
  .ig-widget__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ig-widget__header-right { flex-direction: column; align-items: flex-start; gap: 0.875rem; width: 100%; }
  .ig-widget__follow-btn,
  .ig-widget__footer-btn { width: 100%; justify-content: center; text-align: center; }
  .ig-widget__stats { width: 100%; justify-content: space-between; }
  .ig-widget__footer { flex-direction: column; }
  .ig-embed-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}

/* ============================================================
   ══ BREAKPOINT: max-width 480px (Very small phones)
   ============================================================ */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 0.875rem; }

  /* Typography */
  .section-title { font-size: clamp(1.1rem, 7vw, 1.5rem); }
  .page-hero__title { font-size: clamp(1.35rem, 8vw, 2rem); }
  .page-hero__subtitle { font-size: 0.875rem; }

  /* Grids */
  .grid-4 { grid-template-columns: 1fr; }

  /* Form */
  .search-input-wrap { flex-direction: column; }

  /* Find photo */
  .albums-grid { gap: 0.5rem; }
  .album-card__cover { aspect-ratio: 3/2; }
  .album-filter { gap: 0.3rem; }
  .album-filter__btn { padding: 0.375rem 0.75rem; font-size: 0.75rem; }

  /* Modal bottom */
  .album-modal__footer { padding: 0.75rem 1rem 1rem; }

  /* Services bundle */
  .grid-2[data-stagger] { grid-template-columns: 1fr; }

  /* PKG section */
  .pkg-section { padding: 2.5rem 0; }
  .pkg-layout { grid-template-columns: 1fr; gap: 1.5rem; }

  /* FAQ */
  details summary { font-size: 0.88rem; }

  /* Testimonial */
  .testimonial-card { padding: 1.25rem; }

  /* About */
  .about-photo { aspect-ratio: 16/10; }
  .about-visual { gap: 0.75rem; }

  /* Team */
  .grid-4.team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card__name { font-size: 1rem; }
  .team-card__role { font-size: 0.72rem; }

  /* Hero PKO */
  .pko-hero__bottom { justify-content: center; }
  .pko-controls { gap: 0.5rem; }
  .pko-dot { width: 28px; }
  .pko-dot svg { width: 28px; }

  /* Lang switcher — compact */
  .lang-switcher__code { display: none; }
  .lang-switcher__btn { padding: 3px 5px; }
  .lang-switcher__flag { font-size: 1rem; }
}

/* ============================================================
   ══ BREAKPOINT: max-width 380px (Ultra small)
   ============================================================ */
@media (max-width: 380px) {
  .container { padding: 0 0.75rem; }

  .navbar__logo-main { font-size: 0.9rem; }

  .pko-slide__title { font-size: 1.7rem; }

  .album-modal__header-code { font-size: 1.1rem; }

  .fp-search-box { padding: 1rem 0.875rem; }

  .pkg-item__title { font-size: 0.65rem; letter-spacing: 0.1em; }

  .section-title { font-size: clamp(1rem, 8vw, 1.35rem); }

  .footer__grid { gap: 1.25rem; }
  .footer__socials { gap: 0.5rem; }
  .footer__social { width: 32px; height: 32px; }
  .footer__social svg { width: 14px; height: 14px; }
}

/* ============================================================
   SAFE TOUCH TARGETS — accessibility
   ============================================================ */
@media (max-width: 768px) {
  .album-filter__btn,
  .pkg-item__toggle,
  .fp-btn-search,
  .fp-btn-qr,
  .lightbox__close,
  .lightbox__action-btn,
  .album-modal__close,
  .pko-arrow {
    min-height: 44px;
  }

  .album-filter__btn {
    display: inline-flex;
    align-items: center;
  }
}

/* ============================================================
   HORIZONTAL OVERFLOW PREVENTION — global
   ============================================================ */
html, body {
  overflow-x: hidden;
}

/* Prevent any element from breaking layout */
img, video, iframe {
  max-width: 100%;
}

/* ============================================================
   FIND PHOTO — QR Modal responsive
   ============================================================ */
@media (max-width: 768px) {
  .qr-modal {
    align-items: flex-end;
  }
  .qr-modal__card {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-width: 100%;
    width: 100%;
  }
  .qr-modal__body { padding: 1.25rem; }
  .qr-modal__footer { flex-direction: column; gap: 0.625rem; }
  .qr-modal__footer .btn,
  .qr-modal__footer .fp-btn-qr {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   LIGHTBOX — responsive
   ============================================================ */
@media (max-width: 768px) {
  .lightbox__img {
    max-width: 95vw;
    max-height: 75vh;
  }
  .lightbox__actions {
    top: 1rem;
    right: 1rem;
  }
  .lightbox__action-btn,
  .lightbox__close {
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   TESTIMONIALS PAGE — stats strip responsive
   ============================================================ */
@media (max-width: 640px) {
  /* Stats in testi page */
  .section--sm[style*="accent-light"] > .container > div {
    gap: 2rem;
  }
}

/* ============================================================
   ABOUT PAGE — story section responsive
   ============================================================ */
@media (max-width: 768px) {
  .about-story-photo-main {
    aspect-ratio: 4/3;
    min-height: 240px;
  }
  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about-badge-float {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 0.875rem 1.25rem;
  }
}

/* ============================================================
   SERVICES PAGE — FAQ responsive
   ============================================================ */
@media (max-width: 640px) {
  .pkg-accordion .pkg-item__head {
    padding: 1rem 0;
  }
  .pkg-item__desc {
    font-size: 0.85rem;
  }
  details > summary {
    padding-right: 1.5rem;
  }
}

/* ============================================================
   CONTACT PAGE — responsive form
   ============================================================ */
@media (max-width: 768px) {
  /* Contact info wrap */
  .contact-info { gap: 0.875rem; }

  /* Booking process steps */
  .card-glass { padding: 1.25rem; }

  /* WhatsApp CTA button */
  .btn[style*="25D366"],
  .btn[style*="128C7E"] {
    width: 100%;
    justify-content: center;
  }
}



/* ============================================================
   SERVICES PAGE — bundle section responsive
   ============================================================ */
@media (max-width: 768px) {
  /* Bundle grid stagger */
  [data-stagger].grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE — Instagram widget responsive extras
   ============================================================ */
@media (max-width: 600px) {
  .ig-widget__stats { gap: 1rem; }
  .ig-widget__stat-val { font-size: 1rem; }
  .ig-widget__follow-btn { padding: 0.5rem 1rem; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .ig-embed-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRINT — global
   ============================================================ */
@media print {
  .navbar,
  .loader,
  .footer,
  .marquee-strip,
  .pko-progress-bar,
  .pko-cursor-glow,
  .pko-scroll-hint,
  .page-hero__carousel-nav,
  .qr-modal,
  .album-modal,
  .lightbox {
    display: none !important;
  }
  body { padding-top: 0; }
  .container { max-width: 100%; padding: 0 1rem; }
}
/* ── responsive.css EOF ── */