/* =====================================================
   GRACE IVOIRE — home.css  |  Page d'accueil Premium
   Or #d4af37 · Noir #000 · Blanc #fff
   Hero : split 45/55 gauche (texte) / droite (photo)
===================================================== */

/* ── VARIABLES & BASE ─────────────── */
.gi-home {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ── UTILITAIRES SECTIONS ─────────── */
.gi-section { position: relative; }
.gi-section-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.gi-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: #d4af37;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.gi-section-label::before {
  content: ''; width: 28px; height: 1px; background: #d4af37;
}
.gi-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1; color: #fff;
  margin: 0 0 18px;
}
.gi-section-title em { color: #d4af37; font-style: italic; }
.gi-section-sub { font-size: 15px; color: rgba(255,255,255,.45); max-width: 560px; line-height: 1.7; margin: 0; }

.gi-section-head { text-align: center; margin-bottom: 60px; }
.gi-section-head .gi-section-label { justify-content: center; }
.gi-section-head .gi-section-label::before { display: none; }
.gi-section-head .gi-section-sub { margin: 0 auto; }

.gi-section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.gi-section-cta { text-align: center; margin-top: 52px; }

/* ── BOUTONS ─────────────────────── */
.gi-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  padding: 15px 32px; border-radius: 6px; text-decoration: none;
  transition: all .28s; box-shadow: 0 8px 24px rgba(212,175,55,.3);
}
.gi-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212,175,55,.45); }

.gi-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #d4af37; text-decoration: none;
  padding: 13px 28px; border: 1px solid rgba(212,175,55,.3); border-radius: 6px;
  transition: all .25s;
}
.gi-btn-ghost:hover { background: rgba(212,175,55,.08); border-color: #d4af37; gap: 14px; }
.gi-btn-ghost i { transition: transform .25s; }
.gi-btn-ghost:hover i { transform: translateX(3px); }

/* ═══════════════════════════════════
   HERO — STYLE RÉFÉRENCE
   Fond coloré unifié · Photo droite débordante
   Croix rouge · Titre bold · Boutons pill
═══════════════════════════════════ */

.gi-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
}

/* Pas de traits décoratifs */
.gi-hero::before,
.gi-hero::after { display: none; }

/* Titre bienvenue — absolu en haut, centré pleine largeur */
.gi-hero-welcome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  text-align: center;
  padding: 24px 40px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.0) 100%);
  opacity: 0;
  animation: heroUp .8s ease .15s forwards;
}

.gi-hero-welcome-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.8vw, 58px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
  line-height: 1;

  /* Shimmer doré en boucle */
  background: linear-gradient(
    90deg,
    #b8860b 0%,
    #d4af37 30%,
    #fff8dc 48%,
    #fffacd 50%,
    #fff8dc 52%,
    #d4af37 70%,
    #b8860b 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 3.5s linear infinite;
}

@keyframes shimmerGold {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.gi-hero-welcome-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.gi-hero-welcome-divider::before,
.gi-hero-welcome-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}
.gi-hero-welcome-divider-gem {
  width: 6px; height: 6px;
  background: #d4af37;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
  animation: gemPulse 3.5s ease-in-out infinite;
}

@keyframes gemPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(212,175,55,0.5); opacity: .8; }
  50%       { box-shadow: 0 0 18px rgba(255,248,180,0.9); opacity: 1; }
}

.gi-hero-welcome-sub {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 30px rgba(212,175,55,0.7);
  white-space: nowrap;
  animation: glowAppear 1.4s ease 0.5s both;
}

@keyframes glowAppear {
  0%   {
    opacity: 0;
    letter-spacing: 0.65em;
    text-shadow: 0 0 0 rgba(212,175,55,0);
  }
  60%  {
    opacity: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 50px rgba(212,175,55,1);
  }
  100% {
    opacity: 1;
    letter-spacing: 0.45em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 24px rgba(212,175,55,0.6);
  }
}

.gi-hero-welcome-sub.gi-glow-active {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 14px rgba(212,175,55,0.5); }
  50%       { text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 40px rgba(212,175,55,1); }
}

