  :root {
    --vert: #2D3B2E;
    --vert2: #3D5040;
    --or: #C9A84C;
    --creme: #F8F4EC;
    --beige: #EDE7D9;
    --gris: #888;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: var(--creme); color: var(--vert); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 60px;
    transition: background 0.4s, padding 0.3s;
  }
  nav.scrolled { background: var(--creme); padding: 16px 60px; box-shadow: 0 1px 0 rgba(45,59,46,0.1); }
  .logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--vert); letter-spacing: 2px; }
  .logo em { font-style: italic; color: var(--or); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: var(--vert); text-decoration: none; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; opacity: 0.7; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-resa { border: 1px solid var(--vert); color: var(--vert); padding: 10px 24px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.2s, color 0.2s; }
  .nav-resa:hover { background: var(--vert); color: var(--creme); }

  /* HERO */
  .hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
  .hero-img { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600&q=80') center/cover; }
  .hero-img::after { content: ''; position: absolute; inset: 0; background: rgba(30,40,30,0.55); }
  .hero-content { position: relative; z-index: 2; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 24px; }
  .hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 8vw, 96px); color: white; line-height: 1; font-weight: 400; margin-bottom: 24px; }
  .hero h1 em { font-style: italic; color: var(--or); }
  .hero p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 440px; margin: 0 auto 40px; line-height: 1.8; }
  .hero-btns { display: flex; gap: 16px; justify-content: center; }
  .btn-or { background: var(--or); color: white; padding: 15px 40px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: background 0.2s; display: inline-block; }
  .btn-or:hover { background: #b8963e; }
  .btn-outline-w { border: 1px solid rgba(255,255,255,0.4); color: white; padding: 14px 36px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: border-color 0.2s; display: inline-block; }
  .btn-outline-w:hover { border-color: white; }
  .hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .hero-scroll span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); animation: drop 1.6s ease-in-out infinite; }
  @keyframes drop { 0%,100%{opacity:0;transform:scaleY(0.2);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

  /* BANDE CHIFFRES */
  .bande { background: var(--vert); display: flex; }
  .bande-item { flex: 1; padding: 32px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
  .bande-item:last-child { border: none; }
  .bande-item strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--or); font-weight: 400; }
  .bande-item span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

  /* SECTION COMMUNE */
  .section { padding: 100px 60px; }
  .s-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--or); margin-bottom: 12px; }
  .s-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); line-height: 1.05; font-weight: 400; margin-bottom: 48px; }
  .s-title em { font-style: italic; color: var(--or); }
  .sep { width: 48px; height: 1px; background: var(--or); margin: 20px 0; }

  /* CARTE */
  .carte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--beige); }
  .carte-card { background: var(--creme); padding: 36px 32px; }
  .carte-card-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
  .carte-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; }
  .carte-prix { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--or); }
  .carte-card p { font-size: 13px; color: var(--gris); line-height: 1.65; }
  .carte-tag { display: inline-block; margin-top: 14px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; border: 1px solid var(--or); color: var(--or); padding: 3px 10px; }
  .carte-section-label { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: var(--gris); margin: 40px 0 20px; letter-spacing: 1px; }

  /* ABOUT */
  .about { display: grid; grid-template-columns: 1fr 1fr; }
  .about-img { position: relative; min-height: 560px; overflow: hidden; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-text { background: var(--vert); padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; }
  .about-text .s-label { color: rgba(201,168,76,0.8); }
  .about-text .s-title { color: white; }
  .about-text p { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
  .about-text .sep { background: var(--or); }
  .about-imgs-small { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 4px; }
  .about-imgs-small img { width: 100%; height: 180px; object-fit: cover; display: block; filter: brightness(0.8); }

  /* MENU DEGUSTATION */
  .degustation { background: var(--beige); }
  .degu-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .degu-img { position: relative; }
  .degu-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
  .degu-img::before { content: ''; position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px; border: 1px solid var(--or); z-index: -1; }
  .degu-plats { display: flex; flex-direction: column; gap: 0; }
  .degu-plat { padding: 22px 0; border-bottom: 1px solid rgba(45,59,46,0.12); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
  .degu-plat:last-child { border: none; }
  .degu-plat-nom { font-family: 'Cormorant Garamond', serif; font-size: 18px; }
  .degu-plat-desc { font-size: 12px; color: var(--gris); margin-top: 3px; }
  .degu-plat-prix { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--or); white-space: nowrap; }
  .degu-cta { margin-top: 36px; }

  /* GALERIE */
  .galerie-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .galerie-item { overflow: hidden; }
  .galerie-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s ease, filter 0.5s; filter: brightness(0.88); }
  .galerie-item:hover img { transform: scale(1.06); filter: brightness(1); }

  /* CONTACT */
  .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .contact-map { overflow: hidden; min-height: 480px; position: relative; }
  .contact-map img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(0.2) brightness(0.8); }
  .contact-map-pin { position: absolute; bottom: 32px; left: 32px; background: white; padding: 16px 24px; }
  .contact-map-pin strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 17px; margin-bottom: 2px; }
  .contact-map-pin span { font-size: 12px; color: var(--gris); }
  .contact-infos { background: var(--vert); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; gap: 36px; }
  .contact-item h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--or); margin-bottom: 8px; }
  .contact-item p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; }
  .btn-or-outline { border: 1px solid var(--or); color: var(--or); padding: 14px 36px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; margin-top: 8px; }
  .btn-or-outline:hover { background: var(--or); color: white; }

  /* FOOTER */
  footer { background: #1A2219; padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: white; letter-spacing: 2px; }
  .footer-logo em { color: var(--or); 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: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links, .nav-resa { display: none; }
    .section { padding: 60px 24px; }
    .bande { flex-wrap: wrap; }
    .bande-item { flex: 1 1 50%; }
    .carte-grid { grid-template-columns: 1fr; gap: 1px; }
    .about { grid-template-columns: 1fr; }
    .about-imgs-small { display: none; }
    .degu-inner { grid-template-columns: 1fr; }
    .degu-img { display: none; }
    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .contact { grid-template-columns: 1fr; }
    .contact-map { min-height: 280px; }
    .contact-infos { padding: 48px 24px; }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 28px 24px; }
  }