/* ============================================================
   PATRIMOINE ALSACE — CSS Premium
   Colors: Navy #1B2A4A | Gold #C9A84C | Light #F7F5F0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #111D33;
  --navy-light: #2C4170;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-pale:  #F5EDD5;
  --cream:      #F7F5F0;
  --white:      #FFFFFF;
  --gray-100:   #F4F4F6;
  --gray-200:   #E8E8EE;
  --gray-400:   #9999AA;
  --gray-600:   #555566;
  --gray-800:   #222233;
  --text:       #1A1A2E;
  --text-light: #5C5C72;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(27,42,74,.08);
  --shadow-md:  0 8px 32px rgba(27,42,74,.12);
  --shadow-lg:  0 20px 60px rgba(27,42,74,.18);
  --shadow-xl:  0 32px 80px rgba(27,42,74,.22);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --max-width: 1280px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}
.section-title { margin-bottom: var(--space-md); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: var(--space-md) 0 var(--space-lg);
  border-radius: 2px;
}
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27,42,74,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-xl);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}
.nav-logo-sub {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  border-radius: 0;
}
.nav-dropdown-menu a:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.nav-dropdown-menu a:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.nav-cta { margin-left: var(--space-md); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,29,51,.92) 0%, rgba(27,42,74,.75) 60%, rgba(44,65,112,.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.hero-title {
  color: var(--white);
  margin-bottom: var(--space-lg);
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-align: center;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  text-align: center;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: var(--space-3xl) 0; }
.section-lg { padding: calc(var(--space-3xl) * 1.3) 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-gray { background: var(--gray-100); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.card-body { padding: var(--space-xl); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.3);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.service-icon svg { color: var(--gold); width: 28px; height: 28px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.service-card p { color: var(--text-light); font-size: .92rem; line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── ABOUT / SPLIT SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.split-section.reverse .split-image { order: 2; }
.split-section.reverse .split-content { order: 1; }
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .85rem;
}
.split-list {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.split-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.split-list-icon {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.split-list-icon svg { color: var(--gold); width: 16px; height: 16px; }
.split-list-text h4 { font-size: 1rem; margin-bottom: 2px; }
.split-list-text p { font-size: .88rem; color: var(--text-light); }

/* ── GUIDES GRID ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.guide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.guide-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.guide-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.guide-card:hover .guide-card-image img { transform: scale(1.05); }
.guide-card-body { padding: var(--space-lg); }
.guide-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}
.guide-card h3 { font-size: 1.05rem; margin-bottom: var(--space-sm); color: var(--navy); }
.guide-card p { font-size: .87rem; color: var(--text-light); line-height: 1.6; }
.guide-card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guide-read-time { font-size: .78rem; color: var(--gray-400); }

/* ── CITY CARDS ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.city-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.city-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.city-card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.city-card-zip {
  font-size: .75rem;
  color: var(--gray-400);
}
.city-card:hover .city-card-name { color: var(--gold); }

/* ── CITY PAGE SPECIFIC ── */
.city-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.city-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-lg);
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.city-breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.city-breadcrumb a:hover { color: var(--gold); }
.city-breadcrumb span { color: rgba(255,255,255,.3); }
.city-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.city-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  line-height: 1.7;
}
.city-services-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.city-service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.city-service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.city-service-item h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }
.city-service-item p { font-size: .88rem; color: var(--text-light); }

/* ── CONTACT FORM ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info { padding: var(--space-xl) 0; }
.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { color: var(--gold); }
.contact-info-text h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a {
  font-size: .9rem;
  color: var(--text-light);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form-check label { font-size: .82rem; color: var(--text-light); }

/* ── FAQ ── */
.faq-list { margin-top: var(--space-2xl); }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  gap: var(--space-md);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-400);
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: var(--space-md); font-size: 1rem; }
.testimonial-text { font-size: .92rem; color: var(--text-light); line-height: 1.7; margin-bottom: var(--space-lg); font-style: italic; }
.testimonial-author { font-weight: 600; font-size: .9rem; color: var(--navy); }
.testimonial-city { font-size: .78rem; color: var(--gray-400); margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: rgba(255,255,255,.7); margin: var(--space-md) auto var(--space-xl); max-width: 520px; position: relative; }
.cta-banner .btn { position: relative; }

