/* =====================================================
   WEDDING PLANNER GUADELOUPE — Design System
   Palette : Ivory · Champagne Gold · Tropical Green
   ===================================================== */

/* Polices : Google Fonts si disponible, fallback système élégant */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --ivory:      #FAF7F0;
  --gold:       #C9A96E;
  --gold-dark:  #A8854A;
  --green:      #1A3A2A;
  --green-light:#2D5A3D;
  --coral:      #E8847A;
  --white:      #FFFFFF;
  --text:       #2C2C2C;
  --text-light: #6B6B6B;
  --border:     #E8E0D0;

  /* Stacks élégants : Cormorant si chargé, sinon Palatino (macOS/Windows) ou Georgia */
  --font-head: 'Cormorant Garamond', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Helvetica, -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.12);
  --transition: .3s ease;
  --max-w: 1120px;
  --section-pad: clamp(3rem, 8vw, 7rem);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

/* --- Typography ------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { margin-bottom: 1.2em; }

.subtitle {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .05em;
}

/* --- Layout Utilities ------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* --- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}
.btn-tel {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-tel:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* --- Header ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,247,240,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.tel-inline {
  display: none; /* hidden desktop, shown mobile via JS */
  font-weight: 700;
  color: var(--green);
  font-size: .9rem;
}

/* --- CTA Bar (above fold) --------------------------- */
.cta-bar {
  background: var(--green);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}
.cta-bar p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: .8rem;
  color: rgba(255,255,255,.85);
}
.cta-bar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-tel-mobile {
  display: none; /* shown only on mobile */
}

/* --- Hero ------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Mesh gradient tropical luxueux — fonctionne sans photo */
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,90,61,.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(16,48,32,.7) 0%, transparent 65%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(201,169,110,.18) 0%, transparent 55%),
    linear-gradient(150deg, #0d2318 0%, #1a3a2a 40%, #14301f 70%, #0a1e12 100%);
}
/* Motif feuilles tropicales en SVG inline (CSS uniquement) */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cellipse cx='500' cy='100' rx='160' ry='40' transform='rotate(-35 500 100)'/%3E%3Cellipse cx='500' cy='130' rx='130' ry='30' transform='rotate(-35 500 130)'/%3E%3Cellipse cx='100' cy='500' rx='140' ry='35' transform='rotate(40 100 500)'/%3E%3Cellipse cx='130' cy='470' rx='110' ry='28' transform='rotate(40 130 470)'/%3E%3Cellipse cx='300' cy='550' rx='120' ry='32' transform='rotate(-20 300 550)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px 600px;
  opacity: .7;
}
/* Lueur dorée subtile en bas à droite */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
  padding: 2rem 0;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* --- Section: Why ----------------------------------- */
.section-why { background: var(--white); }
.section-why .section-head { margin-bottom: 3.5rem; }
.section-head { text-align: center; }
.section-head .subtitle { margin-bottom: .5rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-light); max-width: 560px; margin: 0 auto; }

.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.why-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.why-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.why-card p  { color: var(--text-light); margin: 0; font-size: .95rem; }

/* --- Section: Cities grid --------------------------- */
.section-villes { background: var(--ivory); }
.villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1.5rem;
}
.ville-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.ville-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--text);
}
.ville-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
/* Motif SVG décoratif sur les cartes villes */
.ville-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg fill='rgba(255,255,255,0.06)'%3E%3Ccircle cx='160' cy='40' r='80'/%3E%3Ccircle cx='20' cy='160' r='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.ville-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}
.ville-card-ile {
  position: relative;
  z-index: 1;
  background: rgba(201,169,110,.9);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  font-weight: 700;
}
.ville-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; }
.ville-card-body h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.ville-card-body p  { font-size: .875rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* --- Section: Quote / Testimonial ------------------- */
.section-quote {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: var(--section-pad) 0;
}
.section-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.4;
  color: var(--white);
}
.section-quote blockquote::before { content: '\201C'; color: var(--gold); }
.section-quote blockquote::after  { content: '\201D'; color: var(--gold); }
.section-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Section: Process ------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.process-step p  { font-size: .875rem; color: var(--text-light); }

/* --- Ville Hero ------------------------------------- */
.ville-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--green);
  overflow: hidden;
}
.ville-hero-bg {
  position: absolute;
  inset: 0;
  /* Dégradé riche — chaque île a sa teinte via var(--ile-color) dans le template */
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(255,255,255,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(201,169,110,.1) 0%, transparent 60%),
    linear-gradient(145deg, var(--hero-dark, #0d2318) 0%, var(--hero-mid, #1a3a2a) 50%, var(--hero-accent, #12281a) 100%);
  background-size: cover;
  background-position: center;
  /* Si une vraie photo est dispo, elle s'affiche par-dessus */
  background-image:
    linear-gradient(145deg, rgba(13,35,24,.88) 0%, rgba(26,58,42,.65) 60%, rgba(18,40,26,.8) 100%),
    var(--bg-img, none);
}
.ville-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cg fill='rgba(255,255,255,0.03)'%3E%3Ccircle cx='350' cy='50' r='120'/%3E%3Ccircle cx='50' cy='350' r='90'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* --- Spots & Links Grid ----------------------------- */
.spots-list, .lieux-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: .75rem;
}
.spots-list li, .lieux-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--ivory);
  border-radius: var(--radius);
  font-size: .9rem;
}
.spots-list li::before { content: '📍'; }
.lieux-list li::before { content: '✨'; }

