/* ============================================================
   DOMUS PRATI — Roman luxury editorial v2
   Palette: travertino, crema, inchiostro, ottone
   ============================================================ */

:root {
  --cream: #f5f0e8;
  --cream-deep: #ece4d6;
  --travertine: #d8cbb6;
  --sand: #b9a98e;
  --brass: #a8813f;
  --brass-light: #c9a45c;
  --ink: #211d18;
  --ink-deep: #16130f;
  --ink-soft: #4a443b;
  --white: #fdfbf7;

  --font-display: 'Marcellus', 'Noto Serif SC', serif;
  --font-accent: 'Cormorant Garamond', 'Noto Serif SC', serif;
  --font-body: 'Figtree', 'Noto Serif SC', sans-serif;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 30px 60px -20px rgba(33, 29, 24, .25);
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.04'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); letter-spacing: .01em; }
h2 em, h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

a { color: inherit; }

.kicker {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.kicker--center { text-align: center; }
.kicker--light { color: var(--brass-light); }

.section-title { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.lead { font-size: 1.13rem; color: var(--ink-soft); margin: 1.4rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .4s var(--ease-out);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn--gold { background: var(--brass); color: var(--white); }
.btn--gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.btn--gold:hover::before { transform: translateX(120%); }
.btn--gold:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(33,29,24,.5); }
.btn--ghost {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.btn--full { width: 100%; }
.btn--sm { padding: .65rem 1.1rem; font-size: .72rem; min-height: 44px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .26s; }
.d3 { transition-delay: .42s; }
.d4 { transition-delay: .58s; }
.d5 { transition-delay: .8s; }

/* image wipe reveal */
.img-wipe { position: relative; overflow: hidden; }
.img-wipe::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--cream-deep);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.2s var(--ease-out) .15s;
}
.gallery .img-wipe::after, .booking .img-wipe::after { background: var(--ink); }
.is-visible .img-wipe::after, .img-wipe.is-visible::after { transform: scaleX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .img-wipe::after { opacity: 1; transform: none; transition: none; }
  .img-wipe::after { display: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: var(--ink-deep);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-out), visibility .9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { text-align: center; }
.preloader__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--cream);
  animation: plFade 1.6s var(--ease-out) both;
}
.preloader__rule {
  display: block;
  width: 0; height: 1px;
  margin: 1.1rem auto;
  background: var(--brass-light);
  animation: plRule 1.4s var(--ease-out) .3s forwards;
}
.preloader__sub {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: .3em;
  color: var(--brass-light);
  animation: plFade 1.6s var(--ease-out) .5s both;
}
@keyframes plFade { from { opacity: 0; letter-spacing: .6em; } to { opacity: 1; } }
@keyframes plRule { to { width: 130px; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad-x);
  transition: background .45s, box-shadow .45s, padding .45s;
}
/* blur lives on a pseudo-element: backdrop-filter on .nav itself would turn it
   into the containing block of the fixed fullscreen mobile menu and clip it */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(33, 29, 24, .08);
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.nav.is-scrolled::before { opacity: 1; }
.nav.menu-open::before { opacity: 0; }
.nav > * { position: relative; }
.nav.is-scrolled {
  padding-top: .65rem;
  padding-bottom: .65rem;
}

.nav__brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: .26em;
  color: var(--white);
  transition: color .45s;
  white-space: nowrap;
}
.nav__brand-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: .85rem;
  color: var(--brass-light);
  letter-spacing: .14em;
}
.nav.is-scrolled .nav__brand-name { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
.nav__links a {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  transition: color .35s;
  position: relative;
  white-space: nowrap;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width .35s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav__cta {
  border: 1px solid var(--brass-light);
  padding: .55rem 1.3rem;
  color: var(--white);
}
.nav.is-scrolled .nav__cta { color: var(--brass) !important; border-color: var(--brass); }
.nav__cta:hover { background: var(--brass); color: #fff !important; border-color: var(--brass); }

.nav__right { display: flex; align-items: center; gap: .8rem; }

/* language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  padding: .5rem .85rem;
  cursor: pointer;
  transition: all .35s;
  backdrop-filter: blur(6px);
}
.lang__chev { font-size: .6rem; opacity: .7; }
.nav.is-scrolled .lang__btn { color: var(--ink); border-color: var(--sand); background: transparent; }
.lang__btn:hover { border-color: var(--brass); color: var(--brass-light); }
.nav.is-scrolled .lang__btn:hover { color: var(--brass); }
.lang__menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  min-width: 9.5rem;
  list-style: none;
  background: var(--white);
  box-shadow: 0 20px 50px -15px rgba(33, 29, 24, .35);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .3s var(--ease-out);
  z-index: 110;
}
.lang.is-open .lang__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang__menu li {
  padding: .65rem 1.1rem;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; gap: 1rem;
  transition: background .25s;
}
.lang__menu li:hover { background: var(--cream); }
.lang__menu li.is-active { color: var(--brass); }
.lang__menu li small { opacity: .5; }

/* mobile lang pills inside menu */
.lang--mobile { display: none; }

.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px;
  position: relative; z-index: 110;
  flex: none;
}
.nav__burger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  margin: 8px auto;
  transition: all .4s var(--ease-out);
}
.nav.is-scrolled .nav__burger span, .nav.menu-open .nav__burger span { background: var(--ink); }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4.75px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 8s linear;
}
.hero__slides img.is-active { opacity: 1; transform: scale(1); }
/* heavier at the bottom, where the text sits: the photos are cream/travertine
   like the text colour, so they need real darkening to keep contrast */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20, 17, 13, .92) 0%, rgba(20, 17, 13, .62) 30%, rgba(20, 17, 13, .22) 60%, rgba(20, 17, 13, .42) 100%);
}
.hero__frame {
  position: absolute;
  inset: clamp(.8rem, 2vw, 1.6rem);
  border: 1px solid rgba(245, 240, 232, .22);
  pointer-events: none;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x) clamp(5.5rem, 12vh, 8.5rem);
  max-width: 62rem;
}
.hero__eyebrow {
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #ddbe7e;
  font-weight: 500;
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 10px rgba(20, 17, 13, .65);
}
.hero__title {
  font-size: clamp(2.5rem, 7.2vw, 5.6rem);
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(20, 17, 13, .55);
}
/* the global brass <em> is too dark over the cream-toned photos */
.hero__title em { color: #ddbe7e; }
.hero__line { display: block; }
.hero__sub {
  margin-top: 1.6rem;
  max-width: 33rem;
  font-size: 1.08rem;
  color: rgba(253, 251, 247, .95);
  text-shadow: 0 1px 14px rgba(20, 17, 13, .6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__badge {
  position: absolute;
  right: clamp(2rem, 4vw, 3.5rem);
  bottom: clamp(6rem, 13vh, 9rem);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  font-size: .74rem;
  letter-spacing: .12em;
  border: 1px solid rgba(255, 255, 255, .35);
  padding: .9rem 1.4rem;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .07);
  text-align: center;
}
.hero__badge-star { color: var(--brass-light); font-size: .92rem; letter-spacing: .25em; }

.hero__dots {
  position: absolute;
  left: var(--pad-x);
  bottom: 2.2rem;
  z-index: 3;
  display: flex; gap: .55rem;
}
.hero__dots button {
  width: 26px; height: 2px;
  border: 0;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .4s;
}
.hero__dots button.is-active { background: var(--brass-light); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
  height: 64px; width: 1px;
}
.hero__scroll-line {
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, .5);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, .08);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i { color: var(--brass-light); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   INTRO
   ============================================================ */
.intro { padding: clamp(5rem, 11vw, 9rem) var(--pad-x) 0; position: relative; }
.intro__numeral, .spaces__numeral {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  right: var(--pad-x);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  color: rgba(168, 129, 63, .1);
  pointer-events: none;
  user-select: none;
}
.intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}
.intro__text h2 { margin-bottom: .6rem; }
.intro__media { position: relative; padding-bottom: 4.5rem; }
.intro__img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-soft); }
.intro__img-accent {
  position: absolute;
  bottom: 0;
  left: -2.5rem;
  width: 38%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.intro__img-accent img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
@media (hover: hover) {
  .intro__img-accent:hover img { transform: scale(1.07); }
}

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  max-width: 80rem;
  margin: clamp(4rem, 8vw, 6.5rem) auto 0;
}
.stats li {
  background: var(--cream);
  text-align: center;
  padding: 2.2rem 1rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
}
.stats span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   SPACES
   ============================================================ */
