@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&family=Space+Mono:ital@0;1&display=swap');

:root {
  --black:    #080c0a;
  --deep:     #0c1a12;
  --dark:     #0f2318;
  --mid:      #163320;
  --emerald:  #1f5c38;
  --green:    #2a7a4a;
  --gold:     #c9a84c;
  --gold-lt:  #e8c97e;
  --gold-dim: #8a6e2a;
  --cream:    #f5ede0;
  --white:    #faf7f2;
  --grey:     #8a9e90;
  --overlay:  rgba(8,12,10,0.72);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform .35s ease, width .25s, height .25s;
  transform: translate(-50%, -50%);
  opacity: .6;
}
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 54px; height: 54px; opacity: 1; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── PRELOADER ─── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9990;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
  animation: preloaderAutoHide .8s ease 4.2s forwards;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--gold);
  animation: pulse 1.5s infinite;
}
.pre-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-top: 1.5rem;
  animation: expand 1.8s ease forwards .3s;
}
@keyframes expand { to { width: 200px; } }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes preloaderAutoHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, padding .4s;
}
nav.scrolled {
  background: rgba(8,12,10,.94);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
  display: flex; align-items: center; gap: .6rem;
}
.nav-logo span { color: var(--white); font-weight: 300; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .55rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 1.5px; background: var(--gold); transition: .3s; }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 4rem 7rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518547419791-a182932f5f91?w=1800&q=80');
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,12,10,.85) 0%, rgba(15,35,24,.5) 50%, transparent 100%);
}
.hero-overlay2 {
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s ease forwards .5s;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: .95;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .9s ease forwards .7s;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .9s ease forwards .9s;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s ease forwards 1.1s;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: .9rem 2.2rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold);
  padding: .9rem 2.2rem;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .3s, background .3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.08); }

.hero-scroll {
  position: absolute; right: 4rem; bottom: 5rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .2em;
  color: var(--grey);
  writing-mode: vertical-rl;
  opacity: 0; animation: fadeIn 1s ease forwards 1.5s;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%{height:0;opacity:1} 100%{height:60px;opacity:0} }

.hero-stats {
  position: absolute; right: 4rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; animation: fadeIn 1s ease forwards 1.3s;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: .2rem;
}

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── SECTIONS ─── */
section { padding: 7rem 4rem; }

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.9;
}

/* ─── VISION SECTION ─── */
.vision {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: 'NUSANTARA';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,.06);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.vision-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.vision-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.vision-image:hover img { transform: scale(1.04); }
.vision-image::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(201,168,76,.2);
  z-index: 1; pointer-events: none;
  transform: translate(12px, 12px);
}
.vision-img-label {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: .8rem 1.4rem;
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
}

.vision-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.pillar {
  border: 1px solid rgba(201,168,76,.15);
  padding: 1.4rem;
  transition: border-color .3s, background .3s;
}
.pillar:hover { border-color: var(--gold); background: rgba(201,168,76,.04); }
.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: .7rem;
}
.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .4rem;
}
.pillar p { font-size: .8rem; color: var(--grey); line-height: 1.7; }

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  padding: 0;
  background: var(--black);
  overflow: hidden;
}
.strip-track {
  display: flex;
  animation: slideLeft 28s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  flex: 0 0 400px;
  height: 280px;
  overflow: hidden;
  position: relative;
  margin-right: 4px;
}
.strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.7) saturate(.85);
}
.strip-item:hover img { transform: scale(1.06); filter: brightness(.9) saturate(1.1); }
.strip-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 1.2rem 1rem .8rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0; transition: opacity .3s;
}
.strip-item:hover .strip-item-label { opacity: 1; }
@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── MILESTONE SECTION ─── */
.milestone { background: var(--black); }
.milestone-inner { max-width: 1280px; margin: 0 auto; }
.milestone-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  margin-bottom: 5rem;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}
.tl-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s ease, transform .6s ease;
}
.tl-item.visible { opacity: 1; transform: none; }
.tl-item::before {
  content: '';
  position: absolute; left: -4.5px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,.6);
}
.tl-year {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: .4rem;
}
.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.tl-desc { font-size: .83rem; color: var(--grey); line-height: 1.7; }

/* ─── FEATURES GRID ─── */
.features { background: var(--deep); }
.features-inner { max-width: 1280px; margin: 0 auto; }
.feat-header { margin-bottom: 4rem; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,.1);
}
.feat-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feat-card:hover { background: rgba(201,168,76,.04); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.feat-icon { font-size: 2rem; margin-bottom: 1rem; }
.feat-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .7rem;
}
.feat-card p { font-size: .85rem; color: var(--grey); line-height: 1.8; }

