/*
Theme Name:  Gestion FDA 360
Theme URI:   https://gestionfda360.ca
Author:      Allenby Solutions
Description: Thème custom — Gestion immobilière Outaouais
Version:     1.0.0
Text Domain: gestion-fda360
*/

/* =====================================================
   1. DESIGN TOKENS
   ===================================================== */
:root {
  --fda-navy:        #1B2A3B;
  --fda-navy-dark:   #0F1A27;
  --fda-navy-mid:    #243548;
  --fda-gold:        #C9A55A;
  --fda-gold-light:  #E8D5A3;
  --fda-gold-dark:   #A8823A;
  --fda-cream:       #F5F2ED;
  --fda-cream-dark:  #EDE9E2;
  --fda-white:       #FFFFFF;
  --fda-border:      #DDD9D1;
  --fda-text:        #1B2A3B;
  --fda-text-mid:    #4A5568;
  --fda-text-light:  #7A8899;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3.5rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  --max-w:       1200px;
  --max-w-tight: 760px;
  --pad:         clamp(1.25rem, 4vw, 2.5rem);

  --radius:    6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(27,42,59,.07);
  --shadow-md: 0 8px 28px rgba(27,42,59,.12);
  --shadow-lg: 0 20px 52px rgba(27,42,59,.18);
  --trans:     .28s ease;

  --header-h: 78px;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fda-text);
  background: var(--fda-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Skip link */
.fda-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--fda-gold);
  color: var(--fda-navy);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--trans);
}
.fda-skip-link:focus { top: 1rem; }

/* =====================================================
   3. TYPOGRAPHY SCALE
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fda-text);
}

p { line-height: 1.7; }

.fda-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--fda-gold);
  margin-bottom: .75rem;
  display: block;
}

.fda-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.fda-section-sub {
  font-size: 1.05rem;
  color: var(--fda-text-mid);
  max-width: 580px;
  line-height: 1.7;
}

em { font-style: italic; color: inherit; }

/* =====================================================
   4. LAYOUT HELPERS
   ===================================================== */
.fda-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.fda-container--tight {
  max-width: var(--max-w-tight);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.fda-section {
  padding: var(--space-xl) var(--pad);
}

.fda-section--cream  { background: var(--fda-cream); }
.fda-section--navy   { background: var(--fda-navy); color: var(--fda-white); }
.fda-section--dark   { background: var(--fda-navy-dark); color: var(--fda-white); }
.fda-section--white  { background: var(--fda-white); }

.fda-section--navy  .fda-section-title,
.fda-section--dark  .fda-section-title { color: var(--fda-white); }

.fda-section--navy  .fda-section-sub,
.fda-section--dark  .fda-section-sub   { color: var(--fda-gold-light); }

.fda-section--navy  .fda-eyebrow,
.fda-section--dark  .fda-eyebrow       { color: var(--fda-gold); }

.fda-section-header { margin-bottom: var(--space-lg); }
.fda-section-header--center { text-align: center; }
.fda-section-header--center .fda-section-sub { margin-inline: auto; }

/* Divider accent */
.fda-section-title--accent::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--fda-gold);
  margin-top: .9rem;
}
.fda-section-header--center .fda-section-title--accent::after { margin-inline: auto; }

/* Grid helpers */
.fda-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.fda-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.fda-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

/* =====================================================
   5. BUTTONS
   ===================================================== */
.fda-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
  line-height: 1;
}

.fda-btn--gold {
  background: var(--fda-gold);
  color: var(--fda-navy-dark);
}
.fda-btn--gold:hover {
  background: var(--fda-gold-dark);
  color: var(--fda-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.fda-btn--navy {
  background: var(--fda-navy);
  color: var(--fda-white);
}
.fda-btn--navy:hover {
  background: var(--fda-navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.fda-btn--ghost {
  border: 2px solid rgba(255,255,255,.55);
  color: var(--fda-white);
  background: transparent;
}
.fda-btn--ghost:hover {
  border-color: var(--fda-white);
  background: rgba(255,255,255,.1);
}

.fda-btn--outline {
  border: 2px solid var(--fda-navy);
  color: var(--fda-navy);
  background: transparent;
}
.fda-btn--outline:hover {
  background: var(--fda-navy);
  color: var(--fda-white);
}

.fda-btn--outline-gold {
  border: 2px solid var(--fda-gold);
  color: var(--fda-gold);
  background: transparent;
}
.fda-btn--outline-gold:hover {
  background: var(--fda-gold);
  color: var(--fda-navy-dark);
}

.fda-btn--sm { padding: .65rem 1.4rem; font-size: .85rem; }
.fda-btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

.fda-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* =====================================================
   6. HEADER
   ===================================================== */
.fda-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--trans), box-shadow var(--trans);
}

.fda-header--transparent { background: transparent; }

.fda-header--solid,
.fda-header.is-scrolled {
  background: var(--fda-navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.fda-header__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.fda-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.fda-logo__mark {
  width: 40px;
  height: 40px;
  background: var(--fda-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fda-navy-dark);
  flex-shrink: 0;
}

.fda-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.fda-logo__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--fda-white);
  letter-spacing: .01em;
}
.fda-logo__tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fda-gold);
}

