/* ============================================================
   HOTEL GRÃO PARÁ — styles.css
   Palette: charcoal / ivory / brass-gold / terracotta
   ============================================================ */

:root {
  --ink: #14120F;
  --ink-2: #211D18;
  --ivory: #F7F2E9;
  --ivory-2: #EFE7D8;
  --paper: #FBF8F2;
  --gold: #C2A24B;
  --gold-2: #D8BE76;
  --gold-deep: #9C7E34;
  --terra: #B0522F;
  --muted: #6E665A;
  --line: rgba(20, 18, 15, .12);
  --shadow-sm: 0 4px 14px rgba(20, 18, 15, .08);
  --shadow-md: 0 18px 50px rgba(20, 18, 15, .18);
  --shadow-lg: 0 30px 80px rgba(20, 18, 15, .28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--ink); color: var(--ivory); padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- typography helpers ---------- */
.kicker {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: .7rem;
}
.kicker::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.kicker--light { color: var(--gold-2); }
.kicker--light::before { background: var(--gold-2); }

.h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem); line-height: 1.08;
  letter-spacing: -.01em; color: var(--ink);
}
.h2--light { color: var(--ivory); }

.section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__sub { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .95rem 1.7rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.05rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #1c1505; box-shadow: 0 12px 30px rgba(156, 126, 52, .35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(156, 126, 52, .5); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(247, 242, 233, .45); }
.btn--ghost:hover { background: rgba(247, 242, 233, .12); transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(251, 248, 242, .85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(20,18,15,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  width: min(var(--maxw), 92%); margin-inline: auto;
  padding: 1.1rem 0; transition: padding .4s var(--ease);
}
.scrolled .nav { padding: .7rem 0; }

.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__monogram {
  font-family: var(--serif); font-weight: 700; font-size: 1.5rem; line-height: 1;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1.5px solid var(--gold); color: var(--gold-deep); border-radius: 10px;
  letter-spacing: .02em;
}
.nav__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: .01em;
  color: var(--ivory); transition: color .4s var(--ease);
}
.scrolled .nav__name { color: var(--ink); }

.nav__menu { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav__menu a {
  font-weight: 500; font-size: .96rem; color: var(--ivory);
  position: relative; transition: color .3s; padding: .2rem 0;
}
.scrolled .nav__menu a { color: var(--ink); }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--gold); color: #1c1505 !important; padding: .6rem 1.3rem; border-radius: 100px;
  font-weight: 600; transition: transform .3s var(--ease), box-shadow .3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(156,126,52,.4); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; z-index: 1100;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--ivory); border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s, background .4s;
}
.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle[aria-expanded="true"] span { background: var(--ivory); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO  (split: branded panel + framed facade)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: var(--ink); padding: 6rem 0 3rem; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(85% 70% at 88% 8%, rgba(194,162,75,.22), transparent 55%),
    radial-gradient(80% 80% at -5% 105%, rgba(176,82,47,.24), transparent 55%),
    linear-gradient(165deg, #18140f 0%, #100e0b 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1; opacity: .06; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2; width: min(var(--maxw), 92%); margin-inline: auto;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__panel { color: var(--ivory); }
.hero__eyebrow {
  font-size: .8rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-2); font-weight: 600; margin-bottom: 1.2rem;
  opacity: 0; animation: heroUp .9s var(--ease) .12s forwards;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1; letter-spacing: -.015em;
  opacity: 0; animation: heroUp .9s var(--ease) .26s forwards;
}
.hero__mono {
  display: inline-block; font-size: clamp(1rem, 2vw, 1.45rem); letter-spacing: .3em;
  color: var(--gold-2); font-weight: 600; vertical-align: middle; margin-right: .8rem;
  border: 1.5px solid rgba(216,190,118,.55); border-radius: 10px; padding: .12em .5em .18em;
}
.hero__tagline {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem); font-weight: 300; max-width: 48ch;
  margin: 1.4rem 0 1.7rem; color: rgba(247,242,233,.85);
  opacity: 0; animation: heroUp .9s var(--ease) .4s forwards;
}
.hero__chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem;
  opacity: 0; animation: heroUp .9s var(--ease) .52s forwards;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 500;
  color: var(--ivory); background: rgba(247,242,233,.07); border: 1px solid rgba(247,242,233,.16);
  padding: .5rem .95rem; border-radius: 100px;
}
.hero__chips svg { width: 17px; height: 17px; color: var(--gold-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; animation: heroUp .9s var(--ease) .64s forwards; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero__figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3.4;
  opacity: 0; animation: heroFig 1.1s var(--ease) .34s forwards;
}
.hero__figure img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  transform: scale(1.05); transition: transform 1.3s var(--ease);
}
.hero__figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(15,13,11,.5)); }
.hero__figure:hover img { transform: scale(1.1); }
@keyframes heroFig { from { opacity: 0; transform: translateY(30px) scale(.98); } to { opacity: 1; transform: none; } }
.hero__pin {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600;
  color: var(--ivory); background: rgba(15,13,11,.55); backdrop-filter: blur(6px);
  padding: .45rem .85rem; border-radius: 100px; border: 1px solid rgba(247,242,233,.18);
}
.hero__pin svg { width: 15px; height: 15px; color: var(--gold-2); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 1.5px solid rgba(247,242,233,.4); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; border-radius: 4px;
  background: var(--gold-2); transform: translateX(-50%); animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { background: var(--paper); }
.sobre__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.sobre__text p { color: var(--muted); margin-top: 1.1rem; font-size: 1.06rem; }
.sobre__text strong { color: var(--ink); }

.sobre__stats { display: flex; gap: 2.4rem; margin-top: 2.4rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: 2.8rem; font-weight: 600; line-height: 1; color: var(--ink); }
.stat__suffix { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep); margin-top: -2.4rem; align-self: flex-start; margin-left: 2.6rem; }
.stat__label { font-size: .82rem; color: var(--muted); margin-top: .5rem; letter-spacing: .02em; max-width: 14ch; }

