:root {
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-card: #0a0a0a;
  --border-subtle: #1a1a1a;
  --gold: #d4af37;
  --gold-bright: #ffd700;
  --gold-muted: #c5a059;
  --text-heading: #e8d5a3;
  --text-body: #9a9a9a;
  --text-white: #f0f0f0;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-display: "Cinzel", serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
}

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

a:hover {
  color: var(--gold-muted);
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-link:hover {
  color: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 38%, #1a1a1a 0%, #000000 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: min(760px, 94vw);
}

.hero-logo-wrap {
  margin-bottom: 1.25rem;
}

.hero-logo {
  margin-inline: auto;
  max-height: min(56vh, 420px);
  max-width: min(92vw, 520px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(212, 175, 55, 0.15));
}

.hero-lead {
  margin: 0 auto 2rem;
  max-width: 34em;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(200, 185, 140, 0.65);
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-gold {
  color: #0a0a0a;
  background: linear-gradient(145deg, #ffeaa7 0%, var(--gold) 45%, #8a6d1f 100%);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.35);
  filter: brightness(1.05);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  color: var(--gold-muted);
  letter-spacing: 0.06em;
}

.section-subtitle {
  margin: 0 auto;
  max-width: 46rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
}

.section-head .social-row {
  margin-top: 1.35rem;
}

/* Features */
.features {
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.feature-card-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-body);
  text-align: left;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-cam {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  color: rgba(255, 215, 0, 0.85);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.gallery-cam svg {
  width: 100%;
  height: 100%;
}

/* Contact */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.75rem;
  background: #111;
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

@media (max-width: 768px) {
  .map-wrap {
    aspect-ratio: 16 / 12;
  }
}

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05) brightness(0.85);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-white);
  font-weight: 500;
}

.info-card-text {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.info-card-text:last-child {
  margin-bottom: 0;
}

.info-card-text a {
  border-bottom: 1px solid transparent;
}

.info-card-text a:hover {
  border-bottom-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-muted);
}

.address-note {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.address-note strong {
  color: var(--gold-muted);
  font-family: var(--font-serif);
  font-weight: 500;
}

.address-note p {
  margin: 0.35rem 0;
}

.cta-row {
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-social-note {
  margin: 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #888;
}

.social-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.social-link {
  color: var(--gold);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.social-link:hover {
  opacity: 1;
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.social-link svg,
.social-link img {
  width: 26px;
  height: 26px;
  display: block;
}

.social-link img {
  object-fit: contain;
  transition: filter 0.2s ease;
}

.social-link:hover img {
  filter: brightness(1.15);
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-copy,
.footer-link {
  font-size: 0.72rem;
  color: #666;
}

.footer-link:hover {
  color: var(--text-body);
}

@media (max-width: 520px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Booking modal */
.booking-modal {
  border: none;
  padding: 0;
  margin: auto;
  max-width: calc(100vw - 2rem);
  background: transparent;
  color: var(--text-body);
}

.booking-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.booking-modal-panel {
  position: relative;
  width: min(420px, calc(100vw - 2rem));
  padding: 2.25rem 2rem 1.75rem;
  background: linear-gradient(165deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.booking-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(200, 185, 140, 0.65);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.booking-modal-close:hover {
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
}

.booking-modal-title {
  margin: 0 2rem 0.75rem 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold-muted);
  letter-spacing: 0.04em;
}

.booking-modal-lead {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
}

.booking-modal-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.booking-modal-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-modal-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.booking-modal-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 185, 140, 0.55);
}

.booking-modal-value {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  transition: color 0.2s ease;
}

.booking-modal-value:hover {
  color: var(--gold-bright);
}

/* Gallery fullscreen lightbox */
.gallery-lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .gallery-lightbox {
    height: 100dvh;
    max-height: 100dvh;
  }
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-panel {
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 1.25rem 1.5rem;
}

@supports (min-height: 100dvh) {
  .gallery-lightbox-panel {
    min-height: 100dvh;
  }
}

.gallery-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold-muted);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox-close:hover {
  color: var(--gold-bright);
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(20, 20, 20, 0.95);
}

.gallery-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: calc(100vh - 5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.65);
}

@supports (height: 100dvh) {
  .gallery-lightbox-img {
    max-height: min(92vh, calc(100dvh - 5rem));
  }
}

/* Legal / privacy page */
.legal-page {
  padding: 6.5rem 0 4rem;
  min-height: 70vh;
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.legal-doc h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  color: var(--gold-muted);
  letter-spacing: 0.04em;
}

.legal-doc .legal-updated {
  margin: 0 0 2rem;
  font-size: 0.78rem;
  color: #777;
}

.legal-doc h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

.legal-doc p {
  margin: 0 0 1rem;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc li {
  margin-bottom: 0.4rem;
}

.legal-doc a {
  color: var(--gold-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--gold-bright);
}

.legal-doc .legal-placeholder {
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  border-left: 3px solid rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.06);
  font-size: 0.85rem;
  color: rgba(200, 185, 140, 0.85);
}

.legal-doc .legal-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--border-subtle);
}

.legal-back {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-back:hover {
  color: var(--gold-bright);
}

.footer-bottom--center {
  justify-content: center;
}
