/* =====================================================================
   White Villa — styles.css
   A premium, static landing page. Organised top-to-bottom:
   1. Tokens   2. Reset/base   3. Typography   4. Buttons & utilities
   5. Header / nav   6. Hero   7. Sections (about → footer)
   8. Lightbox   9. Reveal animations   10. Responsive
   Colours, spacing and type are driven by the custom properties below —
   change them in one place to re-skin the whole site.
   ===================================================================== */

/* ============================== 1. TOKENS ============================== */
:root {
  /* Palette — warm sand base, deep espresso ink, muted sea-green accent */
  --bg:          #faf7f1;
  --sand:        #f1eadd;
  --sand-deep:   #e8dfcd;
  --surface:     #ffffff;
  --ink:         #211c16;
  --ink-soft:    #5c5349;
  --ink-faint:   #8a8175;
  --line:        rgba(33, 28, 22, 0.12);
  --line-soft:   rgba(33, 28, 22, 0.07);
  --accent:      #3c6657;   /* muted sea green */
  --accent-deep: #2c4d41;
  --gold:        #a9824f;   /* bronze, used sparingly */
  --dark:        #1c2420;   /* deep green-charcoal for dark sections */

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Jost', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -28px rgba(33, 28, 22, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(33, 28, 22, 0.4);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.25s;
  --t: 0.45s;
}

/* ============================== 2. RESET ============================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, button { font-family: inherit; }

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--ink); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: var(--radius); z-index: 200; transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================== 3. LAYOUT / TYPE ============================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--dark); color: #f3ede2; }
[id] { scroll-margin-top: 5.6rem; }

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--light { color: #d9cdb6; }
.eyebrow--light::before { background: rgba(255,255,255,0.5); }
.hero__content .eyebrow--light {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  letter-spacing: 0.18em;
  line-height: 1.2;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(20,16,12,0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #efe1cb;
  text-shadow: 0 2px 18px rgba(0,0,0,0.32);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.hero__content .eyebrow--light::before { background: rgba(255,255,255,0.62); }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
p { color: var(--ink-soft); }
.section--dark p { color: #c8c0b2; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__sub { margin-top: 1rem; font-size: 1.08rem; }
.section-head--light .h2 { color: #f6f1e8; }

/* ============================== 4. BUTTONS ============================== */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0); }
.btn:disabled { cursor: progress; opacity: 0.68; transform: none; box-shadow: none; }

.btn--primary { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--accent); border-color: var(--accent); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ghost-light, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--ghost-light:hover, .hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--sand); border-color: var(--sand); }