/* Nav */
.fda-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.fda-nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: .02em;
  transition: color var(--trans);
  position: relative;
  padding-bottom: 2px;
}
.fda-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--fda-gold);
  transition: width var(--trans);
}
.fda-nav__link:hover,
.fda-nav__link.is-active { color: var(--fda-white); }
.fda-nav__link:hover::after,
.fda-nav__link.is-active::after { width: 100%; }

/* Header right group */
.fda-header__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language switcher */
.fda-lang-switch {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.fda-lang-switch span { color: rgba(255,255,255,.35); }
.fda-lang-switch a    { color: rgba(255,255,255,.55); transition: color var(--trans); }
.fda-lang-switch a.is-active { color: var(--fda-gold); }
.fda-lang-switch a:hover     { color: var(--fda-white); }

/* Hamburger */
.fda-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.fda-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fda-white);
  border-radius: 2px;
  transition: all var(--trans);
  transform-origin: center;
}
.fda-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fda-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.fda-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.fda-mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--fda-navy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.fda-mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.fda-mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.fda-mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--fda-white);
  transition: color var(--trans);
}
.fda-mobile-nav__link:hover { color: var(--fda-gold); }
.fda-mobile-nav__lang {
  display: flex;
  gap: 1rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.fda-mobile-nav__lang a { color: rgba(255,255,255,.55); }
.fda-mobile-nav__lang a.is-active { color: var(--fda-gold); }

/* =====================================================
   7. HERO — HOME
   ===================================================== */
.fda-hero {
  min-height: 92vh;
  background: var(--fda-navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) var(--pad) 5rem;
}

/* Geometric accent — diagonal architectural element */
.fda-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -2%;
  width: 48%;
  height: 100%;
  background: var(--fda-navy-mid);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Gold vertical accent line */
.fda-hero::after {
  content: '';
  position: absolute;
  top: 12%;
  right: calc(48% - 1px);
  width: 2px;
  height: 76%;
  background: linear-gradient(to bottom, transparent, var(--fda-gold) 20%, var(--fda-gold) 80%, transparent);
  opacity: .6;
  pointer-events: none;
}

.fda-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  max-width: 560px;
  margin-left: max(var(--pad), calc((100% - var(--max-w)) / 2 + var(--pad)));
}

.fda-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: var(--fda-white);
  margin-bottom: 1.5rem;
}
.fda-hero__title em {
  color: var(--fda-gold);
  font-style: italic;
}

.fda-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* =====================================================
   8. STATS BAR
   ===================================================== */
.fda-stats-bar {
  background: var(--fda-gold);
  padding: 2rem var(--pad);
}
.fda-stats-bar__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.fda-stat { text-align: center; }
.fda-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fda-navy-dark);
  line-height: 1;
  margin-bottom: .3rem;
}
.fda-stat__num sup { font-size: 1rem; vertical-align: super; }
.fda-stat__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fda-navy);
  opacity: .75;
}

/* =====================================================
   9. SOLUTIONS CARDS
   ===================================================== */
.fda-solutions {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-cream);
}

.fda-sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

.fda-sol-card {
  background: var(--fda-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.fda-sol-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-top-color: var(--fda-gold);
}

.fda-sol-card__icon {
  width: 52px;
  height: 52px;
  background: var(--fda-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fda-sol-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--fda-navy);
}

.fda-sol-card__text {
  font-size: .95rem;
  color: var(--fda-text-mid);
  line-height: 1.65;
  flex: 1;
}

.fda-sol-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--fda-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--trans);
  margin-top: .5rem;
}
.fda-sol-card__link:hover { gap: .6rem; }

/* =====================================================
   10. WHY FDA — FEATURES
   ===================================================== */
.fda-why {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-white);
}

.fda-why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}