.sobre__media { position: relative; }
.sobre__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.sobre__badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--ink); color: var(--ivory);
  border-radius: var(--radius); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .9rem;
  box-shadow: var(--shadow-md); font-size: .85rem; line-height: 1.25;
}
.sobre__badge-mono {
  font-family: var(--serif); font-size: 1.6rem; color: var(--gold-2); font-weight: 700;
  border-right: 1px solid rgba(247,242,233,.2); padding-right: .9rem;
}

/* ============================================================
   COMODIDADES
   ============================================================ */
.comodidades { background: linear-gradient(180deg, var(--ivory), var(--paper)); }
.amenities { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.amenity {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.amenity:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(194,162,75,.4); }
.amenity svg {
  width: 38px; height: 38px; color: var(--gold-deep); margin-bottom: 1rem;
  transition: transform .4s var(--ease);
}
.amenity:hover svg { transform: scale(1.1) rotate(-4deg); }
.amenity h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin-bottom: .35rem; }
.amenity p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   ARREDORES / O QUE FAZER POR PERTO
   ============================================================ */
.arredores { background: var(--ivory-2); }
.places { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.place {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.place:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(194,162,75,.4); }
.place__tag {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.place h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.15; }
.place p { font-size: .95rem; color: var(--muted); flex: 1; }
.place--event { background: var(--ink); border-color: transparent; color: var(--ivory); }
.place--event .place__tag { color: var(--gold-2); }
.place--event p { color: rgba(247, 242, 233, .75); }
.place__link { margin-top: .6rem; font-weight: 600; font-size: .95rem; color: var(--gold-2); transition: color .3s; }
.place__link:hover { color: var(--gold); }
.arredores__cta {
  margin-top: 3rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.arredores__cta p { font-family: var(--serif); font-size: 1.4rem; line-height: 1.3; }

/* ============================================================
   ACOMODAÇÕES / GALERIA
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1.1rem; }
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,13,11,.7));
  opacity: .85; transition: opacity .4s;
}
.gallery__item figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2; color: var(--ivory);
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  transform: translateY(6px); opacity: .92; transition: transform .4s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }
.gallery__item figcaption span::before {
  content: ""; display: inline-block; width: 18px; height: 1.5px; background: var(--gold-2);
  vertical-align: middle; margin-right: .6rem;
}
.acomodacoes__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.localizacao { background: var(--ivory); }
.localizacao__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.localizacao__text p { color: var(--muted); margin: 1rem 0 1.6rem; font-size: 1.06rem; }
.info-list { list-style: none; margin-bottom: 2rem; display: grid; gap: 1rem; }
.info-list li { display: flex; align-items: center; gap: .9rem; font-size: 1.02rem; }
.info-list svg { width: 24px; height: 24px; color: var(--gold-deep); flex: none; }
.info-list a:hover { color: var(--gold-deep); }
.localizacao__map {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.localizacao__map iframe { width: 100%; height: 440px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 0; }
.contato__inner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 130% at 80% 0%, rgba(194,162,75,.25), transparent 50%),
    radial-gradient(120% 130% at 0% 100%, rgba(176,82,47,.28), transparent 55%),
    var(--ink);
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.contato__content { text-align: center; position: relative; z-index: 2; }
.contato__lead { color: rgba(247,242,233,.82); max-width: 46ch; margin: 1.2rem auto 2.4rem; font-size: 1.12rem; font-weight: 300; }
.contato__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-2); color: rgba(247,242,233,.8); padding-top: 3.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(247,242,233,.12); }
.footer__brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer__mono {
  font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--gold-2);
  width: 50px; height: 50px; display: grid; place-items: center; flex: none;
  border: 1.5px solid rgba(216,190,118,.5); border-radius: 12px;
}
.footer__brand strong { font-family: var(--serif); font-size: 1.4rem; color: var(--ivory); font-weight: 600; }
.footer__brand p { font-size: .92rem; margin-top: .3rem; max-width: 28ch; }
.footer__nav { display: grid; gap: .7rem; align-content: start; }
.footer__nav a { font-size: .96rem; transition: color .3s; width: fit-content; }
.footer__nav a:hover { color: var(--gold-2); }
.footer__contact { display: grid; gap: .6rem; align-content: start; }
.footer__contact a, .footer__contact span { font-size: .96rem; }
.footer__contact a:hover { color: var(--gold-2); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; font-size: .85rem; color: rgba(247,242,233,.55); flex-wrap: wrap;
}
.footer__top:hover { color: var(--gold-2); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .35s var(--ease), box-shadow .35s;
  animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(37,211,102,.6); }
@keyframes wapulse {
  0%,100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center;
  background: rgba(15,13,11,.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  padding: 4vmin;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg);
  transform: scale(.94); transition: transform .45s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 24px; background: none; border: 0;
  color: var(--ivory); font-size: 2.6rem; line-height: 1; cursor: pointer; opacity: .85;
}
.lightbox__close:hover { opacity: 1; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal,
  .reveal--left, .js .reveal--left, .reveal--right, .js .reveal--right,
  .reveal-clip, .js .reveal-clip {
    opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important;
  }
  .hero__eyebrow, .hero__title, .hero__tagline, .hero__chips, .hero__actions, .hero__figure {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .hero__figure img { transform: none; }
  .wa-float, .hero__scroll span { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .places { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .sobre__grid, .localizacao__grid { grid-template-columns: 1fr; }
  .sobre__media { order: -1; max-width: 460px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__name { font-size: 1.15rem; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--ink); padding: 2rem 2.4rem;
    transform: translateX(105%); transition: transform .5s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__menu a, .scrolled .nav__menu a { color: var(--ivory); font-size: 1.2rem; }
  .nav__cta { margin-top: .5rem; }
  .hero { padding-top: 5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__figure { order: -1; aspect-ratio: 16 / 10; }
  .hero__title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
  .hero__scroll { display: none; }
  .stat__num { font-size: 2.3rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .gallery { grid-auto-rows: 180px; }
  .sobre__badge { left: 12px; }
}

@media (max-width: 460px) {
  .amenities { grid-template-columns: 1fr; }
  .places { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
}

/* ============================================================
   WOW FX  — preloader, progress, embers, tilt, marquee, shine
   ============================================================ */

/* Preloader curtain */
.preloader {
  position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center;
  background: var(--ink); transition: transform 1s var(--ease), opacity .6s ease;
}
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.preloader__mono {
  font-family: var(--serif); font-weight: 700; font-size: 3rem; color: var(--gold-2);
  width: 90px; height: 90px; display: grid; place-items: center; letter-spacing: .04em;
  border: 2px solid rgba(216,190,118,.5); border-radius: 18px;
  animation: premono 1.3s var(--ease) infinite alternate;
}
.preloader__name { font-size: .7rem; letter-spacing: .5em; color: rgba(247,242,233,.7); padding-left: .5em; }
.preloader__bar { width: 130px; height: 2px; background: rgba(247,242,233,.14); border-radius: 2px; overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, transparent, var(--gold-2), transparent); animation: preload 1.1s ease-in-out infinite; }
@keyframes premono { from { transform: translateY(0); } to { transform: translateY(-7px); } }
@keyframes preload { 0% { transform: translateX(-110%); } 100% { transform: translateX(360%); } }
.preloader.done { transform: translateY(-100%); pointer-events: none; }
html:not(.js) .preloader { display: none; }
/* Safety: lift the preloader even if JS fails to run */
.preloader { animation: preFail 1s var(--ease) 3.4s forwards; }
@keyframes preFail { to { transform: translateY(-100%); pointer-events: none; } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0);
  transform-origin: 0 50%; z-index: 1200; will-change: transform;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2), var(--terra));
}

