/* ═══════════════════════════════════════════════════════════
   BonDébarras Mont-Blanc — Design System
   Alpine premium • Mobile-first • Performance-optimized
   ═══════════════════════════════════════════════════════════ */

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

:root {
  /* Colors — Deep forest meets warm alpine gold */
  --c-forest-900: #0F2B1E;
  --c-forest-800: #1B4332;
  --c-forest-700: #2D6A4F;
  --c-forest-600: #3A9273;
  --c-forest-500: #52B788;
  --c-forest-100: #D8F3DC;
  --c-forest-50: #F0F8F5;

  --c-gold-600: #96722B;
  --c-gold-500: #C9963B;
  --c-gold-400: #D4A05A;
  --c-gold-300: #E4C68A;
  --c-gold-100: #FDF6E3;

  --c-stone-900: #1A1A18;
  --c-stone-800: #2D2D28;
  --c-stone-700: #3D3D36;
  --c-stone-600: #525249;
  --c-stone-500: #6B6B60;
  --c-stone-400: #8F8F82;
  --c-stone-300: #B5B5A8;
  --c-stone-200: #D4D4C8;
  --c-stone-100: #ECECDF;
  --c-stone-50: #FAFAF5;

  --c-white: #FFFFFF;
  --c-whatsapp: #25D366;
  --c-error: #DC2626;

  /* Typography */
  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem;

  /* Layout */
  --max-w: 1140px;
  --gutter: var(--s-4);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15,43,30,0.08);
  --shadow-md: 0 4px 12px rgba(15,43,30,0.1);
  --shadow-lg: 0 12px 32px rgba(15,43,30,0.12);
  --shadow-xl: 0 20px 40px rgba(15,43,30,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 250ms var(--ease);
  --t-slow: 400ms var(--ease);

  /* Border radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-full: 9999px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-stone-800);
  background: var(--c-stone-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-forest-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-forest-800); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--f-display); color: var(--c-forest-900); line-height: 1.15; }
h4, h5, h6 { font-family: var(--f-body); font-weight: 600; color: var(--c-stone-800); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: var(--s-4); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: var(--s-3); }
p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-6); border-radius: var(--r-md);
  font-family: var(--f-body); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--t-base); white-space: nowrap;
}
.btn--lg { padding: var(--s-4) var(--s-8); font-size: 1.05rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--c-forest-800); color: var(--c-white);
  box-shadow: 0 2px 8px rgba(27,67,50,0.3);
}
.btn--primary:hover {
  background: var(--c-forest-700); color: var(--c-white);
  transform: translateY(-1px); box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: var(--c-whatsapp); color: var(--c-white);
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  background: #20BD5A; color: var(--c-white);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn--outline {
  background: transparent; color: var(--c-forest-800);
  border: 2px solid var(--c-stone-200);
}
.btn--outline:hover {
  border-color: var(--c-forest-600); color: var(--c-forest-700);
  background: var(--c-forest-50);
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,245,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-stone-200);
}
.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--c-forest-800), var(--c-forest-600), var(--c-gold-500));
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-3); padding-bottom: var(--s-3);
  gap: var(--s-4);
}

.nav__brand {
  display: flex; align-items: baseline; gap: var(--s-2);
  text-decoration: none;
}
.brand-name {
  font-family: var(--f-display); font-size: 1.5rem;
  color: var(--c-forest-900); line-height: 1;
}
.brand-location {
  font-family: var(--f-body); font-size: 0.8rem; font-weight: 500;
  color: var(--c-gold-500); letter-spacing: 0.05em; text-transform: uppercase;
}

.nav__links { display: flex; align-items: center; gap: var(--s-4); }
.nav__cities { display: flex; gap: var(--s-1); flex-wrap: wrap; }
.nav__cities a {
  padding: var(--s-1) var(--s-2); border-radius: var(--r-sm);
  font-size: 0.8rem; font-weight: 500; color: var(--c-stone-600);
  transition: all var(--t-fast);
}
.nav__cities a:hover, .nav__cities a.active {
  background: var(--c-forest-50); color: var(--c-forest-800);
}
.nav__cta {
  display: flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-full);
  background: var(--c-forest-800); color: var(--c-white);
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: all var(--t-base);
}
.nav__cta:hover { background: var(--c-forest-700); color: var(--c-white); transform: translateY(-1px); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--s-2); background: none; border: none; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--c-stone-700); transition: all var(--t-base);
}

@media (max-width: 860px) {
  .nav__cities { display: none; }
  .nav__toggle { display: flex; }
  .nav__links { gap: var(--s-2); }
}
@media (max-width: 480px) {
  .brand-name { font-size: 1.3rem; }
  .nav__cta .cta-text { display: none; }
  .nav__cta { padding: var(--s-2); border-radius: 50%; width: 40px; height: 40px; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; padding: var(--s-16) 0 var(--s-20);
  color: var(--c-white); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--c-forest-900) 0%, rgba(27,67,50,0.95) 40%, rgba(45,106,79,0.9) 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,150,59,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(82,183,136,0.1) 0%, transparent 60%);
}

.hero__content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-4); margin-bottom: var(--s-8);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full); font-size: 0.85rem; font-weight: 500;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-whatsapp);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title { margin-bottom: var(--s-6); }
.hero__title-main {
  display: block; font-family: var(--f-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem); line-height: 1.1;
}
.hero__title-accent {
  display: block; font-family: var(--f-display); font-style: italic;
  color: var(--c-gold-300); font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: var(--s-2);
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.7;
  opacity: 0.9; margin-bottom: var(--s-10); max-width: 560px; margin-inline: auto;
}

.hero__stats {
  display: flex; justify-content: center; gap: var(--s-8);
  margin-bottom: var(--s-10); padding: var(--s-6) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat__number {
  display: block; font-family: var(--f-display);
  font-size: 1.5rem; color: var(--c-gold-300);
}
.stat__label { display: block; font-size: 0.8rem; opacity: 0.7; margin-top: var(--s-1); }

.hero__cta { display: flex; justify-content: center; gap: var(--s-4); flex-wrap: wrap; }

@media (max-width: 520px) {
  .hero { padding: var(--s-10) 0 var(--s-12); }
  .hero__stats { gap: var(--s-4); }
  .hero__cta { flex-direction: column; align-items: stretch; padding: 0 var(--s-4); }
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust {
  padding: var(--s-5) 0;
  background: var(--c-white); border-bottom: 1px solid var(--c-stone-100);
}
.trust__items {
  display: flex; justify-content: center; gap: var(--s-8); flex-wrap: wrap;
}
.trust__item {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: 0.9rem; font-weight: 500; color: var(--c-stone-600);
}
.trust__icon { font-size: 1.1rem; }

@media (max-width: 520px) {
  .trust__items { gap: var(--s-4); }
  .trust__item { font-size: 0.82rem; }
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--s-12); }
.section-title {
  font-family: var(--f-display); font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--c-forest-900);
}
.section-subtitle {
  font-size: 1.05rem; color: var(--c-stone-500);
  margin-top: var(--s-3); max-width: 540px; margin-inline: auto;
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-section { padding: var(--s-20) 0; }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
}

.service-card {
  display: flex; flex-direction: column;
  padding: var(--s-8); background: var(--c-white);
  border: 1px solid var(--c-stone-100); border-radius: var(--r-lg);
  text-decoration: none; color: inherit;
  transition: all var(--t-base);
}
.service-card:hover {
  border-color: var(--c-forest-500); color: inherit;
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.service-card__icon { font-size: 2rem; margin-bottom: var(--s-4); }
.service-card__title {
  font-family: var(--f-display); font-size: 1.25rem;
  color: var(--c-forest-900); margin-bottom: var(--s-3);
}
.service-card__desc { font-size: 0.9rem; color: var(--c-stone-500); margin-bottom: var(--s-4); flex: 1; }
.service-card__features {
  list-style: none; margin-bottom: var(--s-4);
}
.service-card__features li {
  font-size: 0.82rem; color: var(--c-stone-600); padding: var(--s-1) 0;
  border-bottom: 1px solid var(--c-stone-100);
}
.service-card__features li::before {
  content: '✓ '; color: var(--c-forest-600); font-weight: 600;
}
.service-card__link {
  font-size: 0.88rem; font-weight: 600; color: var(--c-forest-700);
  margin-top: auto;
}
.service-card:hover .service-card__link { color: var(--c-forest-600); }

/* ── Cities Grid ────────────────────────────────────────────── */
.coverage { padding: var(--s-20) 0; background: var(--c-white); }
.cities__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s-4);
}
.city-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  background: var(--c-stone-50); border: 1px solid var(--c-stone-100);
  border-radius: var(--r-md); text-decoration: none; color: inherit;
  transition: all var(--t-base);
}
.city-card:hover {
  background: var(--c-forest-50); border-color: var(--c-forest-500); color: inherit;
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.city-card__name { font-weight: 600; color: var(--c-stone-800); font-size: 0.95rem; }
.city-card__postal { font-size: 0.78rem; color: var(--c-stone-400); }
.city-card__arrow { color: var(--c-forest-600); font-weight: 600; transition: transform var(--t-fast); }
.city-card:hover .city-card__arrow { transform: translateX(3px); }

/* ── Why Section ────────────────────────────────────────────── */
.why { padding: var(--s-20) 0; }
.why__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
}
.why__item {
  padding: var(--s-6);
  background: var(--c-white); border: 1px solid var(--c-stone-100);
  border-radius: var(--r-lg);
}
.why__icon { font-size: 2rem; margin-bottom: var(--s-4); }
.why__item h3 { font-size: 1.1rem; margin-bottom: var(--s-2); }
.why__item p { font-size: 0.9rem; color: var(--c-stone-500); }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { padding: var(--s-16) 0; }
.cta-box {
  text-align: center; padding: var(--s-12) var(--s-8);
  background: linear-gradient(135deg, var(--c-forest-900), var(--c-forest-800));
  border-radius: var(--r-xl); color: var(--c-white);
}
.cta-box h2 {
  color: var(--c-white); font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--s-3);
}
.cta-box p { opacity: 0.9; margin-bottom: var(--s-8); }
.cta-box__actions { display: flex; justify-content: center; gap: var(--s-4); flex-wrap: wrap; }
.cta-box__hours { margin-top: var(--s-6); font-size: 0.85rem; opacity: 0.6; }

