/* ============================================================
   BnB CMS – Frontend Stylesheet  v3.0
   Design: Vivace · Lusso Contemporaneo · Bold Mediterranean
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0f;
  color: #f0ebe2;
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --red:     #E63946;
  --orange:  #F4A261;

  /* Extended palette */
  --gold:    #D4AF37;
  --cream:   #F7F0E6;
  --dark:    #0a0a0f;
  --dark2:   #12121a;
  --dark3:   #1c1c28;
  --muted:   rgba(240,235,226,.45);
  --warm:    rgba(212,175,55,.08);
  --border:  rgba(212,175,55,.15);

  /* Typography scale */
  --fs-xs:   .75rem;
  --fs-sm:   .875rem;
  --fs-md:   1rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.5rem;
  --fs-3xl:  3.5rem;
  --fs-4xl:  5rem;

  /* Spacing */
  --sp-xs:   .5rem;
  --sp-sm:   1rem;
  --sp-md:   2rem;
  --sp-lg:   4rem;
  --sp-xl:   7rem;

  /* Radius */
  --r-sm:    6px;
  --r-md:    14px;
  --r-lg:    24px;
  --r-xl:    40px;
  --r-full:  9999px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.1;
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 1rem;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.section {
  padding: var(--sp-xl) 0;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: var(--r-full); }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.nav-brand img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(240,235,226,.7);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-wa {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: #25D366;
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  border-radius: var(--r-full);
  transition: transform .3s, opacity .3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark) center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: saturate(1.1);
}
.hero:hover .hero-bg { transform: scale(1.08); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,15,.72) 0%,
    rgba(10,10,15,.45) 50%,
    rgba(10,10,15,.8) 100%
  );
}
/* Decorative corner accent */
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 30%; height: 3px;
  background: linear-gradient(270deg, var(--red), transparent);
}
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
  animation: heroFadeIn .9s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.3);
  padding: .4rem 1.2rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(212,175,55,.06);
}
.hero-h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.hero-logo-img {
  height: 90px;
  width: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(1.1);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240,235,226,.75);
  font-weight: 300;
  letter-spacing: .03em;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(240,235,226,.85);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: .4rem .85rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  animation: heroFadeIn 1.2s .5s both;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #c0392b 100%);
  color: #fff;
  padding: .75rem 2rem;
  box-shadow: 0 4px 18px rgba(230,57,70,.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(230,57,70,.5); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(240,235,226,.35);
  padding: .75rem 2rem;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm  { padding: .5rem 1.25rem; font-size: var(--fs-sm); }
.btn-lg  { padding: .9rem 2.25rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: .65rem 1.5rem;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,.45); }

.btn-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  padding: .65rem 1.5rem;
}
.btn-fb {
  background: #1877f2;
  color: #fff;
  padding: .65rem 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-grid.no-img { grid-template-columns: 1fr; max-width: 700px; }
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.about-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 2px solid rgba(212,175,55,.25);
  border-radius: var(--r-lg);
  z-index: -1;
}
.about-body .sec-title { color: var(--cream); }
.about-text {
  color: rgba(240,235,226,.65);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
}
.stat { text-align: center; }
.stat-n {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-l {
  font-size: var(--fs-sm);
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   ROOMS
═══════════════════════════════════════════════════════════════ */
.rooms-section {
  background: var(--dark);
  position: relative;
}
.rooms-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.room-card {
  background: var(--dark3);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.2);
}

/* Gallery */
.room-gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark2);
}
.slides { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s;
}
.slide.active { opacity: 1; }
.slide img, .slide iframe, .slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
}
.gal-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,10,15,.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.gal-btn:hover {
  background: rgba(212,175,55,.5);
  transform: translateY(-50%) scale(1.08);
}
.gal-prev { left: .75rem; }
.gal-next { right: .75rem; }
.gal-dots {
  position: absolute;
  bottom: .75rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .35rem;
  z-index: 2;
}
.dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.price-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--red);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(230,57,70,.4);
  line-height: 1;
}
.price-badge small {
  font-weight: 400;
  font-size: .7rem;
  opacity: .85;
  margin-left: 1px;
}

