:root {
  color-scheme: light;
  --bg: #0f1115;
  --bg-soft: #141824;
  --surface: #ffffff;
  --text: #0b0c0f;
  --muted: #5b6472;
  --brand: #8b5cf6;
  --brand-dark: #6d3df0;
  --border: #e6e9ef;
  --shadow: 0 20px 60px rgba(15, 17, 21, 0.15);
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f6f7fb;
  color: var(--text);
  line-height: 1.6;
  min-width: 600px;
}

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: #f5f5f5;
}

.nav a {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.lang-btn.active {
  background: #fff;
  color: #0f1115;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  align-items: stretch;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
}

.lead {
  max-width: 560px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

.btn.primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: rgba(15, 17, 21, 0.55);
  border-radius: 20px;
  padding: 18px 20px;
  max-width: 720px;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.meta-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

.highlights {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 12px 14px;
  background: #f4f2ff;
  border-radius: 12px;
  font-weight: 600;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 17, 21, 0.15);
}

.location-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: #f2f4f8;
  display: grid;
  gap: 12px;
}

.location-card iframe {
  width: 100%;
  max-width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
  display: block;
}

.map-placeholder {
  border-radius: 20px;
  background: linear-gradient(135deg, #c7d2fe, #f3e8ff);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #312e81;
  font-weight: 600;
}

.booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  gap: 6px;
}

.faq {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 0;
}

.faq-answer {
  display: none;
  padding: 6px 0 12px;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.site-footer {
  background: var(--bg);
  color: #fff;
  padding: 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
}

.footer-inner img {
  width: 120px;
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-content {
    padding-top: 100px;
  }

  .brand img {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 96px 0 64px;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-meta {
    padding: 16px;
  }

  .gallery-grid img {
    height: 180px;
  }

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

  .btn {
    width: 100%;
  }

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

  .footer-inner img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    justify-content: center;
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .meta-value {
    font-size: 0.9rem;
  }

  .map-placeholder {
    display: none;
  }
}