/* Hero embers + spotlight */
.hero__embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__embers span {
  position: absolute; bottom: -12px; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle, var(--gold-2), rgba(216,190,118,0));
  animation-name: ember; animation-timing-function: ease-in; animation-iteration-count: infinite;
}
@keyframes ember {
  0% { opacity: 0; transform: translate(0, 0) scale(.5); }
  12% { opacity: .85; }
  88% { opacity: .45; }
  100% { opacity: 0; transform: translate(var(--drift, 0), -74vh) scale(1); }
}
.hero__spot {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease; mix-blend-mode: screen;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(216,190,118,.18), transparent 62%);
}

/* Button shine sweep */
.btn--gold, .btn--dark, .btn--ghost { position: relative; overflow: hidden; }
.btn--gold::after, .btn--dark::after, .btn--ghost::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  transform: skewX(-20deg); transition: left .75s var(--ease);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
}
.btn--dark::after, .btn--ghost::after { background: linear-gradient(90deg, transparent, rgba(216,190,118,.4), transparent); }
.btn--gold:hover::after, .btn--dark:hover::after, .btn--ghost:hover::after { left: 130%; }

/* Directional + clip reveals */
.js .reveal--left  { opacity: 0; transform: translateX(-44px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal--right { opacity: 0; transform: translateX(44px);  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--left.in, .reveal--right.in { opacity: 1; transform: none; }
.js .reveal-clip { opacity: 0; clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease), opacity .5s ease; }
.reveal-clip.in { opacity: 1; clip-path: inset(0 0 0 0); }

/* Tilt smoothing (overrides earlier transitions) */
.amenity, .gallery__item { transform-style: preserve-3d; transition: transform .28s var(--ease), box-shadow .4s var(--ease), border-color .4s; }

/* Keyword marquee */
.marquee { background: var(--ink); overflow: hidden; padding: 1.05rem 0; border-block: 1px solid rgba(247,242,233,.08); }
.marquee__track { display: flex; gap: 2.4rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: 1.22rem; letter-spacing: .02em; color: rgba(247,242,233,.82); white-space: nowrap; }
.marquee__track span:nth-child(even) { color: var(--gold-2); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none !important; }
  .scroll-progress, .hero__embers, .hero__spot { display: none !important; }
  .marquee__track { animation: none; }
  .btn--gold::after, .btn--dark::after, .btn--ghost::after { display: none; }
}
