/* ==========================================================================
   ORA Holiday Apartments — site B "Homezo"
   Tokens measured from the live template (homezo.framer.website), not eyeballed:
     container 1280 · page margin 80 · accent #99FFF9 · ink #161616
     radii 16 / 32 / 46 / 64 · Inter + Instrument Serif
   A serif accent word inside a sans headline is the template's signature. Hebrew
   has no true italics, so Frank Ruhl Libre carries that contrast instead.
   Layout uses logical properties so RTL/LTR flip from the same rules.
   ========================================================================== */
@import url('fonts.css');

:root {
  --ink: #161616;
  --ink-90: rgba(22, 22, 22, .9);
  --ink-60: rgba(22, 22, 22, .6);
  --ink-40: rgba(22, 22, 22, .4);
  --ink-10: rgba(22, 22, 22, .1);
  --ink-05: rgba(22, 22, 22, .05);
  --white: #FFFFFF;
  --white-70: rgba(255, 255, 255, .7);
  --white-20: rgba(255, 255, 255, .2);

  --mint: #99FFF9;            /* primary accent  */
  --mint-soft: #E4FCFF;       /* tinted surfaces */
  --mint-pale: #D8FBFF;
  --line: #E8E8E8;

  --container: 1280px;
  --margin: 80px;
  --section-y: 120px;
  --r-card: 16px;
  --r-pill: 32px;
  --r-lg: 46px;
  --r-xl: 64px;

  --sans: 'Inter', 'Heebo', system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Frank Ruhl Libre', Georgia, serif;
}
/* Hebrew leads with Heebo (Inter has no Hebrew) and swaps the serif accent face.
   The template's tight Latin tracking (-.09em on the h1) closes Hebrew letterforms
   up badly, so Hebrew gets its own, much gentler tracking. */
html[lang^="he"] {
  --sans: 'Heebo', 'Inter', system-ui, sans-serif;
  --serif: 'Frank Ruhl Libre', 'Instrument Serif', Georgia, serif;
}
html[lang^="he"] body { letter-spacing: normal; }
html[lang^="he"] .h1 { letter-spacing: -.025em; }
html[lang^="he"] .h2, html[lang^="he"] .h3, html[lang^="he"] .h4 { letter-spacing: -.015em; }
html[lang^="he"] .lead, html[lang^="he"] .body, html[lang^="he"] .small { letter-spacing: normal; }
/* Russian sits between the two */
html[lang^="ru"] body { letter-spacing: -.01em; }
html[lang^="ru"] .h1 { letter-spacing: -.05em; }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px; line-height: 1.5; letter-spacing: -.03em;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; inset-block-start: -100px; inset-inline-start: 16px; z-index: 200;
  background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 8px;
}
.skip-link:focus { inset-block-start: 0; }

/* ---------- type ------------------------------------------------------- */
.h1, .h2, .h3, .h4 { margin: 0; font-weight: 500; }
.h1 { font-size: clamp(44px, 7.2vw, 110px); line-height: 1.02; letter-spacing: -.09em; }
.h2 { font-size: clamp(32px, 5vw, 80px);   line-height: 1;    letter-spacing: -.03em; }
.h3 { font-size: clamp(26px, 3.2vw, 48px); line-height: 1.1;  letter-spacing: -.03em; }
.h4 { font-size: clamp(20px, 2.2vw, 32px); line-height: 1.1;  letter-spacing: -.03em; }
/* the serif word inside a headline */
.accent { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -.02em; }
html[lang^="he"] .accent { font-style: normal; font-weight: 500; }

.lead { font-size: clamp(16px, 1.4vw, 21px); line-height: 1.5; color: var(--ink-60); margin: 0; }
.body { font-size: 16px; line-height: 1.5; margin: 0; }
.small { font-size: 14px; line-height: 1.5; margin: 0; }
.muted { color: var(--ink-60); }
.eyebrow {
  font-size: 14px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-40); margin: 0;
}
.eyebrow--mint { color: var(--mint); }

