  :root {
    --rouge: #C0392B;
    --rouge2: #A93226;
    --creme: #FBF7F0;
    --beige: #F0E8D8;
    --brun: #2C1810;
    --brun2: #3D2418;
    --terre: #8B4513;
    --gris: #777;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--creme); color: var(--brun); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 60px;
    transition: background 0.3s, box-shadow 0.3s;
  }
  nav.scrolled { background: var(--creme); box-shadow: 0 1px 0 rgba(44,24,16,0.1); }
  .logo { font-family: 'Fraunces', serif; font-size: 20px; color: var(--brun); letter-spacing: 0.5px; }
  .logo span { color: var(--rouge); font-style: italic; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: var(--brun); text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; opacity: 0.6; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-resa { background: var(--rouge); color: white; padding: 10px 22px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.2s; }
  .nav-resa:hover { background: var(--rouge2); }

  /* HERO — split asymetrique */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 55% 45%; }
  .hero-left {
    background: var(--brun);
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 70px 80px;
    position: relative; overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(192,57,43,0.08);
  }
  .hero-pretitre { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--rouge); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .hero-pretitre::after { content: ''; display: block; width: 32px; height: 1px; background: var(--rouge); }
  .hero h1 { font-family: 'Fraunces', serif; font-size: clamp(52px, 7vw, 88px); color: white; line-height: 1; font-weight: 700; margin-bottom: 10px; }
  .hero h1 em { font-style: italic; color: var(--rouge); font-weight: 300; }
  .hero-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 380px; margin: 28px 0 44px; }
  .hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .btn-rouge { background: var(--rouge); color: white; padding: 15px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-rouge:hover { background: var(--rouge2); transform: translateY(-2px); }
  .btn-tr { color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 1px; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px; transition: color 0.2s; }
  .btn-tr:hover { color: white; border-color: white; }
  .hero-right { position: relative; }
  .hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(44,24,16,0.3), transparent); }
  .hero-tag {
    position: absolute; bottom: 40px; right: 40px; z-index: 2;
    background: var(--creme); padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(44,24,16,0.2);
  }
  .hero-tag strong { display: block; font-family: 'Fraunces', serif; font-size: 32px; color: var(--rouge); line-height: 1; }
  .hero-tag span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); }

  /* BANDEAU */
  .bandeau { background: var(--rouge); padding: 0; display: flex; overflow: hidden; }
  .bandeau-item { flex: 1; padding: 22px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
  .bandeau-item:last-child { border: none; }
  .bandeau-item strong { display: block; font-family: 'Fraunces', serif; font-size: 15px; color: white; margin-bottom: 2px; }
  .bandeau-item span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  /* SECTION */
  .section { padding: 100px 60px; }
  .kicker { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--rouge); margin-bottom: 12px; }
  .titre { font-family: 'Fraunces', serif; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; font-weight: 700; }
  .titre em { font-style: italic; color: var(--rouge); font-weight: 300; }
  .filet { width: 40px; height: 2px; background: var(--rouge); margin: 20px 0 40px; }

  /* SPECIALITES — layout magazine */
  .specs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
  .spec-big { position: relative; overflow: hidden; grid-row: 1 / 3; min-height: 600px; }
  .spec-big img, .spec-sm img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
  .spec-big:hover img, .spec-sm:hover img { transform: scale(1.05); }
  .spec-sm { position: relative; overflow: hidden; height: 298px; }
  .spec-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,24,16,0.9) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
  .spec-nom { font-family: 'Fraunces', serif; font-size: 24px; color: white; margin-bottom: 4px; }
  .spec-big .spec-nom { font-size: 34px; }
  .spec-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 10px; }
  .spec-prix { font-family: 'Fraunces', serif; font-size: 20px; color: var(--rouge); }
  .spec-badge { display: inline-block; background: var(--rouge); color: white; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; margin-bottom: 8px; align-self: flex-start; }

  /* CARTE COMPLETE */
  .carte-bg { background: var(--beige); }
  .carte-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .carte-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
  .carte-categorie { margin-bottom: 40px; }
  .cat-title { font-family: 'Fraunces', serif; font-size: 22px; font-style: italic; color: var(--rouge); margin-bottom: 0; display: flex; align-items: center; gap: 12px; }
  .cat-title::after { content: ''; flex: 1; height: 1px; background: rgba(44,24,16,0.12); }
  .carte-item { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px dashed rgba(44,24,16,0.1); }
  .carte-item:last-child { border: none; }
  .carte-item-g h4 { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
  .carte-item-g p { font-size: 12px; color: var(--gris); line-height: 1.5; }
  .carte-item-prix { font-family: 'Fraunces', serif; font-size: 16px; color: var(--rouge); white-space: nowrap; }

  /* HISTOIRE */
  .histoire { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .histoire-imgs { display: grid; grid-template-rows: 2fr 1fr; gap: 4px; }
  .histoire-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .histoire-text { background: var(--brun); padding: 90px 64px; display: flex; flex-direction: column; justify-content: center; }
  .histoire-text .kicker { color: rgba(192,57,43,0.8); }
  .histoire-text .titre { color: white; margin-bottom: 0; }
  .histoire-text p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.5); margin: 24px 0 0; max-width: 400px; }
  .histoire-text .filet { background: var(--rouge); }

  /* VINS */
  .vins { background: var(--brun2); padding: 100px 60px; }
  .vins-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
  .vins-left .titre { color: white; }
  .vins-left .kicker { color: rgba(192,57,43,0.8); }
  .vins-left p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-top: 16px; }
  .vins-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .vin-card { background: rgba(255,255,255,0.04); padding: 28px; border-left: 2px solid transparent; transition: border-color 0.2s, background 0.2s; }
  .vin-card:hover { border-left-color: var(--rouge); background: rgba(255,255,255,0.07); }
  .vin-region { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--rouge); margin-bottom: 8px; }
  .vin-nom { font-family: 'Fraunces', serif; font-size: 18px; color: white; margin-bottom: 4px; }
  .vin-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 12px; }
  .vin-prix { font-family: 'Fraunces', serif; font-size: 15px; color: var(--rouge); }

  /* GALERIE PHOTOS */
  .galerie-strip { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4px; height: 320px; }
  .galerie-strip img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: filter 0.4s, transform 0.4s; overflow: hidden; }
  .galerie-strip div { overflow: hidden; }
  .galerie-strip div:hover img { filter: brightness(1); transform: scale(1.04); }

  /* CONTACT */
  .contact-section { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-img { position: relative; min-height: 500px; overflow: hidden; }
  .contact-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7) saturate(0.8); }
  .contact-img-txt { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
  .contact-img-txt blockquote { font-family: 'Fraunces', serif; font-size: 28px; font-style: italic; color: white; line-height: 1.3; max-width: 360px; margin-bottom: 12px; }
  .contact-img-txt cite { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
  .contact-infos { background: var(--beige); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; gap: 32px; }
  .ci-item h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--rouge); margin-bottom: 8px; }
  .ci-item p { font-size: 15px; color: var(--brun); line-height: 1.65; font-weight: 300; }
  .btn-brun { background: var(--brun); color: white; padding: 14px 36px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s; margin-top: 8px; }
  .btn-brun:hover { background: var(--brun2); }

  /* FOOTER */
  footer { background: var(--brun); padding: 36px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 2px solid var(--rouge); }
  .f-logo { font-family: 'Fraunces', serif; font-size: 18px; color: white; }
  .f-logo span { color: var(--rouge); font-style: italic; }
  footer p { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

  /* ANIM */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.up { opacity: 1; transform: none; }

  @media (max-width: 900px) {
    nav { padding: 18px 20px; }
    nav.scrolled { padding: 14px 20px; }
    .nav-links, .nav-resa { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 100px 24px 60px; }
    .hero-right { height: 300px; }
    .hero-tag { bottom: 16px; right: 16px; padding: 14px 18px; }
    .section { padding: 60px 20px; }
    .specs-layout { grid-template-columns: 1fr; }
    .spec-big { grid-row: auto; min-height: 360px; }
    .carte-cols { grid-template-columns: 1fr; gap: 0; }
    .carte-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .histoire { grid-template-columns: 1fr; }
    .histoire-imgs { height: 320px; grid-template-rows: 1fr; }
    .histoire-imgs img:last-child { display: none; }
    .histoire-text { padding: 48px 24px; }
    .vins { padding: 60px 20px; }
    .vins-inner { grid-template-columns: 1fr; gap: 40px; }
    .galerie-strip { grid-template-columns: 1fr 1fr; height: auto; }
    .galerie-strip div:nth-child(n+3) { height: 180px; }
    .galerie-strip div:first-child { grid-column: 1/3; height: 240px; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-img { min-height: 300px; }
    .contact-infos { padding: 48px 24px; }
    footer { flex-direction: column; gap: 10px; text-align: center; padding: 28px 20px; }
  }