/* ============ RESET & TOKENS ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink: #132420;
  --ink-2: #1c332d;
  --ivory: #F6F2E9;
  --ivory-2: #EFE9DB;
  --charcoal: #22241F;
  --brass: #B98B4E;
  --brass-light: #D6AD78;
  --sage: #8FA089;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --container: 1200px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
input, select { font: inherit; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--brass);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--brass-light); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--charcoal); line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h2.on-dark { color: var(--ivory); }
h3 { font-size: 20px; }

.section-head { margin-bottom: 44px; }
.section-head-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn-outline-light { border: 1px solid rgba(246,242,233,0.4); color: var(--ivory); }
.btn-outline-light:hover { border-color: var(--brass-light); color: var(--brass-light); }
.btn-ghost-light { color: var(--ivory); font-size: 14px; font-weight: 500; padding: 10px 18px; border: 1px solid rgba(246,242,233,0.25); border-radius: var(--radius); }
.btn-ghost-light:hover { border-color: var(--brass); color: var(--brass-light); }
.btn-small { padding: 10px 18px; font-size: 13px; }

/* ============ PRELOADER ============ */
/* Self-hiding via CSS animation only — never depends on JS to disappear */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  animation: preloaderOut 0.5s ease forwards;
  animation-delay: 0.9s;
}
.preloader-mark { display: flex; align-items: center; gap: 4px; color: var(--brass-light); }
.pl-r { font-family: var(--font-display); font-size: 48px; font-weight: 600; animation: pulse 1.2s ease-in-out infinite; }
.pl-house { width: 28px; height: 28px; animation: pulse 1.2s ease-in-out infinite 0.15s; }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes preloaderOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(19, 36, 32, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 2px; color: var(--ivory); }
.brand-r { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.brand-house { width: 20px; height: 20px; color: var(--brass); margin: 0 2px; }
.brand-word { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: 0.01em; }
.brand-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--brass-light); margin-left: 8px; align-self: flex-end; margin-bottom: 4px; }

.main-nav { display: flex; gap: 32px; }
.main-nav a { color: var(--ivory); font-size: 14px; font-weight: 500; opacity: 0.85; transition: opacity 0.25s, color 0.25s; position: relative; }
.main-nav a:hover { opacity: 1; color: var(--brass-light); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,36,32,0.55) 0%, rgba(19,36,32,0.35) 40%, rgba(19,36,32,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 140px; max-width: 760px; }
.hero-title { font-size: clamp(44px, 7vw, 84px); margin-bottom: 20px; opacity: 0; animation: riseIn 0.9s 0.3s ease forwards; }
.hero-title em { font-style: italic; color: var(--brass-light); }
.hero-sub { font-size: 18px; max-width: 480px; margin-bottom: 36px; opacity: 0; animation: riseIn 0.9s 0.5s ease forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: riseIn 0.9s 0.7s ease forwards; }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue { position: absolute; bottom: 170px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-cue span { display: block; width: 1px; height: 40px; background: linear-gradient(var(--brass-light), transparent); animation: scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.6; } }