.btn--whatsapp { background: #1faa55; color: #fff; border-color: #1faa55; }
.btn--whatsapp:hover { background: #168f46; border-color: #168f46; }
.btn--whatsapp svg { fill: currentColor; }

/* ============================== 5. HEADER ============================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  padding-block: 1.2rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 0.75rem;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  min-width: 10.5rem;
  color: #fff; transition: color var(--t);
}
.site-header.is-scrolled .brand { color: var(--ink); }
.brand__mark { display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; min-width: 6.9rem; }
.brand__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.02em; }
.brand__sub {
  display: block;
  width: 6.9rem;
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.75; margin-top: 3px;
}

.nav__list { display: flex; gap: clamp(0.85rem, 1.6vw, 1.6rem); }
.nav__list a {
  position: relative;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  padding-block: 0.3rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.site-header.is-scrolled .nav__list a { color: var(--ink-soft); }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: currentColor; transition: width var(--t) var(--ease);
}
.nav__list a:hover { color: var(--accent); }
.nav__list a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1.1rem; flex-shrink: 0; }
.header__cta {
  padding: 0.65rem 1.3rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Language switch */
.lang-switch { display: inline-flex; align-items: center; gap: 0.55rem; }
.lang-switch button {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; opacity: 0.65; padding: 0.2rem 0;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.site-header.is-scrolled .lang-switch button { color: var(--ink-soft); }
.lang-switch button:hover { opacity: 1; }
.lang-switch button.is-active { opacity: 1; font-weight: 500; }
.site-header.is-scrolled .lang-switch button.is-active { color: var(--ink); }
.lang-switch__sep { width: 1px; height: 12px; background: rgba(255,255,255,0.4); }
.site-header.is-scrolled .lang-switch__sep { background: var(--line); }

/* Language switch inside the mobile menu (on a light background) */
.lang-switch--menu { justify-content: center; margin-top: 1.8rem; gap: 0.9rem; }
.lang-switch--menu button { color: var(--ink); font-size: 0.82rem; opacity: 0.55; }
.lang-switch--menu button.is-active { color: var(--ink); opacity: 1; }
.lang-switch--menu .lang-switch__sep { background: var(--line); height: 14px; }
.site-header:not(.is-scrolled) .header__cta {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}
.site-header:not(.is-scrolled) .header__cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* burger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 130; }
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: #fff;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast), background var(--t);
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--bg);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; }
.mobile-menu__list { text-align: center; display: grid; gap: 0.4rem; margin-bottom: 1.5rem; }
.mobile-menu__cta { margin-top: 1.6rem; }
.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 500; color: var(--ink);
  display: inline-block; padding: 0.4rem 1rem;
  opacity: 0; transform: translateY(14px);
}
.mobile-menu.is-open .mobile-menu__list a { animation: menuIn 0.5s var(--ease) forwards; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(1) a { animation-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) a { animation-delay: 0.13s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) a { animation-delay: 0.18s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) a { animation-delay: 0.23s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(5) a { animation-delay: 0.28s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(6) a { animation-delay: 0.33s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(7) a { animation-delay: 0.38s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(8) a { animation-delay: 0.43s; }
.mobile-menu__cta { opacity: 0; }
.mobile-menu.is-open .mobile-menu__cta { animation: menuIn 0.5s var(--ease) 0.5s forwards; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

/* ============================== 6. HERO ============================== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding-block: clamp(6.8rem, 10vw, 8.8rem) clamp(2rem, 4vw, 3.5rem);
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__img { animation: none; } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(94deg, rgba(16,12,9,0.78) 0%, rgba(16,12,9,0.28) 45%, rgba(16,12,9,0.1) 72%, rgba(16,12,9,0.32) 100%),
    linear-gradient(180deg, rgba(20,16,12,0.28) 0%, rgba(20,16,12,0.12) 30%, rgba(20,16,12,0.28) 64%, rgba(20,16,12,0.82) 100%);
}
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 6rem);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  padding-top: clamp(0.8rem, 2vh, 1.6rem);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  text-wrap: balance;
}
.hero__sub {
  margin-top: 1rem;
  max-width: 31rem;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.58;
  text-wrap: pretty;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.hero__fact {
  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-wrap: wrap;
  min-height: 4.45rem;
  gap: 0.45rem 0.65rem;
  padding: 0.82rem 0.95rem;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1rem;
  background: rgba(20,16,12,0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 54px rgba(0,0,0,0.12);
}
.hero__fact + .hero__fact { border-left: 0; }
.hero__fact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold);
  flex: none;
}
.hero__fact-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__fact-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
}
.hero__fact-label, .hero__fact-text {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: normal;
}
.hero__fact-text {
  max-width: 100%;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.4rem; }
.hero__quote {
  margin-top: 1.55rem;
  max-width: 31rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1rem;
  background: rgba(20,16,12,0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 54px rgba(0,0,0,0.12);
}
.hero__quote-stars {
  color: #dcc29d;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}
.hero__quote blockquote {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.38;
  color: #fff;
  font-style: italic;
  text-wrap: pretty;
}
.hero__quote figcaption {
  display: grid;
  gap: 0.16rem;
  margin-top: 0.85rem;
}
.hero__quote figcaption strong {
  color: #efe1ca;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__quote figcaption span {
  color: rgba(255,255,255,0.74);
  font-size: 0.82rem;
}
.hero__aside { position: relative; z-index: 2; }
.hero-card {
  padding: clamp(0.95rem, 1.8vw, 1.35rem);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1.3rem;
  background: rgba(250,247,241,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}
.hero-card__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0dcc0;
}
.hero-card__title {
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  line-height: 1.08;
  color: #fff;
}
.hero-card__sub {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}
.hero-card__proof {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.hero-card__proof li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.86rem;
  line-height: 1.45;
}
.hero-card__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d2b182;
}
.hero-card__form {
  margin-top: 1rem;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border-radius: 1rem;
  box-shadow: none;
}
.hero-card__form .cta__form-intro {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
}
.hero-card__form .field { margin-bottom: 0.78rem; }
.hero-card__form .field label {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.hero-card__form .field input,
.hero-card__form .field textarea {
  padding: 0.72rem 0.85rem;
  font-size: 0.95rem;
}
.hero-card__form .field textarea {
  min-height: 5.5rem;
}
.hero-card__optional {
  margin-bottom: 0.78rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.04);
}
.hero-card__optional summary {
  list-style: none;
  padding: 0.8rem 0.95rem;
  color: rgba(255,255,255,0.86);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-card__optional summary::-webkit-details-marker { display: none; }
.hero-card__optional[open] summary {
  padding-bottom: 0.45rem;
}
.hero-card__optional .field {
  margin: 0;
  padding: 0 0.95rem 0.95rem;
}
.hero-card__form .cta__form-note,
.hero-card__form .cta__form-status {
  text-align: left;
}
.cta__form-helper {
  margin: -0.12rem 0 0.68rem;
  color: rgba(255,255,255,0.74);
  font-size: 0.75rem;
  line-height: 1.4;
}
.availability-status {
  position: relative;
  margin: -0.25rem 0 0.9rem;
  padding-left: 1.05rem;
  color: var(--ink-faint);
  font-size: 0.78rem;
  line-height: 1.45;
}
.availability-status::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #b48a4b;
}
.availability-status.is-success { color: #2e6c57; }
.availability-status.is-success::before { background: #2e6c57; }
.availability-status.is-error { color: #8c3f35; }
.availability-status.is-error::before { background: #8c3f35; }
.availability-status[hidden] { display: none; }
.hero-card__quicklinks {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.hero-card__quicklinks-label {
  color: rgba(255,255,255,0.76);
  font-size: 0.8rem;
  line-height: 1.4;
}
.hero-card__quicklinks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-card__quicklink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.hero-card__quicklink:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}
.hero__highlights { display: none; }
.hero-highlight {
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  background: rgba(20,16,12,0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-highlight__eyebrow {
  display: inline-block;
  color: #f0dcc0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-highlight p {
  margin-top: 0.65rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 56px; overflow: hidden;
}
.hero__scroll-line { display: block; width: 1px; height: 100%; background: rgba(255,255,255,0.4); position: relative; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: #fff; animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(260%);} }

/* ============================== 7a. ABOUT ============================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__meta { display: flex; gap: 2.5rem; margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.about__meta > div { display: flex; flex-direction: column; }
.about__meta-num { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--ink); }
.about__meta-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.4rem; }
.about__text p + p { margin-top: 1.1rem; }
.about__text .lede { margin-bottom: 1.1rem; }

.about__media { position: relative; }
.about__figure { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about__figure picture { width: 100%; height: 100%; }
.about__figure img { width: 100%; height: 100%; object-fit: cover; }
.about__figure--main { aspect-ratio: 4 / 3.2; }
.about__figure--accent {
  position: absolute; right: -1.4rem; bottom: -1.8rem;
  width: 42%; aspect-ratio: 3 / 3.4;
  border: 6px solid var(--bg);
  border-radius: var(--radius-lg);
}

/* ============================== 7b. HIGHLIGHTS ============================== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.fit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.fit-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.fit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.fit-card:hover .fit-card__media img { transform: scale(1.04); }
.fit-card__body { padding: clamp(1.3rem, 2vw, 1.65rem); }
.fit-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}
.fit-card p {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
.fit-card__points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}
.fit-card__points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.fit-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================== 7c. HIGHLIGHTS ============================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  background: var(--sand);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  transition: background var(--t), transform var(--t);
}
.feature:hover { background: var(--surface); }
.feature__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(60,102,87,0.1);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature p { font-size: 0.95rem; }

/* ============================== 7c. GALLERY ============================== */
.gallery__shell { max-width: 1480px; }
.gallery__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 35rem);
  gap: 1.5rem 2.5rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__head {
  max-width: 34rem;
  margin-bottom: 0;
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 0;
}

.gallery__filters[hidden] {
  display: none;
}
.chip {
  padding: 0.65rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--t-fast), border-color var(--t-fast), color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.chip:hover {
  border-color: rgba(33, 28, 22, 0.22);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(160px, 15vw, 250px);
  grid-auto-flow: dense;
  gap: clamp(0.7rem, 1vw, 1rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
  background: var(--sand-deep);
  box-shadow: 0 22px 45px -34px rgba(33, 28, 22, 0.45);
  isolation: isolate;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.02) 6%, rgba(20,16,12,0.08) 42%, rgba(20,16,12,0.46) 100%);
  opacity: 0.74;
  transition: opacity var(--t-fast);
  pointer-events: none;
}
.gallery__item--hero { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--pool { order: 1; }
.gallery__item--large-bedroom { order: 2; }
.gallery__item--living { order: 3; }
.gallery__item--kitchen { order: 4; }
.gallery__item--games { order: 5; }
.gallery__item--twin { order: 6; }
.gallery__item--garden { order: 7; }
.gallery__item--dining { order: 8; }
.gallery__item--bath { order: 9; }
.gallery__item--extra { order: 20; }
.gallery__item--pool img { object-position: 50% 54%; }
.gallery__item--large-bedroom img { object-position: 50% 57%; }
.gallery__item--living img { object-position: 50% 50%; }
.gallery__item--kitchen img { object-position: 54% 50%; }
.gallery__item--games img { object-position: 50% 52%; }
.gallery__item--twin img { object-position: 50% 54%; }
.gallery__item--garden img { object-position: 50% 50%; }
.gallery__item--dining img { object-position: 50% 52%; }
.gallery__item--bath img { object-position: 58% 50%; }
.gallery__item picture, .gallery__item img { width: 100%; height: 100%; }
.gallery__item img {
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter var(--t-fast);
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.04);
}
.gallery__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  display: flex;
  align-items: flex-end;
}
.gallery__cap span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  box-shadow: 0 14px 30px -24px rgba(33, 28, 22, 0.45);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--t-fast), background var(--t-fast);
}
.gallery__item--hero .gallery__cap span {
  padding: 0.6rem 0.95rem;
  font-size: 0.76rem;
}
.gallery__item:hover .gallery__cap span,
.gallery__item:focus-visible .gallery__cap span {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.98);
}
.gallery__item.is-hidden { display: none; }