/* ── PHOTO PLEIN HERO (fond absolu) ── */
.gi-hero-right {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Overlay léger — photo éclatante, texte lisible */
.gi-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 2;
  pointer-events: none;
}
/* Photo hero : nette, contrastée, saturée */
.gi-slide {
  filter: contrast(1.08) saturate(1.15) brightness(1.05);
}

.gi-slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.gi-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0; transition: opacity 1.4s ease;
  will-change: opacity;
}
.gi-slide.is-active { opacity: 1; }
.gi-slideshow-fade { display: none; }

.gi-slide-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; background: rgba(0,0,0,.2);
  color: rgba(255,255,255,.3); font-size: 48px;
}
.gi-slide-placeholder span {
  font-size: 13px; color: rgba(255,255,255,.4); text-align: center; line-height: 1.6;
}

/* Dots navigation */
.gi-slideshow-dots {
  position: absolute; bottom: 28px; right: 40px;
  display: flex; align-items: center; gap: 8px; z-index: 5;
}
.gi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0;
  transition: background .3s, width .3s;
}
.gi-dot.is-active { background: #fff; width: 24px; border-radius: 4px; }
.gi-dot:hover:not(.is-active) { background: rgba(255,255,255,.7); }

/* ── CONTENU GAUCHE (positionné centre-gauche) ── */
.gi-hero-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  background: transparent;
}

/* Filigrane discret */
.gi-hero-bg-text { display: none; }

.gi-hero-inner {
  position: relative;
  z-index: 3;
  padding: 0 40px 0 80px;
}

.gi-hero-content { max-width: 560px; }

/* Eyebrow — caché dans ce style, le trait suffit */
.gi-hero-eyebrow { display: none; }

/* Titre — gras, sans serif, direct */
.gi-hero-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  line-height: 1.05;
}
.gi-hero-t1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  opacity: 0; animation: heroUp .7s ease .5s forwards;
}
.gi-hero-t2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: .95;
  opacity: 0; animation: heroUp .7s ease .6s forwards;
}
/* t3 = sous-titre espacé en lettres fines, comme dans la référence */
.gi-hero-t3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-top: 14px;
  opacity: 0; animation: heroUp .7s ease .75s forwards;
}
.gi-hero-t3 em { font-style: normal; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BOUTONS PILL — DESKTOP ── */
.gi-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 36px;
  opacity: 0; animation: heroUp .7s ease .4s forwards;
}

/* Bouton primaire desktop — pill noir */
.gi-hero-actions .gi-btn-primary {
  background: #000;
  color: #fff;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: .08em;
  box-shadow: none;
}
.gi-hero-actions .gi-btn-primary:hover {
  background: #1a1a1a;
  transform: none;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/* Bouton ghost desktop — pill contour blanc */
.gi-hero-actions .gi-btn-ghost {
  border: 1.5px solid rgba(255,255,255,.8);
  color: #fff;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: .08em;
  background: transparent;
}
.gi-hero-actions .gi-btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  gap: 10px;
}

/* ── BOUTONS FIXES DANS LE HERO — MOBILE ── */
@media (max-width: 768px) {
  .gi-hero-actions {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0;
    padding: 0;
    opacity: 1;
    animation: none;
    width: max-content;
  }
  .gi-hero-actions .gi-btn-primary {
    border-radius: 50px;
    background: #d4af37;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    padding: 9px 16px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(212,175,55,0.45);
    border: none;
  }
  .gi-hero-actions .gi-btn-primary:hover { background: #c49a00; transform: none; }
  .gi-hero-actions .gi-btn-ghost {
    border-radius: 50px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    padding: 9px 16px;
    white-space: nowrap;
  }
  .gi-hero-actions .gi-btn-ghost:hover { background: rgba(0,0,0,0.9); }
  body { padding-bottom: 0; }
}

/* Stats */
.gi-hero-stats {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; animation: heroUp .7s ease 1.05s forwards;
}
.gi-hero-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.25); }
.gi-hero-stat-n {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 30px; font-weight: 700; color: #fff; line-height: 1;
}
.gi-hero-stat-n em { font-size: 13px; color: rgba(255,255,255,.7); font-style: normal; font-weight: 400; }
.gi-hero-stat-l { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 4px; display: block; letter-spacing: .06em; }

