:root {
  --forest: #1a3c2e;
  --forest-mid: #2d5a42;
  --forest-light: #4a8a63;
  --gold: #c9a44a;
  --gold-light: #e6c87a;
  --cream: #f5f0e8;
  --cream-dark: #ede6d3;
  --dark: #0f1f17;
  --text-body: #2c3e35;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--cream); overflow-x: hidden; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 4vw; display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: all 0.4s;
}
nav.scrolled { background: rgba(15,31,23,0.93); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,0.2); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-emblem {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07c30);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--dark); font-weight: 900; letter-spacing: -1px;
  border: 2px solid rgba(255,255,255,0.2);
}
.nav-logo-text span { display: block; color: #fff; }
.nav-logo-text .l1 { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); line-height: 1; font-weight: 600; }
.nav-logo-text .l2 { font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.3; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:var(--gold-light); transform:scaleX(0); transition:transform .25s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: var(--dark);
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  letter-spacing: 0.5px; transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO CAROUSEL ===== */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.slides-container { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease-in-out; }
.slide.active .slide-bg { transform: scale(1.12); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,15,8,0.35) 0%, rgba(5,15,8,0.2) 40%, rgba(5,15,8,0.88) 100%); }
.hero-content { position: absolute; inset: 0; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(201,164,74,0.6); color: var(--gold-light); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; padding: 7px 20px; border-radius: 100px; margin-bottom: 24px; backdrop-filter: blur(4px); background: rgba(0,0,0,0.2); }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(48px, 7.5vw, 108px); color: #fff; font-weight: 900; line-height: 0.95; text-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.2vw, 22px); color: rgba(255,255,255,0.78); max-width: 580px; margin: 18px auto 0; font-style: italic; font-weight: 300; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
.btn-gold { background: var(--gold); color: var(--dark); padding: 15px 34px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; box-shadow: 0 6px 24px rgba(201,164,74,0.4); transition: all 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-glass { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; padding: 15px 34px; border-radius: 100px; font-size: 14px; font-weight: 400; text-decoration: none; letter-spacing: 0.5px; backdrop-filter: blur(4px); background: rgba(255,255,255,0.07); transition: all 0.2s; }
.btn-glass:hover { border-color: #fff; background: rgba(255,255,255,0.14); }
.hero-stats { position: absolute; bottom: 56px; left: 0; right: 0; z-index: 10; display: flex; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.15); }
.hero-stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--gold-light); font-weight: 700; line-height: 1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 5px; }
.carousel-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 100px; cursor: pointer; background: rgba(255,255,255,0.35); transition: all 0.3s; }
.dot.active { background: var(--gold-light); width: 24px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: rgba(255,255,255,0.25); }
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }
.slide-caption { position: absolute; bottom: 80px; right: 28px; z-index: 10; text-align: right; opacity: 0; transition: opacity 0.8s 0.5s; }
.slide.active .slide-caption { opacity: 1; }
.slide-caption-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.slide-caption-text { font-family: 'Playfair Display', serif; font-size: 18px; color: rgba(255,255,255,0.85); font-style: italic; }

