/* ==========================================================================
   DIGITAL STRONG — style.css
   Design system : agence digitale premium — Casablanca, Maroc
   ========================================================================== */

:root {
  /* Couleurs */
  --navy-900: #030C1B;
  --navy-800: #071326;
  --navy-700: #0D1B30;
  --navy-600: #122240;
  --gold-500: #DEAC41;
  --gold-300: #EED67E;
  --gold-700: #956B38;
  --ivory: #F5F5F3;
  --grey-200: #B8BDC7;
  --grey-500: #666D78;
  --bg-light: #F6F7F9;
  --white: #FFFFFF;

  /* Texte sur fond clair / sombre */
  --text-on-light: var(--navy-900);
  --text-on-light-soft: var(--grey-500);
  --text-on-dark: var(--ivory);
  --text-on-dark-soft: var(--grey-200);

  /* Typo */
  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Rayon / ombre */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 60px -30px rgba(3, 12, 27, 0.35);
  --shadow-gold: 0 10px 30px -12px rgba(222, 172, 65, 0.45);

  /* Rythme */
  --section-pad: clamp(64px, 9vw, 128px);
  --container-w: 1240px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.22s var(--ease);
  --t-med: 0.45s var(--ease);
  --t-slow: 0.9s var(--ease);
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-on-light);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-700);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* Titres sur fond sombre : toujours en ivoire pour rester lisibles
   (hero, sections sombres, bandeau CTA, cartes de contact, etc.) */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4,
[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3,
.hero h1, .hero h2, .hero h3, .hero h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--surface h1, .section--surface h2, .section--surface h3, .section--surface h4,
.cta-band h1, .cta-band h2, .cta-band h3, .cta-band h4,
.contact-info-card h1, .contact-info-card h2, .contact-info-card h3, .contact-info-card h4 { color: var(--ivory); }

h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); }

p { color: var(--text-on-light-soft); }
.on-dark p { color: var(--text-on-dark-soft); }

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* Layout utilities                                                        */
/* ---------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); position: relative; }
.section--dark { background: var(--navy-900); color: var(--text-on-dark); }
.section--surface { background: var(--navy-700); color: var(--text-on-dark); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.lead { font-size: 1.1rem; }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(222,172,65,0.4), transparent);
}
.divider--dark { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent); }

/* ---------------------------------------------------------------------- */
/* Boutons                                                                  */
/* ---------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); flex-shrink: 0; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(222,172,65,0.6); }
.btn--gold:hover svg { transform: translateX(3px); }

.btn--ghost-dark {
  border-color: rgba(245,245,243,0.35);
  color: var(--ivory);
  background: transparent;
}
.btn--ghost-dark:hover { border-color: var(--gold-300); color: var(--gold-300); transform: translateY(-2px); }

.btn--ghost-light {
  border-color: rgba(3,12,27,0.18);
  color: var(--navy-900);
  background: transparent;
}
.btn--ghost-light:hover { border-color: var(--gold-700); color: var(--gold-700); transform: translateY(-2px); }

.btn--sm { padding: 11px 20px; font-size: 0.82rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------------- */
/* Header / Navigation                                                     */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 900;
  padding-block: 20px;
  transition: padding var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 27, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity var(--t-fast);
  z-index: -1;
}
.site-header.is-scrolled { padding-block: 12px; box-shadow: 0 12px 30px -18px rgba(0,0,0,0.5); }
.site-header.is-scrolled::before { opacity: 1; }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.03em; color: var(--ivory); }
.brand-sig { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-300); margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark-soft);
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active { color: var(--ivory); background: rgba(255,255,255,0.06); }
.nav-link .caret { width: 9px; height: 9px; transition: transform var(--t-fast); }
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn--gold { padding: 12px 22px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ivory); transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mega menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(880px, 86vw);
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 20;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.mega-menu-head h3 { color: var(--ivory); font-size: 1.05rem; }
.mega-menu-head p { max-width: 320px; font-size: 0.84rem; margin: 0; }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 22px; }
.mega-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: background var(--t-fast);
}
.mega-item:hover, .mega-item:focus-visible { background: rgba(222,172,65,0.08); }
.mega-item .num { font-family: var(--font-display); font-size: 0.7rem; color: var(--gold-500); font-weight: 700; padding-top: 2px; }
.mega-item strong { display: block; color: var(--ivory); font-size: 0.92rem; margin-bottom: 3px; }
.mega-item span { font-size: 0.8rem; color: var(--grey-200); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy-900);
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform var(--t-med);
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer ul { display: flex; flex-direction: column; }
.mobile-drawer > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer .nav-link { width: 100%; justify-content: space-between; padding: 18px 4px; font-size: 1.05rem; border-radius: 0; }
.mobile-sub { display: none; padding-bottom: 12px; }
.mobile-sub.is-open { display: block; }
.mobile-sub a { display: block; padding: 10px 4px 10px 14px; font-size: 0.9rem; color: var(--grey-200); border-left: 1px solid rgba(222,172,65,0.3); }
.mobile-drawer-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ---------------------------------------------------------------------- */
/* Hero (page d'accueil : voir home.css) / Hero des sous-pages             */
/* ---------------------------------------------------------------------- */
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }

