/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-hover); }
h1, h2, h3 { font-family: var(--font-heading); margin: 0; }
button { font: inherit; }

:root {
  --color-bg: #fdfcfb;
  --color-text: #201e1d;
  --color-neutral-700: #6b6560;
  --color-neutral-100: #f5f1ec;
  --color-divider: #e6e0d8;
  --color-accent: oklch(46% 0.11 210);
  --color-accent-hover: oklch(58% 0.11 210);
  --color-accent-soft: oklch(94% 0.04 195);
  --color-accent-soft-text: oklch(40% 0.09 195);
  --shadow-md: 0 24px 48px -24px rgba(32, 30, 29, .28);
  --shadow-sm: 0 10px 24px -14px rgba(32, 30, 29, .22);
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --side-pad: clamp(20px, 4vw, 64px);
  --content-width: 1280px;
  --nav-h: 70px;
  --page-h: calc(100vh - var(--nav-h));
}

.content-max { width: 100%; max-width: var(--content-width); margin: 0 auto; }
section[id] { scroll-margin-top: 92px; }

/* ---------- Shared bits ---------- */
.label {
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
}
.icon { width: 28px; height: 28px; stroke: var(--color-accent); }
.hr-line { height: 2px; background: var(--color-divider); border: none; margin: 0; }

.section-title { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; letter-spacing: -.3px; margin: 14px 0 0; }
.section-title-lg { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -.4px; line-height: 1.1; margin: 0; }
.section-title-sm { font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; letter-spacing: -.2px; margin: 12px 0 34px; }
.section-body { font-size: 20px; line-height: 1.7; color: var(--color-neutral-700); margin: 18px 0 0; }
.section-body-wide { max-width: 700px; margin-bottom: 38px; }
.section-note { font-size: 17.5px; color: var(--color-neutral-700); margin: 22px 0 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 30px; height: 52px; font-size: 17px; font-weight: 700;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: oklch(72% 0.10 210); border-color: oklch(72% 0.10 210); color: #201e1d; }
.btn-primary:hover { background: oklch(66% 0.10 210); border-color: oklch(66% 0.10 210); color: #201e1d; }
.btn-secondary { background: var(--color-bg); border-color: var(--color-divider); color: var(--color-text); }
.btn-secondary:hover { background: var(--color-neutral-100); color: var(--color-text); }

.tag { display: inline-block; font-size: 16px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.tag-accent { background: var(--color-accent-soft); color: var(--color-accent-soft-text); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.img-zoom { overflow: hidden; display: block; }
.img-zoom img { transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.img-zoom:hover img { transform: scale(1.05); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253, 252, 251, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
}
.nav-inner {
  padding: 18px var(--side-pad);
  display: flex; align-items: center; gap: 24px;
}
.nav-brand {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px; letter-spacing: 1.5px;
  color: var(--color-text);
}
.nav-brand:hover { color: var(--color-text); }
.nav-toggle {
  margin-left: auto; display: none; background: none; border: none; cursor: pointer; color: var(--color-text); padding: 6px;
}
.nav-links { display: flex; gap: 28px; font-size: 17px; font-weight: 700; margin-left: auto; align-items: center; white-space: nowrap; }
.nav-links a { color: var(--color-text); }
.nav-links a:hover { color: var(--color-accent); }

.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: none;
  font-size: 16px; font-weight: 700; color: var(--color-neutral-700); cursor: pointer; padding: 6px 0;
}
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; background: var(--color-bg);
  border: 1px solid var(--color-divider); min-width: 160px; box-shadow: var(--shadow-md); z-index: 10;
  border-radius: 10px; overflow: hidden;
}
.lang-opt {
  display: block; width: 100%; text-align: left; padding: 12px 18px; font-size: 16px; font-weight: 700;
  background: none; border: none; cursor: pointer; color: var(--color-text);
}
.lang-opt:hover, .lang-opt.active { background: var(--color-neutral-100); }

/* ---------- Hero ---------- */
.hero { position: relative; width: 100%; height: var(--page-h); min-height: 480px; overflow: hidden; }
.hero-track { display: flex; height: 100%; width: 400%; transition: transform 1.1s cubic-bezier(.65,0,.35,1); }
.hero-track img { width: 25%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(32,30,29,.6), rgba(32,30,29,0) 55%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0 var(--side-pad) 48px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-heading); font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; font-weight: 700; margin-bottom: 14px;
}
.hero-title { font-weight: 700; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.15; color: #fff; max-width: 660px; }
.hero-dots { display: flex; gap: 8px; position: relative; z-index: 2; pointer-events: auto; }
.hero-dots span { width: 8px; height: 8px; display: block; cursor: pointer; background: rgba(255,255,255,.4); border-radius: 999px; transition: background .2s; }
.hero-dots span.active { background: #fff; }
.hero-arrow {
  position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
  border: none; border-radius: 999px; background: rgba(32,30,29,.5); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.hero-arrow:hover { background: rgba(32,30,29,.7); }
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

/* ---------- Why section ---------- */
.section-why {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: grid; grid-template-columns: .9fr 1.3fr; gap: 56px; align-items: center;
}
.stats-row { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-heading); font-size: 38px; font-weight: 800; }
.stat-label { font-size: 15.5px; color: var(--color-neutral-700); margin-top: 4px; }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--color-divider);
  border: 1px solid var(--color-divider); border-radius: 6px; overflow: hidden;
}
.feature-cell { padding: 30px; background: var(--color-bg); }
.feature-title { font-family: var(--font-heading); font-weight: 700; font-size: 21px; margin-top: 16px; }
.feature-body { font-size: 17px; color: var(--color-neutral-700); margin-top: 8px; line-height: 1.6; }

/* ---------- Rooms ---------- */
.section-rooms {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.rooms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--color-divider);
  border: 1px solid var(--color-divider); border-radius: 6px; overflow: hidden;
}
.room-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: center;
  background: var(--color-bg); padding: 26px; cursor: pointer; border: none; text-align: left; width: 100%;
  font: inherit; color: inherit;
}
.room-card:hover .room-thumb img { transform: scale(1.05); }
.room-thumb { height: 140px; position: relative; border-radius: 6px; }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-count {
  position: absolute; bottom: 8px; right: 8px; background: rgba(32,30,29,.7); color: #fff;
  font-size: 13px; font-weight: 700; padding: 4px 9px; border-radius: 4px;
}
.room-name { font-family: var(--font-heading); font-size: 26px; font-weight: 700; }
.room-meta { font-size: 17.5px; color: var(--color-neutral-700); margin-top: 5px; }
.room-tag { margin-top: 12px; }