/* Scroll indicator */
.gi-hero-scroll {
  position: absolute; bottom: 32px; left: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  z-index: 5;
  opacity: 0; animation: heroUp .7s ease 1.4s forwards;
}
.gi-hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.35; transform: scaleY(1); }
  50%      { opacity:1;   transform: scaleY(1.15); }
}

/* ── RÉSEAUX SOCIAUX FLOTTANTS DROITE ── */
.gi-hero-socials {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 6;
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; animation: heroUp .7s ease 1.6s forwards;
}
.gi-hero-social-btn {
  width: 42px; height: 42px;
  background: #000;
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; text-decoration: none;
  transition: background .2s;
}
.gi-hero-social-btn:hover { background: #222; }

/* ═══════════════════════════════════
   MARQUEE DORÉ
═══════════════════════════════════ */
.gi-marquee {
  background: #d4af37;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.gi-marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
}
.gi-marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #000;
}
.gi-marquee-dot { font-size: 8px; opacity: .4; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   RÉALISATIONS
═══════════════════════════════════ */
.gi-real-home { padding: 80px 0; background: #030303; }
.gi-real-home-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
}
.gi-real-home-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gi-real-home-item:nth-child(4) { grid-column: span 2; }
.gi-real-home-item:nth-child(5) { grid-column: span 2; }
.gi-real-home-item {
  position: relative; overflow: hidden; background: #0d0d0d;
}
.gi-real-home-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), filter .4s ease;
  filter: contrast(1.1) saturate(1.2) brightness(1.02);
}
.gi-real-home-item:hover img {
  transform: scale(1.07);
  filter: contrast(1.15) saturate(1.3) brightness(1.06);
}
.gi-real-home-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.05); font-size: 36px; }
.gi-real-home-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  opacity: 0; transition: opacity .3s;
}
.gi-real-home-item:hover .gi-real-home-overlay { opacity: 1; }
.gi-real-home-cat { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #d4af37; }
.gi-real-home-name { font-size: 14px; color: #fff; font-weight: 500; }

/* ═══════════════════════════════════
   PRESTATIONS
═══════════════════════════════════ */
.gi-prestations-home {
  padding: 80px 0;
  background: linear-gradient(to bottom, #000, #060606);
}
.gi-prestations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gi-presta-card {
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
  position: relative;
}
.gi-presta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--cc, #d4af37); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease; z-index: 2;
}
.gi-presta-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.6); }
.gi-presta-card:hover::before { transform: scaleX(1); }

/* Photo */
.gi-presta-img {
  position: relative; height: 220px; overflow: hidden;
}
.gi-presta-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  filter: contrast(1.08) saturate(1.15) brightness(1.02);
}
.gi-presta-card:hover .gi-presta-img img { transform: scale(1.07); }
.gi-presta-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}

/* Fallback sans photo */
.gi-presta-noimg {
  height: 180px; background: #111;
  display: flex; align-items: center; justify-content: center;
}
.gi-presta-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--cc, #d4af37);
}