.spaces { padding: clamp(5rem, 11vw, 9rem) var(--pad-x); max-width: 86rem; margin: 0 auto; position: relative; }
.space {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 9vw, 7.5rem);
}
.space:last-child { margin-bottom: 0; }
.space--flip .space__media { order: 2; }
.space--flip .space__text { order: 1; }

.space__media { overflow: hidden; box-shadow: var(--shadow-soft); }
.space__media img {
  width: 100%; aspect-ratio: 7/5; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
@media (hover: hover) {
  .space:hover .space__media img { transform: scale(1.05); }
}

.space__num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 3.2rem;
  color: var(--travertine);
  line-height: 1;
  display: block;
}
.space__text h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: .6rem 0 1rem; }
.space__text p { color: var(--ink-soft); }
.space__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .55rem;
  margin-top: 1.5rem;
}
.space__tags li {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .95rem;
  border: 1px solid var(--travertine);
  color: var(--ink-soft);
  transition: all .35s;
}
.space__tags li:hover { border-color: var(--brass); color: var(--brass); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 11vw, 8.5rem) var(--pad-x);
}
.gallery .kicker { color: var(--brass-light); }

.gallery__filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem;
  margin-bottom: 3rem;
}
.gallery__filter {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .65);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, .25);
  padding: .65rem 1.4rem;
  cursor: pointer;
  transition: all .35s;
}
.gallery__filter:hover { border-color: var(--brass-light); color: var(--cream); }
.gallery__filter.is-active { background: var(--brass); border-color: var(--brass); color: #fff; }

/* grid (not CSS columns: those split items across columns on mobile Safari) */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 80rem;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 0; padding: 0;
  background: none;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  animation: galIn .6s var(--ease-out) both;
}
@keyframes galIn { from { opacity: 0; } }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
@media (hover: hover) {
  .gallery__item:hover img { transform: scale(1.06); }
  .gallery__item:hover::after { opacity: 1; }
}
.gallery__item::after {
  content: '+';
  position: absolute;
  right: .9rem; bottom: .9rem;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: rgba(33, 29, 24, .55);
  color: var(--brass-light);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity .4s;
  backdrop-filter: blur(4px);
}
.gallery__item.is-hidden { display: none; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { padding: clamp(5rem, 11vw, 9rem) var(--pad-x); }
.amenities__inner {
  max-width: 80rem; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.amenities__head { position: sticky; top: 7rem; }
.amenities__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--travertine);
  border: 1px solid var(--travertine);
}
.amenities__list li {
  background: var(--cream);
  padding: 1.7rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background .4s;
}
.amenities__list li:hover { background: var(--white); }
.am-ico { font-size: 1.25rem; color: var(--brass); line-height: 1.4; flex: none; }
.amenities__list strong { display: block; font-weight: 600; font-size: .95rem; }
.amenities__list div span { font-size: .85rem; color: var(--ink-soft); }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--cream-deep); padding: clamp(5rem, 11vw, 9rem) var(--pad-x); }
.location__inner {
  max-width: 80rem; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: stretch;
}
.location__poi { list-style: none; margin-top: 2rem; }
.location__poi li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--travertine);
  transition: padding-left .35s var(--ease-out);
}
.location__poi li:hover { padding-left: .5rem; }
.location__poi strong { font-weight: 500; }
.location__poi span {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--brass);
  white-space: nowrap;
  font-size: 1.05rem;
}
.location__map { min-height: 420px; box-shadow: var(--shadow-soft); }
.location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}
.location__map iframe {
  width: 100%; height: 100%; border: 0;
  filter: sepia(.22) saturate(.85);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: clamp(5rem, 11vw, 9rem) var(--pad-x); max-width: 80rem; margin: 0 auto; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-top: 2px solid var(--brass);
  box-shadow: 0 18px 40px -22px rgba(33, 29, 24, .18);
  transition: transform .5s var(--ease-out), box-shadow .5s;
}
@media (hover: hover) {
  .review:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -22px rgba(33, 29, 24, .28); }
}
.review p {
  font-family: var(--font-accent);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
}
.review footer {
  margin-top: 1.4rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews__link { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); }
