:root {
  --gold: #d4af37;
  --gold-600: #b8932b;
  --bg: #fdfdfd; /* putih soft */
  --text: #222;
  --muted: #6b7280;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.muted {
  color: var(--muted);
}
.shadow {
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10000000;
  background: rgba(253, 253, 253, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}
.brand-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--gold);
}
.brand-tag {
  font-size: 0.8rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}
.lang-select {
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 6px 10px;
  background: #fff;
  font-weight: 600;
}
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gold);
  display: block;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    right: 12px;
    top: 74px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.15s ease;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
  }
  .main-nav.show {
    max-height: 420px;
    padding: 12px;
  }
  .main-nav a {
    padding: 10px;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
  opacity: 0.9;
}
.hero-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: "Playfair Display", serif;
}
.hero-subtitle {
  margin: 0 auto 18px;
  max-width: 820px;
  font-size: 1.05rem;
  opacity: 0.95;
}
.btn {
  display: inline-block;
  border: 0;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.28);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 52px;
  border: 2px solid #fff;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scroll 1.4s infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 68px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 24px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  margin: 0;
}
.section-lead {
  max-width: 820px;
  margin: 8px auto 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid > * {
  grid-column: span 4;
}
@media (max-width: 1000px) {
  .grid > * {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .grid > * {
    grid-column: span 12;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 30px 0;
  }
}

/* Cards common */
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.card-media {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card-title {
  margin: 0 0 6px;
  font-weight: 700;
}
.card-text {
  margin: 0;
  color: var(--muted);
}

/* About */
.about-grid {
  display: grid;
  gap: 20px;
  margin-top: 10px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.about-grid > * {
  grid-column: span 4;
}
.about-card {
  overflow: hidden;
  border-radius: 16px;
}
.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.about-card-body {
  padding: 14px;
}

/* Slider */
.slider {
  position: relative;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  overflow: hidden;
}
.slides {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%;
  padding: 6px;
}
.testimonial {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimonial p {
  font-style: italic;
  margin: 0 0 8px;
}
.testimonial span {
  display: block;
  color: var(--gold);
  font-weight: 700;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}
.arrow:hover {
  background: var(--gold);
  color: #fff;
}
.arrow.prev {
  left: 14px;
}
.arrow.next {
  right: 14px;
}
.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  border: none;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
}

/* Contact Form */
.contact-form {
  padding: 18px;
  margin: 0 auto 22px;
  max-width: 720px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.field input,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  font: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.form-status {
  margin-top: 8px;
  color: var(--muted);
}

/* Map */
.map-head {
  margin: 10px 0 8px;
  z-index: 1;
}
.map {
  height: 420px;
  border-radius: 16px;
}

/* Footer */
.site-footer {
  padding: 20px;
  text-align: center;
  background: var(--gold);
  color: #fff;
  margin-top: 24px;
}