/* ── GUIDES PAGE ── */
.guides-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
}
.guides-hero h1 { color: var(--white); }
.guides-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin-top: var(--space-md); }
.guide-detail-header {
  background: var(--navy-dark);
  padding: 140px 0 60px;
}
.guide-detail-header h1 { color: var(--white); max-width: 800px; }
.guide-detail-header p { color: rgba(255,255,255,.7); margin-top: var(--space-md); max-width: 640px; }
.guide-content { max-width: 800px; }
.guide-content h2 { margin: var(--space-2xl) 0 var(--space-md); }
.guide-content h3 { margin: var(--space-xl) 0 var(--space-sm); font-size: 1.3rem; }
.guide-content p { margin-bottom: var(--space-md); color: var(--text-light); line-height: 1.8; }
.guide-content ul { margin: var(--space-md) 0 var(--space-lg) var(--space-xl); }
.guide-content ul li { margin-bottom: 6px; color: var(--text-light); }
.guide-tip {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}
.guide-tip strong { color: var(--navy); }
.guide-tip p { color: var(--text-light); margin: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: var(--space-lg);
}
.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.footer-logo-sub {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 280px;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-disclaimer {
  background: rgba(0,0,0,.2);
  padding: var(--space-md) 0;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  line-height: 1.6;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-400); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.7); margin-top: var(--space-md); max-width: 600px; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-2xl);
}
.stat-item {
  background: var(--white);
  padding: var(--space-xl);
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.stat-unit { color: var(--gold); }
.stat-label { font-size: .82rem; color: var(--text-light); margin-top: 4px; }

/* ── ALERT / SUCCESS ── */
.alert {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: .92rem;
}
.alert-success {
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  color: #065F46;
}
.alert-error {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
}

/* ── SCROLL REVEAL ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-on-scroll.delay-1 { transition-delay: .1s; }
.reveal-on-scroll.delay-2 { transition-delay: .2s; }
.reveal-on-scroll.delay-3 { transition-delay: .3s; }
.reveal-on-scroll.delay-4 { transition-delay: .4s; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}
.page-btn {
  padding: 8px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── SEARCH BOX ── */
.search-box {
  position: relative;
  max-width: 500px;
  margin: var(--space-xl) auto 0;
}
.search-box input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 100px;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-box input:focus { border-color: var(--gold); }
.search-box button {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.search-box button:hover { background: var(--gold-light); }
.search-box button svg { color: var(--navy-dark); }

/* ── MOBILE NAV MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: var(--space-xl);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--space-sm);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: var(--space-md);
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .split-section.reverse .split-image { order: 0; }
  .split-section.reverse .split-content { order: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: var(--space-lg); }
  .cta-banner { padding: var(--space-2xl) var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
/* ── POPUP CONSULTATION GRATUITE ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 29, 51, 0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.popup-overlay.open {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(17,29,51,.35);
  overflow: hidden;
  transform: translateY(24px) scale(.97);
  transition: transform .35s ease;
  position: relative;
}
.popup-overlay.open .popup-box {
  transform: translateY(0) scale(1);
}
.popup-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  position: relative;
}
.popup-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}
.popup-header h2 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.popup-header p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.6;
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: background .2s;
}
.popup-close:hover { background: rgba(255,255,255,.28); }
.popup-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-md);
}
.popup-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .83rem;
}
.popup-perk svg { color: var(--gold); flex-shrink: 0; }
.popup-body {
  padding: var(--space-xl);
}
.popup-body .form-group { margin-bottom: var(--space-md); }
.popup-body label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.popup-body input {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.popup-body input:focus { border-color: var(--gold); }
.popup-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.popup-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  margin-top: var(--space-md);
}
.popup-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.popup-no-thanks {
  display: block;
  text-align: center;
  margin-top: var(--space-md);
  color: var(--text-light);
  font-size: .82rem;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  width: 100%;
}
.popup-no-thanks:hover { color: var(--navy); }
.popup-success {
  padding: var(--space-2xl);
  text-align: center;
  display: none;
}
.popup-success svg { color: var(--gold); margin-bottom: var(--space-md); }
.popup-success h3 { font-family: var(--font-serif); color: var(--navy); margin-bottom: .5rem; font-size: 1.3rem; }
.popup-success p { color: var(--text-light); font-size: .9rem; line-height: 1.7; }
@media (max-width: 540px) {
  .popup-row { grid-template-columns: 1fr; }
  .popup-header h2 { font-size: 1.25rem; }
  .popup-header, .popup-body { padding: var(--space-lg); }
}