.fda-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.fda-feat {
  padding: 1.5rem;
  border-left: 3px solid var(--fda-gold);
  background: var(--fda-cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.fda-feat__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: var(--fda-navy);
}

.fda-feat__text {
  font-size: .88rem;
  color: var(--fda-text-mid);
  line-height: 1.6;
}

/* Why image placeholder */
.fda-why__visual {
  border-radius: var(--radius-lg);
  background: var(--fda-navy-mid);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fda-why__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.fda-why__visual-badge {
  position: relative;
  z-index: 2;
  margin: 1.5rem;
  background: var(--fda-gold);
  color: var(--fda-navy-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
}

/* =====================================================
   11. LOGEMENTS TEASER
   ===================================================== */
.fda-logements {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-navy);
  color: var(--fda-white);
  position: relative;
  overflow: hidden;
}
.fda-logements::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 100%;
  background: rgba(201,165,90,.06);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.fda-logements__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.fda-logements .fda-section-title { color: var(--fda-white); }
.fda-logements .fda-section-sub   { color: rgba(255,255,255,.7); }
.fda-logements-img {
  border-radius: var(--radius-lg);
  background: var(--fda-navy-mid);
  min-height: 300px;
  overflow: hidden;
}
.fda-logements-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   12. CTA BAND
   ===================================================== */
.fda-cta-band {
  padding: var(--space-lg) var(--pad);
  background: var(--fda-gold);
  text-align: center;
}
.fda-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--fda-navy-dark);
  margin-bottom: .85rem;
}
.fda-cta-band__sub {
  font-size: 1rem;
  color: var(--fda-navy);
  opacity: .8;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

/* =====================================================
   13. PAGE HERO (inner pages)
   ===================================================== */
.fda-page-hero {
  background: var(--fda-navy);
  padding: calc(var(--header-h) + 4rem) var(--pad) 4rem;
  position: relative;
  overflow: hidden;
}
.fda-page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--fda-cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.fda-page-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.fda-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--fda-white);
  margin-bottom: .75rem;
}
.fda-page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.65;
}

/* =====================================================
   14. SERVICES PAGE
   ===================================================== */
.fda-services {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-cream);
}

.fda-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--fda-border);
}
.fda-service-block:last-child { border-bottom: none; }
.fda-service-block--reverse { direction: rtl; }
.fda-service-block--reverse > * { direction: ltr; }

.fda-service-block__content {}
.fda-service-block__num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--fda-border);
  line-height: 1;
  margin-bottom: -.5rem;
}
.fda-service-block__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--fda-navy);
  margin-bottom: 1rem;
}
.fda-service-block__text {
  color: var(--fda-text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.fda-service-block__visual {
  border-radius: var(--radius-lg);
  background: var(--fda-navy-mid);
  min-height: 280px;
  overflow: hidden;
}
.fda-service-block__visual img { width: 100%; height: 100%; object-fit: cover; }

/* Service list */
.fda-service-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0 1.5rem;
}
.fda-service-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--fda-text-mid);
}
.fda-service-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--fda-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .18em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231B2A3B' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Services mini cards */
.fda-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-lg);
}

.fda-mini-card {
  background: var(--fda-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--fda-gold);
  transition: box-shadow var(--trans), transform var(--trans);
}
.fda-mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.fda-mini-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--fda-navy);
}
.fda-mini-card__text {
  font-size: .88rem;
  color: var(--fda-text-mid);
  line-height: 1.6;
}

/* =====================================================
   15. ABOUT PAGE
   ===================================================== */
.fda-timeline {
  position: relative;
  padding: 0 0 var(--space-lg);
}
.fda-timeline::before {
  content: '';
  position: absolute;
  left: 22px; top: 0; bottom: 0;
  width: 2px;
  background: var(--fda-border);
}
.fda-timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.fda-timeline-item__dot {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--fda-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--fda-navy-dark);
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.fda-timeline-item__body {}
.fda-timeline-item__year {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fda-gold-dark);
  margin-bottom: .3rem;
}
.fda-timeline-item__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: var(--fda-navy);
}
.fda-timeline-item__text {
  font-size: .95rem;
  color: var(--fda-text-mid);
  line-height: 1.7;
}

/* Skills */
.fda-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.fda-skill-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--fda-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--fda-gold);
}
.fda-skill-item__title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--fda-navy);
  margin-bottom: .2rem;
}
.fda-skill-item__text {
  font-size: .83rem;
  color: var(--fda-text-mid);
  line-height: 1.55;
}