/* ============================== 7d. ROOMS ============================== */
.rooms__list { display: grid; gap: clamp(3rem, 7vw, 6rem); margin-top: clamp(1rem, 3vw, 2.5rem); }
.room {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.room--reverse .room__media { order: 2; }
.room__media { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.room__picture { width: 100%; height: 100%; }
.room__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.9s var(--ease);
}
.room__image--bedrooms { object-position: 50% 48%; }
.room__image--living { object-position: 50% 52%; }
.room__image--kitchen { object-position: 52% 50%; }
.room__image--pool { object-position: 50% 54%; }
.room__image--gym { object-position: 50% 52%; }
.room:hover .room__image { transform: scale(1.04); }
.room__text .eyebrow { color: var(--gold); }
.room__text .eyebrow::before { background: var(--gold); }
.room__text h3 { margin-bottom: 1rem; }

/* ============================== 7e. AMENITIES ============================== */
.amenities { background: var(--bg); }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
}
.amenity-col { min-width: 0; }
.amenity-col__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.8rem;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
}
.amenity-col__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.amenity-list {
  display: grid;
  gap: 0.72rem;
}
.amenity-list li {
  position: relative;
  min-width: 0;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .amenities__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 850px) {
  .amenities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .amenities__grid { grid-template-columns: minmax(0, 1fr); }
  .amenity-col__title { min-height: 0; }
}

