/* ============================================
   ATOM RÉNOVATION — Identité visuelle
   Palette logo : BLEU MARINE PROFOND + OR CHAMPAGNE + CRÈME
   Typographie : Cormorant Garamond (titres) + Inter (corps)
   ============================================ */

:root {
  --c-marine: #14213D;          /* bleu marine profond du logo */
  --c-marine-deep: #0E1729;     /* marine très sombre */
  --c-marine-soft: #243556;     /* marine adouci */

  --c-or: #D4B97A;              /* or champagne du logo */
  --c-or-deep: #B89B5C;         /* or profond pour hover */
  --c-or-soft: #F2E9D2;         /* or très clair */

  --c-cream: #F7F2E8;           /* crème douce */
  --c-cream-deep: #EDE5D0;      /* crème plus profond */
  --c-light: #FFFFFF;

  --c-ink: #1A1F2E;
  --c-ink-muted: #6B7280;
  --c-line: rgba(20, 33, 61, 0.10);

  --shadow-soft: 0 4px 16px rgba(20, 33, 61, 0.06);
  --shadow-card: 0 12px 32px rgba(20, 33, 61, 0.10);
  --shadow-or: 0 8px 22px rgba(184, 155, 92, 0.20);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-light);
  overflow-x: hidden;
  font-feature-settings: 'kern', 'liga';
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-or-deep); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* Typography — Cormorant pour titres, Inter pour corps */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-marine);
}
h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.05rem; }

em { font-style: italic; color: var(--c-or-deep); }

.marine { color: var(--c-marine); }
.or { color: var(--c-or-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-or-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-or-deep);
}

.lead {
  font-size: 1.18rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  max-width: 60ch;
  font-weight: 400;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: all .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(20, 33, 61, 0.08); }
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand-logo-img {
  height: 76px; max-height: 76px; max-width: 280px;
  width: auto; object-fit: contain;
  transition: all .25s ease;
}
.site-header.scrolled .brand-logo-img { height: 60px; max-height: 60px; }
.brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-marine);
  line-height: 1;
}
.brand-wordmark .gold { color: var(--c-or-deep); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: .95rem; font-weight: 500;
}
.nav-links a {
  color: var(--c-marine);
  position: relative;
  padding: .25rem 0;
}
.nav-links a.active { color: var(--c-or-deep); }
.nav-links a:not(.btn-tel):not(.btn-primary).active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: var(--c-or-deep);
}
.nav-links a:not(.btn-tel):not(.btn-primary):hover { color: var(--c-or-deep); }

.btn-tel {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-marine) !important;
  letter-spacing: 0.02em;
}
.btn-tel:hover { color: var(--c-or-deep) !important; }

/* Icône Instagram dans le header */
.btn-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-marine);
  color: var(--c-marine) !important;
  transition: all .2s ease;
}
.btn-insta:hover {
  background: var(--c-or-deep);
  border-color: var(--c-or-deep);
  color: var(--c-light) !important;
  transform: translateY(-1px);
}
.btn-insta svg { width: 18px; height: 18px; }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: .82rem;
}
.btn-primary {
  background: var(--c-marine);
  color: var(--c-light);
  border: 1px solid var(--c-marine);
}
.btn-primary:hover {
  background: var(--c-or-deep);
  border-color: var(--c-or-deep);
  color: var(--c-light);
}
.btn-outline {
  background: transparent;
  color: var(--c-marine);
  border: 1px solid var(--c-marine);
}
.btn-outline:hover {
  background: var(--c-marine);
  color: var(--c-light);
}
.btn-large { padding: 1.05rem 2.2rem; font-size: .85rem; }

/* Bouton Devis dans la nav — or/champagne, bords arrondis, contraste maximum */
.nav-links .btn-primary {
  padding: .7rem 1.5rem;
  font-size: .78rem;
  background: var(--c-or-deep);
  border-color: var(--c-or-deep);
  color: var(--c-light);
  border-radius: 999px;
  letter-spacing: 0.1em;
}
.nav-links .btn-primary:hover {
  background: var(--c-marine);
  border-color: var(--c-marine);
  color: var(--c-light);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 1.5px;
  background: var(--c-marine); margin: 5px 0;
  transition: all .25s ease;
}