/* ---------- layout ----------------------------------------------------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--mint-soft); }
.section--ink { background: var(--ink); color: var(--white); }
.stack { display: flex; flex-direction: column; }
@media (max-width: 1000px) { :root { --section-y: 72px; --margin: 24px; } }

/* centred section head with eyebrow above */
.sec-head { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.sec-head--start { align-items: flex-start; text-align: start; }
.sec-head .lead { max-width: 56ch; }

/* ---------- buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 24px; min-height: 48px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--mint { background: var(--mint); color: var(--ink); }
.btn--mint:hover { background: var(--ink); color: var(--mint); }
.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: var(--mint); color: var(--ink); }
.btn--ghost { border-color: var(--ink-10); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-w { border-color: var(--white-20); color: var(--white); }
.btn--ghost-w:hover { background: var(--white); color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex: none; }
[dir="rtl"] .btn .i-arrow { transform: scaleX(-1); }

/* circular icon button (carousel / card corner) */
.icon-btn {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--ink); border: 1px solid var(--ink-10);
  cursor: pointer; transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.icon-btn:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- header ----------------------------------------------------- */
.header { position: absolute; inset-inline: 0; inset-block-start: 20px; z-index: 50; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 48px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; min-width: 0; }
.brand img { flex: none; }
.brand img { height: 34px; width: auto; }
.brand-name { font-size: 24px; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.brand-name .accent { font-size: 26px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 15px; color: var(--white-70); transition: color .2s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.header--light .nav a { color: var(--ink-60); }
.header--light .nav a:hover, .header--light .nav a[aria-current="page"] { color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 12px; }
@media (max-width: 1100px) { .nav { display: none; } }

/* language switcher */
.lang { position: relative; }
.lang-btn { padding-inline: 16px; }
.lang-btn svg { width: 17px; height: 17px; }
.lang-menu {
  position: absolute; inset-block-start: calc(100% + 8px); inset-inline-end: 0; min-width: 160px;
  background: var(--white); color: var(--ink); border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,.1); padding: 8px; display: none; z-index: 70;
}
.lang[data-open="true"] .lang-menu { display: block; }
.lang-menu a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 15px; }
.lang-menu a:hover { background: var(--ink-05); }
.lang-menu a[aria-current="true"] { color: var(--ink); font-weight: 500; background: var(--mint-soft); }
@media (max-width: 780px) { .lang-btn span { display: none; } }

/* solid variant for inner pages */
.header--solid { position: sticky; inset-block-start: 0; background: var(--white); border-block-end: 1px solid var(--line); padding-block: 14px; }

/* floating pill that appears on scroll */
.scroll-header {
  position: fixed; inset-block-start: 12px; inset-inline: 0; z-index: 60;
  display: flex; justify-content: center; pointer-events: none; visibility: hidden;
  opacity: 0; transform: translateY(-120%);
  transition: opacity .3s ease, transform .4s cubic-bezier(.22,.61,.36,1), visibility .3s;
}
.scroll-header.is-on { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.scroll-header__bar {
  width: min(100% - 40px, var(--container)); min-height: 64px; border-radius: var(--r-xl);
  background: var(--white); box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-inline: 20px;
}

/* ---------- hero ------------------------------------------------------- */
.hero { position: relative; min-height: 820px; display: flex; align-items: flex-end; overflow: hidden; color: var(--white); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  /* weighted so the nav stays legible at the top and the copy, which sits in the
     lower half, never lands on the bright band of the photo */
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.22) 26%, rgba(0,0,0,.55) 58%, rgba(0,0,0,.85) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 160px 56px; width: 100%; }
.hero__content { display: flex; flex-direction: column; gap: 20px; max-width: 720px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-block-start: 8px; }
.hero__meta { display: flex; align-items: center; gap: 14px; margin-block-start: 32px; }
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat b { font-size: 20px; font-weight: 500; }
.hero__dots { position: absolute; inset-block-end: 56px; inset-inline-end: 0; display: flex; gap: 8px; z-index: 2; }
/* the visible bar stays 3px; content-box padding gives it a real tap area */
.hero__dot {
  width: 28px; height: 3px; border-radius: 2px; background: var(--white-20);
  border: 0; padding: 0; cursor: pointer; background-clip: content-box;
  transition: background-color .25s ease;
}
.hero__dot.is-active { background: var(--white); }
@media (max-width: 900px) { .hero { min-height: 620px; } .hero__inner { padding-block: 130px 40px; } }

/* strip of quick facts under the hero (replaces the template's search bar) */
.facts { background: var(--mint-soft); border-radius: var(--r-card); padding: 28px 32px; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; margin-block-start: -44px; position: relative; z-index: 3; }
.fact { display: flex; flex-direction: column; gap: 4px; min-width: 150px; }
.fact b { font-size: 28px; font-weight: 500; letter-spacing: -.03em; }
.fact span { font-size: 14px; color: var(--ink-60); }

/* ---------- about + stats --------------------------------------------- */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.about__media { border-radius: var(--r-card); overflow: hidden; position: relative; aspect-ratio: 4 / 3; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__tag { position: absolute; inset-block-start: 20px; inset-inline-start: 20px; background: var(--mint); color: var(--ink); border-radius: 10px; padding: 10px 14px; font-size: 13px; font-weight: 500; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.stat-card b { font-size: 40px; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.stat-card strong { font-size: 16px; font-weight: 500; }
.stat-card span { font-size: 14px; color: var(--ink-60); }
@media (max-width: 1000px) { .about { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- property cards -------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
@media (max-width: 1000px) { .card-grid, .card-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .card-grid, .card-grid--3 { grid-template-columns: 1fr; } }

.card { display: flex; flex-direction: column; gap: 16px; container: card / inline-size; }
.card__media { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 512 / 425; background: var(--mint-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card__badge { position: absolute; inset-block-start: 16px; inset-inline-start: 16px; background: var(--mint); color: var(--ink); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 500; }
.card__go { position: absolute; inset-block-end: 16px; inset-inline-end: 16px; }
.card__body { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.card__title { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.card__title h3 { margin: 0; font-size: 21px; font-weight: 500; letter-spacing: -.03em; overflow-wrap: anywhere; }
.card__title p { margin: 0; font-size: 14px; color: var(--ink-60); }
.card__stats { display: flex; flex-wrap: wrap; gap: 8px; }
.card__stat { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-60); background: var(--ink-05); border-radius: 999px; padding: 6px 12px; }
.card__stat svg { width: 15px; height: 15px; }
@container card (max-width: 340px) { .card__title h3 { font-size: 19px; } }

/* ---------- numbered "why us" ------------------------------------------ */
.why { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 16px; align-items: stretch; }
.why__col { display: flex; flex-direction: column; gap: 16px; }
.why__card { border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.why__card b { font-size: 44px; font-weight: 500; line-height: 1; letter-spacing: -.04em; color: var(--ink); }
.why__card strong { font-size: 18px; font-weight: 500; }
.why__card span { font-size: 14px; color: var(--ink-60); }
.why__media { border-radius: var(--r-card); overflow: hidden; min-height: 320px; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) { .why { grid-template-columns: 1fr 1fr; } .why__media { grid-column: 1 / -1; min-height: 240px; order: -1; } }
@media (max-width: 640px) { .why { grid-template-columns: 1fr; } }

/* ---------- carousel --------------------------------------------------- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-block-end: 8px; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__item { flex: 0 0 min(720px, 82%); scroll-snap-align: center; position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 16 / 10; }
.carousel__item img { width: 100%; height: 100%; object-fit: cover; }
.carousel__cap { position: absolute; inset-block-end: 0; inset-inline: 0; padding: 28px; color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,.78), transparent); display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.carousel__cap h3 { margin: 0 0 6px; font-size: clamp(22px, 2.4vw, 32px); font-weight: 500; letter-spacing: -.03em; }
.carousel__cap p { margin: 0; font-size: 14px; color: var(--white-70); max-width: 46ch; }
.carousel__nav { display: flex; justify-content: center; gap: 12px; margin-block-start: 28px; }

/* ---------- faq -------------------------------------------------------- */
.faq-head { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-block-end: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: start; cursor: pointer; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.faq-q svg { width: 22px; height: 22px; flex: none; transition: transform .3s ease; }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; color: var(--ink-60); font-size: 16px; }
.faq-item[data-open="true"] .faq-a { max-height: 480px; padding-block-end: 24px; }
@media (max-width: 1000px) { .faq-head { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- detail page ------------------------------------------------ */
.detail-hero { display: flex; flex-direction: column; gap: 28px; }
.detail-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.detail-gallery__main { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 3 / 2; }
.detail-gallery__side { display: grid; gap: 16px; grid-template-rows: 1fr 1fr; }
.detail-gallery__cell { border-radius: var(--r-card); overflow: hidden; position: relative; background: var(--mint-soft); }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .5s ease; }
.detail-gallery img:hover { transform: scale(1.03); }
.gallery-more { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(22,22,22,.6); color: var(--white); font-size: 15px; font-weight: 500; cursor: pointer; }
@media (max-width: 900px) { .detail-gallery { grid-template-columns: 1fr; } }

.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.detail-body { display: flex; flex-direction: column; gap: 28px; }
.detail-body p { margin: 0; color: var(--ink-60); line-height: 1.75; }
.detail-body h2 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -.03em; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.spec-row { display: flex; flex-wrap: wrap; gap: 12px; }
.spec { display: inline-flex; align-items: center; gap: 8px; background: var(--mint-soft); border-radius: 999px; padding: 10px 16px; font-size: 14px; }
.spec svg { width: 17px; height: 17px; }
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.offer { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.offer svg { width: 18px; height: 18px; color: var(--ink); flex: none; }
.book { border-radius: var(--r-card); background: var(--mint-soft); padding: 28px; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 24px; }
.book h2 { margin: 0; font-size: 22px; font-weight: 500; letter-spacing: -.03em; }
.notice { border: 1px solid #E8D9A8; background: #FDF8E9; color: #6B5412; border-radius: 12px; padding: 14px 18px; font-size: 14px; }
@media (max-width: 1000px) { .detail-grid { grid-template-columns: 1fr; gap: 36px; } .offers { grid-template-columns: 1fr; } }

.map-frame { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 16 / 9; background: var(--mint-soft); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-load { position: absolute; inset: 0; width: 100%; border: 0; background: var(--mint-soft); color: var(--ink-60); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; font-size: 15px; }
.map-load:hover { background: var(--mint-pale); color: var(--ink); }
.map-load svg { width: 28px; height: 28px; }
.map-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-block-start: 14px; }
.map-meta p { display: flex; align-items: center; gap: 8px; margin: 0; }
.map-meta svg { width: 18px; height: 18px; flex: none; }

/* ---------- lightbox --------------------------------------------------- */
.lightbox { position: fixed; inset: 0; background: rgba(10,10,10,.94); z-index: 200; display: none; place-items: center; }
.lightbox[data-open="true"] { display: grid; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; object-fit: contain; }
.lightbox__bar { position: absolute; inset-block-start: 24px; inset-inline: 24px; display: flex; justify-content: space-between; align-items: center; color: var(--white); }
.lb-btn { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); color: var(--white); border: 0; display: grid; place-items: center; cursor: pointer; }
.lb-btn:hover { background: rgba(255,255,255,.3); }
.lb-btn svg { width: 22px; height: 22px; }
.lightbox__nav { position: absolute; inset-inline: 24px; inset-block-start: 50%; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; }
.lightbox__nav .lb-btn { pointer-events: auto; }
[dir="rtl"] .lightbox__nav { flex-direction: row-reverse; }

/* ---------- menu ------------------------------------------------------- */
.menu-backdrop { position: fixed; inset: 0; background: rgba(22,22,22,.45); z-index: 100; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.menu-panel {
  position: fixed; inset-block: 0; inset-inline-end: 0; width: clamp(320px, 34%, 520px);
  background: var(--ink); color: var(--white); z-index: 101; display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
[dir="rtl"] .menu-panel { transform: translateX(-100%); }
body[data-menu="open"] .menu-backdrop { opacity: 1; visibility: visible; }
body[data-menu="open"] .menu-panel { transform: none; }
.menu-head { display: flex; padding: 32px 44px 0; }
.menu-close { width: 46px; height: 46px; border-radius: 50%; background: var(--mint); color: var(--ink); border: 0; display: grid; place-items: center; cursor: pointer; transition: transform .25s ease; }
.menu-close:hover { transform: rotate(90deg); }
.menu-close svg { width: 20px; height: 20px; }
.menu-body { display: flex; flex-direction: column; gap: 48px; padding: 48px 44px; }
.menu-nav { display: flex; flex-direction: column; gap: 12px; }
.menu-nav a { font-size: 30px; font-weight: 500; letter-spacing: -.03em; color: rgba(255,255,255,.45); transition: color .2s ease; display: flex; align-items: center; gap: 12px; }
.menu-nav a:hover { color: var(--white); }
.menu-nav a[aria-current="page"] { color: var(--mint); }
.menu-group { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.menu-group h2 { margin: 0 0 2px; font-size: 15px; font-weight: 400; color: rgba(255,255,255,.45); }
.menu-group a, .menu-group p { margin: 0; font-size: 17px; text-align: start; }
.menu-group a:hover { color: var(--mint); }
@media (max-width: 900px) { .menu-head { padding: 24px 28px 0; } .menu-body { gap: 32px; padding: 32px 28px; } .menu-nav a { font-size: 25px; } }

/* ---------- footer ----------------------------------------------------- */
.footer { background: var(--ink); color: var(--white); padding-block-start: 72px; overflow: hidden; }
.footer__mark { font-size: clamp(64px, 17vw, 240px); font-weight: 500; letter-spacing: -.06em; line-height: .8;
  color: rgba(255,255,255,.06); text-align: center; user-select: none; margin-block-end: -8px; }
.footer__top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-block: 48px; border-block-start: 1px solid rgba(255,255,255,.1); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 340px; }
.footer__brand img { height: 38px; width: auto; }
.footer__brand p { margin: 0; font-size: 15px; color: rgba(255,255,255,.55); }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.footer__col h2 { margin: 0 0 6px; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer__col a { font-size: 15px; color: rgba(255,255,255,.75); transition: color .2s ease; }
.footer__col a:hover { color: var(--mint); }
.footer__apts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 28px; }
.subfooter { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-block: 22px; padding-inline-end: 76px; border-block-start: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: rgba(255,255,255,.45); }
.subfooter a { color: rgba(255,255,255,.75); }
.subfooter a:hover { color: var(--mint); }
.subfooter__links { display: flex; gap: 24px; flex-wrap: wrap; }
@media (max-width: 820px) {
  /* side by side the apartment sub-grid drops to ~70px cells, too narrow for
     names like "Seychelles" or "Политика конфиденциальности" */
  .footer__cols { flex-direction: column; gap: 32px; width: 100%; }
  .footer__col { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 700px) {
  .subfooter { padding-inline-end: 0; padding-block-end: 88px; }
}

/* ---------- floating whatsapp ------------------------------------------ */
.wa-float { position: fixed; inset-block-end: calc(22px + env(safe-area-inset-bottom)); inset-inline-end: calc(22px + env(safe-area-inset-right));
  z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: var(--white);
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transition: transform .2s ease, opacity .25s ease, visibility .25s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float.is-hidden { opacity: 0; visibility: hidden; transform: scale(.8); pointer-events: none; }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- 404 -------------------------------------------------------- */
.nf { min-height: 66vh; display: grid; place-items: center; text-align: center; }
.nf__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 620px; }

/* ---------- scroll reveal ---------------------------------------------- */
html.js [data-reveal] { opacity: 0; transform: translateY(18px); }
html.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity .5s cubic-bezier(.22,.61,.36,1), transform .5s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- touch targets ---------------------------------------------- */
@media (pointer: coarse) {
  .footer__col a, .footer__apts a, .subfooter__links a, .menu-group a { min-height: 44px; display: flex; align-items: center; width: 100%; }
  .card__title h3 a { display: block; padding-block: 10px; margin-block: -10px; }
  .hero__dot { width: 40px; height: 44px; padding-block: 20px; }
  .hero__dots { gap: 4px; }
  .footer__col { gap: 2px; }
  .footer__apts { gap: 2px 28px; }
  .menu-nav a { min-height: 44px; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
}