/* ===== MARQUEE ===== */
.marquee-bar { background: var(--gold); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marqueeAnim 28s linear infinite; }
@keyframes marqueeAnim { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mitem { display: inline-flex; align-items: center; gap: 18px; padding: 0 28px; font-size: 12px; font-weight: 700; color: var(--dark); letter-spacing: 1.5px; text-transform: uppercase; }
.mitem::after { content: '◆'; font-size: 7px; }

/* ===== SECTION BASE ===== */
section { padding: 96px 6vw; }
.label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--forest-light); font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.label::before { content:''; width:28px; height:1px; background:var(--gold); }
.h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 58px); line-height: 1.08; color: var(--forest); font-weight: 700; }
.h2 em { font-style: italic; color: var(--forest-light); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-imgs { position: relative; }
.img-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 6px 100px 6px 100px; background: url('https://images.unsplash.com/photo-1503256207526-0d5d80fa2f47?w=800&q=80') center/cover; }
.img-float { position: absolute; bottom: -36px; right: -28px; width: 58%; aspect-ratio: 4/3; border-radius: 100px 6px 100px 6px; border: 6px solid var(--cream); background: url('https://images.unsplash.com/photo-1551358561-e03b97bcf7b3?w=600&q=80') center/cover; box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.since-badge { position: absolute; top: 24px; left: -24px; background: var(--gold); color: var(--dark); border-radius: 50%; width: 88px; height: 88px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 24px rgba(201,164,74,0.4); font-family: 'Playfair Display', serif; }
.since-badge .yr { font-size: 26px; font-weight: 900; line-height: 1; }
.since-badge .lb { font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; line-height: 1.3; }
.about-text p { font-size: 16px; line-height: 1.85; color: #3c5045; margin-bottom: 18px; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.feat { display: flex; gap: 12px; align-items: flex-start; }
.feat-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--forest); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.feat h4 { font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 3px; }
.feat p { font-size: 12px; color: #6a8070; line-height: 1.5; }

/* ===== ANIMALS ===== */
.animals { background: var(--dark); }
.animals-hdr { text-align: center; margin-bottom: 56px; }
.animals-hdr .label { justify-content: center; color: var(--gold); }
.animals-hdr .label::before { background: var(--gold); }
.animals-hdr .h2 { color: #fff; }
.animals-hdr .h2 em { color: var(--gold-light); }
.animals-hdr p { color: rgba(255,255,255,0.58); font-size: 16px; max-width: 520px; margin: 16px auto 0; line-height: 1.7; }
.animals-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 280px 260px; gap: 3px; max-width: 1300px; margin: 0 auto 40px; }
.ac { grid-column: 1/5; grid-row: 1/2; }
.ac2 { grid-column: 5/9; grid-row: 1/2; }
.ac3 { grid-column: 9/13; grid-row: 1/3; }
.ac4 { grid-column: 1/5; grid-row: 2/3; }
.ac5 { grid-column: 5/9; grid-row: 2/3; }
.acard { position: relative; overflow: hidden; cursor: pointer; }
.acard-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.acard:hover .acard-bg { transform: scale(1.08); }
.acard-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,8,0.95) 0%, rgba(5,15,8,0.05) 55%); transition: opacity 0.3s; }
.acard:hover .acard-ov { opacity: 0.9; }
.acard-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; }
.acard-zone { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.acard-name { font-family: 'Playfair Display', serif; font-size: 21px; color: #fff; font-weight: 700; line-height: 1.15; }
.ac3 .acard-name { font-size: 26px; }
.acard-latin { font-size: 12px; color: rgba(255,255,255,0.5); font-style: italic; margin-top: 4px; }
.acard-tag { display: inline-block; margin-top: 10px; background: rgba(201,164,74,0.18); color: var(--gold-light); border: 1px solid rgba(201,164,74,0.35); border-radius: 100px; font-size: 10px; padding: 3px 12px; letter-spacing: 1px; opacity: 0; transform: translateY(6px); transition: all 0.3s; text-decoration: none; }
.acard:hover .acard-tag { opacity: 1; transform: none; }
.acard-protected { position: absolute; top: 14px; right: 14px; background: rgba(201,164,74,0.9); color: var(--dark); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.animals-more { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 1300px; margin: 0 auto; }
.animal-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); border-radius: 100px; padding: 8px 18px; font-size: 13px; display: flex; align-items: center; gap: 8px; transition: all 0.2s; text-decoration: none; }
.animal-pill:hover { background: rgba(201,164,74,0.15); border-color: rgba(201,164,74,0.4); color: var(--gold-light); }

/* ===== TIKET ===== */
.tiket { background: var(--cream); }
.tiket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 52px auto 0; }
.tiket-hdr { text-align: left; max-width: 1100px; margin: 0 auto; }
.tc { background: #fff; border-radius: 22px; padding: 38px 32px; border: 1.5px solid transparent; position: relative; overflow: hidden; transition: all 0.3s; }
.tc:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(30,60,40,0.11); border-color: var(--gold); }
.tc.featured { background: var(--forest); border-color: var(--forest); }
.tc.featured::after { content: '★ Terlaris'; position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.tc-type { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--forest-light); margin-bottom: 6px; font-weight: 600; }
.tc.featured .tc-type { color: var(--gold-light); }
.tc-name { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--forest); }
.tc.featured .tc-name { color: #fff; }
.tc-schedule { font-size: 12px; margin-top: 4px; color: #8aaa96; }
.tc.featured .tc-schedule { color: rgba(255,255,255,0.5); }
.tc-price { margin: 24px 0; }
.tc-price-row { display: flex; align-items: baseline; gap: 5px; margin-bottom: 8px; }
.tc-price-label { font-size: 12px; color: #8aaa96; min-width: 70px; }
.tc.featured .tc-price-label { color: rgba(255,255,255,0.5); }
.tc-price-val { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--forest); line-height: 1; }
.tc.featured .tc-price-val { color: #fff; }
.tc-price-cur { font-size: 14px; color: var(--gold); font-weight: 600; }
.tc-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 18px 0; }
.tc.featured .tc-divider { background: rgba(255,255,255,0.1); }
.tc-list { list-style: none; margin-bottom: 30px; }
.tc-list li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 13px; color: #4a6456; display: flex; gap: 8px; align-items: center; }
.tc.featured .tc-list li { color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.08); }
.tc-list li::before { content:'✓'; color: var(--gold); font-weight: 700; }
.tc-btn { display: block; text-align: center; padding: 14px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-decoration: none; transition: all 0.2s; }
.tc-btn-ol { border: 1.5px solid var(--forest); color: var(--forest); }
.tc-btn-ol:hover { background: var(--forest); color: #fff; }
.tc-btn-g { background: var(--gold); color: var(--dark); box-shadow: 0 4px 16px rgba(201,164,74,0.35); }
.tc-btn-g:hover { background: var(--gold-light); }
.tiket-wahana { max-width: 1100px; margin: 48px auto 0; }
.tiket-wahana h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--forest); margin-bottom: 20px; }
.wahana-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wahana-item { background: #fff; border-radius: 16px; padding: 20px 16px; text-align: center; border: 1px solid rgba(0,0,0,0.06); transition: all 0.2s; text-decoration: none; display: block; }
.wahana-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.wahana-icon { font-size: 28px; margin-bottom: 8px; }
.wahana-name { font-size: 13px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.wahana-price { font-size: 12px; color: var(--gold); font-weight: 700; }

/* ===== FASILITAS ===== */
.fasilitas { background: var(--forest); }
.fasilitas-hdr { text-align: center; margin-bottom: 56px; }
.fasilitas-hdr .label { justify-content: center; color: var(--gold); }
.fasilitas-hdr .label::before { background: var(--gold); }
.fasilitas-hdr .h2 { color: #fff; }
.fasilitas-hdr .h2 em { color: var(--gold-light); }
.fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.fcard { background: rgba(255,255,255,0.06); border-radius: 18px; padding: 28px 22px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.fcard:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.fcard-icon { font-size: 32px; margin-bottom: 16px; }
.fcard-title { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; font-weight: 600; margin-bottom: 8px; }
.fcard-desc { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.6; }

/* ===== GALERI ===== */
.galeri { background: var(--cream-dark); padding-bottom: 0; }
.galeri-hdr { text-align: center; margin-bottom: 48px; }
.galeri-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 260px 240px; gap: 4px; }
.g1{grid-column:1/6;grid-row:1/3;}
.g2{grid-column:6/9;grid-row:1/2;}
.g3{grid-column:9/13;grid-row:1/2;}
.g4{grid-column:6/10;grid-row:2/3;}
.g5{grid-column:10/13;grid-row:2/3;}
.gitem { overflow: hidden; position: relative; cursor: pointer; }
.gitem-bg { width:100%; height:100%; background-size:cover; background-position:center; transition: transform 0.5s ease; }
.gitem:hover .gitem-bg { transform: scale(1.06); }
.gitem-ov { position:absolute; inset:0; background:rgba(5,15,8,0); transition:background 0.3s; display:flex; align-items:center; justify-content:center; }
.gitem:hover .gitem-ov { background: rgba(5,15,8,0.38); }
.gitem-ov span { font-size:11px; color:#fff; letter-spacing:2px; text-transform:uppercase; opacity:0; transition:opacity 0.3s; }
.gitem:hover .gitem-ov span { opacity:1; }

/* ===== INFO BAR ===== */
.info-bar { background: var(--dark); padding: 64px 6vw; display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.ibox { text-align: center; padding: 0 48px; border-right: 1px solid rgba(255,255,255,0.1); }
.ibox:last-child { border-right: none; }
.ibox h4 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.ibox p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.8; }
.ibox a { color: var(--gold-light); text-decoration: none; }

/* ===== REVIEW ===== */
.review-strip { background: #fff; padding: 56px 6vw; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 40px auto 0; }
.rcard { background: var(--cream); border-radius: 18px; padding: 28px 24px; }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.rcard p { font-size: 14px; color: #3c5045; line-height: 1.7; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.reviewer-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--forest-mid); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.reviewer-name { font-size: 13px; font-weight: 600; color: var(--forest); }
.reviewer-from { font-size: 11px; color: #8aaa96; }

/* ===== FOOTER ===== */
footer { background: #070f0b; padding: 64px 6vw 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.fbrand p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.85; margin-top: 16px; max-width: 280px; }
.fcol h5 { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: 9px; }
.fcol ul li a { color: rgba(255,255,255,0.48); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.fcol ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.socials { display: flex; gap: 10px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 12px; text-decoration: none; transition: all 0.2s; }
.socials a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .about-grid{grid-template-columns:1fr;}.about-imgs{display:none;}
    .animals-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
    .ac,.ac2,.ac3,.ac4,.ac5{grid-column:auto;grid-row:auto;aspect-ratio:4/3;}
    .tiket-grid{grid-template-columns:1fr;max-width:400px;margin:52px auto 0;}
    .wahana-grid{grid-template-columns:repeat(2,1fr);}
    .fac-grid{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:1fr 1fr;}
    .review-grid{grid-template-columns:1fr;}
    .nav-links{display:none;}
    .hero-stats{gap:0;}
    .hero-stat{padding:0 20px;}
    .galeri-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
    .g1,.g2,.g3,.g4,.g5{grid-column:auto;grid-row:auto;aspect-ratio:4/3;}
    .ibox{padding:20px 24px;border-right:none;border-bottom:1px solid rgba(255,255,255,0.08);}
    .ibox:last-child{border-bottom:none;}
}
@media(max-width:600px){
    section{padding:64px 5vw;}
    .fac-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .about-feats{grid-template-columns:1fr;}
    .hero-stats{display:none;}
    .wahana-grid{grid-template-columns:repeat(2,1fr);}
}