/* ---------- Location ---------- */
.section-location {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.places-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; height: 440px; }
.places-side { display: flex; flex-direction: column; gap: 20px; min-height: 0; }
.place-card { position: relative; overflow: hidden; border-radius: 8px; min-height: 0; min-width: 0; }
.place-card-main { height: 100%; }
.places-side .place-card { flex: 1; }
.place-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.place-card-info {
  position: absolute; left: 18px; right: 18px; bottom: 18px; background: var(--color-bg);
  padding: 16px 20px; border-radius: 6px; box-shadow: var(--shadow-sm);
}
.place-name { font-family: var(--font-heading); font-weight: 700; font-size: 21px; }
.place-walk { display: flex; align-items: center; gap: 6px; font-size: 15.5px; color: var(--color-accent); font-weight: 700; margin-top: 7px; }

/* ---------- Gallery ---------- */
.section-gallery {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.gallery-video { width: 100%; }
.gallery-video video {
  width: 100%; max-height: min(78vh, 780px); aspect-ratio: 1 / 1;
  border-radius: 14px; box-shadow: var(--shadow-md); background: #000; object-fit: cover;
}

/* ---------- Reviews ---------- */
.section-reviews {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 26px; display: flex; flex-direction: column; background: var(--color-bg);
  border: 1px solid var(--color-divider); border-radius: 10px; box-shadow: var(--shadow-sm);
}
.review-top { display: flex; justify-content: space-between; align-items: flex-start; }
.review-stars { display: flex; gap: 2px; color: #f5a623; font-size: 17px; }
.review-quote { font-family: var(--font-heading); font-size: 19px; font-weight: 500; line-height: 1.55; margin-top: 16px; flex: 1; }
.review-name { font-weight: 700; font-size: 16.5px; margin-top: 18px; }
.review-date { font-size: 14.5px; color: var(--color-neutral-700); margin-top: 2px; }

/* ---------- FAQ ---------- */
.section-faq {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad); background: var(--color-bg);
  display: flex; flex-direction: column; justify-content: center;
}
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 64px; }
.faq-item { border-bottom: 1px solid var(--color-divider); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-text);
}
.faq-question svg { flex-shrink: 0; transition: transform .3s ease; stroke: var(--color-accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 0 22px; font-size: 17.5px; line-height: 1.6; color: var(--color-neutral-700); }

/* ---------- Map ---------- */
.section-map {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.map-frame { position: relative; border: 1px solid var(--color-divider); aspect-ratio: 21/9; overflow: hidden; border-radius: 8px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-open { position: absolute; top: 16px; right: 16px; font-size: 15px; height: 42px; padding: 0 20px; }

/* ---------- Contact ---------- */
.section-contact {
  min-height: var(--page-h); box-sizing: border-box;
  padding: 72px var(--side-pad); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 40px;
}
.contact-grid { display: flex; gap: 56px; flex-wrap: wrap; justify-content: center; }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 270px; font-size: 19px; color: var(--color-neutral-700); line-height: 1.6; }
.contact-item a { color: var(--color-neutral-700); }
.contact-item a:hover { color: var(--color-accent); }
.btn-instagram { padding: 0 30px; height: 52px; font-size: 17px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 24px var(--side-pad); font-size: 15.5px; color: var(--color-neutral-700);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--color-divider);
}
.site-footer a { color: var(--color-neutral-700); display: flex; }
.site-footer a:hover { color: var(--color-accent); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(20,18,17,.94); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox-body { max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 14px; touch-action: pan-y; }
.lightbox-body img { max-width: 90vw; max-height: 78vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: roomfade .35s ease; border-radius: 4px; }
@keyframes roomfade { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.lightbox-caption { color: #fff; font-family: var(--font-heading); font-size: 18px; font-weight: 700; text-align: center; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border: none;
  background: rgba(255,255,255,.15); color: #fff; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border: none;
  background: rgba(255,255,255,.15); color: #fff; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section-why { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .places-grid { grid-template-columns: 1fr; height: auto; }
  .place-card-main { height: 300px; }
  .places-side { flex-direction: row; }
  .places-side .place-card { height: 200px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider); flex-direction: column; align-items: flex-start;
    padding: 12px var(--side-pad) 22px; gap: 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .lang-switch { width: 100%; }
  .lang-menu { left: 0; right: auto; }

  .section-why, .section-rooms, .section-location, .section-gallery,
  .section-reviews, .section-faq, .section-map, .section-contact { padding: 48px var(--side-pad); }

  .feature-grid { grid-template-columns: 1fr; }
  .room-card { grid-template-columns: 1fr; }
  .room-thumb { height: 190px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .places-side { flex-direction: column; }
  .places-side .place-card { height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-video video { max-height: min(50vh, 420px); }
  .contact-grid { gap: 28px; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero { height: 86vh; }
}