.page-hero {
  position: relative;
  background: radial-gradient(circle at 88% 10%, var(--navy-700) 0%, var(--navy-900) 60%), var(--navy-900);
  color: var(--text-on-dark);
  padding-top: clamp(140px, 16vw, 190px);
  padding-bottom: clamp(64px, 8vw, 96px);
}
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero h1 { max-width: 780px; }
.page-hero .lead { max-width: 620px; margin-top: 18px; color: var(--text-on-dark-soft); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--grey-200); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb .sep { opacity: 0.5; }

/* Hero de sous-page avec illustration (variante à 2 colonnes) */
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: clamp(28px, 5vw, 56px); }
.page-hero-visual-wrap { position: relative; max-width: 380px; margin-inline: auto; }
.page-hero-visual-wrap::before {
  content: "";
  position: absolute;
  inset: 3%;
  background: radial-gradient(circle at 50% 44%, #F5F5F3 0%, #F5F5F3 58%, rgba(245,245,243,0) 74%);
  border-radius: 50%;
  z-index: 0;
}
.page-hero-visual { --primary-svg-color: var(--gold-700); position: relative; z-index: 1; width: 100%; display: block; filter: drop-shadow(0 18px 26px rgba(3,12,27,0.35)); }
@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual-wrap { max-width: 260px; order: -1; margin-bottom: 8px; }
}

/* ---------------------------------------------------------------------- */
/* Cards & composants                                                       */
/* ---------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(3,12,27,0.06);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(222,172,65,0.35); }

/* Grille de services : voir home.css (utilisée uniquement sur l'accueil) */
.service-icon { width: 40px; height: 40px; color: var(--gold-500); margin-bottom: 16px; }

/* Process / méthode */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding-block: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.process-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.process-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--gold-500); }
.process-item h3 { color: var(--ivory); margin-bottom: 8px; }
.process-item p { max-width: 560px; }

/* Pourquoi / avantages */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason-item { padding-top: 20px; border-top: 2px solid var(--gold-500); }
.reason-item h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* Local section */
.local-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.local-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.local-tag {
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--grey-200);
}

