/* ============================================================
   Arjola Cozy Stay — luxury boutique apartment site
   Palette: pure white base · warm beige · champagne gold ·
            soft gray · dark charcoal
   ============================================================ */

:root {
  --white: #ffffff;
  --ivory: #f8f5f0;
  --beige: #e9e1d3;
  --gold: #c2a05e;
  --gold-deep: #a8874a;
  --gray: #8a8580;
  --charcoal: #1e1c19;
  --charcoal-soft: #35322d;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px rgba(30, 28, 25, 0.10);
  --shadow-lift: 0 30px 80px rgba(30, 28, 25, 0.16);
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

/* ---------- shared ---------- */

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }

.section--tinted { background: var(--ivory); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.eyebrow--center { text-align: center; }

.heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}

.heading--center { text-align: center; margin-bottom: 3.5rem; }

.lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
}

.body { color: var(--gray); margin-bottom: 1.1rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}

.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.72rem; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(168, 135, 74, 0.35);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(30, 28, 25, 0.25);
}

.btn--whatsapp {
  background: #23a455;
  color: var(--white);
}
.btn--whatsapp:hover { background: #1d8a47; transform: translateY(-2px); }
.btn--whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.5s var(--ease);
}

.nav__inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  transition: color 0.4s;
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav__logo-text em { font-style: italic; font-weight: 400; color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2.2rem;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.35s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  gap: 0.3rem;
  align-items: center;
  transition: color 0.4s;
}

.lang-toggle__opt { opacity: 0.5; transition: opacity 0.3s; }
.lang-toggle__opt.is-active { opacity: 1; color: var(--gold); font-weight: 600; }
.lang-toggle__sep { opacity: 0.4; }

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  color: var(--white);
  transition: all 0.4s var(--ease);
}
.nav__burger span:first-child { top: 5px; }
.nav__burger span:last-child { top: 15px; }

/* scrolled state */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 rgba(30, 28, 25, 0.07);
}
.nav.is-scrolled .nav__logo,
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__burger span { color: var(--charcoal); background-color: transparent; }
.nav.is-scrolled .nav__burger span { background: var(--charcoal); }
.nav.is-scrolled .nav__links a { color: var(--charcoal-soft); }
.nav.is-scrolled .lang-toggle { color: var(--charcoal-soft); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -6%;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-out both;
  will-change: transform;
}

@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(20, 18, 15, 0.42) 0%,
      rgba(20, 18, 15, 0.28) 40%,
      rgba(20, 18, 15, 0.55) 100%);
}

.hero__content {
  text-align: center;
  color: var(--white);
  padding: 0 6vw;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}
.hero__title span { font-style: italic; font-weight: 400; color: var(--gold); display: block; font-size: 0.72em; }

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 2.6rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.55rem 1.4rem 0.55rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}

.hero__badge-score {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__badge-label { font-size: 0.85rem; letter-spacing: 0.06em; }

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--white);
  animation: scrollhint 2s infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* hero entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  animation: heroin 1.2s var(--ease) forwards;
}
.reveal-hero:nth-child(1) { animation-delay: 0.25s; }
.reveal-hero:nth-child(2) { animation-delay: 0.45s; }
.reveal-hero:nth-child(3) { animation-delay: 0.68s; }
.reveal-hero:nth-child(4) { animation-delay: 0.9s; }
.reveal-hero:nth-child(5) { animation-delay: 1.12s; }
@keyframes heroin { to { opacity: 1; transform: none; } }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.about__media { position: relative; padding-bottom: 4.5rem; }

.frame {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.frame:hover img { transform: scale(1.05); }

.frame--float {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 55%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lift);
}

.about__stats {
  display: flex;
  gap: 2.8rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: block;
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- apartment ---------- */

.apartment__card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.apartment__media { position: relative; min-height: 420px; }

.apartment__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.apartment__card:hover .apartment__media img { transform: scale(1.04); }

.apartment__details { padding: clamp(2rem, 4vw, 3.5rem); }

.apartment__specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.6rem;
  margin-bottom: 1.8rem;
}

.apartment__specs li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}

.apartment__specs svg {
  width: 21px;
  height: 21px;
  fill: var(--gold-deep);
  flex-shrink: 0;
}

.apartment__blurb {
  color: var(--gray);
  border-top: 1px solid var(--beige);
  padding-top: 1.6rem;
  margin-bottom: 2rem;
}

.apartment__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }

.apartment__note { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold-deep); }

/* ---------- amenities ---------- */

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.amenity {
  background: var(--ivory);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 2rem 1.6rem 1.7rem;
  transition: all 0.5s var(--ease);
}

.amenity:hover {
  background: var(--white);
  border-color: var(--beige);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.amenity svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-deep);
  margin-bottom: 1rem;
  transition: transform 0.5s var(--ease);
}
.amenity:hover svg { transform: scale(1.15); }

.amenity h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.amenity p { font-size: 0.82rem; color: var(--gray); }

/* ---------- gallery ---------- */

.gallery__masonry {
  columns: 3;
  column-gap: 1.2rem;
}