/* --- Internal links --------------------------------- */
.villes-proches-section { background: var(--white); }
.villes-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.villes-links a {
  display: inline-block;
  padding: .4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .8rem;
  color: var(--text);
  background: var(--ivory);
  transition: all var(--transition);
  letter-spacing: .05em;
}
.villes-links a:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.all-villes-section { background: var(--ivory); padding: 3rem 0; }

/* --- Contact Page ----------------------------------- */
.contact-hero {
  background: var(--green);
  padding: 5rem 0 4rem;
  text-align: center;
  color: var(--white);
}
.contact-hero h1 { color: var(--white); margin-bottom: 1rem; }
.contact-hero p   { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto; }

.game-section {
  background: var(--white);
  padding: 3rem 0;
  text-align: center;
}
.game-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.game-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: .5rem;
}
.game-subtitle {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
#bouquet-canvas {
  width: 100%;
  max-width: 480px;
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #e8f4f8 0%, #d4edda 100%);
  touch-action: none;
  cursor: none;
  border: 1px solid var(--border);
}
.game-score {
  margin-top: 1rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold);
}
.cta-after-game {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* --- Landing Page ----------------------------------- */
.landing-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(45,90,61,.6) 0%, transparent 65%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(201,169,110,.15) 0%, transparent 60%),
    linear-gradient(160deg, #0a1e12 0%, #1a3a2a 45%, #0d2318 100%);
}
.landing-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cg fill='none' stroke='rgba(201,169,110,0.06)' stroke-width='1'%3E%3Ccircle cx='250' cy='250' r='200'/%3E%3Ccircle cx='250' cy='250' r='160'/%3E%3Ccircle cx='250' cy='250' r='120'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
}
.landing-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 640px;
}
.landing-content h1 { color: var(--white); font-size: clamp(2rem,6vw,4rem); margin-bottom: 1.5rem; }
.landing-content h1 em { color: var(--gold); font-style: italic; }
.landing-content p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2.5rem; }
.landing-back {
  display: block;
  margin-top: 2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}
.landing-back:hover { color: rgba(255,255,255,.9); }

/* --- Config Page ------------------------------------ */
.config-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  padding: 2rem;
}
.config-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  width: 100%;
  max-width: 480px;
}
.config-card h1 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}
.config-card .subtitle { margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-group input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--ivory);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus { border-color: var(--gold); }
.config-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  text-align: center;
  line-height: 1.6;
}
#config-lock, #config-form { transition: opacity var(--transition); }

/* --- Sticky Phone (mobile) -------------------------- */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  width: calc(100% - 3rem);
  max-width: 320px;
}
.sticky-phone.visible { transform: translateX(-50%) translateY(0); }
.sticky-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--green);
  color: var(--white);
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 32px rgba(26,58,42,.45);
  text-decoration: none;
}
.sticky-phone a:hover { background: var(--green-light); color: var(--white); }
.sticky-phone-icon { font-size: 1.2rem; }

/* --- 1×1px hidden map ------------------------------ */
.seo-map { width: 1px; height: 1px; overflow: hidden; opacity: 0; position: absolute; pointer-events: none; }

/* --- JSON-LD visible block (optional) --------------- */
.local-biz-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}
.local-biz-card h4 { font-size: 1rem; margin-bottom: .3rem; }
.local-biz-card .address { font-size: .85rem; color: var(--text-light); }

/* --- Footer ----------------------------------------- */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; }
.footer-nav h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--gold); }

/* --- Divider ---------------------------------------- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider-left { margin-left: 0; }

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

  .cta-tel-mobile { display: inline-flex !important; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .process-steps::before { display: none; }
  .process-steps { gap: 2rem; }

  .sticky-phone { display: block; }

  .header-cta .btn-gold { display: none; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-tel-hero { display: flex; }

  .cta-bar-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .config-card { padding: 2rem 1.5rem; }
  .cta-bar { padding: 1rem 0; }
}

/* --- Animations ------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease forwards; }
.fade-up-delay-1 { animation-delay: .15s; opacity: 0; }
.fade-up-delay-2 { animation-delay: .3s;  opacity: 0; }
.fade-up-delay-3 { animation-delay: .45s; opacity: 0; }

/* --- Utility classes -------------------------------- */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.bg-white { background: var(--white); }
.bg-ivory { background: var(--ivory); }
.italic { font-style: italic; }