@media (max-width: 980px) {
  .site-header .nav { padding: .65rem 1.25rem; min-height: 64px; }
  .brand-logo-img {
    height: auto; max-height: 50px;
    width: auto; max-width: min(70vw, 280px);
    object-fit: contain;
    object-position: left center;
  }
  .site-header.scrolled .brand-logo-img { max-height: 42px; }
  .menu-toggle { display: block; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-light);
    padding: 1.75rem 1.5rem 2rem;
    border-bottom: 1px solid var(--c-line);
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.10);
    z-index: 49;
  }
  .nav-links.open a { font-size: 1.05rem; width: 100%; }
  .nav-links.open .btn-primary {
    margin-top: .5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   HERO HOMEPAGE — Vidéo plein écran
   ============================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-marine);
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 33, 61, 0.30) 0%, rgba(20, 33, 61, 0.55) 60%, rgba(14, 23, 41, 0.85) 100%),
    linear-gradient(90deg, rgba(20, 33, 61, 0.55) 0%, rgba(20, 33, 61, 0.20) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 760px;
  color: var(--c-light);
  padding: 2rem 0;
}
.hero h1 {
  color: var(--c-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.02em;
}
.hero h1 em { color: var(--c-or); font-style: italic; }
.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 185, 122, 0.45);
  border-radius: 2px;
  padding: .55rem 1.15rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-or);
  margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--c-or);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-light);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: var(--c-light);
  color: var(--c-marine);
  border-color: var(--c-light);
}
.hero .btn-primary {
  background: var(--c-or);
  border-color: var(--c-or);
  color: var(--c-marine);
}
.hero .btn-primary:hover {
  background: var(--c-or-deep);
  border-color: var(--c-or-deep);
  color: var(--c-light);
}

@media (max-width: 900px) {
  .hero { height: auto; min-height: 80vh; padding: 5rem 0 4rem; }
  .hero-content { max-width: 100%; }
}

/* ============================================
   PAGE HERO (sous-pages)
   ============================================ */