/* ============ BOOKING DOCK (signature element) ============ */
.booking-dock { position: relative; z-index: 2; margin-top: -110px; margin-bottom: 60px; }
.booking-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(19,36,32,0.22);
  padding: 26px 30px;
  display: flex; align-items: stretch; gap: 20px; flex-wrap: wrap;
}
.bf-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 130px; }
.bf-field label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.bf-field input, .bf-field select {
  border: none; border-bottom: 1px solid var(--ivory-2); padding: 6px 2px;
  background: transparent; font-size: 15px; color: var(--charcoal);
  transition: border-color 0.25s;
}
.bf-field input:focus, .bf-field select:focus { outline: none; border-color: var(--brass); }
.bf-divider { width: 1px; background: var(--ivory-2); align-self: stretch; }
.bf-submit { position: relative; padding: 14px 32px; }
.bf-spinner {
  display: none; width: 16px; height: 16px; margin-left: 10px;
  border: 2px solid rgba(19,36,32,0.25); border-top-color: var(--ink);
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
.bf-submit.is-loading .bf-spinner { display: inline-block; }
.bf-submit.is-loading .bf-submit-label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

.booking-result {
  margin-top: 18px;
  max-width: var(--container);
}
.result-card {
  background: var(--white);
  border: 1px solid var(--ivory-2);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  animation: riseIn 0.5s ease forwards;
}
.result-card.is-warning { border-left: 3px solid var(--brass); }
.result-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 4px; }
.result-sub { font-size: 14px; color: #555; }
.result-price { font-family: var(--font-mono); font-size: 20px; color: var(--ink); }

/* ============ INTRO ============ */
.intro { padding: 40px 0 100px; }
.intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.intro-copy h2 { margin-bottom: 18px; }
.intro-text { color: #444; max-width: 460px; }
.intro-stats { display: flex; flex-direction: column; gap: 22px; border-left: 1px solid var(--ivory-2); padding-left: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 34px; color: var(--brass); }
.stat-label { font-size: 13px; color: #666; }

/* ============ ROOMS ============ */
.rooms { padding: 60px 0 110px; }
.room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.room-card {
  background: var(--white); border: 1px solid var(--ivory-2); border-radius: var(--radius);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(19,36,32,0.1); }
.room-media { aspect-ratio: 16/10; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-media img { transform: scale(1.06); }
.room-body { padding: 24px 26px 28px; }
.room-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; gap: 12px; }
.room-price { font-size: 14px; color: #555; white-space: nowrap; }
.room-price .mono { font-size: 16px; color: var(--charcoal); }
.room-body > p { color: #666; font-size: 14px; margin-bottom: 14px; }
.room-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.room-tags li { font-size: 11px; font-family: var(--font-mono); color: var(--sage); border: 1px solid var(--ivory-2); border-radius: 20px; padding: 4px 10px; }
.room-link { font-size: 14px; font-weight: 600; color: var(--brass); }
.room-link:hover { color: var(--charcoal); }

/* ============ GALLERY ============ */
.gallery { padding: 0 0 110px; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-size: 13px; font-family: var(--font-mono); padding: 8px 16px;
  border: 1px solid var(--ivory-2); border-radius: 20px; color: #666;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--brass); color: var(--charcoal); }
.filter-btn.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); display: block;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:nth-child(4n+1) { grid-column: span 2; grid-row: span 2; }
.play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); background: rgba(19,36,32,0.35);
}

/* ============ AMENITIES ============ */
.amenities { background: var(--ink); padding: 90px 0; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.amenity svg { width: 30px; height: 30px; color: var(--brass-light); margin-bottom: 14px; }
.amenity h3 { color: var(--ivory); margin-bottom: 6px; font-size: 18px; }
.amenity p { color: rgba(246,242,233,0.65); font-size: 14px; }

/* ============ OFFERS ============ */
.offers { padding: 100px 0; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.offer-card { background: var(--white); border: 1px solid var(--ivory-2); border-radius: var(--radius); padding: 28px 26px; }
.offer-tag { display: inline-block; font-size: 11px; color: var(--brass); margin-bottom: 14px; letter-spacing: 0.08em; }
.offer-card h3 { margin-bottom: 8px; }
.offer-card p { color: #666; font-size: 14px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink-2); color: var(--ivory); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(246,242,233,0.12); }
.brand-footer { margin-bottom: 16px; }
.footer-note { font-size: 13px; color: rgba(246,242,233,0.55); max-width: 320px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--brass-light); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(246,242,233,0.75); margin-bottom: 10px; }
.footer-col a:hover { color: var(--brass-light); }
.footer-newsletter form { display: flex; gap: 8px; margin-bottom: 8px; }
.footer-newsletter input { flex: 1; min-width: 0; background: rgba(246,242,233,0.06); border: 1px solid rgba(246,242,233,0.2); border-radius: var(--radius); padding: 10px 12px; color: var(--ivory); font-size: 13px; }
.footer-newsletter input::placeholder { color: rgba(246,242,233,0.4); }
.newsletter-msg { font-size: 13px; color: var(--brass-light); min-height: 18px; }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { font-size: 12px; color: rgba(246,242,233,0.45); }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(19,36,32,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox-inner img, .lightbox-inner video { max-height: 75vh; width: 100%; object-fit: contain; border-radius: var(--radius); display: none; }
.lightbox-inner img.is-active, .lightbox-inner video.is-active { display: block; margin: 0 auto; }
.lightbox-caption { color: var(--ivory); font-size: 14px; margin-top: 16px; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: var(--ivory);
  font-size: 22px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(246,242,233,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, color 0.25s;
}
.lightbox-close:hover { border-color: var(--brass); color: var(--brass-light); }

/* ============ PAGE BANNER (interior pages) ============ */
.page-banner { background: var(--ink); padding: 200px 0 60px; }
.page-banner-short { padding: 200px 0 50px; }
.page-banner h1 { color: var(--ivory); font-size: clamp(34px, 5vw, 56px); margin-bottom: 12px; }
.banner-sub { color: rgba(246,242,233,0.7); max-width: 520px; font-size: 15px; }

.main-nav a.is-active { color: var(--brass-light); opacity: 1; }
.btn-ghost-light.is-active { border-color: var(--brass); color: var(--brass-light); }

.text-link { font-size: 14px; font-weight: 600; color: var(--brass); white-space: nowrap; }
.text-link:hover { color: var(--charcoal); }

.gallery-teaser { padding: 20px 0 100px; }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.teaser-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); transition: transform 0.5s ease, opacity 0.3s; }
.teaser-grid:hover img { opacity: 0.75; }
.teaser-grid img:hover { opacity: 1; transform: scale(1.04); }

.rooms-page, .gallery-page, .amenities-page, .offers-page { padding-top: 70px; }

/* ============ ROOM SEARCH (rooms page) ============ */
.room-search { display: flex; align-items: center; gap: 10px; max-width: 360px; margin: 0 0 40px; border: 1px solid var(--ivory-2); border-radius: 24px; padding: 10px 18px; background: var(--white); }
.room-search svg { width: 16px; height: 16px; color: var(--sage); flex-shrink: 0; }
.room-search input { border: none; outline: none; background: none; font-size: 14px; width: 100%; }
.room-card.is-hidden { display: none; }
.no-results { color: #777; font-size: 14px; padding: 20px 0; display: none; }
.no-results.is-visible { display: block; }

/* ============ AVAILABILITY TICKER (purple, sitewide) ============ */
.ticker {
  background: #4B2E6B;
  color: var(--ivory);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  margin-top: 20px;
  position: relative;
}
.site-header.is-scrolled .ticker { margin-top: 12px; }
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 26s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: #C9A6E8; flex-shrink: 0; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 80;
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; color: var(--white); }

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 80px 0 110px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-line { color: #555; font-size: 15px; margin-bottom: 10px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; background: var(--white); border: 1px solid var(--ivory-2); border-radius: var(--radius); padding: 30px; }
.contact-form label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--ivory-2); border-radius: var(--radius); padding: 10px 12px; font-size: 14px; font-family: var(--font-body); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brass); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* ============ STANDALONE BOOKING PAGE ============ */
.book-standalone { padding: 20px 0 100px; }
.booking-card-standalone { max-width: var(--container); margin: 0 auto; }

/* ============ MOBILE NAV BACKDROP ============ */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 85;
  background: rgba(19,36,32,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============ HERO SLIDESHOW ============ */
.hero-bg .hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg .hero-slide.is-active { opacity: 1; }
.hero-bg .hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 9s ease-out forwards; }

/* ============ LIGHTBOX DETAIL PANEL ============ */
.lightbox-details { text-align: left; background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 18px 22px; margin-top: 16px; }
.lightbox-details h3 { color: var(--ivory); font-size: 18px; margin-bottom: 6px; }
.lightbox-details .ld-price { font-family: var(--font-mono); color: var(--brass-light); font-size: 14px; margin-bottom: 8px; display: inline-block; }
.lightbox-details p { color: rgba(246,242,233,0.75); font-size: 13.5px; line-height: 1.5; }
.lightbox-caption { display: none; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .room-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; grid-row: span 1; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--ink); flex-direction: column; padding: 100px 32px; gap: 24px; transition: right var(--transition); z-index: 90; }
  .main-nav.is-open { right: 0; }
  .nav-toggle { display: flex; }
  .header-cta .btn-ghost-light { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-stats { border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; }
  .booking-card { flex-direction: column; }
  .bf-divider { display: none; }
  .booking-dock { margin-top: -60px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .brand-tag { display: none; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .ticker-item { font-size: 11.5px; }
}