/* Contenu texte */
.gi-presta-body {
  padding: 24px 24px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.gi-presta-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 500; color: #fff; margin: 0;
}
.gi-presta-desc {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; flex: 1; margin: 0;
}
.gi-presta-cta {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cc, #d4af37);
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px; opacity: 0; transform: translateX(-6px);
  transition: opacity .3s, transform .3s;
}
.gi-presta-card:hover .gi-presta-cta { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════
   À PROPOS
═══════════════════════════════════ */
.gi-about-home { padding: 80px 0; background: #030303; }
.gi-about-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.gi-about-visual { position: relative; }
.gi-about-img-wrap {
  border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.05);
}
.gi-about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.08) saturate(1.15) brightness(1.03);
  transition: filter .4s ease;
}
.gi-about-placeholder { display: flex; align-items: center; justify-content: center; color: rgba(212,175,55,.15); font-size: 64px; }
.gi-about-years {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  color: #000; padding: 24px 28px; border-radius: 16px;
  text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.gi-about-years-n { display: block; font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; line-height: 1; }
.gi-about-years-l { font-size: 11px; font-weight: 700; line-height: 1.5; letter-spacing: .06em; margin-top: 4px; display: block; }
.gi-about-deco {
  position: absolute; top: 50%; left: -30px; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 300;
  color: rgba(212,175,55,.04); writing-mode: vertical-rl;
  pointer-events: none; user-select: none; line-height: 1;
}
.gi-about-text { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.85; margin-bottom: 18px; }
.gi-about-values { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.gi-about-value {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6);
}
.gi-about-value i { font-size: 14px; color: #d4af37; width: 20px; }

/* ═══════════════════════════════════
   PRODUITS VEDETTES
═══════════════════════════════════ */
.gi-products-home { padding: 80px 0; background: #000; }
.gi-products-home-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gi-product-home-card {
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.gi-product-home-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,.5); border-color: rgba(212,175,55,.15); }
.gi-product-home-img {
  position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; background: #111;
}
.gi-product-home-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s, filter .4s ease;
  filter: contrast(1.08) saturate(1.15) brightness(1.04);
}
.gi-product-home-card:hover .gi-product-home-img img {
  transform: scale(1.06);
  filter: contrast(1.12) saturate(1.25) brightness(1.07);
}
.gi-product-home-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(212,175,55,.1); font-size: 40px; }
.gi-product-home-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s;
}
.gi-product-home-overlay span {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(212,175,55,.9); color: #000; padding: 9px 20px; border-radius: 20px;
}
.gi-product-home-card:hover .gi-product-home-overlay { opacity: 1; }
.gi-product-home-badge {
  position: absolute; top: 12px; left: 12px;
  background: #ff7a00; color: #fff; font-size: 9px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.gi-product-home-body { padding: 18px 18px 16px; }
.gi-product-home-cat { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d4af37; display: block; margin-bottom: 6px; }
.gi-product-home-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.gi-product-home-name a { color: inherit; text-decoration: none; }
.gi-product-home-footer { display: flex; align-items: center; justify-content: space-between; }
.gi-product-home-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: #d4af37; }
.gi-product-home-price .woocommerce-Price-amount { color: #d4af37 !important; }
.gi-product-home-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2);
  color: #d4af37; display: flex; align-items: center; justify-content: center;
  font-size: 12px; text-decoration: none; transition: all .2s;
}
.gi-product-home-btn:hover { background: #d4af37; color: #000; }

/* ═══════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════ */
.gi-temoignages { padding: 80px 0; background: #000; }
.gi-temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gi-temoignage-card {
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 36px 32px; position: relative; overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.gi-temoignage-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.15); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.gi-temoignage-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.gi-temoignage-stars { color: #d4af37; font-size: 14px; letter-spacing: 2px; }
.gi-temoignage-tag { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #000; background: #d4af37; padding: 4px 10px; border-radius: 20px; }
.gi-temoignage-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.8; margin: 0 0 28px; position: relative; z-index: 1; }
.gi-temoignage-author { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.gi-temoignage-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #d4af37, #f0d060); color: #000; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.gi-temoignage-author span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); }
.gi-temoignage-quote { position: absolute; top: 20px; right: 24px; font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 700; color: rgba(212,175,55,.04); line-height: 1; pointer-events: none; user-select: none; }

/* ═══════════════════════════════════
   BLOG
═══════════════════════════════════ */
.gi-blog-home { padding: 80px 0; background: #030303; }
.gi-blog-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gi-blog-home-card--big { grid-row: span 2; }
.gi-blog-home-card {
  background: #0a0a0a; border: 1px solid rgba(255,255,255,.05);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.gi-blog-home-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.5); border-color: rgba(212,175,55,.12); }
.gi-blog-home-img { position: relative; overflow: hidden; display: block; background: #111; }
.gi-blog-home-card--big .gi-blog-home-img { aspect-ratio: 16/9; }
.gi-blog-home-card:not(.gi-blog-home-card--big) .gi-blog-home-img { aspect-ratio: 16/7; }
.gi-blog-home-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s, filter .4s ease;
  filter: contrast(1.08) saturate(1.18) brightness(1.03);
}
.gi-blog-home-card:hover .gi-blog-home-img img {
  transform: scale(1.05);
  filter: contrast(1.12) saturate(1.28) brightness(1.06);
}
.gi-blog-home-noimg { width: 100%; height: 100%; min-height: 180px; display: flex; align-items: center; justify-content: center; color: rgba(212,175,55,.1); font-size: 36px; }
.gi-blog-home-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3), transparent); pointer-events: none; }
.gi-blog-home-body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.gi-blog-meta { display: flex; align-items: center; gap: 10px; }
.gi-blog-cat { font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d4af37; background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.2); padding: 3px 8px; border-radius: 3px; }
.gi-blog-date { font-size: 11px; color: rgba(255,255,255,.3); }
.gi-blog-home-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: #fff; margin: 0; line-height: 1.3; }
.gi-blog-home-card--big .gi-blog-home-title { font-size: 28px; }
.gi-blog-home-title a { color: inherit; text-decoration: none; transition: color .2s; }
.gi-blog-home-title a:hover { color: #d4af37; }
.gi-blog-home-excerpt { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; margin: 0; }
.gi-blog-home-link { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #d4af37; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; margin-top: auto; transition: gap .2s; }
.gi-blog-home-link:hover { gap: 11px; }

/* ═══════════════════════════════════
   LIGHTBOX RÉALISATIONS
═══════════════════════════════════ */
.gi-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.gi-lightbox.is-open {
  opacity: 1; pointer-events: all;
}
.gi-lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(6px);
}
.gi-lightbox-inner {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(.92);
  transition: transform .3s ease;
}
.gi-lightbox.is-open .gi-lightbox-inner { transform: scale(1); }
.gi-lightbox-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.gi-lightbox-caption {
  margin-top: 16px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.gi-lightbox-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #d4af37;
}
.gi-lightbox-title {
  font-size: 15px; color: rgba(255,255,255,.8);
  font-family: 'Cormorant Garamond', serif;
}
.gi-lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.gi-lightbox-close:hover { background: rgba(255,255,255,.2); }
.gi-lightbox-prev,
.gi-lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.gi-lightbox-prev { left: 20px; }
.gi-lightbox-next { right: 20px; }
.gi-lightbox-prev:hover { background: #d4af37; border-color: #d4af37; color: #000; transform: translateY(-50%) scale(1.1); }
.gi-lightbox-next:hover { background: #d4af37; border-color: #d4af37; color: #000; transform: translateY(-50%) scale(1.1); }

/* Icône zoom sur les photos */
.gi-real-home-zoom {
  position: absolute; bottom: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(212,175,55,.85);
  display: flex; align-items: center; justify-content: center;
  color: #000; font-size: 13px;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s;
}
.gi-real-home-item:hover .gi-real-home-zoom {
  opacity: 1; transform: scale(1);
}

/* ═══════════════════════════════════
   CTA RDV
═══════════════════════════════════ */
.gi-cta-rdv {
  position: relative; padding: 140px 40px;
  overflow: hidden; text-align: center; background: #000;
}
.gi-cta-rdv-grain {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.gi-cta-rdv-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,175,55,.07) 0%, transparent 65%);
  pointer-events: none;
}
.gi-cta-rdv-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.gi-cta-rdv-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; color: #fff; line-height: 1.1; margin: 12px 0 24px; }
.gi-cta-rdv-title em { color: #d4af37; font-style: italic; }
.gi-cta-rdv-sub { font-size: 16px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 44px; }
.gi-cta-rdv-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.gi-btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  padding: 17px 40px; border-radius: 8px; text-decoration: none;
  transition: all .28s; box-shadow: 0 10px 30px rgba(212,175,55,.35);
}
.gi-btn-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(212,175,55,.5); }
.gi-btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 17px 36px; border-radius: 8px; text-decoration: none; transition: all .25s;
}
.gi-btn-cta-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.2); }
.gi-cta-rdv-info { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.3); }
.gi-cta-rdv-info i { color: rgba(212,175,55,.5); margin-right: 4px; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1200px) {
  .gi-products-home-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-real-home-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 240px 240px; }
  .gi-real-home-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gi-real-home-item:nth-child(4),
  .gi-real-home-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 1024px) {
  /* Hero : photo en fond sur mobile/tablette */
  .gi-hero { height: 75vh; min-height: 480px; max-height: 620px; }
  .gi-hero-actions {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0;
    padding: 0;
    opacity: 1;
    animation: none;
    width: max-content;
  }
  .gi-hero-right::before { background: none; }
  .gi-hero-left { height: 100svh; justify-content: center; }
  .gi-hero-inner { padding: 0 32px; max-width: 100%; }
  .gi-hero::before { top: 22%; }
  .gi-hero::after { left: 10%; }
  .gi-about-inner { grid-template-columns: 1fr; gap: 60px; }
  .gi-prestations-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-blog-home-grid { grid-template-columns: 1fr; }
  .gi-blog-home-card--big { grid-row: span 1; }
}