.gallery__item {
  position: relative;
  margin-bottom: 1.2rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.gallery__item:hover img { transform: scale(1.06); filter: brightness(0.85); }

.gallery__item figcaption {
  position: absolute;
  left: 1.3rem;
  bottom: 1.1rem;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s var(--ease);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.gallery__item:hover figcaption { opacity: 1; transform: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 16, 13, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 3px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 1rem;
  transition: color 0.3s, transform 0.3s;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__nav:hover { color: var(--gold); transform: scale(1.1); }

.lightbox__close { top: 1rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.1); }

/* ---------- virtual tour ---------- */

.tour {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
}

.tour .heading { color: var(--white); }

.eyebrow--gold { color: var(--gold); text-align: center; }

.tour__sub {
  max-width: 540px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.65);
}

.tour__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  outline: 1px solid rgba(255, 255, 255, 0.12);
}

.tour__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {
  .tour__frame { aspect-ratio: 4 / 5; }
}

/* ---------- experience ---------- */

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.exp-card {
  position: relative;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  border-radius: 4px;
}

.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.exp-card:hover img { transform: scale(1.08); }

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 15, 0.75) 0%, rgba(20, 18, 15, 0.05) 55%);
  transition: background 0.6s;
}

.exp-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.7rem;
  color: var(--white);
  z-index: 1;
  transform: translateY(calc(100% - 4.4rem));
  transition: transform 0.7s var(--ease);
}

.exp-card:hover .exp-card__body { transform: none; }

.exp-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.exp-card__body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.15s;
}

.exp-card:hover .exp-card__body p { opacity: 1; }

/* ---------- location ---------- */

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.location__directions {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.location__directions:hover { color: var(--charcoal); border-color: var(--charcoal); }

.location__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 2rem;
}

.location__list li {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.location__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.location__list span { font-size: 0.85rem; color: var(--gray); }

.location__map {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3.4;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(1.02);
}

/* ---------- reviews ---------- */

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--beige);
}

.reviews__score { display: flex; align-items: center; gap: 1.3rem; }

.reviews__num {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 22px 22px 22px 4px;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
}

.reviews__stars { display: block; color: var(--gold); letter-spacing: 0.2em; font-size: 1.05rem; }
.reviews__label { font-size: 0.9rem; color: var(--gray); }

.reviews__cats {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.reviews__cats li { text-align: center; }

.reviews__cats span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.reviews__cats em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-deep);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review {
  background: var(--ivory);
  border-radius: 4px;
  padding: 2rem 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  transition: all 0.5s var(--ease);
}

.review:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); background: var(--white); outline: 1px solid var(--beige); }

.review p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--charcoal-soft);
}

.review footer { display: flex; align-items: baseline; gap: 0.7rem; }

.review cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.review footer span { font-size: 0.78rem; color: var(--gray); }

.review--wide { grid-column: span 2; }

.reviews__trust {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---------- CTA ---------- */

.cta {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }

.cta__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(20, 18, 15, 0.68), rgba(20, 18, 15, 0.68));
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.cta p { max-width: 520px; margin: 0 auto 2.6rem; color: rgba(255, 255, 255, 0.88); }

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.cta__meta { font-size: 0.8rem !important; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6) !important; margin-bottom: 0 !important; }

/* ---------- footer ---------- */

.footer { background: var(--charcoal); color: rgba(255, 255, 255, 0.75); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 1rem 0 0.6rem;
}
.footer__brand em { font-style: italic; font-weight: 400; color: var(--gold); }
.footer__brand p { font-size: 0.9rem; max-width: 260px; }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- floating whatsapp ---------- */

.float-wa {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #23a455;
  box-shadow: 0 12px 32px rgba(35, 164, 85, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  animation: floatpulse 3.2s ease-in-out infinite;
}

.float-wa:hover { transform: scale(1.1); box-shadow: 0 16px 40px rgba(35, 164, 85, 0.55); animation-play-state: paused; }

.float-wa svg { width: 26px; height: 26px; fill: var(--white); }

@keyframes floatpulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card { aspect-ratio: 4 / 3.2; }
  .apartment__card { grid-template-columns: 1fr; }
  .apartment__media { min-height: 340px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    z-index: -1;
  }
  .nav__links a { color: var(--charcoal) !important; font-size: 1rem; }
  .nav.menu-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav.menu-open .nav__burger span { background: var(--charcoal); }
  .nav.menu-open .nav__burger span:first-child { transform: translateY(5px) rotate(45deg); }
  .nav.menu-open .nav__burger span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .nav__burger { display: block; z-index: 10; }
  .nav .btn { display: none; }
  .nav.menu-open { background: transparent; box-shadow: none; }

  .about__grid,
  .location__grid { grid-template-columns: 1fr; }
  .frame--float { right: 0; }
  .gallery__masonry { columns: 2; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review--wide { grid-column: auto; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .experience__grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16 / 10.5; }
  .gallery__masonry { columns: 1; }
  .apartment__specs { grid-template-columns: 1fr; }
  .about__stats { gap: 1.8rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .location__list { grid-template-columns: 1fr; }
}
