/* ============================================================
   KIRRA HOUSE LEMBONGAN — quiet luxury
   Bone canvas · espresso timber · burnished gold · teal accents
   ============================================================ */

:root {
  --bone: #f7f2e8;
  --cream: #f1e9da;
  --sand: #e9deca;
  --espresso: #201810;
  --espresso-2: #17110b;
  --bark: #5c4b36;
  --faded: #8a7a63;
  --gold: #c08a3e;
  --gold-soft: #d8b27c;
  --gold-deep: #a5772f;
  --teal: #23655c;
  --wa: #1fae54;
  --serif: "Cormorant Garamond", Georgia, serif;
  --caps: "Marcellus", "Times New Roman", serif;
  --sans: "Mulish", -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--bark);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

::selection { background: var(--gold); color: var(--bone); }

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.wrap--narrow { max-width: 880px; }

.kicker {
  font-family: var(--caps);
  font-size: .8rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.kicker--gold { color: var(--gold-soft); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.08;
  color: var(--espresso);
  letter-spacing: .01em;
  margin-bottom: 1.8rem;
}
.display em { font-style: italic; color: var(--gold-deep); }
.display--light { color: var(--bone); }
.display--light em { color: var(--gold-soft); }

.stars { color: var(--gold); letter-spacing: .22em; }
.stars--lg { font-size: 1.3rem; }

.br-desk { display: none; }
@media (min-width: 720px) { .br-desk { display: inline; } }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--caps);
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.02rem 2.1rem .92rem;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--espresso-2); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(247, 242, 232, .55); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); background: rgba(247, 242, 232, .12); }
.btn--ghost-gold { border-color: rgba(216, 178, 124, .5); color: var(--gold-soft); }
.btn--ghost-gold:hover { border-color: var(--gold-soft); background: rgba(216, 178, 124, .08); }
.btn--dark { background: var(--espresso); color: var(--bone); }
.btn--dark:hover { background: var(--teal); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; gap: .5rem; }
.btn--wa:hover { background: #189a47; transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2.5rem 1.05rem; font-size: .85rem; }
.btn--nav { padding: .62rem 1.3rem .55rem; font-size: .7rem; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s;
}
.nav--solid {
  background: rgba(247, 242, 232, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: .7rem;
  padding-bottom: .7rem;
  box-shadow: 0 1px 0 rgba(32, 24, 16, .07);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  position: relative;
  z-index: 65;
}
.nav__shell { width: 34px; height: auto; }
.nav__name {
  font-family: var(--caps);
  font-size: 1.02rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color .45s;
  padding-top: .18em;
}
.nav--solid .nav__name { color: var(--espresso); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav__links a:not(.btn) {
  font-family: var(--caps);
  font-size: .74rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247, 242, 232, .88);
  transition: color .3s;
  position: relative;
  padding: .3rem 0;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav__links a:not(.btn):hover::after { right: 0; }
.nav--solid .nav__links a:not(.btn) { color: var(--bark); }
.nav__links a:not(.btn):hover { color: var(--gold); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--bone);
  transition: all .35s var(--ease);
}
.nav--solid .nav__toggle span, .nav--open .nav__toggle span { background: var(--espresso); }
.nav--open .nav__toggle span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav--open .nav__toggle span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 480px) {
  .hero__kicker { letter-spacing: .3em; font-size: .76rem; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; z-index: 65; }
  .nav--open .nav__shell { filter: none; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    background: var(--bone);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
  }
  .nav--open .nav__links { opacity: 1; pointer-events: auto; }
  .nav--open .nav__name { color: var(--espresso); }
  .nav__links a:not(.btn) { color: var(--bark) !important; font-size: 1rem; }
}

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

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease) forwards;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 17, 11, .42) 0%, rgba(23, 17, 11, .18) 34%, rgba(23, 17, 11, .3) 68%, rgba(23, 17, 11, .68) 100%),
    radial-gradient(120% 90% at 50% 105%, rgba(23, 17, 11, .35), transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bone);
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero__shell {
  width: clamp(64px, 8vw, 88px);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 3px 14px rgba(23, 17, 11, .45));
}
.hero__kicker {
  font-family: var(--caps);
  font-size: .82rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.hero__title {
  font-family: var(--caps);
  font-weight: 400;
  font-size: clamp(2.9rem, 9vw, 6.4rem);
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(23, 17, 11, .4);
}
.hero__rule {
  width: 72px;
  height: 1px;
  background: var(--gold);
  margin: 1.7rem auto;
}
.hero__tag {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  color: rgba(247, 242, 232, .94);
}
.hero__stars {
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: .86rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, .85);
}
.hero__cta {
  margin-top: 2.3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  height: 84px;
  width: 1px;
}
.hero__scroll-line {
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 232, .5);
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollcue 2.2s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  55%, 100% { top: 100%; }
}