/* Room Info */
.room-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.room-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
}
.room-desc {
  font-size: var(--fs-sm);
  color: rgba(240,235,226,.6);
  line-height: 1.6;
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.room-meta span {
  font-size: var(--fs-xs);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: .25rem .6rem;
  border-radius: var(--r-sm);
  color: rgba(240,235,226,.7);
}
.room-feats {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
}
.feat {
  font-size: var(--fs-xs);
  color: var(--gold);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  font-weight: 500;
}
.room-actions {
  display: flex;
  gap: .75rem;
  margin-top: auto;
  padding-top: .5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services-section {
  background: linear-gradient(135deg, #0d0d18 0%, #1a0d0d 50%, #0d0d18 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(230,57,70,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,175,55,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  transition: background .25s, border-color .25s, transform .25s;
  cursor: default;
}
.svc-card:hover {
  background: rgba(212,175,55,.08);
  border-color: rgba(212,175,55,.4);
  transform: translateY(-4px);
}
.svc-icon {
  font-size: 2rem;
  line-height: 1;
}
.svc-card span {
  font-size: var(--fs-sm);
  color: rgba(240,235,226,.8);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════════════════════════ */
.booking-section {
  background: var(--dark2);
  position: relative;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.booking-wrap {
  max-width: 720px;
  margin: 3rem auto 0;
}
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.fg label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(240,235,226,.7);
  letter-spacing: .04em;
}
.fg input,
.fg select,
.fg textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: var(--cream);
  padding: .8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--muted); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.fg select option { background: var(--dark3); }
.fg textarea { resize: vertical; min-height: 90px; }

/* Pay options */
.pay-option {
  cursor: pointer;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  transition: border-color .2s;
}
.pay-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212,175,55,.05);
}
.pay-option input[type="radio"] { display: none; }
.pay-opt-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
}
.pay-opt-icon { font-size: 1.4rem; flex-shrink: 0; }
.pay-opt-title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--cream);
  margin-bottom: .15rem;
}
.pay-opt-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}
.pay-opt-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(230,57,70,.2);
  color: #ff8a8a;
  border: 1px solid rgba(230,57,70,.3);
  padding: .2rem .6rem;
  border-radius: var(--r-full);
}
.pay-opt-badge.paypal {
  background: rgba(0,112,243,.15);
  color: #6ab3ff;
  border-color: rgba(0,112,243,.3);
}

/* Price box */
#priceBox {
  background: rgba(212,175,55,.07) !important;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: .5rem;
}
#totalPrice   { color: var(--cream) !important; }
#depositPrice { color: var(--orange) !important; }

/* Alerts */
.alert {
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 500;
}
.alert-ok  { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.25); color: #6ee7a0; }
.alert-err { background: rgba(230,57,70,.12);  border: 1px solid rgba(230,57,70,.25);  color: #ff9a9a; }

.form-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: .25rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTS
═══════════════════════════════════════════════════════════════ */
.contacts-section {
  background: var(--dark);
  position: relative;
}
.contacts-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.contact-item p {
  font-size: .95rem;
  color: rgba(240,235,226,.7);
  line-height: 1.5;
}
.contact-item a { color: var(--orange); }
.contact-item a:hover { color: var(--gold); }
.social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.map-wrap {
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}
.map-wrap iframe { display: block; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: .25rem;
}
.footer p {
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   WA FAB
═══════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .25s, box-shadow .25s;
}
.wa-fab:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contacts-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-wrap    { position: static; height: 280px; }
  .rooms-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links  { display: none; flex-direction: column; gap: 1.25rem; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(10,10,15,.97);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    align-items: center;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.3rem; }
  .nav-wa     { display: none; }
  .burger     { display: flex; }
  .form-row2  { grid-template-columns: 1fr; }
  .hero-ctas  { flex-direction: column; align-items: center; }
  .about-stats { gap: 1.5rem; }
  .section    { padding: 4rem 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .social-btns { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL (added via JS class)
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,.68,0,1.2), transform .7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