@media (max-width: 520px) {
  .cta-box { padding: var(--s-8) var(--s-4); }
  .cta-box__actions { flex-direction: column; align-items: stretch; }
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: var(--s-3) 0; background: var(--c-white);
  border-bottom: 1px solid var(--c-stone-100);
}
.breadcrumb .container { display: flex; align-items: center; gap: var(--s-2); }
.breadcrumb a { font-size: 0.82rem; color: var(--c-stone-400); }
.breadcrumb a:hover { color: var(--c-forest-700); }
.breadcrumb span[aria-hidden] { font-size: 0.75rem; color: var(--c-stone-300); }
.breadcrumb span[aria-current] { font-size: 0.82rem; color: var(--c-stone-700); font-weight: 500; }

/* ── City Hero ──────────────────────────────────────────────── */
.city-hero {
  padding: var(--s-12) 0 var(--s-10);
  background: linear-gradient(135deg, var(--c-forest-900), var(--c-forest-800));
  color: var(--c-white);
}
.city-hero__badge {
  display: inline-block; padding: var(--s-1) var(--s-3);
  background: rgba(255,255,255,0.1); border-radius: var(--r-full);
  font-size: 0.82rem; font-weight: 500; margin-bottom: var(--s-4);
  border: 1px solid rgba(255,255,255,0.15);
}
.city-hero__title {
  color: var(--c-white); margin-bottom: var(--s-4);
}
.city-hero__desc { font-size: 1.05rem; opacity: 0.9; max-width: 640px; margin-bottom: var(--s-8); }
.city-hero__cta { display: flex; gap: var(--s-4); flex-wrap: wrap; margin-bottom: var(--s-8); }
.city-hero__stats { display: flex; gap: var(--s-8); }