.reviews__link a { color: var(--brass); font-weight: 500; text-decoration: none; }
.reviews__link a:hover { text-decoration: underline; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking {
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(168, 129, 63, .25), transparent 50%),
    radial-gradient(100% 120% at 0% 100%, rgba(168, 129, 63, .12), transparent 45%),
    var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 11vw, 9rem) var(--pad-x);
}
.booking__inner {
  max-width: 84rem; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.booking .lead { color: rgba(245, 240, 232, .75); }
.booking__steps { list-style: none; margin: 2rem 0; }
.booking__steps li {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(245, 240, 232, .14);
  font-size: 1rem;
}
.booking__steps strong {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brass-light);
  margin-right: .8rem;
}
.booking__alt { color: rgba(245, 240, 232, .6); font-size: .95rem; }
.booking__alt a { color: var(--brass-light); }

.booking__panel {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .55);
  position: relative;
}

/* ---------- Calendar ---------- */
.cal { margin-bottom: 1.6rem; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
  gap: .5rem;
}
.cal__month-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: capitalize;
  text-align: center;
  color: var(--ink);
  margin-bottom: .55rem;
}
.cal__nav {
  width: 38px; height: 38px;
  border: 1px solid var(--travertine);
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s;
  flex: none;
  color: var(--ink);
}
.cal__nav:hover:not(:disabled) { background: var(--brass); border-color: var(--brass); color: #fff; }
.cal__nav:disabled { opacity: .3; cursor: default; }

.cal__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.cal__month { width: 100%; }
.cal__week, .cal__days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__week span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  padding: .3rem 0;
}
.cal__day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: .82rem;
  font-weight: 400;
  border: 0;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  position: relative;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: background .2s, color .2s;
}
.cal__day:hover:not(:disabled):not(.is-empty) { background: var(--cream-deep); }
.cal__day:focus-visible { outline: 2px solid var(--brass); outline-offset: -3px; }
.cal__day.is-empty { cursor: default; }

