﻿:root {
  --bg: #0d0f12;
  --panel: #13171d;
  --panel-soft: #171b22;
  --text: #f4f0e8;
  --muted: #b7af9f;
  --gold: #d4af37;
  --gold-deep: #b7932c;
  --line: rgba(255, 255, 255, 0.1);
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 18px;
  --container: min(1180px, 92vw);
  --ease: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 80% -20%, rgba(212, 175, 55, 0.14), transparent 45%),
    linear-gradient(180deg, #090b0d 0%, #0d0f12 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #0a0c0f;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-inner h1 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  color: #f4e7be;
  margin-bottom: 14px;
}

.loader-inner span {
  display: block;
  width: 130px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  animation: pulseLine 1.2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #f5deb4;
  font-family: "Bodoni Moda", serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f4f0e8;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold) 100%);
  color: #1a1307;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: #f8deb3;
}

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 7, 10, 0.86) 0%, rgba(5, 7, 10, 0.74) 50%, rgba(5, 7, 10, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}

.hero-eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0.34rem 0.75rem;
  background: rgba(212, 175, 55, 0.14);
  color: #f1cc70;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
}

.hero-text {
  max-width: 56ch;
  color: #d3c9b7;
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 94px 0;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2,
.copy h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.media,
.booking-form,
.card,
.review,
.gallery-item,
.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.media img {
  min-height: 430px;
  object-fit: cover;
}

.copy p {
  color: var(--muted);
}

.copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.copy li {
  position: relative;
  padding-left: 18px;
  color: #ddd2bf;
}

.copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.services {
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.95), rgba(11, 14, 19, 1));
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card img {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.8rem;
}

.card-body p {
  color: #c7bdab;
  margin: 10px 0 14px;
}

.card-body span {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.34rem 0.66rem;
  background: rgba(212, 175, 55, 0.18);
  color: #f1d68c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review {
  padding: 22px;
}

.review p {
  margin: 0 0 14px;
  color: #e2d8c7;
}

.review span {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
}

.booking {
  background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.1), transparent 40%);
}

.booking-split {
  align-items: start;
}

.contact-bullets {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.contact-bullets p {
  margin: 0 0 8px;
}

.contact-bullets a {
  color: #f8d176;
}

.booking-form {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.booking-form label {
  font-size: 0.88rem;
  color: #d8ccb9;
  font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(5, 7, 10, 0.35);
  color: #fff;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
  min-height: 86px;
}

.form-status {
  margin: 6px 0 0;
  min-height: 22px;
  font-size: 0.88rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.map-wrap iframe {
  width: 100%;
  height: min(56vw, 460px);
  min-height: 320px;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  background: #0a0c0f;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #aaa08e;
  font-size: 0.9rem;
}

.wa-float,
.to-top {
  position: fixed;
  right: 16px;
  border-radius: 999px;
  z-index: 45;
  font-weight: 700;
  border: 0;
}

.wa-float {
  bottom: 16px;
  padding: 0.72rem 1rem;
  background: #128c7e;
  color: #ebfff7;
  box-shadow: 0 12px 22px rgba(18, 140, 126, 0.34);
}

.to-top {
  bottom: 74px;
  padding: 0.5rem 0.88rem;
  background: #f4efe5;
  color: #1a1714;
  border: 1px solid rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease);
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.card,
.gallery-item,
.review,
.media,
.map-wrap,
.booking-form {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.card:hover,
.gallery-item:hover,
.review:hover,
.media:hover,
.map-wrap:hover,
.booking-form:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .cards,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .desktop-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 12px;
    right: 12px;
    z-index: 44;
    background: rgba(13, 16, 20, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    display: grid;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.65rem 0.7rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(212, 175, 55, 0.12);
  }

  .site-nav a::after {
    display: none;
  }

  .split,
  .booking-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand span:last-child {
    font-size: 1.02rem;
  }

  .section {
    padding: 74px 0;
  }

  .cards,
  .review-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .to-top {
    bottom: 72px;
    right: 12px;
  }

  .wa-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