/* ============================== 7f. LOCATION ============================== */
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.location__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.location__chips li {
  background: var(--surface); border: 1px solid var(--line);
  padding: 0.5rem 1rem; border-radius: 30px; font-size: 0.85rem; color: var(--ink-soft);
}
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}
.map-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 3.2; background: #cfe3e1;
}
.map-card__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-card__label {
  position: absolute; z-index: 1; left: 1rem; bottom: 1rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 0.7rem 1rem; border-radius: var(--radius);
  display: grid; color: var(--ink); text-decoration: none; box-shadow: var(--shadow-soft);
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.map-card__label:hover { background: var(--surface); transform: translateY(-2px); }
.map-card__label strong { font-family: var(--font-display); font-size: 1.1rem; }
.map-card__label span { font-size: 0.78rem; color: var(--ink-faint); letter-spacing: 0.04em; }

/* ============================== 7g. IMPORTANT INFO ============================== */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  transition:
    translate 0.62s var(--ease),
    background-color 0.52s var(--ease),
    border-color 0.52s var(--ease),
    box-shadow 0.62s var(--ease);
}
.info-card__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(169,130,79,0.12); color: var(--gold); margin-bottom: 1.1rem;
  transition:
    transform 0.62s var(--ease),
    color 0.5s var(--ease),
    background-color 0.5s var(--ease);
}
.info-card__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.info-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.45rem; }
.info-card p { font-size: 0.94rem; }

