/* ==========================================================================
   Om Hongkong - Pixel-Perfect Redesign Matching Reference
   ========================================================================== */

:root {
  --theme-bg-pink: #fde8f9;
  --theme-bg-soft: #fef7fb;
  --theme-bg-light: #fdfdfd;
  --theme-primary: #ff4d99;
  --theme-primary-gradient: linear-gradient(90deg, #ff54a2 0%, #e04ca9 100%);
  --theme-secondary-gradient: linear-gradient(135deg, #ff84b9 0%, #ea52a0 100%);
  --theme-text-dark: #201736;
  --theme-text-muted: #79718d;
  --theme-text-subtle: #9c94ad;
  --theme-border: #f5e4ef;
  --theme-card-border: #f6eaf3;
  --theme-card-shadow: 0 16px 36px rgba(220, 150, 195, 0.12);
  --theme-card-shadow-hover: 0 22px 48px rgba(220, 130, 185, 0.20);
  --theme-pill-shadow: 0 4px 18px rgba(225, 150, 195, 0.18);
  --theme-button-shadow: 0 8px 24px rgba(245, 80, 155, 0.35);
  --theme-font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --theme-font-heading: 'Poppins', 'Plus Jakarta Sans', sans-serif;
}

/* Base canvas */
body {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font-main);
  background: linear-gradient(180deg, #fde4f6 0%, #fef8fc 24%, #ffffff 55%, #fdf5fb 100%) !important;
  color: var(--theme-text-dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Background floating ambient glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 12% 8%, rgba(255, 180, 222, 0.40) 0%, transparent 260px),
    radial-gradient(circle at 86% 16%, rgba(255, 190, 235, 0.50) 0%, transparent 380px),
    radial-gradient(circle at 50% 92%, rgba(255, 205, 238, 0.35) 0%, transparent 450px);
}

.page-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-floating-heart {
  position: absolute;
  pointer-events: none;
  opacity: 0.65;
  filter: blur(0.3px);
  animation: floatHeart 6s ease-in-out infinite alternate;
}

.bg-heart-top-left {
  top: 70px;
  left: 18px;
  width: 26px;
  height: 26px;
  background: url('bg-heart1.png') no-repeat center / contain;
}

.bg-heart-mid-left {
  top: 960px;
  left: 45px;
  width: 32px;
  height: 32px;
  background: url('bg-heart2.png') no-repeat center / contain;
  opacity: 0.75;
}

.bg-heart-mid-right {
  top: 1010px;
  right: 40px;
  width: 32px;
  height: 32px;
  background: url('bg-heart2.png') no-repeat center / contain;
  opacity: 0.75;
}

@keyframes floatHeart {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(5deg); }
}

/* Header Navbar */
.site-header {
  position: relative;
  z-index: 30;
  padding: 18px 0 12px;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}

.nav-wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand pill with white background and rounded capsule */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff !important;
  padding: 6px 18px 6px 8px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 18px rgba(225, 150, 195, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  text-decoration: none !important;
}

.brand-mark {
  width: 44px !important;
  height: 44px !important;
  display: block !important;
  background: url('header-logo-badge.png') no-repeat center / contain !important;
  font-size: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

.brand strong {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--theme-font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #1f1837 !important;
  letter-spacing: -0.2px !important;
}

.brand strong::after {
  content: '♥';
  color: #ff3e8f;
  font-size: 14px;
}

.brand small {
  display: block !important;
  font-family: var(--theme-font-main) !important;
  font-size: 8.5px !important;
  font-weight: 700 !important;
  color: #8c82a5 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
}

/* Center Navigation Links */
.main-nav {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  background: transparent !important;
  box-shadow: none !important;
  position: static !important;
  padding: 0 !important;
}

.main-nav a {
  font-family: var(--theme-font-main) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #5c5372 !important;
  text-decoration: none !important;
  padding: 4px 2px !important;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #ff3e8f !important;
}

.main-nav a.active {
  color: #ff3e8f !important;
  font-weight: 700 !important;
}

.main-nav a.active::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -3px !important;
  height: 2px !important;
  background: #ff3e8f !important;
  border-radius: 99px !important;
  width: 100% !important;
}

/* Nav Right Tools: Search & Profile in rounded capsule */
.nav-tools-capsule {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 5px 6px 5px 6px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(225, 150, 195, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.nav-icon-btn:hover {
  transform: scale(1.06);
}

.nav-search-btn {
  background: #fff2f8;
  color: #ff3e8f;
  font-size: 16px;
}

.nav-search-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ff3e8f;
  stroke-width: 2.3;
}

.nav-profile-btn {
  background: linear-gradient(135deg, #ff71b3 0%, #ff4290 100%);
  color: #ffffff;
}

.nav-profile-btn svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  width: min(1200px, calc(100% - 48px)) !important;
  margin: 15px auto 35px !important;
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  align-items: center !important;
  gap: 30px !important;
  position: relative !important;
  z-index: 10 !important;
  padding: 20px 0 !important;
  min-height: auto !important;
}

.hero-copy {
  max-width: 580px !important;
  padding: 0 !important;
}

.hero-copy .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--theme-font-main) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #ff4794 !important;
  margin: 0 0 16px !important;
}