.page-hero {
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-deep) 100%);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 185, 122, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero h1 em { color: var(--c-or-deep); font-style: italic; }
.page-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.page-hero .hero-eyebrow {
  background: var(--c-light);
  border: 1px solid var(--c-or);
  color: var(--c-or-deep);
  box-shadow: var(--shadow-soft);
}
.page-hero .hero-eyebrow .dot { background: var(--c-or-deep); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--c-marine);
  color: var(--c-light);
  padding: .9rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: .92rem;
}
.trust-bar-inner strong { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--c-or); letter-spacing: 0.02em; }
.trust-link {
  background: rgba(212, 185, 122, 0.18);
  border: 1px solid rgba(212, 185, 122, 0.4);
  color: var(--c-or);
  padding: .35rem 1rem;
  border-radius: 2px;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-link:hover { background: var(--c-or); color: var(--c-marine); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.section-cream { background: var(--c-cream); }
.section-light { background: var(--c-light); }
.section-marine { background: var(--c-marine); color: var(--c-light); }
.section-marine h2, .section-marine h3 { color: var(--c-light); }
.section-marine h2 em { color: var(--c-or); font-style: italic; }
.section-marine .lead, .section-marine p { color: rgba(255,255,255,0.78); }
.section-marine .eyebrow { color: var(--c-or); }
.section-marine .eyebrow::before { background: var(--c-or); }

.section-head {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin-bottom: 1rem; }
.section-head h2 em { color: var(--c-or-deep); font-style: italic; }
.section-head .lead { margin: 0 auto; }

/* ============================================
   3 SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--c-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .35s ease;
  border: 1px solid var(--c-line);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-or);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-marine-soft), var(--c-marine));
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 2rem 1.75rem; }
.service-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--c-or-deep);
  font-style: italic;
  margin-bottom: .75rem;
  letter-spacing: 0.04em;
}
.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--c-ink-muted); margin-bottom: 1.5rem; font-size: .96rem; line-height: 1.7; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--c-or-deep);
  font-weight: 600; font-size: .82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card .arrow::after { content: '→'; transition: transform .25s ease; }
.service-card:hover .arrow::after { transform: translateX(4px); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   SPLIT GRID
   ============================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse .split-image { order: 2; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse .split-image { order: 0; }
}
.split-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  background: var(--c-cream);
  position: relative;
}
.split-image img {
  width: 100%; height: 100%;
  /* contain : la photo s'affiche entièrement sans crop */
  object-fit: contain;
  object-position: center center;
}
.split-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 1.5px solid var(--c-or);
  border-radius: 50%;
  pointer-events: none;
}
.split-text h2 { margin-bottom: 1.75rem; }
.split-text h2 em { color: var(--c-or-deep); font-style: italic; }
.split-text p {
  margin-bottom: 1.25rem;
  color: var(--c-ink-muted);
  line-height: 1.8;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.split-text p strong { color: var(--c-marine); font-weight: 600; }

/* Check list */
.check-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.check-list li {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.15rem 1.35rem;
  background: var(--c-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-or);
}
.check-list li::before {
  content: '◆';
  color: var(--c-or-deep);
  font-size: .85rem;
  flex-shrink: 0;
  line-height: 1.7;
}
.check-list li div strong {
  display: block;
  color: var(--c-marine);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.check-list li div { color: var(--c-ink-muted); font-size: .95rem; line-height: 1.7; }

/* ============================================
   GALLERY — bento harmonieuse
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-marine-soft), var(--c-marine));
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-grid .gallery-item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 2;
}
@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-grid .gallery-item:nth-child(6) { grid-column: auto; }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: .75rem; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: .6rem; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-block {
  text-align: center;
  padding: 1.5rem 1rem;
  border-left: 1px solid rgba(212, 185, 122, 0.25);
}
.stat-block:first-child { border-left: none; }
.stat-block .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  font-weight: 500;
  color: var(--c-or);
  line-height: 1;
  margin-bottom: .65rem;
  letter-spacing: -0.02em;
}
.stat-block .lbl {
  color: rgba(255,255,255,0.75);
  font-size: .82rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-block:nth-child(3) { border-left: none; }
}

/* ============================================
   FEATURES (4 piliers)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--c-light);
  border-radius: var(--radius-sm);
  padding: 2.25rem;
  border: 1px solid var(--c-line);
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-or);
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--c-or-deep);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.feature-card h3 { margin-bottom: .75rem; font-size: 1.35rem; }
.feature-card p { color: var(--c-ink-muted); font-size: .95rem; line-height: 1.7; }

@media (max-width: 700px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   ZONES
   ============================================ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.zone-pill {
  background: var(--c-light);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  font-weight: 500;
  color: var(--c-marine);
  transition: all .2s ease;
  font-size: .95rem;
}
.zone-pill:hover {
  border-color: var(--c-or);
  background: var(--c-or-soft);
}
.zone-pill .ico { color: var(--c-or-deep); font-size: .85rem; }

/* ============================================
   DEVIS BANNER
   ============================================ */
.devis-banner {
  background: var(--c-marine);
  color: var(--c-light);
  border-radius: var(--radius-md);
  padding: 3rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-or);
}
.devis-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 185, 122, 0.20) 0%, transparent 70%);
  border-radius: 50%;
}
.devis-banner > div { position: relative; z-index: 2; }
.devis-banner h3 { color: var(--c-light); font-size: 1.85rem; margin-bottom: .5rem; }
.devis-banner h3 em { color: var(--c-or); font-style: italic; }
.devis-banner p { color: rgba(255,255,255,0.78); margin: 0; }
.devis-banner .actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.devis-banner .btn-primary {
  background: var(--c-or);
  border-color: var(--c-or);
  color: var(--c-marine);
}
.devis-banner .btn-primary:hover {
  background: var(--c-light);
  border-color: var(--c-light);
}
.devis-banner .btn-outline {
  background: transparent;
  color: var(--c-light);
  border-color: rgba(255,255,255,0.4);
}
.devis-banner .btn-outline:hover {
  background: var(--c-light);
  color: var(--c-marine);
  border-color: var(--c-light);
}

