@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #C6A55C;
  --gold-light: #D4B977;
  --gold-dark: #A8883D;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --dark: #111111;
  --dark-card: #161616;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --text: #E8E2D6;
  --text-muted: #9A9389;
  --border: rgba(198,165,92,0.15);
  --glass: rgba(26,26,26,0.85);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 400; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 4rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.nav-logo span { color: var(--text); font-weight: 300; }
.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.nav-logo .nav-logo-text {
  color: var(--gold);
  white-space: nowrap;
}
.nav-logo .nav-logo-text span {
  color: var(--text);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 1.5px; background: var(--gold); transition: all 0.3s; }

/* ─── HERO SLIDER ─── */
.hero {
  position: relative; min-height: 100dvh; height: 100vh; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.hero-slide:nth-child(1) img { object-position: 50% center; }
.hero-slide:nth-child(2) img { object-position: 50% center; }
.hero-slide:nth-child(3) img { object-position: 50% center; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 100%);
}
.hero-content {
  position: absolute; bottom: 15%; left: 4rem;
  z-index: 10; max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1; margin-bottom: 1.5rem;
  color: var(--cream);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1rem; color: var(--text-muted);
  max-width: 500px; margin-bottom: 2rem;
  font-weight: 300; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; }

.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.4s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(198,165,92,0.3); }

.btn-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.slider-controls {
  position: absolute; bottom: 4rem; right: 4rem;
  display: flex; gap: 1rem; z-index: 10;
}
.slider-dot {
  width: 40px; height: 3px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); width: 60px; }
.slider-counter {
  position: absolute; bottom: 4rem; right: 12rem;
  font-size: 0.8rem; color: var(--text-muted);
  letter-spacing: 2px; z-index: 10;
}

/* ─── SECTIONS COMMON ─── */
.section { padding: 8rem 4rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--cream); margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 600px; font-weight: 300;
  line-height: 1.8;
}

/* ─── ABOUT ─── */
.about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  margin-top: 4rem;
}
.about-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  transform: translate(20px, 20px);
  pointer-events: none;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
  padding-top: 3rem; border-top: 1px solid var(--border);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold);
}
.stat-text {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* ─── SERVICES ─── */
.services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}
.service-card {
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.5s;
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.service-icon {
  font-size: 2rem; margin-bottom: 1.5rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.3rem; color: var(--cream);
  margin-bottom: 1rem;
}
.service-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7; font-weight: 300;
}
.service-price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.service-card p { flex: 1; }
.service-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.service-note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── GALLERY ─── */
.gallery { background: var(--charcoal); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem; margin-top: 4rem;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:first-child,
.gallery-item:nth-child(8) { grid-row: span 2; }
.gallery-item:nth-child(4),
.gallery-item:nth-child(10) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent);
  opacity: 0; transition: opacity 0.5s;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── REVIEWS ─── */
.reviews { background: var(--black); }
.reviews-viewport {
  margin-top: 4rem;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  contain: layout paint;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}
.review-card {
  flex: 0 0 380px;
  width: 380px;
  min-width: 0;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all 0.4s;
  scroll-snap-align: start;
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; letter-spacing: 3px; }
.review-text {
  font-size: 0.95rem; color: var(--text);
  line-height: 1.8; font-weight: 300;
  font-style: italic; margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--black); font-size: 1.1rem; font-weight: 700;
}
.review-name { font-size: 0.9rem; color: var(--cream); }
.review-source {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
  overflow-wrap: anywhere;
}
.reviews-nav {
  display: flex; gap: 1rem; margin-top: 2rem; justify-content: center;
}
.reviews-nav button {
  width: 50px; height: 50px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  cursor: pointer; font-size: 1.2rem;
  transition: all 0.3s;
}
.reviews-nav button:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── BOOKING ─── */
.booking { background: var(--charcoal); position: relative; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 4rem;
  min-width: 0;
}
.booking-form { display: flex; flex-direction: column; gap: 1.5rem; min-width: 0; width: 100%; }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; min-width: 0; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; width: 100%; }
.form-group label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  min-width: 0;
  padding: 1rem;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