@media (max-width: 640px) {
  .city-hero { padding: var(--s-8) 0; }
  .city-hero__cta { flex-direction: column; align-items: stretch; }
  .city-hero__stats { gap: var(--s-4); }
}

/* ── Service Hero ───────────────────────────────────────────── */
.service-hero {
  padding: var(--s-12) 0; text-align: center;
  background: linear-gradient(135deg, var(--c-forest-900), var(--c-forest-800));
  color: var(--c-white);
}
.service-hero__icon { font-size: 3rem; margin-bottom: var(--s-4); }
.service-hero__title { color: var(--c-white); margin-bottom: var(--s-4); }
.service-hero__desc { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin-inline: auto; margin-bottom: var(--s-8); }
.service-hero__cta { display: flex; justify-content: center; gap: var(--s-4); flex-wrap: wrap; }

/* ── Content Grid (City & Service pages) ────────────────────── */
.city-content, .service-content { padding: var(--s-12) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: var(--s-8); align-items: start; }
.content-main h2 { margin-top: var(--s-8); }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: var(--s-6); font-family: var(--f-display); }
.content-main p { color: var(--c-stone-600); }

@media (max-width: 860px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ── Sidebar ────────────────────────────────────────────────── */
.content-sidebar { display: flex; flex-direction: column; gap: var(--s-6); position: sticky; top: 80px; }

.sidebar-card {
  padding: var(--s-6); background: var(--c-white);
  border: 1px solid var(--c-stone-100); border-radius: var(--r-lg);
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: var(--s-3); }
.sidebar-card h4 { font-size: 0.95rem; margin-bottom: var(--s-3); }
.sidebar-card p { font-size: 0.9rem; color: var(--c-stone-500); margin-bottom: var(--s-4); }
.sidebar-card .btn { margin-bottom: var(--s-3); }
.sidebar-card .btn:last-child { margin-bottom: 0; }

.sidebar-card--cta {
  background: var(--c-forest-50); border-color: var(--c-forest-100);
}

.sidebar-service {
  display: flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) 0; font-size: 0.9rem; color: var(--c-stone-600);
  border-bottom: 1px solid var(--c-stone-100); text-decoration: none;
}
.sidebar-service:last-child { border-bottom: none; }
.sidebar-service:hover { color: var(--c-forest-700); }