@media (max-width: 768px) {
  .gi-section-inner { padding: 0 24px; }
  .gi-hero-inner { padding: 0 24px; max-width: 100%; }
  .gi-hero-stats { gap: 16px; flex-wrap: wrap; }
  .gi-hero-scroll { left: 24px; }
  .gi-prestations-home, .gi-about-home, .gi-products-home,
  .gi-real-home, .gi-temoignages, .gi-blog-home { padding: 80px 0; }
  .gi-prestations-grid { grid-template-columns: 1fr; }
  .gi-products-home-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-temoignages-grid { grid-template-columns: 1fr; }
  .gi-real-home-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gi-real-home-item { aspect-ratio: 1/1; }
  .gi-about-years { bottom: -14px; right: -14px; padding: 16px 18px; }
  .gi-about-years-n { font-size: 36px; }
  .gi-cta-rdv { padding: 80px 24px; }
  .gi-hero-social-btn { width: 38px; height: 38px; }

  /* Welcome mobile : une seule ligne, taille réduite */
  .gi-hero-welcome { padding: 14px 16px 12px; }
  .gi-hero-welcome-title {
    font-size: clamp(14px, 4.5vw, 22px);
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gi-hero-welcome-sub {
    font-size: clamp(10px, 3vw, 14px);
    letter-spacing: 0.2em;
    white-space: normal;
  }
  .gi-hero-welcome-divider::before,
  .gi-hero-welcome-divider::after { width: 40px; }
}

@media (max-width: 480px) {
  .gi-products-home-grid { grid-template-columns: 1fr; }
  .gi-real-home-grid { grid-template-columns: 1fr; }
  .gi-cta-rdv-actions { flex-direction: column; align-items: stretch; }
  .gi-btn-cta, .gi-btn-cta-ghost { justify-content: center; }
  .gi-hero-t1, .gi-hero-t2 { font-size: clamp(44px, 12vw, 64px); }
}

/* ── GOOGLE REVIEWS WIDGET ── */
.gi-grw-wrap {
  margin-top: 40px;
}
.gi-grw-wrap .grw-widget,
.gi-grw-wrap [class*="grw-"] {
  background: transparent !important;
}
/* Forcer fond sombre sur les cartes du widget */
.gi-grw-wrap .review-card,
.gi-grw-wrap .grw-review-item {
  background: #111 !important;
  border: 1px solid rgba(212,175,55,.15) !important;
  border-radius: 16px !important;
  color: #fff !important;
}
.gi-grw-wrap .review-text,
.gi-grw-wrap .grw-review-text {
  color: rgba(255,255,255,.75) !important;
}