:root {
  --bg: #050505;
  --bg-soft: #0e0e0e;
  --card: #121212;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --gold: #d4ab49;
  --gold-2: #f2d68e;
  --gold-3: #8a6827;
  --border: rgba(212, 171, 73, 0.34);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 12% -6%, rgba(212, 171, 73, 0.18), transparent 36%),
    radial-gradient(circle at 86% 6%, rgba(212, 171, 73, 0.12), transparent 29%),
    #050505;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(3.8rem, 8vw, 7rem) 0;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.alt {
  background:
    linear-gradient(180deg, rgba(212, 171, 73, 0.05), transparent 30%),
    linear-gradient(180deg, #0a0a0a, #070707);
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(11px);
  background: rgba(5, 5, 5, 0.68);
  border-bottom: 1px solid rgba(212, 171, 73, 0.22);
  transition: background 0.28s ease, border-color 0.28s ease;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: min-height 0.28s ease;
}

.brand {
  position: relative;
}

.brand img {
  width: clamp(36px, 4.2vw, 56px);
  border-radius: 12px;
  transition: width 0.28s ease, border-radius 0.28s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.7);
  color: var(--gold-2);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #201503;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 22px rgba(212, 171, 73, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 171, 73, 0.35);
  filter: brightness(1.06);
}

.btn-outline,
.btn-ghost {
  border-color: var(--border);
  color: var(--gold-2);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero.section {
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("../images/restoran.jpeg");
  filter: saturate(1.08) brightness(0.36);
  transform: scale(1.06);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 16%, rgba(212, 171, 73, 0.34), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82));
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: -6%;
  background: radial-gradient(circle, rgba(212, 171, 73, 0.26), transparent 68%);
  animation: drift 12s ease-in-out infinite;
}

.orb-2 {
  width: 260px;
  height: 260px;
  left: -8%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(212, 171, 73, 0.19), transparent 68%);
  animation: drift 15s ease-in-out infinite reverse;
}

.hero-content {
  max-width: 920px;
  text-align: center;
  padding: clamp(3.2rem, 9vh, 6rem) 0 1.4rem;
}

.hero-panel {
  border-radius: 26px;
  border: 1px solid rgba(212, 171, 73, 0.34);
  background: linear-gradient(160deg, rgba(6, 6, 6, 0.82), rgba(22, 22, 22, 0.56));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.7rem);
}

.eyebrow {
  margin: 0;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.14;
  margin: 0 0 0.88rem;
}

h1,
h2,
h3,
.brand {
  font-family: "Cinzel", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 5.8vw, 4.2rem);
  text-wrap: balance;
  letter-spacing: 0.02em;
  margin-top: 0.55rem;
}

h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}

.lead {
  color: #ece7df;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 66ch;
  margin-inline: auto;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-bar {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 0.9fr auto;
  gap: 0.55rem;
  border: 1px solid rgba(212, 171, 73, 0.35);
  border-radius: 14px;
  padding: 0.55rem;
  background: rgba(0, 0, 0, 0.22);
}

.booking-field {
  display: grid;
  gap: 0.28rem;
}

.booking-field label {
  font-size: 0.76rem;
  color: #d9cba6;
  text-align: left;
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: 1px solid rgba(212, 171, 73, 0.38);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #f5f5f5;
  padding: 0.56rem 0.62rem;
  font: inherit;
}

.booking-field input[type="date"] {
  color-scheme: dark;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(86%) sepia(36%) saturate(686%) hue-rotate(359deg) brightness(101%) contrast(91%);
  opacity: 1;
}

.booking-btn {
  align-self: end;
  white-space: nowrap;
}

.booking-status {
  margin: 0.55rem 0 0;
  min-height: 1.2em;
  font-size: 0.87rem;
  color: #dcc58b;
}

.hero-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.85rem;
}

.hero-stats article {
  border-radius: 14px;
  border: 1px solid rgba(212, 171, 73, 0.32);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.72rem 0.7rem;
  display: grid;
  gap: 0.1rem;
}

.hero-stats strong {
  color: var(--gold-2);
  font-size: 1.05rem;
}

