:root {
  --blue: #006ce4;
  --blue-dark: #003b95;
  --green: #0d4f48;
  --green-dark: #0a2f2c;
  --coral: #ff6d56;
  --ink: #182230;
  --muted: #53657a;
  --line: #dce5ef;
  --soft: #f5f8fb;
  --shadow: 0 20px 45px rgba(15, 23, 42, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand strong { display: block; font-size: 17px; line-height: 1; }
.brand span { color: var(--blue); font-size: 13px; font-weight: 850; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #44566a; font-size: 14px; font-weight: 750; }
.nav-links .language-link { display: inline-flex; }
.language-switch { display: inline-flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid rgba(0,108,228,.24); border-radius: 8px; background: #fff; }
.language-link { min-width: 34px; min-height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--blue); font-size: 12px; font-weight: 900; text-decoration: none; }
.language-link.is-active { background: var(--blue); color: #fff; }
.btn {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  font-weight: 850;
  color: var(--blue-dark);
  background: white;
}
.btn.primary { background: var(--blue); border-color: var(--blue); color: white; }
.btn.light { background: #f7fbff; border-color: rgba(0,108,228,.22); color: var(--blue-dark); }
.hero {
  padding: 58px 0 34px;
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: .98;
  letter-spacing: 0;
}
.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e9eef5;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: white;
}
.stat strong { display: block; color: var(--blue); font-size: 20px; }
.stat span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }
section { padding: 58px 0; }
.section-head { margin-bottom: 22px; }
.section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; }
.section-head p { margin: 12px 0 0; color: var(--muted); max-width: 760px; }
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: white;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
}
.info-card h2,
.info-card h3 { margin: 0 0 12px; line-height: 1.12; }
.info-card p { margin: 0 0 14px; color: var(--muted); }
.feature-list,
.price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.feature-list li,
.price-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfdff;
}
.feature-list strong,
.price-list strong { display: block; color: var(--ink); }
.feature-list span,
.price-list span { color: var(--muted); font-size: 14px; }
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.gallery {
  position: relative;
  background: #edf3f8;
}
.gallery-main {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .45s ease, transform .45s ease;
}
.gallery-main img.is-active {
  opacity: 1;
  transform: scale(1);
}
.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(8, 28, 45, .55);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}
.gallery-control.prev { left: 14px; }
.gallery-control.next { right: 14px; }
.gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.gallery-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.58);
  cursor: pointer;
}
.gallery-dot.is-active { width: 24px; background: white; }
.thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}
.thumb {
  flex: 0 0 94px;
  height: 66px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #eef3f8;
  cursor: pointer;
}
.thumb.is-active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.booking-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(0,108,228,.18);
  border-radius: 8px;
  padding: 22px;
  background: white;
}
.booking-box h2 { margin: 0 0 6px; font-size: 26px; }
.booking-box p { margin: 0; color: var(--muted); }
.footer { padding: 26px 0; color: var(--muted); font-size: 14px; }
.footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .nav { min-height: 62px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding-top: 34px; }
  .hero-grid,
  .detail-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-media { order: -1; }
  section { padding: 42px 0; }
  .gallery-main { aspect-ratio: 4 / 3; }
  .gallery-control { width: 38px; height: 38px; }
  .booking-box { align-items: stretch; flex-direction: column; }
  .booking-box .btn { width: 100%; }
}

.nav-links .language-switch a.language-link { display: inline-flex !important; }
.nav-links .language-switch { display: inline-flex !important; }

@media (max-width: 760px) { .nav-links .btn { display: none; } .nav-links { margin-left: auto; gap: 8px; } .language-switch { margin-left: auto; } }