.booking-info {
  padding: 3rem;
  background: var(--dark);
  border: 1px solid var(--border);
  min-width: 0;
  width: 100%;
}
.booking-info h3 {
  font-size: 1.5rem; color: var(--cream);
  margin-bottom: 2rem;
}
.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold); font-size: 1rem;
}
.info-label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold);
  margin-bottom: 0.3rem;
}
.info-value {
  font-size: 0.95rem; color: var(--text);
  font-weight: 300;
}

/* ─── MAP ─── */
.map-section { position: relative; height: 450px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1) contrast(1.1); opacity: 0.7; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  padding: 5rem 4rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-brand h3 {
  font-size: 1.5rem; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.8; font-weight: 300;
}
.footer h4 {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.8rem; }
.footer ul a {
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.3s; font-weight: 300;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--text-muted);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 5rem 5.5rem 4rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 85%; max-height: 85%; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 2rem; color: var(--gold);
  cursor: pointer; background: none; border: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 1px solid rgba(198,165,92,0.45);
  background: rgba(10,10,10,0.55);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
}
.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

/* ─── BOOKING MODAL ─── */
.booking-success {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.booking-success.active { display: flex; }
.booking-success-content {
  background: var(--dark-card);
  border: 1px solid var(--gold);
  padding: 3rem; text-align: center;
  max-width: 640px;
  width: min(92vw, 640px);
}
.booking-success-content h3 {
  font-size: 1.8rem; color: var(--gold);
  margin: 1rem 0;
}
.booking-success-content p { color: var(--text-muted); }
.check-icon { font-size: 3rem; color: var(--gold); }
.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.booking-whatsapp-link {
  display: inline-flex;
  align-items: center;
}

/* ─── LANGUAGE PICKER ─── */
.lang-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s;
}
.lang-overlay.hidden { opacity: 0; pointer-events: none; }
.lang-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold);
  margin-bottom: 0.5rem;
}
.lang-overlay p {
  font-size: 0.85rem; color: var(--text-muted);
  letter-spacing: 2px; margin-bottom: 3rem;
}
.lang-options {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center;
}
.lang-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
  padding: 2rem 2.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  cursor: pointer; transition: all 0.4s;
  min-width: 160px;
}
.lang-btn:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.lang-btn .flag { font-size: 2.5rem; }
.lang-btn .lang-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--cream);
}
.lang-btn .lang-native {
  font-size: 0.7rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ─── NAV LANG SWITCH ─── */
.nav-lang {
  display: flex; align-items: center; justify-content: center;
  margin-left: 1rem; cursor: pointer;
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.3s;
  border: 1px solid var(--border);
  min-width: 42px;
  height: 36px;
  padding: 0 0.8rem;
}
.nav-lang:hover { color: var(--gold); border-color: var(--gold); }

/* ─── SVG SERVICE ICONS ─── */
.service-icon {
  font-size: 0; margin-bottom: 1.5rem;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── GOOGLE BADGE ─── */
.reviews-header {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 1.5rem;
}
.google-rating {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
}
.google-rating img { height: 22px; }
.google-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold);
}
.google-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.google-count { font-size: 0.75rem; color: var(--text-muted); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .section { padding: 5rem 2rem; }
  .navbar { padding: 1rem 2rem; }
  .navbar.scrolled { padding: 0.8rem 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { width: 100%; }
  .navbar {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .navbar.scrolled { padding: 0.65rem 1rem; }
  .nav-logo {
    font-size: 0.92rem;
    letter-spacing: 1px;
    line-height: 1.1;
    flex: 1;
    min-width: 0;
    gap: 0.55rem;
  }
  .nav-logo img {
    width: 36px;
    height: 36px;
  }
  .nav-logo .nav-logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-lang {
    margin-left: auto;
    min-width: 38px;
    height: 34px;
    padding: 0 0.7rem;
    font-size: 0.7rem;
  }
  .nav-links { 
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .hero-slide img {
    object-position: center center;
    transform: scale(1.02);
    animation-duration: 12s;
  }
  .hero-slide:nth-child(1) img { object-position: 50% center; }
  .hero-slide:nth-child(2) img { object-position: 52% center; }
  .hero-slide:nth-child(3) img { object-position: 50% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(6, 8, 8, 0.58) 0%,
        rgba(6, 8, 8, 0.28) 24%,
        rgba(6, 8, 8, 0.66) 50%,
        rgba(6, 8, 8, 0.94) 100%),
      linear-gradient(90deg,
        rgba(6, 8, 8, 0.52) 0%,
        rgba(6, 8, 8, 0.12) 58%,
        rgba(6, 8, 8, 0.28) 100%);
  }
  .hero-content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 12%;
    max-width: calc(100vw - 2.5rem);
    text-shadow: 0 3px 18px rgba(0,0,0,0.65);
  }
  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 1.8px;
    margin-bottom: 0.85rem;
    color: rgba(214, 184, 110, 0.95);
  }
  .hero-badge::before { width: 28px; }
  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.55rem);
    line-height: 1.02;
    margin-bottom: 0.95rem;
    text-wrap: balance;
  }
  .hero h1 em {
    color: #d9bd73;
  }
  .hero p {
    font-size: 0.88rem;
    line-height: 1.58;
    max-width: 100%;
    margin-bottom: 1.15rem;
    color: rgba(250, 247, 242, 0.82);
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.4px;
  }
  .slider-controls {
    right: 1.25rem;
    bottom: 1.2rem;
    gap: 0.6rem;
  }
  .slider-dot { width: 30px; }
  .slider-dot.active { width: 44px; }
  .slider-counter {
    left: 1.25rem;
    right: auto;
    bottom: 1.05rem;
  }
  .section {
    padding: 4.5rem 1.25rem;
  }
  .section-label {
    gap: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  .section-label::before { width: 28px; }
  .section-title {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    text-wrap: balance;
  }
  .section-subtitle {
    font-size: 0.94rem;
    line-height: 1.7;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .about-image::after { transform: translate(10px, 10px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card {
    padding: 2rem 1.35rem;
  }
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .gallery-item { min-height: 180px; }
  .gallery-item:first-child,
  .gallery-item:nth-child(8) { grid-row: span 2; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(10) { grid-column: auto; }
  .reviews-viewport {
    margin-top: 2.5rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .reviews-track { gap: 1rem; }
  .review-card {
    flex-basis: calc(100vw - 2.5rem);
    width: calc(100vw - 2.5rem);
    padding: 1.6rem 1.25rem;
  }
  .review-author {
    align-items: flex-start;
    min-width: 0;
  }
  .review-author > div:last-child { min-width: 0; }
  .review-name,
  .review-source {
    max-width: 100%;
  }
  .reviews-nav {
    justify-content: flex-start;
  }
  .reviews-nav button {
    width: 46px;
    height: 46px;
  }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-info {
    padding: 2rem 1.25rem;
  }
  .info-item {
    gap: 0.85rem;
  }
  .info-value {
    overflow-wrap: anywhere;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer {
    padding: 4rem 1.25rem 2rem;
  }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .booking-success-content {
    padding: 2.2rem 1.25rem;
    width: calc(100vw - 2rem);
  }
  .booking-success-actions {
    align-items: stretch;
  }
  .lightbox {
    padding: 4rem 1rem 4.5rem;
  }
  .lightbox img {
    max-width: 100%;
    max-height: 76vh;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    border: 1px solid rgba(198,165,92,0.35);
    background: rgba(10,10,10,0.55);
  }
  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-counter {
    bottom: 1.85rem;
  }
}

@media (max-width: 430px) {
  .nav-logo .nav-logo-text > span { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item {
    min-height: 260px;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .lang-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 360px);
    gap: 0.9rem;
    padding: 0 1rem;
  }
  .lang-btn {
    min-width: 0;
    padding: 1.35rem 1rem;
  }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 0.85rem; }
  .nav-logo { font-size: 0.84rem; }
  .nav-logo img {
    width: 34px;
    height: 34px;
  }
  .service-price { font-size: 1.3rem; }
}