/* unavailable (booked) days: muted with a subtle diagonal mark, no strikethrough */
.cal__day:disabled { color: var(--sand); cursor: not-allowed; }
.cal__day.is-busy::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 54%; height: 1px;
  background: rgba(168, 129, 63, .4);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cal__day.is-past { opacity: .3; }
.cal__day.is-na { opacity: .4; } /* free, but not a valid pick for the current check-in */

/* selection + hover preview: continuous band with rounded ends */
.cal__day.is-range { background: rgba(168, 129, 63, .16); border-radius: 0; }
.cal__day.is-preview { background: rgba(168, 129, 63, .1); border-radius: 0; }
.cal__day.is-sel { background: var(--brass); color: #fff; border-radius: 50%; }
.cal__day.is-sel.is-checkin { border-radius: 50% 0 0 50%; }
.cal__day.is-sel.is-checkout { border-radius: 0 50% 50% 0; }

.cal__legend {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  margin-top: 1rem;
  font-size: .74rem;
  color: var(--ink-soft);
}
.cal__legend > span { display: flex; align-items: center; gap: .45rem; }
.cal__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cal__dot--free { background: var(--white); border: 1.5px solid var(--brass); }
.cal__dot--busy { background: var(--sand); border: 1.5px solid var(--sand); }
.cal__dot--sel { background: var(--brass); border: 1.5px solid var(--brass); }

.cal__sync {
  margin: 0;
  font-size: .72rem;
  color: var(--sand);
  display: flex; align-items: center; gap: .4rem;
}
.cal__sync-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .6rem;
  flex-wrap: wrap;
}
.cal__sync::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  flex: none;
}
.cal__sync--ok::before {
  background: #7da06b;
  animation: syncPulse 2.4s infinite;
}
.cal__sync--err { color: #e8b08a; }
.cal__sync--err::before { background: #c45c4a; animation: none; }
.cal__sync--loading::before { background: var(--brass-light); animation: syncPulse 1s infinite; }
.cal__banner {
  margin-top: .75rem;
  padding: .7rem .9rem;
  font-size: .82rem;
  line-height: 1.45;
  background: rgba(196, 92, 74, .15);
  border: 1px solid rgba(196, 92, 74, .35);
  color: #f5d4cc;
}
.cal__banner[hidden] { display: none; }
.cal__refresh {
  font: inherit;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass-light);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, .25);
  padding: .55rem .85rem;
  min-height: 44px;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.cal__refresh:hover:not(:disabled) { background: rgba(245, 240, 232, .08); border-color: var(--brass-light); }
.cal__refresh:disabled { opacity: .45; cursor: default; }
.cal__day.is-locked { opacity: .4; }
@keyframes syncPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) {
  .cal__sync--ok::before, .cal__sync--loading::before { animation: none; }
}

