/* page-accueil.css — styles spécifiques à la homepage */
  /* ── HERO ── */
  #hero { height: 100vh; height: 100svh; min-height: 700px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg,rgba(107,31,42,.6) 0%,rgba(26,26,26,.85) 60%,rgba(0,0,0,.75) 100%),
                url('https://clos-galant.com/wp-content/uploads/2015/03/cepages01couple-clos-galant-liberte-vin-gard-30.jpg') center/cover no-repeat;
    background-attachment: fixed;
  }
  .hero-grain {
    position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  }
  .hero-content { position: relative; z-index: 3; text-align: center; padding: 0 20px; max-width: 900px; }
  .hero-eyebrow {
    font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 400; letter-spacing: 6px;
    color: var(--or); text-transform: uppercase; margin-bottom: 28px;
    opacity: 0; transform: translateY(20px); animation: fadeUp .8s .3s var(--transition) forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(52px,8vw,110px); font-weight: 300;
    color: var(--blanc); line-height: .9; letter-spacing: -1px; margin-bottom: 12px;
    opacity: 0; transform: translateY(30px); animation: fadeUp 1s .5s var(--transition) forwards;
  }
  .hero-title em { font-style: italic; color: var(--or); }
  .hero-sub {
    font-family: 'Lato', sans-serif; font-size: clamp(15px,1.6vw,20px); font-weight: 300;
    color: rgba(255,255,255,.80); margin-bottom: 52px; letter-spacing: .5px; line-height: 1.7;
    max-width: 620px; margin-left: auto; margin-right: auto;
    opacity: 0; transform: translateY(20px); animation: fadeUp .8s .8s var(--transition) forwards;
  }
  .hero-ctas {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px); animation: fadeUp .8s 1.1s var(--transition) forwards;
  }
  .hero-vintage {
    position: absolute; bottom: 40px; right: 60px;
    font-family: 'Cormorant Garamond', serif; font-size: 120px; font-weight: 300;
    color: rgba(255,255,255,.04); line-height: 1; z-index: 1; user-select: none;
  }

  /* ── CHIFFRES ── */
  #chiffres { background: #F5F0E8; padding: 60px 60px 80px; border-top: 1px solid rgba(107,31,42,.12); border-bottom: 1px solid rgba(107,31,42,.12); }
  .chiffres-header { text-align: center; margin-bottom: 48px; }
  .chiffres-header .section-eyebrow { margin-bottom: 0; }
  .chiffres-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
  .chiffre-item {
    text-align: center; padding: 40px 20px; border-right: 1px solid rgba(107,31,42,.12);
    opacity: 0; transform: translateY(30px); transition: opacity .6s var(--transition), transform .6s var(--transition);
  }
  .chiffre-item:last-child { border-right: none; }
  .chiffre-item.visible { opacity: 1; transform: translateY(0); }
  .chiffre-num { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: var(--bordeaux); line-height: 1; }
  .chiffre-unit { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: #8B3A4A; font-style: italic; }
  .chiffre-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 3px; color: #4a2010; text-transform: uppercase; margin-top: 10px; }

  /* ── TEASERS ── */
  #teasers { padding: 120px 60px; max-width: 1300px; margin: 0 auto; }
  .teasers-intro { text-align: center; margin-bottom: 80px; }
  .teasers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .teaser-card {
    position: relative; overflow: hidden; aspect-ratio: 4/3; display: block;
    text-decoration: none; background: #111;
  }
  .teaser-card-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transition: transform .7s var(--transition), filter .5s;
    filter: brightness(.5) saturate(.7);
  }
  .teaser-card:hover .teaser-card-bg { transform: scale(1.06); filter: brightness(.35) saturate(.5); }
  .teaser-card-content {
    position: absolute; inset: 0; padding: 48px 44px;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .teaser-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
  .teaser-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,3.5vw,48px); font-weight: 300; color: var(--blanc); line-height: 1.05; margin-bottom: 14px; }
  .teaser-title em { font-style: italic; color: var(--or); }
  .teaser-desc { font-family: 'Lato', sans-serif; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 340px; font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .5s var(--transition); }
  .teaser-card:hover .teaser-desc { max-height: 100px; }
  .teaser-link { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); display: inline-flex; align-items: center; gap: 10px; }
  .teaser-arrow { transition: transform .3s; }
  .teaser-card:hover .teaser-arrow { transform: translateX(6px); }
  .teaser-card-large { grid-column: span 2; aspect-ratio: 21/8; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn  { to { opacity: 1; } }
  @keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: .5; } 50% { transform: scaleY(1.3); opacity: 1; } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    #teasers { padding: 80px 30px; }
    .teasers-grid { grid-template-columns: 1fr; }
    .teaser-card-large { grid-column: span 1; aspect-ratio: 4/3; }
    #chiffres { padding: 60px 30px; }
    .chiffres-grid { grid-template-columns: 1fr 1fr; }
    .chiffre-item:nth-child(2) { border-right: none; }
    .hero-vintage { display: none; }
  }
  @media (max-width: 640px) {
    .hero-title { font-size: 48px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    #chiffres { padding: 60px 20px; }
    .teaser-card-content { padding: 30px 28px; }
  }
  @supports (-webkit-touch-callout: none) { .hero-bg { background-attachment: scroll; } }

/* ── NEWSLETTER ── */
#newsletter { background: var(--lin); padding: 100px 60px; text-align: center; border-top: 1px solid rgba(107,31,42,.1); }
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter-title { color: var(--bordeaux); margin-bottom: 20px; }
.newsletter-title em { font-style: italic; color: var(--or); }
.newsletter-body { text-align: center; margin: 0 auto 40px; max-width: 480px; }
.newsletter-sib { max-width: 520px; margin: 0 auto; }

/* Brevo form layout overrides */
.newsletter-sib .sib-form,
.newsletter-sib .sib-form-block,
.newsletter-sib form { background: transparent !important; padding: 0 !important; margin: 0 !important; box-shadow: none !important; border: none !important; }
.newsletter-sib .sib-form form,
.newsletter-sib p.sib-email-area { display: flex !important; flex-direction: row !important; align-items: stretch !important; gap: 0 !important; max-width: 520px !important; margin: 0 auto !important; }
.newsletter-sib .sib-form .sib-form-block { padding: 0 !important; margin: 0 !important; }
.newsletter-sib .sib-form .sib-form-block:has(input[type="email"]),
.newsletter-sib .sib-form form > div:first-child { flex: 1 1 auto !important; min-width: 0 !important; }
.newsletter-sib .sib-form .sib-form-block:has(button),
.newsletter-sib .sib-form form > div:last-child { flex: 0 0 auto !important; }
.newsletter-sib input[type="email"],
.newsletter-sib .entry__field input[type="email"] {
  width: 100% !important; flex: 1 1 auto !important;
  font-family: 'Lato', sans-serif !important; font-size: 15px !important; font-weight: 300 !important;
  color: #1a1a1a !important; background: #fff !important;
  border: 1px solid rgba(107,31,42,.3) !important; border-right: none !important;
  border-radius: 0 !important; padding: 16px 20px !important;
  height: auto !important; min-height: 54px !important;
  box-shadow: none !important; outline: none !important; -webkit-appearance: none !important;
}
.newsletter-sib input[type="email"]::placeholder { color: rgba(26,26,26,.38) !important; }
.newsletter-sib input[type="email"]:focus { border-color: var(--or) !important; }
.newsletter-sib button[type="submit"],
.newsletter-sib .sib-form-block__button,
.newsletter-sib input[type="submit"] {
  font-family: 'Montserrat', sans-serif !important; font-size: 10px !important;
  font-weight: 600 !important; letter-spacing: 2px !important; text-transform: uppercase !important;
  color: #1a1a1a !important; background: var(--or) !important;
  border: 1px solid var(--or) !important; border-radius: 0 !important;
  padding: 16px 28px !important; white-space: nowrap !important;
  cursor: pointer !important; min-height: 54px !important; height: auto !important;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%) !important;
  transition: background .3s !important;
}
.newsletter-sib button[type="submit"]:hover,
.newsletter-sib .sib-form-block__button:hover { background: var(--or-light) !important; border-color: var(--or-light) !important; }
.newsletter-legal { font-family: 'Lato', sans-serif; font-size: 11px; color: #9a8a7a; font-weight: 300; margin-top: 16px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-sib .sib-text-form-block,
.newsletter-sib .entry__specification,
.newsletter-sib .entry__error { font-family: 'Lato', sans-serif !important; font-size: 11px !important; color: #9a8a7a !important; line-height: 1.6 !important; text-align: center !important; margin-top: 12px !important; }
@media(max-width:640px) {
  #newsletter { padding: 70px 24px; }
  .newsletter-sib .sib-form form,
  .newsletter-sib p.sib-email-area { flex-direction: column !important; }
  .newsletter-sib input[type="email"] { border-right: 1px solid rgba(107,31,42,.3) !important; border-bottom: none !important; width: 100% !important; }
  .newsletter-sib button[type="submit"],
  .newsletter-sib .sib-form-block__button { clip-path: none !important; width: 100% !important; }
}