/* ============================== 7h. GUEST HIGHLIGHTS ============================== */
.reviews .section-head { max-width: 58rem; }
.reviews .section-head__sub {
  color: #c8c0b2;
  margin-top: 1rem;
  max-width: 46rem;
  text-wrap: pretty;
}
.reviews__source a {
  display: inline;
  color: #f3ede2;
  border-bottom: 1px solid rgba(243,237,226,0.45);
  margin-left: 0.35rem;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.reviews__source a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.review-highlight {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  transition:
    translate 0.62s var(--ease),
    background-color 0.52s var(--ease),
    border-color 0.52s var(--ease),
    box-shadow 0.62s var(--ease);
}
.review-highlight__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-highlight__number {
  color: #b0a896;
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.5s var(--ease);
}
.review-highlight__stars {
  color: var(--gold);
  font-size: 0.82rem;
  line-height: 1;
  transition: transform 0.62s var(--ease), color 0.5s var(--ease);
}
.review-highlight h3 {
  color: #f3ede2;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-wrap: pretty;
}
.review-highlight p {
  color: #c8c0b2;
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 34rem;
  text-wrap: pretty;
}

@media (hover: hover) and (pointer: fine) {
  .info-card:hover {
    translate: 0 -5px;
    background: #fff;
    border-color: rgba(169,130,79,0.32);
    box-shadow: var(--shadow-soft);
  }
  .info-card:hover .info-card__icon {
    transform: translateY(-2px) rotate(-3deg);
    color: var(--accent-deep);
    background: rgba(60,102,87,0.12);
  }
  .review-highlight:hover {
    translate: 0 -5px;
    background: rgba(255,255,255,0.075);
    border-color: rgba(169,130,79,0.42);
    box-shadow: 0 18px 38px -28px rgba(0,0,0,0.75);
  }
  .review-highlight:hover .review-highlight__number { color: #e1ba7e; }
  .review-highlight:hover .review-highlight__stars {
    color: #e1ba7e;
    transform: translateY(-2px);
  }
}

/* ============================== 7i. FAQ ============================== */
.faq__inner { max-width: 60rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { margin: 0; }
.faq__q button {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0.2rem; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 500; color: var(--ink);
  transition: color var(--t-fast);
}
.faq__q button:hover { color: var(--accent); }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform var(--t) var(--ease);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t) var(--ease);
}
.faq__a p { padding: 0 3rem 1.6rem 0.2rem; color: var(--ink-soft); }

/* ============================== 7j. Enquiry form ============================== */
.cta__form {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.cta__form-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1.2rem; }
.cta__form-intro {
  margin: -0.4rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  text-wrap: pretty;
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); color: var(--ink); font-size: 0.98rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field textarea { resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-date-input[readonly] { cursor: pointer; }

/* Hospitable-backed date picker. Flatpickr itself is vendored locally. */
.flatpickr-calendar {
  width: 308px;
  max-width: calc(100vw - 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px -20px rgba(33, 28, 22, 0.4);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.88rem;
}
.flatpickr-calendar.open { z-index: 260; }
.flatpickr-calendar.arrowTop::before { border-bottom-color: var(--line); }
.flatpickr-calendar.arrowTop::after { border-bottom-color: var(--surface); }
.flatpickr-calendar.arrowBottom::before { border-top-color: var(--line); }
.flatpickr-calendar.arrowBottom::after { border-top-color: var(--surface); }
.flatpickr-months,
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
  background: transparent;
  color: var(--ink);
}
.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 500;
}
.flatpickr-current-month .numInputWrapper span.arrowUp::after { border-bottom-color: var(--ink-soft); }
.flatpickr-current-month .numInputWrapper span.arrowDown::after { border-top-color: var(--ink-soft); }
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month { color: var(--ink-soft); fill: var(--ink-soft); }
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover { color: var(--accent); fill: var(--accent); }
span.flatpickr-weekday {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
}
.flatpickr-day {
  border-radius: 4px;
  color: var(--ink-soft);
  font-weight: 400;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  border-color: var(--sand-deep);
  background: var(--sand);
}
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day.today:hover,
.flatpickr-day.today:focus { border-color: var(--gold); background: var(--sand); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  border-color: transparent;
  background: transparent;
  color: rgba(92, 83, 73, 0.32);
  cursor: not-allowed;
}
.flatpickr-day.is-occupied,
.flatpickr-day.is-occupied:hover {
  background: rgba(140, 63, 53, 0.06);
  color: rgba(140, 63, 53, 0.42);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.flatpickr-day.is-restricted,
.flatpickr-day.is-restricted:hover {
  background: rgba(169, 130, 79, 0.08);
  color: rgba(92, 83, 73, 0.38);
}
input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.stepper:focus-within { border-color: var(--accent); background: #fff; }
.stepper__btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.stepper__btn:hover { background: #fff; color: var(--ink); }
.stepper__btn:active { background: var(--sand); }
.stepper__btn span { font-size: 1.15rem; line-height: 1; }
.stepper input {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  padding-inline: 0.25rem;
}
.stepper input:focus { outline: none; background: transparent; }
.cta__form-submit { width: 100%; margin-top: 0.4rem; }
.cta__form-note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 0.8rem; text-align: center; }
.cta__form-status {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
  color: var(--ink-soft);
}
.cta__form-status.is-success { color: #2e6c57; }
.cta__form-status.is-error { color: #8c3f35; }
.cta__form-status[hidden] { display: none; }
/* ============================== FOOTER ============================== */
.footer { background: var(--dark); color: #cfc7b8; padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.brand--footer { color: #fff; margin-bottom: 1.2rem; }
.footer__blurb { max-width: 26rem; font-size: 0.95rem; color: #a89f8f; }
.footer h4 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; font-weight: 500; }
.footer__nav ul, .footer__contact ul { display: grid; gap: 0.6rem; }
.footer__nav a, .footer__contact a { color: #b8b0a1; font-size: 0.95rem; transition: color var(--t-fast); }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social[hidden] { display: none; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18); color: #cfc7b8; transition: all var(--t-fast);
}
.footer__social a svg { fill: currentColor; }
.footer__social a:hover { background: #fff; color: var(--dark); border-color: #fff; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem;
  font-size: 0.82rem; color: #8f8678;
}

/* ============================== ANALYTICS CONSENT ============================== */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 240;
  width: min(calc(100% - 2rem), 860px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(33, 28, 22, 0.2);
  transform: translateX(-50%);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent__copy { min-width: 0; }
.cookie-consent__title {
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
}
.cookie-consent__copy > :last-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}
.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.cookie-consent__button {
  min-height: 44px;
  padding: 0.75rem 1.1rem;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .cookie-consent { grid-template-columns: minmax(0, 1fr); }
  .cookie-consent__actions { justify-content: flex-end; }
}

@media (max-width: 520px) {
  .cookie-consent { width: calc(100% - 1rem); bottom: 0.5rem; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; white-space: normal; }
}

/* ============================== STICKY CTA (mobile) ============================== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 0.6rem; padding: 0.7rem;
  background: rgba(250,247,241,0.95); backdrop-filter: blur(10px);
  box-shadow: 0 -2px 20px -8px rgba(0,0,0,0.3);
  transform: translateY(120%); transition: transform var(--t) var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.85rem; border-radius: 40px;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.sticky-cta__btn--wa { background: #1faa55; color: #fff; }
.sticky-cta__btn--wa svg { fill: currentColor; }
.sticky-cta__btn--book { background: var(--ink); color: #fff; }

/* ============================== 8. LIGHTBOX ============================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16,13,10,0.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; transition: opacity var(--t);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure {
  width: min(1100px, 92vw); max-height: 86vh; margin: 0; text-align: center;
  opacity: 0; transform: scale(0.965);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.lightbox.is-open .lightbox__figure { opacity: 1; transform: scale(1); }
.lightbox__img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0,0,0,0.8);
}
.lightbox__caption { color: #d9d2c6; font-size: 0.85rem; letter-spacing: 0.08em; margin-top: 1rem; text-transform: uppercase; }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.4rem; color: #fff; font-size: 2.4rem; line-height: 1;
  width: 48px; height: 48px; border-radius: 50%; transition: background var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.12); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 2.6rem; line-height: 1;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; transition: background var(--t-fast);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.12); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 2rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 2rem); }

/* ============================== 9. REVEAL ============================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .info-card,
  .info-card__icon,
  .review-highlight,
  .review-highlight__stars { transition: none; }
  .info-card:hover,
  .review-highlight:hover { translate: none; }
  .info-card:hover .info-card__icon,
  .review-highlight:hover .review-highlight__stars { transform: none; }
  .hero__scroll-line::after { animation: none; }
  /* Menu links rely on an entrance animation to become visible — keep them
     visible (no animation) so the menu is never blank for reduced-motion users. */
  .mobile-menu.is-open .mobile-menu__list a,
  .mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: none; animation: none; }
}

/* ============================== 10. RESPONSIVE ============================== */
@media (max-width: 1024px) {
  .hero__highlights { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1220px) and (min-width: 901px) {
  .header__inner { gap: 1rem; }
  .nav__list { gap: 0.72rem; }
  .nav__list a {
    font-size: 0.77rem;
    letter-spacing: 0.06em;
  }
  .header__actions { gap: 0.85rem; }
  .header__cta { padding-inline: 1.15rem; }
  .lang-switch button {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.95fr);
    gap: 1.55rem;
  }
  .hero__title { font-size: clamp(2.45rem, 4.2vw, 3.8rem); }
  .hero__facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery__top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery__filters { justify-content: flex-start; }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(165px, 18vw, 235px);
  }
}

@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: block; }

  .hero {
    padding-top: 6.3rem;
    padding-bottom: 2rem;
  }
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }
  .hero__content { max-width: none; }
  .hero__aside { max-width: 40rem; }
  .hero__scroll { display: none; }
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .about__media { margin-top: 1rem; max-width: 32rem; }
  .about__figure--accent { width: 38%; right: 0; bottom: -1.2rem; }

  .room, .room--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .room--reverse .room__media { order: 0; }
  .room__media { aspect-ratio: 16 / 11; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .sticky-cta { display: flex; }
  /* leave room for the sticky bar */
  .footer { padding-bottom: 5rem; }

  .gallery__top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery__filters { justify-content: flex-start; }

  /* gallery: simpler two-column on tablet */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(175px, 32vw, 250px); }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--hero { grid-column: span 1; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__cap { padding: 0.85rem; }
  .gallery__cap span { width: min(100%, 20rem); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  .hero__content .eyebrow--light {
    letter-spacing: 0.14em;
    font-size: 0.68rem;
  }
  .hero__fact {
    min-height: 3.05rem;
    padding: 0.55rem 0.65rem;
    border-left: 0;
  }
  .hero__fact + .hero__fact { border-left: 0; }
  .hero__fact--wide { grid-column: 1 / -1; }
  .hero__fact-label, .hero__fact-text { font-size: 0.7rem; }
  .hero__fact-text { max-width: none; }
  .hero__quote { max-width: none; }
  .hero-card { padding: 0.85rem; }
  .hero-card__title { font-size: 1.55rem; }
  .hero-card__sub { font-size: 0.88rem; }
  .field--row { grid-template-columns: 1fr; }
  .location__actions > .btn { width: 100%; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 2rem; }
}

/* ============================== WEB MERGE: QUIETER BOOKING FLOW ============================== */
.hero--solo {
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: visible;
}
.hero--solo .hero__media { overflow: hidden; }
.hero--solo .hero__content {
  width: 100%;
  max-width: 52rem;
  padding-top: clamp(1rem, 3vh, 2rem);
}
.hero--solo .hero__title { max-width: 50rem; }
.hero--solo .hero__sub { max-width: 38rem; font-weight: 300; line-height: 1.7; }
.hero--solo .hero__facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 52rem;
  margin-top: 1.8rem;
}
.hero--solo .hero__fact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 5.4rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.2);
  background: rgba(20,16,12,0.28);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.hero--solo .hero__fact:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.42);
  background: rgba(20,16,12,0.44);
}
.hero--solo .hero__fact-text {
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
}
.hero .btn--primary {
  --btn-bg: #f6f2ea;
  --btn-fg: var(--ink);
  min-width: 200px;
  border-color: #f6f2ea;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}
.hero .btn--primary:hover { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }
.hero .btn--ghost {
  min-width: 160px;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(16,12,9,0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  background: rgba(20,16,12,0.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.hero__trust:hover { border-color: rgba(255,255,255,0.5); background: rgba(20,16,12,0.5); }
.stars { position: relative; display: inline-block; line-height: 1; vertical-align: middle; }
.stars__base { color: rgba(255,255,255,0.32); }
.stars__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 92%;
  overflow: hidden;
  white-space: nowrap;
  color: #e0c79f;
}
.hero__trust-text { color: rgba(255,255,255,0.92); font-size: 0.9rem; }
.hero__trust-arrow { color: rgba(255,255,255,0.66); font-size: 0.8rem; }

.plan {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
  isolation: isolate;
}
.plan__bg,
.plan__overlay {
  position: absolute;
  inset: 0;
}
.plan__bg { z-index: 0; }
.plan__bg picture,
.plan__bg img {
  display: block;
  width: 100%;
  height: 100%;
}
.plan__bg img {
  object-fit: cover;
  object-position: center 46%;
}
.plan__overlay {
  z-index: 1;
  background: linear-gradient(105deg, rgba(17, 25, 21, 0.9) 0%, rgba(17, 25, 21, 0.76) 52%, rgba(17, 25, 21, 0.56) 100%);
}
.plan__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.plan__faq .section-head { margin: 0 0 1.4rem; text-align: left; }
.plan__faq .h2 { color: #fff; }
.plan__faq .eyebrow { color: #e0c79f; }
.plan__faq .eyebrow::before { background: #e0c79f; }
.plan__faq .faq__list { border-top: 1px solid rgba(255,255,255,0.24); }
.plan__faq .faq__item { border-bottom-color: rgba(255,255,255,0.24); }
.plan__faq .faq__q button { color: #fff; }
.plan__faq .faq__q button:hover { color: #e0c79f; }
.plan__faq .faq__a p { color: rgba(255,255,255,0.82); }
.book-card {
  position: sticky;
  top: 88px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.book-card__eyebrow {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.book-card__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  line-height: 1.1;
}
.book-card__sub { margin: 0.5rem 0 1.2rem; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.book-card__form { padding: 0; border-radius: 0; background: transparent; box-shadow: none; }
.book-card__form .cta__form-note { text-align: left; }
.book-card__optional { margin-bottom: 0.8rem; border: 1px solid var(--line); border-radius: 6px; }
.book-card__optional summary {
  padding: 0.7rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}
.book-card__optional summary::-webkit-details-marker { display: none; }
.book-card__optional .field { margin: 0; padding: 0 0.9rem 0.9rem; }
.book-card__contacts {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.book-card__contacts-label { color: var(--ink-faint); font-size: 0.82rem; }
.book-card__contacts-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.btn--sm { min-height: 40px; padding: 0.6rem 1rem; font-size: 0.74rem; }

html[lang="ru"] { --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
html[lang="ru"] .btn { letter-spacing: 0.05em; }
html[lang="ru"] .nav__list a { letter-spacing: 0.04em; }
html[lang="ru"] .lang-switch button { letter-spacing: 0.06em; }
html[lang="ru"] .hero__fact-text { letter-spacing: 0.03em; }
html[lang="ru"] .chip { letter-spacing: 0.04em; }
html[lang="ru"] .eyebrow { letter-spacing: 0.16em; }

@media (max-width: 1100px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 900px) {
  .plan__grid { grid-template-columns: 1fr; }
  .book-card { position: static; }
}
@media (max-width: 600px) {
  .hero--solo { min-height: auto; }
  .hero--solo .hero__facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.35rem; }
  .hero--solo .hero__fact { min-height: 5.15rem; gap: 0.25rem; padding: 0.4rem 0.25rem; }
  .hero--solo .hero__fact-text { font-size: 0.58rem; line-height: 1.25; }
  .hero--solo .hero__actions .btn--ghost { display: none; }
  .book-card__contacts-row .btn { flex: 1 1 auto; justify-content: center; }
}