.hero-copy .eyebrow::before {
  content: '✦✦';
  color: #ff4794;
  font-size: 12px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--theme-font-heading) !important;
  font-size: clamp(38px, 4.1vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -1.5px !important;
  color: #1a1233 !important;
  margin: 0 0 16px !important;
}

.hero h1 .highlight-pink {
  color: #ff3f92;
  font-weight: 800;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.hero h1 .hero-heart-inline {
  font-size: 0.55em;
  color: #ff4794;
  vertical-align: middle;
  transform: rotate(-10deg);
  display: inline-block;
  margin-left: 4px;
}

.hero h1 .hero-heart-end {
  font-size: 0.58em;
  color: #ff4794;
  display: inline-block;
  transform: rotate(8deg);
  margin-left: 4px;
}

.hero-text {
  font-family: var(--theme-font-main) !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  color: #7a708c !important;
  max-width: 480px !important;
  margin: 0 0 32px !important;
}

.hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin-top: 0 !important;
}

/* Hero Pill Buttons */
.btn-jelajahi {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #ff57a5 0%, #d83d9d 100%);
  color: #ffffff;
  padding: 10px 24px 10px 10px;
  border-radius: 999px;
  font-family: var(--theme-font-main);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(240, 75, 155, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.btn-jelajahi:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 75, 155, 0.45);
}

.btn-jelajahi .btn-play-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #ff3e8f;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-jelajahi .arrow-right {
  margin-left: auto;
  font-size: 15px;
}

.btn-hubungi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #ff3e8f;
  padding: 11px 24px 11px 14px;
  border-radius: 999px;
  font-family: var(--theme-font-main);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(230, 150, 195, 0.16);
  border: 1px solid #fae6f2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hubungi:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 150, 195, 0.25);
}

.btn-hubungi .bookmark-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff2f8;
  display: grid;
  place-items: center;
  color: #ff3e8f;
  font-size: 13px;
}

.btn-hubungi .arrow-right {
  font-size: 15px;
  margin-left: 2px;
}

/* Hero Art Right */
.hero-art-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main-illustration {
  width: 100%;
  max-width: 530px;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(235, 120, 190, 0.25));
  animation: heroSubtleFloat 5s ease-in-out infinite;
}

@keyframes heroSubtleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  width: min(1200px, calc(100% - 48px)) !important;
  margin: 30px auto 60px !important;
  position: relative !important;
  z-index: 10 !important;
  padding: 0 !important;
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gallery-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--theme-font-main);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff4794;
  margin: 0 0 6px;
}

.gallery-heading .eyebrow::before {
  content: '♥';
  color: #ff4794;
  font-size: 11px;
}

.gallery-heading h2 {
  font-family: var(--theme-font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #1f1837;
  margin: 0;
}

.gallery-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-video-counter {
  font-family: var(--theme-font-main);
  font-size: 13.5px;
  font-weight: 600;
  color: #8c82a5;
  margin-right: 4px;
}

.pag-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #fae6f2;
  box-shadow: 0 4px 12px rgba(225, 150, 195, 0.16);
  color: #ff3e8f;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.pag-arrow-btn:hover {
  background: #fff3f9;
  transform: scale(1.08);
}

/* Toolbar: Search and Filter Pills */
.gallery-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.search-pill {
  flex: 1;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid #f6e4f0;
  border-radius: 999px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(225, 160, 200, 0.08);
}

.search-pill svg {
  width: 17px;
  height: 17px;
  stroke: #ff3e8f;
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
}

.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-family: var(--theme-font-main);
  font-size: 13px;
  color: #2b1f3d;
}

.search-pill input::placeholder {
  color: #9c94ad;
}

.filter-pill {
  background: #ffffff;
  border: 1px solid #f6e4f0;
  border-radius: 999px;
  padding: 7px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(225, 160, 200, 0.08);
  position: relative;
}