.hero-stats span {
  color: #dfdfdf;
  font-size: 0.86rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.card,
.image-card,
.contact-card {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.025), rgba(212, 171, 73, 0.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.contact-card {
  padding: clamp(1.3rem, 3vw, 2.3rem);
}

.mini-note {
  margin-top: 1.1rem;
  color: #d8c28f;
  font-size: 0.95rem;
  border-top: 1px dashed rgba(212, 171, 73, 0.3);
  padding-top: 0.85rem;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-card:hover img {
  transform: scale(1.07);
}

.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.features li {
  color: #e5e5e5;
}

.features li::before {
  content: "◆";
  color: var(--gold);
  margin-right: 0.48rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #121212, #0b0b0b);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.room-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 214, 142, 0.62);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
}

.room-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.room-body {
  padding: 1rem 1rem 1.35rem;
}

.room-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.gallery {
  columns: 3 260px;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.gallery video {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #000;
}

.gallery img:hover {
  transform: translateY(-4px) scale(1.013);
  box-shadow: var(--shadow);
  filter: brightness(1.03);
}

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(212, 171, 73, 0.16), transparent 40%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.02), rgba(212, 171, 73, 0.07));
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.025), rgba(212, 171, 73, 0.08));
  padding: 1rem 1rem 1.1rem;
}

.testimonial-card p {
  margin: 0 0 0.8rem;
  color: #e7e3d8;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-card span {
  font-size: 0.86rem;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.02), rgba(212, 171, 73, 0.08));
  padding: 0.8rem 0.9rem;
  align-self: start;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #f3e2b1;
}

.faq-item p {
  margin: 0.6rem 0 0;
  color: #d9d9d9;
}

.contact-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 0.8rem;
}

.contact-grid a,
.contact-grid span {
  padding: 0.78rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.contact-content {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form,
.map-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.contact-form h3,
.map-card h3 {
  margin-bottom: 0.85rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.form-row label {
  font-size: 0.9rem;
  color: #dbdbdb;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(212, 171, 73, 0.4);
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 2px rgba(212, 171, 73, 0.2);
}

.form-status {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: #d8c28f;
  min-height: 1.2em;
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

.map-card a {
  margin-top: 0.7rem;
  display: inline-block;
  color: var(--gold-2);
  font-weight: 600;
}

.footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.2rem;
  background:
    radial-gradient(circle at 18% -20%, rgba(212, 171, 73, 0.12), transparent 38%),
    #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.35rem;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.footer-col h4 {
  margin: 1rem 0 0.35rem;
  font-size: 1.02rem;
  color: #f2f2f2;
}

.footer-col p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.social-icon {
  margin-top: 0.45rem;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(212, 171, 73, 0.34);
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.02);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(212, 171, 73, 0.2);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-legal-links {
  margin: 0.45rem 0 0;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.footer-legal-links a {
  color: var(--gold-2);
}

.back-top-floating {
  position: fixed;
  right: 14px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 1.15rem;
  line-height: 1;
  background: rgba(7, 7, 7, 0.7);
  pointer-events: auto;
  z-index: 300;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.back-top-floating:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 214, 142, 0.75);
  color: #fff5d7;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 150;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(92vw, 1120px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(212, 171, 73, 0.4);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(212, 171, 73, 0.4);
  background: rgba(0, 0, 0, 0.45);
  color: #f9e6b3;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 1;
}

.lightbox-close {
  top: 18px;
  right: 20px;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

@media (min-width: 941px) {
  .header.is-scrolled {
    background: rgba(5, 5, 5, 0.9);
    border-bottom-color: rgba(212, 171, 73, 0.38);
  }

  .header.is-scrolled .nav {
    min-height: 62px;
  }

  .header.is-scrolled .brand img {
    width: clamp(30px, 3.3vw, 46px);
    border-radius: 10px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 4%;
    left: 4%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8, 8, 8, 0.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > .btn-outline {
    display: none;
  }

  .hero-panel {
    padding: 1.3rem 1.1rem 1.1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .booking-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-2,
  .reverse {
    grid-template-columns: 1fr;
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.2rem 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