/* load-in reveals */
.reveal-load {
  opacity: 0;
  transform: translateY(22px);
  animation: rise .95s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__img { animation: none; }
  .reveal-load, .reveal { opacity: 1; transform: none; animation: none; transition: none; }
  .hero__scroll-line::after { animation: none; }
}

/* ---------- intro ---------- */

.intro {
  padding: clamp(5.5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(216, 178, 124, .12), transparent 70%),
    var(--bone);
}
.intro__copy p { max-width: 640px; margin: 0 auto 1.3rem; }

.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(92, 75, 54, .18);
  border-bottom: 1px solid rgba(92, 75, 54, .18);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.stats li {
  padding: 2rem .5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.stats li + li { border-left: 1px solid rgba(92, 75, 54, .18); }
.stats__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
}
.stats__label {
  font-family: var(--caps);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--faded);
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats li:nth-child(3) { border-left: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid rgba(92, 75, 54, .18); }
}

/* ---------- features ---------- */

.features { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5rem); }

.feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  max-width: 1240px;
  margin: 0 auto clamp(4.5rem, 9vw, 7.5rem);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.feature:last-child { margin-bottom: 0; }
.feature--flip .feature__media { order: 2; }
.feature--flip .feature__body { order: 1; }

.feature__media {
  position: relative;
  overflow: hidden;
}
.feature__media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 242, 232, .45);
  z-index: 2;
  pointer-events: none;
}
.feature__media img {
  width: 100%;
  height: clamp(340px, 46vw, 560px);
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.feature__media:hover img { transform: scale(1.045); }

.feature__body { position: relative; }
.feature__num {
  position: absolute;
  top: -1.2em;
  left: -.06em;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4.6rem, 8vw, 7rem);
  line-height: 1;
  color: rgba(192, 138, 62, .16);
  z-index: 0;
  user-select: none;
}
.feature__body .kicker { position: relative; }
.feature__body h3 {
  position: relative;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--espresso);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}
.feature__body p { max-width: 46ch; }

.feature__list {
  list-style: none;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(92, 75, 54, .16);
}
.feature__list li {
  padding: .68rem 0 .6rem;
  border-bottom: 1px solid rgba(92, 75, 54, .16);
  font-size: .92rem;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.feature__list li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--flip .feature__media { order: 0; }
  .feature__media img { height: clamp(280px, 60vw, 460px); }
  .feature__num { top: -.9em; }
}

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

.gallery {
  background: var(--cream);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  text-align: center;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
}
.gallery__item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-auto-rows: 150px; gap: 9px; }
}

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

.reviews {
  background: var(--espresso) url("../images/pool-daybed.jpeg") center / cover no-repeat fixed;
  position: relative;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  text-align: center;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 11, .82);
}
.reviews > * { position: relative; }
.reviews .kicker { color: var(--gold-soft); }

.reviews__score { color: var(--bone); margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.reviews__five {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 1;
  color: var(--gold-soft);
}
.reviews__score .stars { display: block; margin: .8rem 0 1.1rem; }
.reviews__score p { color: rgba(247, 242, 232, .8); font-size: 1rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  text-align: left;
}
.review {
  background: rgba(247, 242, 232, .06);
  border: 1px solid rgba(216, 178, 124, .22);
  backdrop-filter: blur(6px);
  padding: 1.9rem 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.review p {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(247, 242, 232, .95);
}
.review p::before { content: "\201C"; color: var(--gold); }
.review p::after { content: "\201D"; color: var(--gold); }
.review cite {
  margin-top: auto;
  font-style: normal;
  font-family: var(--caps);
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.reviews__link { margin-top: 2.6rem; }
.reviews__link a {
  font-family: var(--caps);
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 178, 124, .4);
  padding-bottom: .35rem;
  transition: all .3s;
}
.reviews__link a:hover { color: var(--bone); border-color: var(--bone); }

@media (max-width: 860px) {
  .reviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 860px), (hover: none) {
  .reviews { background-attachment: scroll; }
}

/* ---------- hosts ---------- */

.hosts {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
}
.hosts__media {
  position: relative;
}
.hosts__media::after {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.hosts__media img {
  width: 100%;
  height: clamp(400px, 52vw, 620px);
  object-fit: cover;
}
.hosts__body p { max-width: 52ch; margin-bottom: 1.25rem; }
.hosts__lila {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.22rem;
  color: var(--teal);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
}
.hosts__body .btn { margin-top: .8rem; }

@media (max-width: 820px) {
  .hosts { grid-template-columns: 1fr; }
  .hosts__media { margin-top: 1rem; }
  .hosts__media img { height: clamp(340px, 80vw, 520px); }
}

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

.amenities {
  background: var(--sand);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
}
.amenities__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 3rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: left;
}
.amenities__grid li {
  padding: .95rem .2rem .85rem;
  border-bottom: 1px solid rgba(92, 75, 54, .2);
  font-size: .97rem;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.amenities__grid li::before {
  content: "✦";
  font-size: .6rem;
  color: var(--gold);
  flex: none;
}
@media (max-width: 860px) { .amenities__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .amenities__grid { grid-template-columns: 1fr; } }

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

.location {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
}
.location__list {
  list-style: none;
  margin: 1.4rem 0;
}
.location__list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(92, 75, 54, .16);
  font-size: .98rem;
}
.location__list li:last-child { border-bottom: 1px solid rgba(92, 75, 54, .16); }
.location__list strong {
  font-weight: 600;
  color: var(--espresso);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.location__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--gold-deep);
}
.location__map {
  position: relative;
  height: clamp(380px, 46vw, 560px);
}
.location__map::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(192, 138, 62, .5);
  z-index: 2;
  pointer-events: none;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(.22) saturate(.85);
}
@media (max-width: 820px) {
  .location { grid-template-columns: 1fr; }
  .location__map { height: clamp(300px, 70vw, 460px); }
}