/* ---------- Form ---------- */
.booking__summary {
  background: var(--ink);
  color: var(--cream);
  font-size: .92rem;
  padding: .95rem 1.2rem;
  margin-bottom: 1.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
}
.booking__summary strong { color: var(--brass-light); font-weight: 500; }
.booking__price-row { flex-basis: 100%; font-size: .85rem; opacity: .85; }
.booking__price-total { flex-basis: 100%; padding-top: .35rem; border-top: 1px solid rgba(255,255,255,.18); font-size: 1rem; }
.booking__price-warn { flex-basis: 100%; color: #e8b08a; font-size: .85rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking__form label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.booking__form .opt { font-weight: 400; opacity: .6; text-transform: none; letter-spacing: 0; font-style: normal; }
.booking__form input,
.booking__form select,
.booking__form textarea {
  display: block;
  width: 100%;
  margin-top: .4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .9rem;
  border: 1px solid var(--travertine);
  background: var(--white);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.booking__form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a8813f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
}
.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(168, 129, 63, .15);
}
.booking__form textarea { resize: vertical; }
.form-error { color: #a03322; font-size: .9rem; margin-bottom: 1rem; }
.booking__note { margin-top: 1rem; font-size: .8rem; color: var(--ink-soft); text-align: center; }

/* ---------- Request summary ---------- */
.booking__request[hidden] { display: none; }
.request-summary {
  background: var(--white);
  color: var(--ink);
  padding: clamp(1.4rem, 4vw, 2rem);
  animation: requestIn .45s var(--ease-out);
}
@keyframes requestIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .request-summary { animation: none; }
}
.request-summary__ico {
  display: block;
  font-size: 1.4rem;
  color: var(--brass);
  margin-bottom: .5rem;
}
.request-summary h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  margin-bottom: .5rem;
}
.request-summary__lead {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.request-summary__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.2rem;
  margin: 0 0 1.6rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--travertine);
}
.request-summary__grid div { min-width: 0; }
.request-summary__grid dt {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .2rem;
}
.request-summary__grid dd {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  word-break: break-word;
}
.request-summary__msg { grid-column: 1 / -1; }
.request-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.request-cta__btn {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 56px;
  padding: .9rem 1.1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--travertine);
  background: var(--cream);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
@media (hover: hover) {
  .request-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--brass);
  }
}
.request-cta__btn--wa { border-color: rgba(37, 211, 102, .35); }
.request-cta__btn--wa:hover { border-color: #25d366; }
.request-cta__btn--mail { border-color: rgba(168, 129, 63, .35); }
.request-cta__icon { font-size: 1.35rem; line-height: 1; flex: none; }
.request-cta__text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.request-cta__text strong { font-size: .92rem; font-weight: 600; }
.request-cta__text small { font-size: .75rem; color: var(--ink-soft); }
.request-cta__copy,
.request-cta__edit {
  font: inherit;
  min-height: 48px;
  padding: .75rem 1rem;
  cursor: pointer;
  border: 1px solid var(--travertine);
  background: var(--white);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 500;
  transition: background .25s, border-color .25s;
}
.request-cta__copy { grid-column: 1 / -1; }
.request-cta__copy:hover, .request-cta__edit:hover { background: var(--cream); border-color: var(--brass); }
.request-cta__edit {
  grid-column: 1 / -1;
  background: transparent;
  color: var(--ink-soft);
  border-style: dashed;
}

.btn--gold:disabled { opacity: .6; cursor: wait; transform: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(5rem, 11vw, 9rem) var(--pad-x); max-width: 52rem; margin: 0 auto; }
.faq__list details { border-bottom: 1px solid var(--travertine); }
.faq__list summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .3s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  position: absolute;
  right: .3rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--brass);
  transition: transform .4s var(--ease-out);
}
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__list summary:hover { color: var(--brass); }
.faq__list p { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 44rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-deep);
  color: rgba(245, 240, 232, .75);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad-x) 2rem;
}
.footer__inner {
  max-width: 80rem; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, .12);
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .28em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}
.footer__brand p { font-size: .92rem; white-space: pre-line; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.1rem;
}
.footer__col a {
  display: block;
  text-decoration: none;
  font-size: .95rem;
  padding: .3rem 0;
  transition: color .3s;
}
.footer__col a:hover { color: var(--brass-light); }
.footer__legal {
  max-width: 80rem; margin: 1.8rem auto 0;
  font-size: .78rem;
  color: rgba(245, 240, 232, .45);
}