/* ============================================
   QUOTE / TESTIMONIAL
   ============================================ */
.big-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1.5rem;
}
.big-quote .stars {
  color: var(--c-or);
  font-size: 1.4rem;
  letter-spacing: 6px;
  margin-bottom: 1.75rem;
}
.big-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.75rem;
  letter-spacing: -0.005em;
}
.big-quote cite {
  display: block;
  color: var(--c-or);
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--c-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-or);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-marine-soft), var(--c-marine));
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--c-or-deep);
  font-size: .92rem;
  margin-bottom: .75rem;
  letter-spacing: 0.02em;
}
.blog-card h3 { margin-bottom: 1rem; font-size: 1.4rem; line-height: 1.25; }
.blog-card p { color: var(--c-ink-muted); font-size: .94rem; line-height: 1.65; flex-grow: 1; margin-bottom: 1.25rem; }
.blog-card .arrow {
  color: var(--c-or-deep);
  font-weight: 600; font-size: .8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Article single */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.article-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--c-or-deep);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.article-container h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}
.article-container h2 {
  margin: 3rem 0 1.25rem;
  font-size: 1.8rem;
  color: var(--c-marine);
}
.article-container h3 {
  margin: 2rem 0 .85rem;
  font-size: 1.3rem;
}
.article-lead {
  font-size: 1.25rem;
  color: var(--c-ink);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-line);
}
.article-container p {
  color: var(--c-ink);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.article-container ul, .article-container ol {
  margin: 1.5rem 0 1.5rem 1.25rem;
  padding-left: 1rem;
}
.article-container li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--c-ink);
  margin-bottom: .75rem;
}
.article-container strong { color: var(--c-marine); font-weight: 600; }
.article-container a { color: var(--c-or-deep); text-decoration: underline; text-decoration-color: rgba(212, 185, 122, 0.4); }
.article-container blockquote {
  border-left: 3px solid var(--c-or);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-marine);
  background: var(--c-cream);
  line-height: 1.45;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--c-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-line);
}
.contact-form h3 { margin-bottom: 1.75rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-marine);
  margin-bottom: .5rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .96rem;
  color: var(--c-ink);
  background: var(--c-cream);
  transition: all .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-or);
  background: var(--c-light);
  box-shadow: 0 0 0 3px rgba(212, 185, 122, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .row-2col { grid-template-columns: 1fr; } }

.contact-aside {
  background: var(--c-cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-line);
}
.contact-aside h3 { margin-bottom: 1.75rem; }
.contact-channel { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-channel .ico { font-size: 1.15rem; color: var(--c-or-deep); flex-shrink: 0; margin-top: 2px; }
.contact-channel .label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-or-deep);
  margin-bottom: .25rem;
}
.contact-channel .value { color: var(--c-marine); font-weight: 500; font-size: .96rem; line-height: 1.55; }
.contact-channel .value a { color: var(--c-marine); font-weight: 600; }
.contact-channel .value a:hover { color: var(--c-or-deep); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--c-marine-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 2rem;
  font-size: .92rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-or), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-light);
  margin-bottom: .35rem;
  line-height: 1;
}
.footer-brand .gold { color: var(--c-or); }
.footer-tagline {
  color: var(--c-or);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* Icônes sociales dans le footer (bas-gauche) */
.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 185, 122, 0.4);
  color: var(--c-or) !important;
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--c-or);
  border-color: var(--c-or);
  color: var(--c-marine-deep) !important;
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.site-footer h4 {
  color: var(--c-or);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .65rem; }
.site-footer ul a { color: rgba(255, 255, 255, 0.65); }
.site-footer ul a:hover { color: var(--c-or); }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom a:hover { color: var(--c-or); }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--c-light);
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  gap: .75rem;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: .9rem .5rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sticky-cta .tel { background: var(--c-marine); color: var(--c-light); }
.sticky-cta .quote { background: var(--c-or); color: var(--c-marine); }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
