:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f6f1;
  color: #1b1b1b;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1px solid #1b1b1b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
}
.brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a,
.nav-dropdown > button {
  color: #1b1b1b;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown button::after {
  content: "▾";
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
}
.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 12px 0;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  display: flex;
}
.dropdown-panel a {
  padding: 12px 18px;
  color: #1b1b1b;
  letter-spacing: 0.06em;
}
.dropdown-panel a:hover {
  background: #f3f3f1;
}
.hero {
  margin-top: 0;
}
.hero-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.gallery-section {
  margin-bottom: 72px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 2.2vw, 3rem);
  letter-spacing: -0.04em;
}
.eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #2c7a32;
  margin-bottom: 10px;
}
.carousel {
  position: relative;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.gallery-card {
  min-width: clamp(260px, 32vw, 360px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.85);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.carousel-btn.prev {
  left: -28px;
}
.carousel-btn.next {
  right: -28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.about-copy {
  max-width: 760px;
  background: #fff;
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
  line-height: 1.85;
  color: #333;
}
.about-copy p {
  margin: 0;
  font-size: 1rem;
}
.gallery-card.small {
  min-height: 320px;
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 40px 24px 24px;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a,
.social-links a {
  color: #fff;
  opacity: 0.88;
  font-size: 0.95rem;
}
.footer-nav a:hover,
.social-links a:hover {
  opacity: 1;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(360px, calc(100% - 48px));
  background: #07bf5f;
  color: #111;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  z-index: 50;
}
.cookie-content {
  padding: 22px;
}
.cookie-content h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}
.cookie-content p {
  margin: 0 0 20px;
  font-size: 0.94rem;
  line-height: 1.65;
}
#acceptCookies {
  width: 100%;
  padding: 14px 18px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* 1. Container Utama: Grid Horizontal ke Samping */
.hero {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

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

/* 2. Kotak Grid: Mengunci Bentuk Portrait (9:16) */
.video-item {
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 9 / 16;
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    scroll-snap-align: start;
}

/* 3. Pengaturan Video di dalam Kotak Portrait */
.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
@media (max-width: 940px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .site-nav {
    justify-content: center;
    gap: 18px;
  }
  .carousel-btn.prev {
    left: 8px;
  }
  .carousel-btn.next {
    right: 8px;
  }
}
@media (max-width: 620px) {
  .header-inner {
    padding: 16px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  .footer-top {
    padding-top: 0;
  }
}
