:root {
  --bg: #0b0d12;
  --bg-soft: #12161f;
  --surface: #171c26;
  --surface-soft: #1c2230;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f6fb;
  --text-soft: #b4becd;
  --text-muted: #8a94a4;
  --accent: #e33f3f;
  --accent-strong: #ff5a5a;
  --accent-soft: rgba(227, 63, 63, 0.12);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 16px 34px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100% - 32px));
  --section-gap: 96px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227, 63, 63, 0.11), transparent 28%),
    linear-gradient(180deg, #0b0d12 0%, #0e1118 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.intro-page {
  min-height: 100svh;
  overflow: hidden;
  background: #06070a;
}

body.landing-page .site-shell {
  animation: page-rise 0.45s ease-out both;
}

img,
video {
  display: block;
  width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(227, 63, 63, 0.28);
  color: #ffffff;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-gap) 0;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 840px;
}

.card {
  background: linear-gradient(180deg, rgba(23, 28, 38, 0.96), rgba(17, 21, 30, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.hero h1,
.contact-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 2vw + 1.8rem, 4rem);
}

.section-heading p:last-child,
.hero-text,
.about-copy p,
.booking-copy p,
.contact-copy p,
.footer-brand p,
.footer-column p {
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6a57 100%);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-full {
  width: 100%;
}

.intro-screen {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  transition: opacity 0.5s ease;
}

.intro-screen.is-exiting {
  opacity: 0;
}

.intro-video,
.intro-overlay {
  position: absolute;
  inset: 0;
}

.intro-video {
  height: 100%;
  object-fit: cover;
}

.intro-overlay {
  background:
    linear-gradient(180deg, rgba(6, 7, 10, 0.48), rgba(6, 7, 10, 0.76)),
    linear-gradient(90deg, rgba(6, 7, 10, 0.4), rgba(6, 7, 10, 0.18), rgba(6, 7, 10, 0.48));
}

.intro-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 34px 28px;
  text-align: center;
  background: rgba(10, 12, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
}

.intro-logo {
  width: min(300px, 72vw);
  margin: 0 auto 16px;
}

.intro-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro-title {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.intro-description {
  max-width: 52ch;
  margin: 16px auto 0;
  color: rgba(243, 246, 251, 0.84);
}

.intro-enter {
  min-width: min(310px, 100%);
  margin-top: 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(11, 13, 18, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 180px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-button {
  display: none;
  margin-left: auto;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #ffffff;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-nav a:not(.button) {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:not(.button):hover {
  color: #ffffff;
}

.nav-cta {
  margin-left: 4px;
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.about-grid,
.booking-grid,
.faq-grid,
.contact-bar {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3.3rem, 5vw, 6rem);
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
}

.hero-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.hero-media {
  padding: 22px;
}

.hero-media-top p {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.hero-logo {
  width: min(250px, 100%);
}

.hero-media-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.hero-video-wrap,
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #10141c;
}

.hero-video-wrap {
  aspect-ratio: 3 / 4;
}

.hero-image-wrap {
  aspect-ratio: 4 / 3;
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  aspect-ratio: auto;
}

.hero-media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.78);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.testimonial-card,
.about-note,
.about-list,
.booking-note,
.booking-card,
.faq-item,
.contact-bar {
  padding: 24px;
}

.feature-card h3,
.service-card h3,
.about-note h3,
.about-list h3,
.booking-note h3,
.footer-column h3 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature-card p,
.service-card p,
.testimonial-card p,
.faq-item p,
.about-note p,
.footer-column a,
.about-list li,
.booking-note li {
  color: var(--text-soft);
}

.card-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.about-copy h2 {
  margin: 0 0 20px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.7rem, 2.7vw + 1.5rem, 4.9rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 0 16px;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.media-photo {
  overflow: hidden;
}

.media-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-list ul,
.booking-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.gallery-item {
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
}

.gallery-item-wide {
  grid-column: span 6;
}

.gallery-item-landscape img {
  aspect-ratio: 4 / 3;
}

.gallery-item-tall img {
  aspect-ratio: 3 / 4;
}

.gallery-item-square img {
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-copy {
  max-width: 760px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.visual-card {
  padding: 14px;
}

.visual-media {
  overflow: hidden;
  border-radius: 18px;
  background: #10141c;
}

.visual-media video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #0d1118;
}

.visual-body {
  padding: 16px 8px 10px;
}

.visual-body h3 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.visual-body p {
  margin: 0;
  color: var(--text-soft);
}

.booking-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.custom-select {
  position: relative;
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.76);
  border-bottom: 2px solid rgba(255, 255, 255, 0.76);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.18s ease;
}

.custom-select.is-open::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select-trigger {
  width: 100%;
  min-height: 54px;
  padding: 15px 48px 15px 16px;
  color: var(--text);
  text-align: left;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.custom-select.is-placeholder .custom-select-text {
  color: var(--text-soft);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 6px;
  padding: 10px;
  background: rgba(19, 24, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-option {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.custom-select-option:hover,
.custom-select-option.is-selected {
  background: rgba(227, 63, 63, 0.12);
  border-color: rgba(255, 122, 122, 0.18);
}

.form-group input:focus,
.custom-select-trigger:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.06);
  outline-offset: 0;
  border-color: rgba(255, 120, 120, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 120, 120, 0.16);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 22px;
  margin: 14px 2px 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #ff9a9a;
}

.form-status.is-success {
  color: #8fe0b2;
}

.testimonial-card strong {
  display: block;
  margin-top: 16px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonial-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  position: relative;
  padding-right: 28px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 14px 0 0;
}

.contact-section {
  padding-top: 28px;
}

.contact-bar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-badge {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-badge strong {
  font-size: 1rem;
}

.site-footer {
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 24px;
  padding: 0 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  padding-top: 32px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 16px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 32px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .booking-grid,
  .faq-grid,
  .contact-bar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .nav-row {
    grid-template-columns: auto auto;
  }

  .nav-toggle-button {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(13, 16, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item-wide {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1160px);
    --section-gap: 78px;
  }

  .intro-screen {
    padding: 18px;
  }

  .intro-panel {
    padding: 28px 18px;
  }

  .intro-title {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .intro-description {
    font-size: 0.98rem;
  }

  .intro-enter,
  .hero-actions .button,
  .contact-side .button {
    width: 100%;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 10vw, 4.6rem);
  }

  .hero-actions,
  .contact-side {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-4,
  .grid-3,
  .about-photo-grid,
  .form-grid,
  .gallery-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .testimonial-card,
  .about-note,
  .about-list,
  .booking-note,
  .booking-card,
  .faq-item,
  .contact-bar {
    padding: 20px;
  }

  .form-group-full {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* WRAPPER */
.user-dropdown {
  position: relative;
}

/* BUTTON */
.user-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 600;
  padding: 8px 12px;
}

/* MENU DROPDOWN */
.user-menu {
  position: absolute;
  top: 45px; /* JARAK DARI ATAS */
  right: 0;
  background: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 999; /* PENTING */
}

/* ITEM */
.user-menu a {
  display: block;
  padding: 12px;
  color: white;
  text-decoration: none;
}

.user-menu a:hover {
  background: #334155;
}

/* ACTIVE */
.user-dropdown.active .user-menu {
  display: block;
}

.logo-center {
  display: flex;
  justify-content: center; /* tengah horizontal */
  align-items: center;     /* tengah vertical */
  padding: 15px;
}