/* ═══════════════════════════════════════════════════════════════════
   Seine Amazone Architecture — Feuille de style principale
   Design : Association n°3 · Sable #F2B536 · Ocre #AF6E0C · Chocolat #8C5C2A
   Typographie : EB Garamond (titres) + DM Sans (corps) — Google Fonts OFL
   ═══════════════════════════════════════════════════════════════════ */

/* ── IMPORT POLICES ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── VARIABLES ──────────────────────────────────────────────────── */
:root {
  /* Palette camaïeu */
  --sable:         #F2B536;
  --sable-pale:    #FAE9B8;
  --sable-doux:    #F5D47A;
  --ocre:          #AF6E0C;
  --ocre-sombre:   #8A5408;
  --chocolat:      #8C5C2A;
  --chocolat-prof: #5E3A14;

  /* Neutres chauds */
  --ivoire:        #FAF5EE;
  --ivoire-sombre: #F0E9DC;
  --lin:           #E8DDD0;
  --encre:         #2A1A0E;
  --texte:         #3D2810;
  --texte-second:  #6B4E30;
  --texte-tiers:   #9A7A58;

  /* Typographie */
  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Espacement */
  --max-width: 900px;
  --padding-h: 40px;
}

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

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

body {
  background-color: var(--ivoire);
  color: var(--texte);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── BANDE GRADIENT SUPÉRIEURE ──────────────────────────────────── */
.top-bar {
  height: 5px;
  background: linear-gradient(to right, var(--chocolat-prof), var(--chocolat), var(--ocre), var(--sable));
  flex-shrink: 0;
}

/* ── EN-TÊTE ────────────────────────────────────────────────────── */
.site-header {
  background: var(--chocolat);
  padding: 32px var(--padding-h) 28px;
  text-align: center;
}

.header-logo-wrap {
  margin-bottom: 14px;
}

.header-logo-wrap img {
  height: 200px;
  width: auto;
  display: inline-block;
}

.site-header .brand {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--sable-pale);
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.site-header .brand em {
  font-style: italic;
  color: var(--sable);
}

.site-header .tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sable);
  opacity: 0.8;
  margin-top: 8px;
}

/* ── BANDE ACCENT ───────────────────────────────────────────────── */
.accent-bar {
  height: 4px;
  background: var(--ocre);
}

/* ── CONTENU PRINCIPAL ──────────────────────────────────────────── */
main {
  flex: 1;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 52px var(--padding-h) 48px;
}

/* ── BLOC "EN CONSTRUCTION" ─────────────────────────────────────── */
.coming-soon {
  text-align: center;
  margin-bottom: 52px;
}

.coming-soon .label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ocre);
  display: inline-block;
  border: 1px solid var(--ocre);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.coming-soon h1 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--chocolat-prof);
  line-height: 1.2;
  margin-bottom: 10px;
}

.coming-soon h1 em {
  font-style: italic;
  color: var(--ocre);
}

.coming-soon .sous-titre {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--texte-second);
  margin-bottom: 24px;
  line-height: 1.6;
}

.coming-soon .intro {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--texte-second);
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto 32px;
}

.coming-soon .intro strong {
  color: var(--chocolat);
  font-weight: 500;
}

/* ── SÉPARATEUR OR ──────────────────────────────────────────────── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--sable);
  margin: 0 auto 48px;
  opacity: 0.7;
}

/* ── GRILLE SERVICES ────────────────────────────────────────────── */
.services-section {
  margin-bottom: 52px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--texte-tiers);
  text-align: center;
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--lin);
  border-radius: 3px;
  overflow: hidden;
}

.service-card-header {
  background: var(--chocolat);
  padding: 14px 16px 12px;
}

.service-card-header .num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sable);
  opacity: 0.7;
  margin-bottom: 3px;
}

.service-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sable-pale);
  line-height: 1.2;
}

.service-card-body {
  padding: 14px 16px;
}

.service-card-body p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-second);
  line-height: 1.7;
  margin-bottom: 10px;
}

.service-card-body ul {
  list-style: none;
  padding: 0;
}

.service-card-body ul li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--texte-second);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.service-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 1px;
  background: var(--ocre);
}

.service-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocre-sombre);
  background: var(--sable-pale);
  border: 1px solid var(--sable-doux);
  padding: 3px 8px;
  border-radius: 2px;
  margin-top: 8px;
}

/* ── CARTE FENG SHUI ────────────────────────────────────────────── */
.fengshui-block {
  background: var(--ivoire-sombre);
  border-left: 3px solid var(--sable);
  border-radius: 0 3px 3px 0;
  padding: 22px 26px;
  margin-bottom: 52px;
}

.fengshui-block h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--chocolat-prof);
  margin-bottom: 8px;
}

.fengshui-block h2 em {
  font-style: italic;
  color: var(--ocre);
}

.fengshui-block p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--texte-second);
  line-height: 1.8;
}

.fengshui-block p strong {
  color: var(--chocolat);
  font-weight: 500;
}

/* ── ZONES D'INTERVENTION ───────────────────────────────────────── */
.zones-section {
  margin-bottom: 52px;
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zone-card {
  background: #fff;
  border: 1px solid var(--lin);
  border-radius: 3px;
  overflow: hidden;
}

.zone-card-header {
  background: var(--ocre);
  padding: 11px 16px;
}

.zone-card-header h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivoire);
}

.zone-card-body {
  padding: 14px 16px;
}

.zone-card-body p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--texte-second);
  line-height: 1.75;
}

/* ── BLOC CONTACT ───────────────────────────────────────────────── */
.contact-block {
  text-align: center;
  background: var(--chocolat-prof);
  border-radius: 3px;
  padding: 36px 40px;
  margin-bottom: 0;
}

.contact-block h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--sable-pale);
  margin-bottom: 10px;
}

.contact-block p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--sable-pale);
  opacity: 0.75;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 20px;
}

.contact-block .btn-contact {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chocolat-prof);
  background: var(--sable);
  border: none;
  padding: 12px 32px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-block .btn-contact:hover {
  background: var(--sable-pale);
}

.contact-block .contact-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--sable);
  opacity: 0.6;
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--encre);
  color: var(--sable-pale);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px var(--padding-h) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .f-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sable);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--sable-pale);
  opacity: 0.6;
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--sable-pale);
  opacity: 0.6;
  line-height: 1.6;
  padding: 2px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(242, 181, 54, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--sable-pale);
  opacity: 0.4;
}

.footer-bottom .seo-lieux {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--sable-pale);
  opacity: 0.3;
  text-align: right;
  max-width: 400px;
  line-height: 1.5;
}

/* ── BANDE INFÉRIEURE ───────────────────────────────────────────── */
.bottom-bar {
  height: 4px;
  background: linear-gradient(to right, var(--sable), var(--ocre), var(--chocolat), var(--chocolat-prof));
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 720px) {
  :root {
    --padding-h: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom .seo-lieux {
    text-align: center;
  }

  .coming-soon h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .site-header .brand {
    font-size: 1.8rem;
  }

  .coming-soon h1 {
    font-size: 1.6rem;
  }

  .contact-block {
    padding: 28px 20px;
  }
}