/* ---------- booking ---------- */

.book {
  background:
    radial-gradient(90% 70% at 50% -10%, rgba(192, 138, 62, .2), transparent 60%),
    var(--espresso-2);
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  text-align: center;
  color: rgba(247, 242, 232, .8);
}
.book__shell { width: 64px; margin: 0 auto 1.8rem; opacity: .9; }
.book__copy { font-size: 1.05rem; margin-bottom: 2.4rem; }
.book__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.book__details {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin-top: 2.8rem;
}
.book__details li {
  font-family: var(--caps);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 242, 232, .6);
  padding: 0 1.6rem;
}
.book__details li + li { border-left: 1px solid rgba(216, 178, 124, .3); }
.book__insta {
  display: inline-block;
  margin-top: 2.4rem;
  font-family: var(--caps);
  font-size: .8rem;
  letter-spacing: .24em;
  color: var(--gold-soft);
  text-decoration: none;
  transition: color .3s;
}
.book__insta:hover { color: var(--bone); }

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

.footer {
  background: #120d08;
  text-align: center;
  padding: 3.8rem 1.5rem 3rem;
  color: rgba(247, 242, 232, .55);
  font-size: .88rem;
}
.footer__logo { width: 148px; margin: 0 auto 1.6rem; opacity: .95; }
.footer__addr { letter-spacing: .06em; }
.footer__reg { font-size: .78rem; margin-top: .4rem; color: rgba(247, 242, 232, .38); }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin: 1.8rem 0 1.4rem;
}
.footer__links a {
  font-family: var(--caps);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-soft);
  transition: color .3s;
}
.footer__links a:hover { color: var(--bone); }
.footer__copy { font-size: .78rem; color: rgba(247, 242, 232, .35); }

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

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 55;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(23, 17, 11, .35);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  pointer-events: none;
  transition: all .45s var(--ease);
}
.wa-float.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.wa-float:hover { background: #189a47; transform: translateY(-3px); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--wa);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(18, 13, 8, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1300px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}
.lightbox button {
  position: absolute;
  background: none;
  border: 1px solid rgba(247, 242, 232, .3);
  color: var(--bone);
  font-size: 1.3rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox__prev { left: .6rem; }
  .lightbox__next { right: .6rem; }
  .lightbox img { max-width: 96vw; }
}

/* ---------- FAQ ---------- */

.faq { padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--cream); }

.faq__list { margin-top: .5rem; border-top: 1px solid rgba(92, 75, 54, .18); }

.faq__item { border-bottom: 1px solid rgba(92, 75, 54, .18); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: var(--espresso);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--caps);
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary { color: var(--gold-deep); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--gold-deep); }

.faq__item p {
  padding: 0 0 1.6rem;
  max-width: 62ch;
}

/* ---------- book phone line ---------- */

.book__phone {
  margin-top: 1.2rem;
  font-family: var(--caps);
  font-size: .95rem;
  letter-spacing: .22em;
}
.book__phone a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(216, 178, 124, .4);
  padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.book__phone a:hover { color: var(--bone); border-color: var(--bone); }

.footer__addr .wa-link { text-decoration: none; border-bottom: 1px solid rgba(138, 122, 99, .4); }

/* screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- no-WhatsApp fallback (number not configured yet) ---------- */

body.no-wa .wa-float { display: none; }
body.no-wa .btn--wa svg { display: none; }
body.no-wa .btn--wa { background: var(--gold); color: var(--espresso-2); }
body.no-wa .btn--wa:hover { background: var(--gold-soft); }

/* focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