.filter-pill-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #ff3e8f;
  font-size: 13px;
}

.filter-pill select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--theme-font-main);
  font-size: 13px;
  font-weight: 600;
  color: #43395b;
  cursor: pointer;
  padding-right: 18px;
  appearance: none;
  -webkit-appearance: none;
}

.filter-pill::after {
  content: '▾';
  position: absolute;
  right: 14px;
  color: #7b6f93;
  font-size: 13px;
  pointer-events: none;
}

/* ==========================================================================
   Video Grid & Cards
   ========================================================================== */
.video-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
}

.video-card {
  background: #ffffff !important;
  border: 1px solid var(--theme-card-border) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: var(--theme-card-shadow) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.video-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--theme-card-shadow-hover) !important;
}

.video-card .thumbnail {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  background: #f8eaf4 !important;
  overflow: hidden !important;
}

.video-card .thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.video-card:hover .thumbnail img {
  transform: scale(1.03) !important;
}

/* Duration badge on top right of thumbnail */
.thumb-duration-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(35, 27, 58, 0.72);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--theme-font-main);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px 4px 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.thumb-duration-pill .play-icon-tiny {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  color: #ff3e8f;
  display: grid;
  place-items: center;
  font-size: 9px;
  padding-left: 1px;
}

/* Card Information */
.card-info {
  padding: 16px 20px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-info h3 {
  font-family: var(--theme-font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #2b1f42 !important;
  margin: 0 !important;
  flex: 1;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.card-more-btn {
  color: #6c6082;
  font-size: 18px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0 4px;
  letter-spacing: 1px;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-family: var(--theme-font-main);
  font-size: 12px;
  font-weight: 600;
}

.card-date-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7f7495;
}

.card-date-wrap svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #7f7495;
  stroke-width: 2;
}

.card-views-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff3e8f;
  font-weight: 700;
}

.card-views-wrap svg {
  width: 16px;
  height: 16px;
  fill: #ff3e8f;
}

/* ==========================================================================
   Social Strip Section (Card with Doodle & Social Buttons)
   ========================================================================== */
.social-strip-card {
  width: min(1200px, calc(100% - 48px));
  margin: 40px auto 70px;
  background: linear-gradient(95deg, #fff0f7 0%, #f4eefd 100%);
  border: 1px solid #f6e2f0;
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 8px 28px rgba(220, 160, 200, 0.10);
  position: relative;
  z-index: 10;
}

.social-strip-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.social-doodle {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(255, 100, 170, 0.15));
}

.social-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--theme-font-main);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff4794;
  margin: 0 0 6px;
}

.social-copy .eyebrow::before {
  content: '♥';
  color: #ff4794;
  font-size: 11px;
}

.social-copy h2 {
  font-family: var(--theme-font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #1f1837;
  margin: 0 0 4px;
}

.social-copy p {
  font-family: var(--theme-font-main);
  font-size: 12.5px;
  color: #7b7090;
  margin: 0;
}

.social-buttons-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #fae6f2;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--theme-font-main);
  font-size: 12.5px;
  font-weight: 600;
  color: #382c4f;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(220, 150, 195, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(220, 150, 195, 0.22);
}

.social-pill-btn svg, .social-pill-btn img.social-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  width: 100%;
  border-top: none !important;
  background: transparent !important;
  padding: 24px 0 36px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--theme-font-main);
  font-size: 11.5px;
  color: #8c82a5;
  font-weight: 600;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-copy .footer-heart {
  color: #ff3e8f;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #6c6284;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff3e8f;
}

.footer-corner-heart {
  color: #ffb8da;
  font-size: 14px;
  margin-left: 8px;
}

/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 23, 54, 0.75);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(840px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #ff4794;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(255, 71, 148, 0.4);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #151020;
  border-radius: 12px;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }
  .hero-copy {
    max-width: 100% !important;
    margin: 0 auto;
  }
  .hero-text {
    margin: 0 auto 28px !important;
  }
  .hero-actions {
    justify-content: center !important;
  }
  .hero-main-illustration {
    max-width: 420px !important;
  }
  .social-strip-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-buttons-list {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    width: calc(100% - 32px);
  }
  .main-nav {
    display: none !important;
  }
  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .hero h1 {
    font-size: 32px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
  .btn-jelajahi, .btn-hubungi {
    width: 100% !important;
    justify-content: center !important;
  }
  .social-strip-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .gallery-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gallery-toolbar {
    flex-direction: column;
  }
  .search-pill {
    max-width: 100%;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