/* Portfolio */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(3,12,27,0.14);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-on-light-soft);
  background: var(--white);
  transition: all var(--t-fast);
}
.filter-btn.is-active, .filter-btn:hover { border-color: var(--gold-500); color: var(--navy-900); background: var(--gold-300); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-card { display: none; }
.portfolio-card.is-visible { display: block; }
.portfolio-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}
.portfolio-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.portfolio-tag { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-700); font-weight: 700; margin-bottom: 8px; }
.portfolio-empty {
  text-align: center;
  padding: 70px 24px;
  border: 1px dashed rgba(3,12,27,0.18);
  border-radius: var(--radius-lg);
  background: var(--white);
}

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid rgba(3,12,27,0.1); }
[data-theme="dark"] .faq-item, .section--dark .faq-item, .section--surface .faq-item { border-color: rgba(255,255,255,0.1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
}
.faq-q .plus { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--gold-500); transition: transform var(--t-fast);
}
.faq-q .plus::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { height: 100%; width: 2px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-med); }
.faq-a-inner { padding: 0 4px 24px; max-width: 640px; }
.faq-item.is-open .faq-a { max-height: 400px; }

/* CTA final band */
.cta-band {
  background: var(--navy-900);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(222,172,65,0.14), transparent 55%);
}
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin: 16px auto 32px; }
.cta-band-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--white);
  border: 1px solid rgba(3,12,27,0.16);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.94rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(222,172,65,0.18);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.76rem; color: #B4432E; min-height: 16px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #B4432E; }
.form-status { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.88rem; display: none; }
.form-status.is-success { display: block; background: rgba(88,140,90,0.12); color: #3C6B3E; }
.form-status.is-error { display: block; background: rgba(180,67,46,0.1); color: #B4432E; }
.form-status.is-loading { display: block; background: rgba(3,12,27,0.06); color: var(--navy-900); }

.contact-info-card { background: var(--navy-900); color: var(--text-on-dark); border-radius: var(--radius-lg); padding: 34px; }
.contact-info-row { display: flex; gap: 14px; padding-block: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info-row:first-of-type { border-top: none; }
.contact-info-row svg { width: 20px; height: 20px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.contact-info-row strong { display: block; color: var(--ivory); font-size: 0.92rem; margin-bottom: 2px; }
.contact-info-row span, .contact-info-row a { font-size: 0.88rem; color: var(--grey-200); }
.contact-info-row a:hover { color: var(--gold-300); }

/* Section "Le constat" : voir home.css (utilisée uniquement sur l'accueil) */

/* Prestations lists (pages services) */
.presta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.presta-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(3,12,27,0.08); }
.presta-item svg { width: 16px; height: 16px; color: var(--gold-700); margin-top: 3px; flex-shrink: 0; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-chip { background: #d7ae2d; border: 1px solid hsla(175, 81%, 6%, 0.08); border-radius: var(--radius-md); padding: 20px; font-weight: 600; font-family: var(--font-display); font-size: 0.94rem; }

/* Footer */
.site-footer { background: var(--navy-900); color: var(--text-on-dark-soft); padding-top: clamp(56px, 7vw, 90px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-tagline { max-width: 280px; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.88rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--gold-300); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: border-color var(--t-fast), color var(--t-fast); }
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-300); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--gold-300); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-900);
  border: 1px solid rgba(222,172,65,0.35);
  color: var(--ivory);
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: 0 16px 40px -14px rgba(3,12,27,0.5);
  transition: transform var(--t-fast), padding var(--t-fast), background var(--t-fast);
}
.whatsapp-float:hover { transform: translateY(-3px); background: var(--navy-800); }
.whatsapp-float svg { width: 22px; height: 22px; color: #25D366; flex-shrink: 0; }
.whatsapp-float span { font-size: 0.82rem; font-weight: 600; white-space: nowrap; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 799;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 16px; height: 16px; }

/* Legal pages */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 44px; margin-bottom: 14px; font-size: 1.35rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 22px; }
.legal-placeholder { background: rgba(222,172,65,0.1); border: 1px dashed var(--gold-700); border-radius: var(--radius-sm); padding: 2px 8px; font-style: italic; color: var(--gold-700); font-size: 0.94em; }

/* Utility */
.text-gold { color: var(--gold-500); }
.mt-0 { margin-top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold-500); color: var(--navy-900);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.85rem; z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }
