:root {
      --green-deep: #2B3A2E;
      --green-mid: #3D5241;
      --green-soft: #5A7A5E;
      --gold: #C6A855;
      --gold-light: #D4BC74;
      --cream: #F6F1E7;
      --cream-dark: #EDE5D5;
      --charcoal: #1A1C1A;
      --text: #2E2E2C;
      --text-light: #6B6B65;
      --white: #FEFCF8;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Outfit', system-ui, sans-serif;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

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

    body {
      font-family: var(--sans);
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
    }

    nav.scrolled {
      background: rgba(43, 58, 46, 0.92);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    }

    .nav-brand {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 0.02em;
    }

    .nav-brand span {
      color: var(--gold-light);
      font-style: italic;
      font-weight: 300;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--cream);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold-light);
      transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after { width: 100%; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
    }

    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--cream);
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('../img/espace_presse.jpg') center/cover no-repeat;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(26, 28, 26, 0.45) 0%,
        rgba(43, 58, 46, 0.65) 50%,
        rgba(26, 28, 26, 0.80) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 2rem;
    }

    .hero-label {
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.05;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--gold-light);
    }

    .hero-subtitle {
      font-family: var(--sans);
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(246, 241, 231, 0.8);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto 2.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.7s forwards;
    }

    .hero-scroll {
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }

    .hero-scroll a {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      color: var(--gold-light);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .hero-scroll svg {
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── SECTIONS ─── */
    section {
      padding: 7rem 2rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-family: var(--sans);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--green-deep);
      margin-bottom: 2rem;
    }

    .section-title em {
      font-style: italic;
      color: var(--green-soft);
    }

    /* ─── HISTORIQUE ─── */
    .historique {
      background: var(--cream);
      position: relative;
      padding-top: 40px;
    }

    .historique-banner {
      width: 100%;
      height: 40vh;
      min-height: 260px;
      max-height: 400px;
      overflow: hidden;
      position: relative;
    }

    .historique-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 70%;
    }

    .historique-banner::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to bottom, transparent, var(--cream));
    }

    .historique-body {
      max-width: 850px;
      margin: -3rem auto 0;
      position: relative;
      z-index: 2;
      padding: 0 2rem;
    }

    .historique-body p {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .historique-body strong {
      font-weight: 500;
      color: var(--green-deep);
    }

    .adage {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.4rem;
      color: var(--green-mid);
      padding: 1.5rem 0 1.5rem 1.5rem;
      border-left: 3px solid var(--gold);
      margin: 2rem 0;
      line-height: 1.5;
    }

    .badge-aop {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--green-deep);
      color: var(--gold-light);
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      margin-top: 0.5rem;
    }

    /* ─── TERROIR ─── */
    .terroir {
      background: var(--green-deep);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .terroir::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(198,168,85,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .terroir .section-title {
      color: var(--cream);
    }

    .terroir .section-title em {
      color: var(--gold-light);
    }

    .terroir-intro {
      font-size: 1.15rem;
      line-height: 1.8;
      font-weight: 300;
      color: rgba(246,241,231,0.85);
      max-width: 750px;
      margin-bottom: 3.5rem;
    }

    .terroir-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .stat-card {
      text-align: center;
      padding: 2rem 1rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(198,168,85,0.15);
      border-radius: 12px;
      transition: background 0.3s, border-color 0.3s;
    }

    .stat-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(198,168,85,0.35);
    }

    .stat-number {
      font-family: var(--serif);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-unit {
      font-size: 0.85rem;
      color: rgba(246,241,231,0.6);
      font-weight: 300;
    }

    .terroir-map {
      margin-top: 3rem;
      text-align: center;
    }

    .terroir-map img {
      max-width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(198,168,85,0.15);
    }

    .terroir-map-caption {
      font-size: 0.85rem;
      color: rgba(246,241,231,0.5);
      margin-top: 1rem;
      font-style: italic;
    }

    .terroir-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 4rem;
    }

    .terroir-grid p {
      font-size: 1rem;
      line-height: 1.85;
      font-weight: 300;
      color: rgba(246,241,231,0.85);
      margin-bottom: 1.2rem;
    }

    .terroir-grid .img-wrap img {
      width: 100%;
      border-radius: 8px;
    }

    .encart {
      background: rgba(198,168,85,0.1);
      border-left: 3px solid var(--gold);
      padding: 1.5rem;
      border-radius: 0 8px 8px 0;
      margin: 2rem 0;
    }

    .encart-title {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--gold-light);
      margin-bottom: 0.5rem;
    }

    .encart p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(246,241,231,0.75);
    }

    /* ─── PRODUCTION ─── */
    .production {
      background: var(--white);
    }

    .production-intro {
      font-size: 1.05rem;
      line-height: 1.85;
      font-weight: 300;
      max-width: 700px;
      margin-bottom: 3rem;
    }

    .plant-de-blanc {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
      background: var(--cream);
      border-radius: 16px;
      overflow: hidden;
    }

    .plant-de-blanc img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .plant-de-blanc-text {
      padding: 3rem;
    }

    .plant-de-blanc-text h3 {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--green-deep);
      margin-bottom: 1rem;
    }

    .plant-de-blanc-text h3 span {
      color: var(--gold);
    }

    .plant-de-blanc-text p {
      font-size: 0.95rem;
      line-height: 1.8;
      font-weight: 300;
      color: var(--text);
    }

    .steps-title {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 400;
      text-align: center;
      color: var(--green-deep);
      margin: 3rem 0 2.5rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .step-card {
      background: var(--cream);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(43, 58, 46, 0.1);
    }

    .step-card img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    .step-card-body {
      padding: 1.5rem;
    }

    .step-number {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }

    .step-card-body p {
      font-size: 0.9rem;
      line-height: 1.7;
      font-weight: 300;
      color: var(--text-light);
    }

    /* ─── DÉGUSTATION ─── */
    .degustation {
      background: var(--cream-dark);
      position: relative;
    }

    .degustation .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .degustation p {
      font-size: 1.02rem;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 1.2rem;
    }

    .tasting-notes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      margin-top: 2rem;
    }

    .tasting-note {
      padding: 1.5rem;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid rgba(43,58,46,0.06);
      transition: border-color 0.3s;
    }

    .tasting-note:hover {
      border-color: var(--gold);
    }

    .tasting-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      color: var(--green-mid);
    }

    .tasting-note h4 {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--green-deep);
      margin-bottom: 0.3rem;
    }

    .tasting-note p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--text-light);
      margin: 0;
    }

    .degustation .img-col img {
      width: 100%;
      border-radius: 12px;
    }

    .cahier-link {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 1.5rem;
      padding: 0.8rem 1.5rem;
      background: var(--green-deep);
      color: var(--gold-light);
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: background 0.3s;
    }

    .cahier-link:hover {
      background: var(--green-mid);
    }

    /* ─── DOMAINES / PRODUCTEURS ─── */
    .domaines {
      background: var(--green-deep);
      color: var(--cream);
    }

    .domaines .section-title {
      color: var(--cream);
    }

    .domaines .section-title em {
      color: var(--gold-light);
    }

    .domaines-intro {
      font-size: 1.05rem;
      line-height: 1.8;
      font-weight: 300;
      color: rgba(246,241,231,0.85);
      max-width: 700px;
      margin-bottom: 3rem;
    }

    .domaines-map-wrapper {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(198,168,85,0.15);
      border-radius: 16px;
      overflow: hidden;
    }

    #map {
      width: 100%;
      height: 500px;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 8px !important;
      font-family: var(--sans) !important;
    }

    .leaflet-popup-content {
      font-size: 0.9rem !important;
      line-height: 1.5 !important;
    }

    .leaflet-popup-content strong {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--green-deep);
    }

    .domaines-contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 3.5rem;
    }

    .contact-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(198,168,85,0.12);
      border-radius: 12px;
      padding: 2rem;
    }

    .contact-card h4 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--gold-light);
      margin-bottom: 1rem;
    }

    .contact-card p {
      font-size: 0.92rem;
      line-height: 1.8;
      color: rgba(246,241,231,0.7);
      font-weight: 300;
    }

    .contact-card a {
      color: var(--gold-light);
      text-decoration: none;
      border-bottom: 1px solid rgba(198,168,85,0.3);
      transition: border-color 0.3s;
    }

    .contact-card a:hover {
      border-color: var(--gold-light);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal);
      color: rgba(246,241,231,0.5);
      padding: 3rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-brand {
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--cream);
    }

    .footer-brand span {
      color: var(--gold);
      font-style: italic;
    }

    .footer-partners {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .footer-partners img {
      height: 50px;
      opacity: 0.7;
      filter: brightness(1.2);
      transition: opacity 0.3s;
    }

    .footer-partners img:hover {
      opacity: 1;
    }

    .footer-legal {
      width: 100%;
      text-align: center;
      font-size: 0.78rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(246,241,231,0.08);
      line-height: 1.8;
    }

    .footer-legal a {
      color: rgba(246,241,231,0.5);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: var(--gold-light);
    }

    /* ─── FULL-WIDTH IMAGE BREAK ─── */
    .image-break {
      width: 100%;
      height: 45vh;
      min-height: 280px;
      position: relative;
      overflow: hidden;
    }

    .image-break img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .image-break::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(43,58,46,0.15) 0%, rgba(43,58,46,0.3) 100%);
    }

    /* ─── ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(43,58,46,0.97);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 99;
      }

      .nav-links.open a {
        font-size: 1.2rem;
        opacity: 1;
      }

      .historique .grid,
      .plant-de-blanc,
      .degustation .grid,
      .terroir-grid,
      .domaines-contact {
        grid-template-columns: 1fr;
      }

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

      .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }

      .tasting-notes {
        grid-template-columns: 1fr;
      }

      section {
        padding: 4.5rem 1.5rem;
      }

      nav {
        padding: 1rem 1.5rem;
      }

      .plant-de-blanc-text {
        padding: 2rem;
      }

      #map {
        height: 350px;
      }
    }

    @media (max-width: 600px) {
      .terroir-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .stat-number {
        font-size: 2rem;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
    }