:root {
  --gold: #c9a84c;
  --gold-light: #ead89a;
  --gold-soft: #d4bc72;
  --gold-dark: #8f7328;
  --black: #070707;
  --black-2: #0e0e0e;
  --black-3: #141414;
  --black-4: #1c1c1c;
  --cream: #f6eedc;
  --muted: #b7b3a8;
  --line: rgba(201, 168, 76, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--black);
  color: #eceae4;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
}

.gold-text {
  background: linear-gradient(120deg, #f7ebc2, #c9a84c 42%, #e6d08a 68%, #a07d28);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-line {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.25rem;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--cream);
  font-weight: 600;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
}

.section-pad {
  padding: 96px 0;
}

/* ---------- Navbar ---------- */
.site-nav {
  background: transparent;
  padding: 1rem 0;
  transition: 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 0.55rem 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  margin-right: 12px;
}

.brand-text {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.brand-text small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 400;
}

.navbar-dark .navbar-nav .nav-link {
  color: #d8d4c8;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0.35rem;
  padding: 0.5rem 0.2rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--gold-light);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border-color: var(--line);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: linear-gradient(135deg, #f1e0a5, #c9a84c 45%, #a07d28);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 1.7rem;
  border-radius: 2px;
  font-size: 0.78rem;
}

.btn-gold:hover,
.btn-gold:focus {
  color: #000;
  background: linear-gradient(135deg, #fff1c4, #d8b85a 45%, #b38d32);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
}

.btn-gold-outline:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(7, 7, 7, 0.95) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.18), transparent 36%);
  z-index: -1;
}

.hero .wisps {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 8% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(ellipse at 92% 18%, rgba(255, 255, 255, 0.1), transparent 24%);
}

.hero-logo {
  width: 168px;
  height: 168px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.6));
  border-radius: 50%;
  border: 1px solid var(--line);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}

.hero-tag {
  font-family: "Cinzel", serif;
  color: var(--gold-soft);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.4vw, 1rem);
  margin-bottom: 1.4rem;
}

.hero-motto {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.page-hero {
  min-height: 48vh;
  padding: 160px 0 90px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

/* ---------- Stats ---------- */
.stats-bar {
  background: linear-gradient(90deg, #111, #1a160c 50%, #111);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Cards ---------- */
.service-card,
.info-card,
.gallery-card,
.value-card {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.info-card:hover,
.gallery-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow);
}

.service-card img,
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card .body,
.info-card,
.value-card {
  padding: 1.4rem 1.4rem 1.6rem;
}

.service-card h3,
.info-card h3,
.value-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.service-card p,
.info-card p,
.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ---------- About split ---------- */
.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7, 7, 7, 0.88);
  border: 1px solid var(--line);
  padding: 1.1rem 1.3rem;
  max-width: 240px;
}

.about-badge strong {
  display: block;
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

/* ---------- Gallery ---------- */
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  margin: 0 0.25rem 0.5rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.gallery-card {
  cursor: pointer;
  position: relative;
}

.gallery-card .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: var(--cream);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.gallery-card img {
  height: 260px;
}

#galleryModal .modal-content {
  background: #0d0d0d;
  border: 1px solid var(--line);
}

#galleryModal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

/* ---------- Contact ---------- */
.contact-form,
.contact-panel {
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
}

.form-control,
.form-select {
  background: #0b0b0b;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: #eee;
  border-radius: 4px;
  padding: 0.8rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: #0b0b0b;
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.15);
}

.form-control::placeholder {
  color: #7d7a72;
}

.form-select option {
  background: #111;
  color: #eee;
}

.about-media.logo-showcase img {
  width: min(420px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  background: #000;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.flash-banner {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1080;
  width: min(640px, calc(100% - 24px));
}

.form-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #eee;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-link:hover {
  color: var(--gold-light);
}

.contact-link i {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.form-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}

.form-feedback.success {
  display: block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--line);
  color: var(--gold-light);
}

.form-feedback.error {
  display: block;
  background: rgba(180, 50, 50, 0.15);
  border: 1px solid rgba(180, 50, 50, 0.4);
  color: #f3c2c2;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}

.footer-brand {
  font-family: "Cinzel", serif;
  color: var(--gold-light);
  letter-spacing: 0.18em;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-title {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.82rem;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 1050;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.06);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(20, 16, 6, 0.82)),
    center / cover no-repeat url("../images/hotel.jpg");
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.2rem 0;
}

.divider-ornament span {
  width: 56px;
  height: 1px;
  background: var(--line);
}

.divider-ornament i {
  color: var(--gold);
  font-size: 0.7rem;
}

.list-gold li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.list-gold li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.35rem;
}

@media (max-width: 991px) {
  .site-nav {
    background: rgba(7, 7, 7, 0.96);
  }

  .navbar-collapse {
    background: #0d0d0d;
    border: 1px solid var(--line);
    margin-top: 0.8rem;
    padding: 0.8rem 1rem 1rem;
    border-radius: 8px;
  }

  .about-media img {
    height: 360px;
    margin-bottom: 1.5rem;
  }

  .about-media.logo-showcase img {
    height: auto;
  }

  .section-pad {
    padding: 72px 0;
  }
}
