/* ============================================================
   PLATO GLAMP — Styles
   Dark luxury glamping aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f0d08;
  --bg2: #161209;
  --surface: #1e1810;
  --gold: #c9a84c;
  --gold-light: #e8c76b;
  --cream: #f5e6c8;
  --muted: #8c7d65;
  --text: #e8dcc8;
  --white: #ffffff;
  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg2);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.8rem;
}

em {
  font-style: italic;
  color: var(--gold);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-top: 8px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: #0f0d08;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 24px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #0f0d08;
  transform: translateY(-2px);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(15, 13, 8, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-links .nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: #0f0d08;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--surface);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 80px 32px;
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 28px;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 8, 4, 0.3) 0%,
      rgba(10, 8, 4, 0.5) 50%,
      rgba(10, 8, 4, 0.85) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(245, 230, 200, 0.8);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollAnim {

  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── FADE IN (Hero) ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s 0.3s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── REVEAL ON SCROLL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s !important;
}

.delay-2 {
  transition-delay: 0.3s !important;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag {
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.feature-icon {
  font-size: 1.2rem;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  height: 520px;
}

.about-image img {
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: #0f0d08;
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CABINS ───────────────────────────────────────────────── */
.cabins-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cabin-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cabin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cabin-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.cabin-img img {
  transition: transform 0.6s ease;
}

.cabin-card:hover .cabin-img img {
  transform: scale(1.05);
}

.cabin-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #0f0d08;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.cabin-info {
  padding: 32px;
}

.cabin-info h3 {
  margin-bottom: 12px;
}

.cabin-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.cabin-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 4, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1e1810 0%, #251f10 100%);
}

.pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0f0d08;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-card h3 {
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 28px;
}

.price-amount {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
}

.price-curr {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: left;
}

.pricing-list li::before {
  content: '✓  ';
  color: var(--gold);
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 40px;
}

/* ── RULES ────────────────────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rule-item {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.rule-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.rule-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.rule-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--cream);
}

.rule-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.section-contact {
  position: relative;
  padding: 140px 0;
  text-align: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 4, 0.82);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.contact-content h2 {
  margin: 12px 0 20px;
}

.contact-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-contact.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-contact.whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn-contact.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.btn-contact.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220, 39, 67, 0.3);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #080604;
  padding: 60px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(140, 125, 101, 0.5);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    height: 380px;
  }

  .cabins-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  #navbar {
    padding: 18px 24px;
  }

  #navbar.scrolled {
    padding: 14px 24px;
  }

  .section {
    padding: 72px 0;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 220px);
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-a p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── HOW TO GET THERE ─────────────────────────────────────── */
.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-placeholder {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.map-pin-anim {
  position: relative;
  margin-bottom: 20px;
}

.map-pin-icon {
  font-size: 3rem;
  display: block;
  animation: pinBounce 2s ease-in-out infinite;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.map-ping {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: pingShadow 2s ease-in-out infinite;
}

@keyframes pingShadow {

  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translateX(-50%) scale(0.6);
    opacity: 0.2;
  }
}

.map-label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.howto-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.step-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .howto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-placeholder {
    min-height: 260px;
    padding: 40px 24px;
  }
}

/* ── FLOATING WHATSAPP ────────────────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  animation: waAppear 0.6s 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes waAppear {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

#wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(15, 13, 8, 0.95);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
}

#wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── SCROLL TO TOP ────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 104px;
  right: 36px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--surface);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  pointer-events: none;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#scroll-top:hover {
  background: var(--gold);
  color: #0f0d08;
}