:root {
  --color-primary: #1a3a4a;
  --color-accent: #c9a96e;
  --color-accent-light: #e8d5b0;
  --color-bg: #faf8f5;
  --color-bg-dark: #0f1f28;
  --color-text: #2c2c2c;
  --color-text-light: #6b7280;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 31, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--transition);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.logo span { color: var(--color-accent); }

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

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav a:hover { color: var(--color-accent); }

.lang-switch {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 4px;
}

.lang-switch button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.lang-switch button.active,
.lang-switch button:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 31, 40, 0.75) 0%,
    rgba(15, 31, 40, 0.4) 50%,
    rgba(15, 31, 40, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 24px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: fit-content;
}

@media (min-width: 1025px) {
  .hero-content { position: static; max-width: none; }

  .hero-stats {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
  }
}

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.highlight-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Description */
.description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.description-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 28px 0 12px;
}

.description-text h3:first-child { margin-top: 0; }

.description-text p {
  color: var(--color-text-light);
  line-height: 1.8;
}

.description-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 110, 0.12);
  font-size: 0.9rem;
  transition: var(--transition);
}

.amenity-item:hover {
  border-color: var(--color-accent);
  background: rgba(201, 169, 110, 0.05);
}

.amenity-icon {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-item:first-child,
.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Booking */
.booking-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.booking-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.booking-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}

.booking-placeholder {
  background: rgba(201, 169, 110, 0.1);
  border: 2px dashed rgba(201, 169, 110, 0.4);
  border-radius: 10px;
  padding: 40px;
  margin: 32px 0;
  color: rgba(255,255,255,0.7);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Reviews Overlay */
.reviews-trigger {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border: none;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  font-size: 0.9rem;
}

.reviews-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 31, 40, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.overlay.active { display: flex; }

.overlay-content {
  background: var(--color-white);
  border-radius: var(--radius);
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.overlay-close:hover {
  background: var(--color-bg);
  color: var(--color-text);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.review-card {
  background: var(--color-bg);
  border-radius: 10px;
  padding: 24px;
  border-left: 3px solid var(--color-accent);
}

.review-stars { color: var(--color-accent); margin-bottom: 12px; font-size: 0.9rem; }

.review-text {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.review-location {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-brand { max-width: 400px; }

.footer-tagline, .footer-address, .footer-contact {
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-contact a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  text-decoration: underline;
  color: var(--color-accent-light);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--color-accent); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 8px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
}

.footer-logo span { color: var(--color-accent); }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  .hero {
    min-height: 100svh;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 24px);
    box-sizing: border-box;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 31, 40, 0.88) 0%,
      rgba(15, 31, 40, 0.25) 42%,
      rgba(15, 31, 40, 0.45) 100%
    );
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    margin: 0;
    align-self: flex-start;
    min-height: calc(100svh - var(--header-height) - env(safe-area-inset-top, 0px) - 24px);
    padding: 0 24px 28px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-subtitle {
    margin-bottom: 0;
  }

  .hero-stats {
    width: 100%;
    justify-content: space-around;
    gap: 20px;
    padding: 20px 24px;
    margin-top: auto;
    margin-bottom: 0;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 16px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  #highlights {
    padding-top: 48px;
  }

  .description-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .header-inner { height: 64px; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--color-bg-dark);
    padding: 20px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
  }
  .nav.open { display: flex; }
  .nav a { padding: 8px 0; }
  .lang-switch { margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats {
    gap: 12px;
    padding: 16px;
  }
  .stat-value { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  #highlights { padding-top: 40px; }
  .section-header { margin-bottom: 40px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .description-grid { grid-template-columns: 1fr; }
  .description-image { aspect-ratio: 16/10; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .amenity-item { padding: 12px 14px; font-size: 0.82rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item-featured { grid-column: span 2; grid-row: span 1; }
  .booking-card { padding: 32px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .reviews-trigger {
    bottom: 16px; left: 16px; right: 16px;
    padding: 14px 20px; font-size: 0.85rem;
    text-align: center; justify-content: center;
  }
  .overlay-content { padding: 32px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-featured { grid-column: span 1; }
}
