/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --navy: #1a2547;
  --navy-deep: #111827;
  --navy-mid: #1e3060;
  --gold: #c9a96e;
  --gold-soft: #d4b882;
  --gold-hover: #b8934f;
  --sage: #6b8f71;
  --sage-deep: #4a7251;
  --sand: #f5f0e8;
  --cream: #faf8f4;
  --crisis-bg: #1e293b;

  --background: #faf8f4;
  --foreground: #1a1a1a;
  --muted-foreground: #6b7280;
  --border: rgba(0,0,0,0.08);
  --card: #ffffff;
  --primary-foreground: #faf8f4;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-elegant: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.35);

  /* Radius */
  --radius: 0.5rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 1.75rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container-luxe {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container-luxe { padding: 0 1.25rem; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: var(--font-display); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.animate-ken-burns {
  animation: kenBurns 18s ease-out forwards;
}
.animate-fade-up {
  animation: fadeUp 0.75s ease forwards;
}
.animate-float-slow {
  animation: floatSlow 4s ease-in-out infinite;
}
.animate-shimmer {
  animation: shimmer 2s ease-in-out infinite;
}

/* Scroll reveals */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-init.reveal-in {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.reveal-in {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.reveal-in {
  opacity: 1;
  transform: none;
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-zoom.reveal-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  color: var(--primary-foreground);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 6px 0;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}
.top-bar-left svg { color: var(--gold); flex-shrink: 0; }
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--gold); }
@media (max-width: 640px) { .top-bar-left { display: none; } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: rgba(250,248,244,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  width: 40px; height: 40px;
  border-radius: 50%;
}
.logo-text-primary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
}
.logo-text-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(26,26,26,0.85);
}
nav a {
  padding: 4px 0;
  transition: color 0.2s;
  position: relative;
}
nav a:hover { color: var(--navy); }
.nav-programs-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  font-size: 0.875rem;
  background: none;
  border: none;
  color: rgba(26,26,26,0.85);
  transition: color 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-programs-btn:hover { color: var(--navy); }
.header-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--primary-foreground);
  transition: background 0.2s;
  box-shadow: var(--shadow-soft);
}
.header-cta:hover { background: var(--navy-deep); }
.hamburger {
  display: none;
  padding: 8px;
  margin-right: -8px;
  background: none;
  border: none;
  color: var(--navy);
}
@media (max-width: 1024px) {
  nav, .header-cta-wrap { display: none !important; }
  .hamburger { display: block; }
}
@media (max-width: 768px) {
  .logo-text-primary { font-size: 1.1rem; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--background);
  z-index: 100;
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--navy);
  padding: 8px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu-cta {
  margin-top: 1rem;
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--navy);
  color: var(--primary-foreground) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--primary-foreground);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.85) 0%, rgba(26,37,71,0.6) 50%, rgba(17,24,39,0.7) 100%);
}
.hero-badge {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px 6px 8px;
  border-radius: var(--radius-full);
  background: rgba(17,24,39,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-elegant);
  animation: fadeUp 0.9s ease forwards;
}
.hero-badge img {
  width: 28px; height: 28px;
  border-radius: 50%;
}
.hero-badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-content {
  position: relative;
  padding: 7rem 0 10rem;
  max-width: 900px;
}
@media (max-width: 768px) {
  .hero-content { padding: 5rem 0 7rem; }
  .hero-badge { top: 1rem; right: 1rem; }
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  animation: fadeUp 0.7s ease forwards;
}
.hero h1 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--primary-foreground);
  text-wrap: balance;
  animation: fadeUp 0.7s 0.08s ease both;
}
.hero-desc {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250,248,244,0.85);
  max-width: 680px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.16s ease both;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.7s 0.24s ease both;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-gold:hover::after { transform: translateX(100%); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 5rem 0 0;
}
.stats-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-deep);
  max-width: 860px;
  text-wrap: pretty;
}
.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ============================================================
   CONTENT SECTIONS (alternating image/text)
   ============================================================ */
.content-sections {
  padding: 5rem 0 7rem;
}
.content-sections > * + * { margin-top: 7rem; }
@media (max-width: 768px) {
  .content-sections { padding: 3.5rem 0 5rem; }
  .content-sections > * + * { margin-top: 5rem; }
}

.section-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .section-article { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .section-article {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-article.reverse .img-col { order: -1; }
}

/* On desktop, alternate layout */
.section-article.reverse .img-col { order: 2; }
.section-article.reverse .text-col { order: 1; }
@media (max-width: 768px) {
  .section-article.reverse .img-col { order: 0; }
  .section-article.reverse .text-col { order: 0; }
}

.img-col {
  position: relative;
}
.img-wrap {
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elegant);
}
.img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.img-wrap:hover img { transform: scale(1.06); }
.img-float-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius-2xl);
  background: rgba(201,169,110,0.9);
  box-shadow: var(--shadow-gold);
  animation: floatSlow 4s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 768px) { .img-float-accent { display: none; } }

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.section-h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.2;
}
.section-body {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.section-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.section-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(26,26,26,0.85);
}
.section-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage-deep);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-section {
  padding-bottom: 6rem;
}
.cta-card {
  background: var(--sand);
  border-radius: var(--radius-3xl);
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-card { padding: 2rem 1.75rem; flex-direction: column; align-items: flex-start; }
}
.cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.cta-h3 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.cta-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 28rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(26,37,71,0.3);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--primary-foreground);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: var(--primary-foreground);
}
.crisis-bar {
  background: rgba(30,41,59,0.9);
  padding: 12px 0;
}
.crisis-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-align: center;
}
.crisis-inner a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.crisis-inner a:hover { color: var(--gold); }
.footer-main {
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  width: 48px; height: 48px;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.footer-brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer-desc {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(250,248,244,0.7);
  max-width: 22rem;
  line-height: 1.75;
}
.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(250,248,244,0.8);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-item svg { color: var(--gold); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a.active-link { color: var(--gold-soft); }

.hairline {
  height: 1px;
  background: rgba(250,248,244,0.15);
  margin: 3rem 0;
}
.footer-tools-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.tools-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--primary-foreground);
}
.tools-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(250,248,244,0.7);
  max-width: 36rem;
}
.tools-link {
  font-size: 0.875rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  align-self: flex-start;
  transition: color 0.2s;
}
.tools-link:hover { color: var(--gold-soft); }
.tools-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 1.5rem;
}
@media (max-width: 1024px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
.tools-grid li a {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.75);
  transition: color 0.2s;
  display: block;
  padding: 2px 0;
}
.tools-grid li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(250,248,244,0.6);
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.25rem;
  justify-content: center;
}
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 9rem;
  left: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(37,211,102,0.5);
  backdrop-filter: blur(6px);
  color: white;
  box-shadow: var(--shadow-elegant);
  transition: filter 0.2s;
  animation: floatSlow 4s ease-in-out infinite;
}
.whatsapp-float:hover { filter: brightness(1.1); }
.chat-float {
  position: fixed;
  bottom: 9rem;
  right: 1.5rem;
  z-index: 50;
  animation: floatSlow 4s 0.5s ease-in-out infinite;
}
.chat-float-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-elegant);
  transition: background 0.2s;
  position: relative;
}
.chat-float-inner:hover { background: var(--navy-deep); }
.chat-icon-wrap {
  display: grid;
  place-items: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
}
.chat-float-label {
  font-size: 0.875rem;
  font-weight: 600;
}
.chat-dot {
  position: absolute;
  top: -4px; right: -4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  animation: shimmer 2s ease-in-out infinite;
}

/* SVG icons inline helper */
svg { display: inline-block; vertical-align: middle; }