:root {
  --ink: #171714;
  --ivory: #f3f0e9;
  --paper: #e8e2d8;
  --sand: #c9baa8;
  --bronze: #a47f55;
  --muted: #6c6962;
  --line: rgba(23, 23, 20, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 20; height: 88px; padding: 0 4vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; border-bottom: 1px solid rgba(255,255,255,.22); transition: background .3s, color .3s, height .3s; }
.site-header.scrolled { height: 72px; background: rgba(243,240,233,.96); color: var(--ink); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { display: inline-flex; flex-direction: column; width: max-content; }
.brand-name { font-size: 16px; font-weight: 700; letter-spacing: .19em; line-height: 1; }
.brand-sub { margin-top: 6px; font-size: 6px; font-weight: 600; letter-spacing: .42em; }
.site-header nav { display: flex; gap: 34px; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.site-header nav a, .header-book { padding-bottom: 5px; border-bottom: 1px solid transparent; }
.site-header nav a:hover, .header-book:hover { border-color: currentColor; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.header-book { font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  padding: 5px 2px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 0;
}
.site-header .menu-toggle span { background: #fff; }
.site-header.scrolled .menu-toggle span { background: var(--ink); }
.language-switcher { position: relative; }
.language-current { border: 0; background: transparent; color: inherit; padding: 8px; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.language-current span + span { margin-left: 5px; }
.language-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 170px; padding: 8px; background: var(--ivory); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.16); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; }
.language-menu.open { opacity: 1; visibility: visible; transform: none; }
.language-menu button { width: 100%; display: flex; justify-content: space-between; border: 0; background: none; padding: 10px; cursor: pointer; text-align: left; font-size: 12px; }
.language-menu button:hover { background: var(--paper); }
.language-menu span { color: var(--muted); font-size: 9px; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: #171714; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img {
  object-position: center 26%;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(var(--hero-scale, 1.015));
  animation: settle 1.4s cubic-bezier(.22,.61,.36,1) forwards;
  will-change: transform;
}
.hero-shade { background: linear-gradient(90deg, rgba(10,9,8,.82) 0%, rgba(10,9,8,.46) 42%, rgba(10,9,8,.08) 74%), linear-gradient(0deg, rgba(10,9,8,.38), transparent 45%); }
@keyframes settle { to { transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1); } }
.hero-copy { position: relative; z-index: 2; width: min(620px, 62vw); padding: 138px 0 11vh 7vw; }
.eyebrow { margin: 0 0 22px; color: var(--bronze); font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 300; letter-spacing: -.05em; line-height: .94; }
h1 { font-size: clamp(58px, 7vw, 108px); }
h2 { font-size: clamp(44px, 5.3vw, 78px); }
.hero-copy > p:not(.eyebrow) { max-width: 540px; margin: 30px 0 34px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; }
.hero-actions {
  display: grid;
  grid-template-columns: max-content 340px;
  gap: 18px;
  margin: 0 0 28px;
}
.hero-rating {
  display: flex;
  color: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 0;
  height: 84px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  width: 100%;
  transition: transform .2s, border-color .2s, background .2s;
}
.hero-rating:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.09); }
.hero-rating:focus-visible { outline: 2px solid rgba(214,176,122,.9); outline-offset: 4px; }
.hero-rating-top {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  flex: 0 0 auto;
  gap: 12px;
  width: max-content;
}
.hero-rating strong {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-rating-stars {
  color: #d6b07a;
  font-size: 18px;
  letter-spacing: .22em;
  line-height: 1;
}
.hero-rating p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-actions .primary-cta {
  display: inline-flex;
  align-self: stretch;
  width: 100%;
  height: 84px;
  margin: 0;
}
.hero-note { position: absolute; right: 3vw; bottom: 4vh; z-index: 2; margin: 0; writing-mode: vertical-rl; font-size: 7px; letter-spacing: .24em; color: rgba(255,255,255,.58); }
.primary-cta { display: inline-flex; align-items: center; justify-content: space-between; width: 270px; padding: 18px 20px; background: #fff; color: var(--ink); border: 1px solid #fff; font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.primary-cta i { font-style: normal; font-size: 15px; transition: transform .2s; }
.primary-cta:hover i { transform: translate(3px,-3px); }

.section-pad { padding: 9vw 7vw; }
.booking-intro,
.reviews,
.visit { scroll-margin-top: 110px; }
.section-number { margin: 0; color: var(--muted); font-size: 8px; letter-spacing: .18em; }
.booking-intro { display: grid; grid-template-columns: 28% 1fr; min-height: 0; align-items: start; padding-bottom: 4vw; }
.booking-intro > div:first-child { align-self: start; display: flex; flex-direction: column; gap: 48px; }
.booking-intro .lead { max-width: 580px; margin: 34px 0 0 auto; color: var(--muted); font-size: 16px; line-height: 1.8; }

.project-banner {
  padding-top: 0;
  padding-bottom: 0;
}
.project-banner-link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 22px;
  padding: 0 28px 0 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.project-banner-link::before {
  content: "";
  min-height: 168px;
  background: url("../96ba53fc-26bf-4150-8885-3e0833ddc8f4.webp") center / cover no-repeat;
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.project-banner-link:hover::before { transform: scale(1.04); }
.project-banner-label {
  display: block;
  color: var(--bronze);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.project-banner-link strong {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -.03em;
}
.project-banner-link i {
  font-style: normal;
  font-size: 18px;
  transition: transform .2s;
}
.project-banner-link:hover i { transform: translate(3px, -3px); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 56px 4vw 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 260px; padding: 28px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; transition: background .25s, color .25s; }
.service-card:last-child { border-right: 0; }
.service-card > span { color: var(--bronze); font-size: 9px; letter-spacing: .18em; }
.service-card strong { margin-top: auto; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 28px; font-weight: 300; letter-spacing: -.03em; }
.service-card small { margin-top: 8px; color: var(--muted); font-size: 12px; }
.service-card:hover, .service-card.active { background: var(--ink); color: #fff; }
.service-card:hover small, .service-card.active small { color: rgba(255,255,255,.62); }
.selection-bar { margin: 38px 4vw 9vw; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; }
.selection-bar > div { display: flex; flex-direction: column; gap: 7px; }
.selection-bar > div span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.selection-bar > div strong { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 27px; font-weight: 300; }
.selection-bar .primary-cta { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 82vh; min-height: 620px; background: var(--ink); overflow: hidden; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery figure + figure { border-left: 3px solid var(--ivory); }
.visit-image img,
.gallery img,
.city-banner > img {
  transform: translate3d(0, var(--media-parallax, 0px), 0) scale(var(--media-scale, 1));
  will-change: transform;
}
.gallery img { transition: transform .9s cubic-bezier(.2,.8,.2,1), filter .45s; }
.gallery:hover img { filter: brightness(.7); }
.gallery figure:hover img { filter: brightness(1); transform: scale(1.035); }

.reviews { background: var(--ink); color: var(--ivory); }
.reviews .section-number { color: rgba(255,255,255,.38); }
.reviews-heading { display: grid; grid-template-columns: 20% 1fr; margin-bottom: 80px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
blockquote { margin: 0; min-height: 310px; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; }
blockquote:last-child { border-right: 0; }
blockquote p { margin: 0; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 21px; line-height: 1.55; color: rgba(255,255,255,.84); font-weight: 300; }
blockquote footer { margin-top: auto; color: var(--bronze); font-size: 8px; letter-spacing: .18em; }
.review-qr { margin-top: 90px; display: grid; grid-template-columns: 220px minmax(0, 520px); gap: 70px; align-items: center; justify-content: center; }
.review-qr > a { display: block; width: 220px; background: transparent; padding: 0; line-height: 0; }
.review-qr img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; }
.review-qr h3 { margin: 0 0 18px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 35px; font-weight: 300; line-height: 1.1; letter-spacing: -.03em; }
.review-qr p:not(.eyebrow) { color: rgba(255,255,255,.6); line-height: 1.75; }
.review-qr div > a { display: inline-block; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 8px; font-weight: 700; letter-spacing: .17em; }

.visit { display: grid; grid-template-columns: 50% 50%; min-height: 830px; background: var(--paper); }
.visit-image { overflow: hidden; }
.visit-image img { object-position: center; filter: saturate(.82); }
.visit-copy { display: grid; grid-template-columns: 17% 1fr; align-content: center; }
.visit-copy h2 { margin-bottom: 34px; }
.visit-copy > div > p:not(.eyebrow) { max-width: 520px; color: var(--muted); line-height: 1.8; }
dl { margin: 48px 0 0; border-top: 1px solid var(--line); }
dl > div { display: grid; grid-template-columns: 110px 1fr; padding: 17px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .17em; }
dd { margin: 0; font-size: 13px; }
dd a { border-bottom: 1px solid var(--line); }

.city-banner { position: relative; min-height: 72vh; overflow: hidden; color: #fff; }
.city-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,9,8,.7), rgba(10,9,8,.08) 68%), linear-gradient(0deg, rgba(10,9,8,.32), transparent 55%); }
.city-banner > img { position: absolute; inset: 0; object-position: center; }
.city-banner > div { position: relative; z-index: 1; min-height: 72vh; padding: 8vw 7vw; display: flex; flex-direction: column; justify-content: flex-end; }
.city-banner h2 { max-width: 760px; text-shadow: 0 2px 24px rgba(0,0,0,.18); }

.final-cta { display: grid; grid-template-columns: 20% 1fr; min-height: 610px; align-items: center; background: var(--sand); }
.final-cta .primary-cta { margin-top: 42px; background: var(--ink); color: #fff; border-color: var(--ink); }
.site-footer { min-height: 170px; padding: 55px 4vw; background: var(--ink); color: rgba(255,255,255,.65); display: grid; grid-template-columns: 1.2fr .8fr .7fr 1.7fr .9fr; gap: 30px; align-items: start; font-size: 8px; letter-spacing: .16em; }
.site-footer .brand { color: #fff; }
.site-footer > p:not(.site-credit) { margin: 0; text-align: left; }
.footer-contacts { display: flex; flex-wrap: wrap; gap: 9px 22px; }
.footer-contacts a { border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 3px; }
.footer-project-link { text-align: right; }
.site-visits { margin: 0; color: rgba(255,255,255,.5); text-transform: uppercase; }
.site-visits [data-visit-counter],
.site-visits [data-visit-daily-counter] { color: rgba(255,255,255,.86); font-weight: 700; letter-spacing: .12em; }
.footer-map { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 24px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-map-copy { display: flex; flex-direction: column; gap: 12px; }
.footer-map-eyebrow { margin: 0; color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.footer-map-address { margin: 0; font-size: 11px; letter-spacing: .08em; line-height: 1.7; color: rgba(255,255,255,.72); }
.footer-map-link { display: inline-flex; width: max-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.footer-map-frame { min-height: 240px; border: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.footer-map-frame iframe { display: block; width: 100%; height: 100%; min-height: 240px; border: 0; filter: grayscale(.12) saturate(.92); }
.site-credit { grid-column: 1 / -1; margin: 10px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 8px; line-height: 1.6; letter-spacing: .14em; text-transform: uppercase; text-align: center; }

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: #123c32;
  color: #fff;
  box-shadow: 0 14px 38px rgba(9, 35, 29, .28);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.floating-book:hover { transform: translateY(-3px); background: #0d3028; box-shadow: 0 18px 44px rgba(9,35,29,.36); }
.floating-book-icon { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; font-size: 8px; letter-spacing: .08em; }

.reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 30px), 0) scale(.985);
  transform-origin: 50% 50%;
  transition:
    opacity .82s cubic-bezier(.22,.61,.36,1),
    transform .98s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal.reveal-left { --reveal-x: -26px; --reveal-y: 18px; }
.reveal.reveal-right { --reveal-x: 26px; --reveal-y: 18px; }
.reveal.reveal-soft { --reveal-y: 18px; }
.reveal.reveal-slow { transition-duration: 1.05s, 1.12s; }

[dir="rtl"] { text-align: right; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-menu button { text-align: right; }
[dir="rtl"] .hero-shade { transform: scaleX(-1); }
[dir="rtl"] .hero-copy { padding-left: 0; padding-right: 7vw; }
[dir="rtl"] .review-qr, [dir="rtl"] .selection-bar { direction: rtl; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .menu-toggle { display: block; }
  .site-header nav.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    font-size: 18px;
  }
  .hero-copy { width: min(760px, 88vw); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: 1.5fr 1fr; height: auto; }
  .gallery figure { height: 70vh; }
  .gallery figure:last-child { display: none; }
  .review-grid { grid-template-columns: 1fr; }
  blockquote { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  blockquote:last-child { border-bottom: 0; }
  .visit { grid-template-columns: 1fr; }
  .visit-image { min-height: 70vh; }
  .city-banner, .city-banner > div { min-height: 60vh; }
  .site-footer { grid-template-columns: repeat(2,1fr); }
  .footer-map { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 70px; padding: 0 20px; }
  .brand-name { font-size: 13px; }
  .brand-sub { font-size: 5px; }
  .header-actions { gap: 6px; }
  .header-book { display: none; }
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-media {
    position: relative;
    inset: auto;
    min-height: 62vh;
    order: -1;
  }
  .hero-media img { object-position: 61% center; }
  .hero-shade {
    inset: auto 0 0;
    top: auto;
    height: 0;
    background: none;
  }
  .hero-copy {
    width: 100%;
    padding: 40px 22px 84px;
    background: var(--ink);
  }
  [dir="rtl"] .hero-copy { padding: 40px 22px 84px; }
  h1 { font-size: clamp(52px, 16vw, 72px); }
  h2 { font-size: 43px; }
  .hero-copy > p:not(.eyebrow) { margin: 24px 0; font-size: 14px; }
  .hero-actions { margin-bottom: 24px; grid-template-columns: 1fr; gap: 14px; }
  .hero-rating { height: auto; min-height: 0; padding: 12px 14px 10px; }
  .hero-rating strong { font-size: 19px; }
  .hero-rating-stars { font-size: 16px; }
  .hero-actions .primary-cta { width: 100%; min-height: 64px; }
  .hero-note { display: none; }
  .section-pad { padding: 88px 22px; }
  .booking-intro,
  .reviews,
  .visit { scroll-margin-top: 88px; }
  .booking-intro, .reviews-heading, .final-cta { display: block; min-height: auto; }
  .booking-intro { padding-bottom: 24px; }
  .booking-intro > div:first-child { display: block; margin-bottom: 40px; }
  .booking-intro .section-number, .reviews-heading .section-number, .final-cta .section-number { margin-bottom: 40px; }
  .booking-intro .lead { margin: 30px 0 0; }
  .project-banner { padding: 0 22px; }
  .project-banner-link {
    grid-template-columns: 1fr auto;
    gap: 12px 18px;
    padding: 0 22px 24px;
  }
  .project-banner-link::before {
    grid-column: 1 / -1;
    min-height: 150px;
    margin: 0 -22px 4px;
    background-position: center 34%;
  }
  .project-banner-label,
  .project-banner-link strong { grid-column: 1 / 2; }
  .project-banner-label { margin-bottom: 6px; }
  .project-banner-link strong { font-size: 24px; line-height: 1.12; }
  .project-banner-link i {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    align-self: end;
    padding-bottom: 2px;
  }
  .service-grid { grid-template-columns: 1fr; margin: 32px 22px 0; }
  .service-card { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .selection-bar { margin: 20px 22px 80px; padding: 20px 0; flex-direction: column; align-items: stretch; gap: 25px; }
  .selection-bar .primary-cta { width: 100%; }
  .gallery { display: grid; grid-template-columns: 1fr 1fr; }
  .gallery figure { height: 58vh; }
  .gallery .gallery-main { grid-column: 1/-1; height: 70vh; }
  .gallery figure + figure { border-left: 0; border-top: 3px solid var(--ivory); }
  .gallery figure:nth-child(2) { grid-column: 1/-1; }
  .review-qr { margin-top: 70px; grid-template-columns: 1fr; gap: 35px; }
  .review-qr > a { width: min(240px, 72vw); max-width: 300px; }
  .review-qr > a:first-child { display: none; }
  .visit-image { min-height: 560px; }
  .visit-copy { display: block; }
  .visit-copy .section-number { margin-bottom: 65px; }
  .city-banner, .city-banner > div { min-height: 68vh; }
  .city-banner > div { padding: 80px 22px 52px; }
  .city-banner::after { background: linear-gradient(0deg, rgba(10,9,8,.78), rgba(10,9,8,.02) 75%); }
  dl > div { grid-template-columns: 90px 1fr; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 50px 22px 90px; }
  .site-footer .brand { width: auto; align-items: center; }
  .footer-contacts { justify-content: center; }
  .footer-map-frame, .footer-map-frame iframe { min-height: 220px; }
  .footer-project-link { text-align: center; }
  .floating-book { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