/* Team */
.fda-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.fda-team-card {
  text-align: center;
}
.fda-team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--fda-navy-mid);
  margin-bottom: 1rem;
  overflow: hidden;
}
.fda-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.fda-team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fda-navy);
  margin-bottom: .2rem;
}
.fda-team-card__role {
  font-size: .82rem;
  color: var(--fda-gold-dark);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Testimonials */
.fda-testimonials {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-navy);
  color: var(--fda-white);
}
.fda-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.fda-testi-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(201,165,90,.25);
}
.fda-testi-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--fda-gold);
  line-height: .8;
  margin-bottom: .75rem;
}
.fda-testi-card__text {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.fda-testi-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fda-testi-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--fda-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--fda-navy-dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.fda-testi-card__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--fda-white);
}
.fda-testi-card__info {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* =====================================================
   16. LOGEMENTS PAGE
   ===================================================== */
.fda-listings-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-lg);
}
.fda-listing-card {
  background: var(--fda-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.fda-listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.fda-listing-card__img {
  height: 200px;
  background: var(--fda-navy-mid);
  position: relative;
}
.fda-listing-card__img img { width: 100%; height: 100%; object-fit: cover; }
.fda-listing-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--fda-gold);
  color: var(--fda-navy-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 100px;
}
.fda-listing-card__body { padding: 1.5rem; }
.fda-listing-card__title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .4rem; color: var(--fda-navy); }
.fda-listing-card__loc  { font-size: .85rem; color: var(--fda-text-light); margin-bottom: 1rem; }
.fda-listing-card__price { font-size: 1.1rem; font-weight: 700; color: var(--fda-gold-dark); }

/* =====================================================
   17. CONTACT PAGE
   ===================================================== */
.fda-contact {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-cream);
}
.fda-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-xl);
  align-items: start;
  max-width: var(--max-w);
  margin-inline: auto;
}
.fda-contact-info { }
.fda-contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.fda-contact-info__icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--fda-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.fda-contact-info__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fda-gold-dark);
  margin-bottom: .2rem;
}
.fda-contact-info__val { color: var(--fda-text-mid); font-size: .95rem; }
.fda-contact-info__val a { color: var(--fda-navy); font-weight: 500; }
.fda-contact-info__val a:hover { color: var(--fda-gold-dark); }

/* Contact form */
.fda-contact-form {
  background: var(--fda-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.fda-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--fda-navy);
}
.fda-field {
  margin-bottom: 1.25rem;
}
.fda-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fda-text-mid);
  margin-bottom: .4rem;
  text-transform: uppercase;
}
.fda-field input,
.fda-field select,
.fda-field textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--fda-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--fda-text);
  background: var(--fda-white);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.fda-field input:focus,
.fda-field select:focus,
.fda-field textarea:focus {
  outline: none;
  border-color: var(--fda-gold);
  box-shadow: 0 0 0 3px rgba(201,165,90,.15);
}
.fda-field textarea { resize: vertical; min-height: 130px; }
.fda-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fda-form-notice {
  font-size: .82rem;
  color: var(--fda-text-light);
  margin-top: 1rem;
}
#fda-form-msg {
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-top: 1rem;
  display: none;
}
#fda-form-msg.success { background: #d4edda; color: #155724; display: block; }
#fda-form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* =====================================================
   18. LEGAL PAGES
   ===================================================== */
.fda-legal {
  padding: var(--space-xl) var(--pad);
  background: var(--fda-white);
}
.fda-legal-content {
  max-width: var(--max-w-tight);
  margin-inline: auto;
}
.fda-legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--fda-navy);
  margin: 2rem 0 .75rem;
}
.fda-legal-content h2:first-child { margin-top: 0; }
.fda-legal-content p  { color: var(--fda-text-mid); margin-bottom: 1rem; line-height: 1.75; }
.fda-legal-content ul { margin: .5rem 0 1rem 1.5rem; list-style: disc; color: var(--fda-text-mid); }
.fda-legal-content ul li { margin-bottom: .4rem; line-height: 1.65; }
.fda-legal-content a { color: var(--fda-gold-dark); text-decoration: underline; }
.fda-legal-date {
  font-size: .85rem;
  color: var(--fda-text-light);
  padding: .75rem 1rem;
  background: var(--fda-cream);
  border-radius: var(--radius);
  margin-bottom: 2rem;
  border-left: 3px solid var(--fda-gold);
}

/* =====================================================
   19. 404 PAGE
   ===================================================== */
.fda-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--pad);
  background: var(--fda-cream);
}
.fda-404__num {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--fda-border);
  line-height: 1;
  margin-bottom: 1rem;
}
.fda-404__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fda-navy);
  margin-bottom: 1rem;
}
.fda-404__text {
  color: var(--fda-text-mid);
  margin-bottom: 2rem;
}

/* =====================================================
   20. FOOTER
   ===================================================== */
.fda-footer {
  background: var(--fda-navy-dark);
  color: rgba(255,255,255,.7);
  padding: var(--space-xl) var(--pad) 0;
}
.fda-footer__grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.fda-footer__brand .fda-logo { margin-bottom: 1.25rem; }
.fda-footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }

.fda-footer__col-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fda-gold);
  margin-bottom: 1rem;
}
.fda-footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.fda-footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.fda-footer__links a:hover { color: var(--fda-white); }

.fda-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .9rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.fda-footer__contact-item a { color: rgba(255,255,255,.6); }
.fda-footer__contact-item a:hover { color: var(--fda-white); }

.fda-footer__bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.fda-footer__copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.fda-footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fda-footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--trans);
}
.fda-footer__legal a:hover { color: rgba(255,255,255,.7); }

/* Cookie re-open button */
.fda-cookie-reopen {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font-body);
}
.fda-cookie-reopen:hover {
  border-color: rgba(255,255,255,.5);
  color: rgba(255,255,255,.7);
}

/* =====================================================
   21. COOKIE BANNER
   ===================================================== */
.fda-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--fda-navy-dark);
  border-top: 2px solid var(--fda-gold);
  padding: 1.25rem var(--pad);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.fda-cookie.is-visible { transform: translateY(0); }
.fda-cookie__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.fda-cookie__text {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}
.fda-cookie__text a {
  color: var(--fda-gold);
  text-decoration: underline;
}
.fda-cookie__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.fda-cookie__btn {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  line-height: 1;
}
.fda-cookie__btn--accept {
  background: var(--fda-gold);
  color: var(--fda-navy-dark);
  border: none;
}
.fda-cookie__btn--accept:hover {
  background: var(--fda-gold-dark);
  color: var(--fda-white);
}
.fda-cookie__btn--decline {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.25);
}
.fda-cookie__btn--decline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--fda-white);
}

/* =====================================================
   22. RESPONSIVE — 1100px
   ===================================================== */
@media (max-width: 1100px) {
  :root { --header-h: 72px; }

  .fda-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .fda-sol-grid { grid-template-columns: repeat(3, 1fr); }

  .fda-why__layout { gap: var(--space-lg); }

  .fda-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }

  .fda-team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   23. RESPONSIVE — 768px
   ===================================================== */
@media (max-width: 768px) {
  :root {
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --header-h:  68px;
  }

  /* Header */
  .fda-nav, .fda-header__right .fda-btn, .fda-lang-switch { display: none; }
  .fda-hamburger { display: flex; }

  /* Hero */
  .fda-hero { min-height: 88vh; }
  .fda-hero::before { display: none; }
  .fda-hero::after  { display: none; }
  .fda-hero__inner  { margin-left: 0; max-width: 100%; }

  /* Stats bar */
  .fda-stats-bar__inner { justify-content: center; gap: 2rem; }

  /* Grids → 1 col */
  .fda-sol-grid,
  .fda-why__layout,
  .fda-logements__inner,
  .fda-service-block,
  .fda-contact__grid,
  .fda-grid-2, .fda-grid-3 { grid-template-columns: 1fr; }

  .fda-service-block--reverse { direction: ltr; }

  .fda-mini-cards    { grid-template-columns: 1fr 1fr; }
  .fda-testi-grid    { grid-template-columns: 1fr; }
  .fda-team-grid     { grid-template-columns: repeat(2, 1fr); }
  .fda-why__features { grid-template-columns: 1fr; }
  .fda-skills        { grid-template-columns: 1fr; }
  .fda-listings-placeholder { grid-template-columns: 1fr 1fr; }

  .fda-footer__grid  { grid-template-columns: 1fr 1fr; }
  .fda-footer__bottom { flex-direction: column; text-align: center; }
  .fda-footer__legal { justify-content: center; }

  .fda-form-grid { grid-template-columns: 1fr; }

  .fda-contact-form { padding: 1.75rem 1.5rem; }
}

/* =====================================================
   24. RESPONSIVE — 480px
   ===================================================== */
@media (max-width: 480px) {
  :root { --space-xl: 3rem; }

  .fda-stats-bar__inner { gap: 1.25rem; }
  .fda-stat__num { font-size: 1.8rem; }

  .fda-sol-grid,
  .fda-mini-cards,
  .fda-team-grid,
  .fda-listings-placeholder,
  .fda-footer__grid { grid-template-columns: 1fr; }

  .fda-btn-group { flex-direction: column; align-items: flex-start; }
  .fda-btn-group .fda-btn { width: 100%; justify-content: center; }

  .fda-cookie__inner { flex-direction: column; gap: 1rem; }
  .fda-cookie__actions { width: 100%; justify-content: stretch; }
  .fda-cookie__btn { flex: 1; text-align: center; }

  .fda-hero__title { font-size: 2.4rem; }
}