/* ============================================================
   MOBILE BOOK BAR
   ============================================================ */
.bookbar {
  position: fixed;
  left: .8rem; right: .8rem;
  bottom: calc(.8rem + env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--brass);
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem;
  box-shadow: 0 14px 36px -10px rgba(33, 29, 24, .55);
  transform: translateY(140%);
  transition: transform .5s var(--ease-out);
}
.bookbar.is-shown { transform: none; }
.bookbar__star { color: rgba(255, 255, 255, .8); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1001;
  background: rgba(20, 17, 13, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  max-width: min(86vw, 1500px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}
.lightbox__stage figcaption {
  text-align: center;
  color: rgba(245, 240, 232, .65);
  font-size: .85rem;
  letter-spacing: .12em;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: 1px solid rgba(245, 240, 232, .3);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  width: 52px; height: 52px;
  cursor: pointer;
  transition: all .3s;
  display: grid; place-items: center;
  z-index: 2;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--brass); border-color: var(--brass); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  letter-spacing: .25em;
  color: rgba(245, 240, 232, .6);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .booking__inner { grid-template-columns: 1fr; }
  .booking__panel { max-width: 44rem; }
}

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__inner { grid-template-columns: 1fr; }
  .amenities__head { position: static; }
}

@media (max-width: 880px) {
  .nav__links {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    padding: 5rem 1.5rem 2.5rem;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .55s var(--ease-out), visibility .55s;
    visibility: hidden;
    z-index: 105;
  }
  .nav.menu-open .nav__links { transform: none; visibility: visible; }
  .nav__links a { color: var(--ink) !important; font-size: 1rem; flex: none; }
  .nav.menu-open .nav__brand-name { color: var(--ink); }
  .nav.menu-open .nav__brand { z-index: 110; }
  .nav__cta { border-color: var(--brass); color: var(--brass) !important; }
  .nav__burger { display: block; }
  .lang--desktop-only { display: none; }
  .lang--mobile {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    max-width: 80vw;
  }
  .lang--mobile button {
    border: 1px solid var(--travertine);
    background: none;
    font-family: var(--font-body);
    font-size: .8rem;
    letter-spacing: .1em;
    padding: .5rem .9rem;
    cursor: pointer;
    color: var(--ink-soft);
  }
  .lang--mobile button.is-active { background: var(--brass); border-color: var(--brass); color: #fff; }

  .intro__inner,
  .space,
  .location__inner { grid-template-columns: 1fr; }
  .space--flip .space__media { order: 0; }
  .space--flip .space__text { order: 1; }
  .space__media img { aspect-ratio: 4/3; }
  .intro__media { padding-bottom: 3.5rem; }
  .intro__img-accent { left: auto; right: 0; bottom: 0; width: 42%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .location__map { min-height: 320px; }
  .bookbar { display: flex; }
  .footer { padding-bottom: 5.5rem; }
  .intro__numeral, .spaces__numeral { display: none; }

  /* ---- mobile readability: fewer ornaments, sturdier type ---- */
  body { font-weight: 400; }
  body::after { display: none; }              /* grain overlay */
  .marquee { display: none; }                 /* moving strip */
  .hero__frame { display: none; }             /* inner border */
  .hero__scroll { display: none; }
  .kicker { letter-spacing: .26em; font-size: .68rem; }
  .hero__eyebrow { letter-spacing: .26em; font-size: .68rem; }
  .lead { font-size: 1.02rem; }
  .hero__sub { font-size: 1rem; }
  /* reveal sooner: long stagger feels broken while scrolling on a phone */
  .reveal { transform: translateY(20px); transition-duration: .6s; }
  .d1 { transition-delay: .06s; }
  .d2 { transition-delay: .12s; }
  .d3 { transition-delay: .18s; }
  .d4 { transition-delay: .24s; }
  .d5 { transition-delay: .3s; }
  .img-wipe::after { display: none; }         /* wipe veils read as glitches on touch scroll */
}

@media (max-width: 700px) {
  /* stack both months so the full availability stays visible */
  .cal__months { grid-template-columns: 1fr; gap: 1.8rem; }
  .cal__day { font-size: .92rem; }          /* larger, easier tap targets */
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .gallery__item { aspect-ratio: 1; animation: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero__actions .btn { width: 100%; }
  .hero__dots { display: none; }
  .stats li { padding: 1.5rem .5rem; }
  .stats span { font-size: .62rem; }
  .lightbox__stage { max-width: 94vw; }
  .lightbox__stage img { max-height: 72vh; }
  .lightbox__close,
  .lightbox__nav { width: 44px; height: 44px; background: rgba(33, 29, 24, .55); }
  .lightbox__nav--prev { left: .5rem; }
  .lightbox__nav--next { right: .5rem; }
  .lightbox__close { top: .8rem; right: .8rem; }
  .hero__frame { inset: .6rem; }
  .booking__panel { padding: 1.2rem 1rem; }
  .request-cta { grid-template-columns: 1fr; }
  .request-summary__grid { grid-template-columns: 1fr; }
  .location__actions { flex-direction: column; }
  .location__actions .btn { width: 100%; }
  .marquee__track { gap: 1.8rem; }
}

/* ============================================================
   COOKIE CONSENT BAR (shown only when GA4 is configured)
   ============================================================ */
.cookie-bar {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1200;
  max-width: 46rem;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-soft);
  animation: cookieIn .5s var(--ease-out);
}
@keyframes cookieIn { from { opacity: 0; transform: translateY(1rem); } }
.cookie-bar p { margin: 0; flex: 1; min-width: 12rem; font-size: .85rem; line-height: 1.5; }
.cookie-bar__btns { display: flex; gap: .6rem; flex: none; }
.cookie-bar__btn {
  font: inherit; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.1rem; min-height: 44px; cursor: pointer;
  border: 1px solid rgba(245, 240, 232, .3); background: transparent; color: var(--cream);
  transition: background .25s, border-color .25s, color .25s;
}
.cookie-bar__btn--yes { background: var(--brass); border-color: var(--brass); color: #fff; }
.cookie-bar__btn--yes:hover { background: var(--brass-light); border-color: var(--brass-light); }
.cookie-bar__btn--no:hover { border-color: var(--cream); }
@media (max-width: 480px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-bar__btns { justify-content: center; }
}

/* ============================================================
   CROSS-PROPERTY SEARCH + POP-UP
   ============================================================ */
.cross { margin: 1.2rem 0 .2rem; padding-top: 1rem; border-top: 1px solid var(--travertine); }
.cross__lead { font-size: .82rem; color: var(--ink-soft); margin-bottom: .6rem; }
.cross__form { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.cross__form input { border: 1px solid var(--travertine); background: var(--white); padding: .55rem .6rem; font: inherit; color: var(--ink); }
.cross__form button { background: transparent; border: 1px solid var(--brass); color: var(--brass); font: inherit; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .55rem .9rem; cursor: pointer; min-height: 44px; transition: background .25s, color .25s; }
.cross__form button:hover { background: var(--brass); color: #fff; }

.xpop { position: fixed; inset: 0; z-index: 1300; background: rgba(22, 19, 15, .6); display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.xpop[hidden] { display: none; }
.xpop__card { position: relative; background: var(--cream); max-width: 30rem; width: 100%; padding: 2rem 1.6rem 1.8rem; text-align: center; box-shadow: var(--shadow-soft); animation: cookieIn .4s var(--ease-out); }
.xpop__close { position: absolute; top: .5rem; right: .8rem; background: none; border: 0; font-size: 1.7rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.xpop__ico { color: var(--brass); font-size: 1.4rem; }
.xpop__card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; margin: .4rem 0 1rem; line-height: 1.25; }
.xpop__sub { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: .8rem 0 .2rem; }
.xpop__none { color: var(--ink-soft); line-height: 1.6; }
.xpop__btn--here { background: var(--brass); color: #fff; border: 0; padding: .85rem 1rem; width: 100%; font: inherit; font-weight: 600; letter-spacing: .04em; cursor: pointer; }
.xpop__btn--here:hover { background: var(--brass-light); }
.xpop__alt { display: flex; align-items: center; justify-content: space-between; gap: .8rem; text-decoration: none; color: var(--ink); border: 1px solid var(--travertine); border-left: 4px solid var(--c, var(--brass)); padding: .7rem .9rem; margin-top: .5rem; text-align: left; transition: background .25s; }
.xpop__alt:hover { background: var(--white); }
.xpop__alt small { display: block; color: var(--ink-soft); font-size: .78rem; margin-top: .1rem; }
.xpop__go { color: var(--c, var(--brass)); font-weight: 600; white-space: nowrap; }