/* ── Services Links (on city pages) ─────────────────────────── */
.services-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3); margin-top: var(--s-3); margin-bottom: var(--s-4);
}
.service-link {
  display: flex; align-items: center; gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--c-white); border: 1px solid var(--c-stone-100);
  border-radius: var(--r-md); font-size: 0.9rem; font-weight: 500;
  color: var(--c-stone-700); text-decoration: none;
  transition: all var(--t-base);
}
.service-link:hover {
  border-color: var(--c-forest-500); background: var(--c-forest-50); color: var(--c-forest-800);
  transform: translateY(-1px);
}

/* ── Neighborhoods ──────────────────────────────────────────── */
.neighborhoods {
  display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3);
}
.neighborhood {
  padding: var(--s-1) var(--s-3);
  background: var(--c-stone-100); border-radius: var(--r-full);
  font-size: 0.82rem; color: var(--c-stone-600);
}

/* ── Steps ──────────────────────────────────────────────────── */
.steps { margin-top: var(--s-4); }
.step {
  display: flex; gap: var(--s-4); padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-stone-100);
}
.step:last-child { border-bottom: none; }
.step__number {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-forest-800); color: var(--c-white);
  border-radius: 50%; font-weight: 700; font-size: 0.9rem;
}
.step h4 { font-size: 0.95rem; margin-bottom: var(--s-1); }
.step p { font-size: 0.88rem; color: var(--c-stone-500); margin: 0; }