/* ─── PARALLAX BANNER ─── */
.parallax-banner {
  height: 60vh; min-height: 400px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -20%;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(8,12,10,.65);
}
.parallax-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 0 2rem;
}
.parallax-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.parallax-content p {
  font-size: 1rem; color: var(--grey);
  max-width: 540px; margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ─── NEWS GRID ─── */
.news { background: var(--black); }
.news-inner { max-width: 1280px; margin: 0 auto; }
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5px;
  background: rgba(201,168,76,.08);
  margin-top: 3.5rem;
}
.news-card {
  background: var(--black);
  overflow: hidden;
  position: relative;
  transition: background .3s;
}
.news-card:hover { background: var(--deep); }
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.75) saturate(.8);
}
.news-card:hover .news-card-img img { transform: scale(1.05); filter: brightness(.9) saturate(1); }
.news-card-body { padding: 1.8rem; }
.news-cat {
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}
.news-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.news-card p { font-size: .82rem; color: var(--grey); line-height: 1.7; }
.news-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,168,76,.1);
}
.news-date { font-size: .72rem; color: var(--grey); }
.news-link {
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .3s;
  display: flex; align-items: center; gap: .4rem;
}
.news-link:hover { gap: .8rem; }
.news-card-featured { grid-row: span 2; }
.news-card-featured .news-card-img { aspect-ratio: auto; height: 320px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--gold);
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
}
.cta-strip p { font-size: .9rem; color: rgba(8,12,10,.7); margin-top: .4rem; }
.btn-dark {
  background: var(--black);
  color: var(--gold);
  padding: 1rem 2.4rem;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s;
}
.btn-dark:hover { background: var(--deep); }

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 5rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1280px; margin: 0 auto 3rem;
}
.footer-brand p {
  font-size: .85rem; color: var(--grey); line-height: 1.8; margin-top: 1rem;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a {
  font-size: .84rem; color: var(--grey);
  text-decoration: none;
  transition: color .3s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.08);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: var(--grey); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--grey);
  text-decoration: none;
  transition: border-color .3s, color .3s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── PAGE HEADER ─── */
.page-header {
  height: 55vh; min-height: 420px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 4rem 5rem;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,12,10,.9) 40%, rgba(8,12,10,.3) 100%);
}
.page-header-overlay2 {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, var(--black), transparent);
}
.page-header-content { position: relative; z-index: 1; }
.page-header-content .section-tag { margin-bottom: 1rem; }
.page-header-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: .95;
}
.page-header-content h1 em { color: var(--gold); font-style: italic; }

/* ─── ABOUT PAGE ─── */
.about-intro { background: var(--black); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1280px; margin: 0 auto;
  align-items: center;
}
.about-text p {
  font-size: .95rem;
  color: var(--grey); line-height: 2;
  margin-bottom: 1.4rem;
}
.about-text p strong { color: var(--cream); font-weight: 500; }
.fact-boxes {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .8rem; margin-top: 2.5rem;
}
.fact-box {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,.12);
  padding: 1.4rem;
}
.fact-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold);
}
.fact-box p { font-size: .78rem; color: var(--grey); margin-top: .3rem; }
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.85);
}
.about-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2rem; right: -2rem;
  border: 4px solid var(--black);
  filter: brightness(.9);
}

/* ─── GALLERY PAGE ─── */
.gallery-section { background: var(--black); }
.gallery-filter {
  display: flex; gap: .8rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,.2);
  color: var(--grey);
  padding: .5rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.gallery-masonry {
  columns: 3;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease;
  filter: brightness(.75) saturate(.8);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.95) saturate(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(8,12,10,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  font-size: 1.5rem;
  color: var(--gold);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8,12,10,.96);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: 1px solid var(--gold);
  color: var(--gold); width: 44px; height: 44px;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--white); margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gold);
}
.contact-detail h5 {
  font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .3rem;
}
.contact-detail p { font-size: .88rem; color: var(--grey); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,.15);
  color: var(--cream);
  padding: .9rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ─── BERITA PAGE ─── */
.berita-section { background: var(--black); }
.berita-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1280px; margin: 0 auto;
}
.berita-card {
  background: var(--deep);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.08);
  transition: border-color .3s, transform .3s;
}
.berita-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}
.berita-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.berita-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
  filter: brightness(.8);
}
.berita-card:hover .berita-img img { transform: scale(1.05); filter: brightness(.95); }
.berita-body { padding: 1.8rem; }
.berita-meta {
  display: flex; gap: 1rem; align-items: center;
  margin-bottom: .8rem;
}
.berita-cat {
  font-family: 'Space Mono', monospace;
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase;
  background: rgba(201,168,76,.1);
  color: var(--gold);
  padding: .3rem .7rem;
}
.berita-date { font-size: .74rem; color: var(--grey); }
.berita-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--white); margin-bottom: .7rem;
  line-height: 1.3;
}
.berita-body p { font-size: .82rem; color: var(--grey); line-height: 1.7; }
.berita-readmore {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.2rem;
  font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .3s;
}
.berita-readmore:hover { gap: .9rem; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.3rem 2rem; }
  nav.scrolled { padding: .9rem 2rem; }
  section { padding: 5rem 2rem; }
  .hero { padding: 0 2rem 5rem; }
  .hero-stats { display: none; }
  .vision-grid, .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery-masonry { columns: 2; }
  .berita-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .milestone-header { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .feat-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: auto; }
  .gallery-masonry { columns: 1; }
  .berita-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .about-img-accent { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 0 2rem 3rem; }
}