/* ── Nearby Links ───────────────────────────────────────────── */
.nearby-links { display: flex; flex-direction: column; gap: var(--s-1); }
.nearby-link {
  display: block; padding: var(--s-2) 0;
  font-size: 0.88rem; color: var(--c-stone-600);
  border-bottom: 1px solid var(--c-stone-100); text-decoration: none;
}
.nearby-link:last-child { border-bottom: none; }
.nearby-link:hover { color: var(--c-forest-700); }

/* ── Info List ──────────────────────────────────────────────── */
.info-list { font-size: 0.88rem; }
.info-list dt { color: var(--c-stone-400); font-weight: 500; margin-top: var(--s-2); }
.info-list dt:first-child { margin-top: 0; }
.info-list dd { color: var(--c-stone-700); font-weight: 600; }

/* ── Features List ──────────────────────────────────────────── */
.features-list { list-style: none; margin: var(--s-4) 0; }
.feature {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) 0; border-bottom: 1px solid var(--c-stone-100);
  font-size: 0.95rem;
}
.feature__check { color: var(--c-forest-600); font-weight: 700; }

/* ── City Tags ──────────────────────────────────────────────── */
.city-tags {
  display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3);
}
.city-tags a {
  padding: var(--s-1) var(--s-3);
  background: var(--c-forest-50); border: 1px solid var(--c-forest-100);
  border-radius: var(--r-full); font-size: 0.82rem; color: var(--c-forest-800);
  text-decoration: none; transition: all var(--t-fast);
}
.city-tags a:hover {
  background: var(--c-forest-800); color: var(--c-white); border-color: var(--c-forest-800);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: var(--s-16) 0 var(--s-8);
  background: var(--c-stone-900); color: var(--c-stone-300);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 2fr; gap: var(--s-12); margin-bottom: var(--s-12); }

.footer-logo { margin-bottom: var(--s-4); }
.footer-logo .brand-name { color: var(--c-white); font-size: 1.4rem; }
.footer-logo .brand-location { color: var(--c-gold-400); }
.footer__desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: var(--s-6); color: var(--c-stone-400); }

.footer__contact-methods { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__phone, .footer__whatsapp {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600; color: var(--c-white); text-decoration: none;
  transition: color var(--t-fast);
}
.footer__phone:hover { color: var(--c-forest-500); }
.footer__whatsapp:hover { color: var(--c-whatsapp); }

.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.footer__col h4 {
  font-size: 0.82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--c-stone-400); margin-bottom: var(--s-4);
}
.footer__col a {
  display: block; padding: var(--s-1) 0;
  font-size: 0.85rem; color: var(--c-stone-400); text-decoration: none;
}
.footer__col a:hover { color: var(--c-white); }

.footer__bottom {
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer__bottom p { font-size: 0.78rem; color: var(--c-stone-500); margin-bottom: var(--s-2); }
.footer__credit a { color: var(--c-gold-400); }
.footer__credit a:hover { color: var(--c-gold-300); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer__nav { grid-template-columns: 1fr; }
}

/* ── Floating Button ────────────────────────────────────────── */
.floating-actions { position: fixed; bottom: var(--s-6); right: var(--s-4); z-index: 1000; }
.floating-btn {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-whatsapp); color: var(--c-white);
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--t-base); overflow: hidden;
}
.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  width: 130px; border-radius: 28px; color: var(--c-white);
}
.floating-icon { font-size: 1.5rem; flex-shrink: 0; }
.floating-label {
  position: absolute; left: 44px; opacity: 0; transform: translateX(-8px);
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  transition: all var(--t-base); pointer-events: none;
}
.floating-btn:hover .floating-label { opacity: 1; transform: translateX(0); }

@media (max-width: 640px) {
  .floating-actions { bottom: var(--s-4); right: var(--s-3); }
  .floating-btn { width: 52px; height: 52px; }
  .floating-btn:hover { width: 52px; border-radius: 50%; }
  .floating-label { display: none; }
}

/* ── Print styles ───────────────────────────────────────────── */
@media print {
  .header, .floating-actions, .cta-section, .footer { display: none; }
  body { color: #000; background: #fff; }
  .hero { background: #f5f5f5 !important; color: #000 !important; }
}
