/* === NOURRITURES TERRESTRES — Sophistiqué / Raffiné === */
:root{
  --gold:#c9a961;
  --gold-light:#e0c98a;
  --gold-dark:#9c8341;
  --beige:#f5efe4;
  --beige-dark:#e8dfcd;
  --black:#0d0d0d;
  --black-soft:#1a1a1a;
  --white:#ffffff;
  --gray:#6b6b6b;
  --gray-light:#999;
  --serif:'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:'Inter', 'Helvetica Neue', Arial, sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  font-weight:300;
  color:var(--black);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  position:relative;
}

/* Texture grain fin — overlay subtil */
body::before{
  content:"";
  position:fixed;
  top:0;left:0;width:100%;height:100%;
  pointer-events:none;
  z-index:9999;
  opacity:0.06;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}

h1,h2,h3,h4{
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:0.5px;
  line-height:1.2;
}

a{color:inherit;text-decoration:none;transition:color .25s ease}
img{max-width:100%;display:block}

.container{max-width:1280px;margin:0 auto;padding:0 5%}

/* === NAVBAR — Transparent === */
.navbar{
  position:fixed;
  top:0;left:0;width:100%;
  padding:24px 5%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:100;
  background:transparent;
  transition:background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.navbar.scrolled{
  background:rgba(13,13,13,0.92);
  backdrop-filter:blur(10px);
  padding:16px 5%;
  box-shadow:0 1px 0 rgba(201,169,97,0.15);
}
.navbar.dark-bg{
  background:rgba(13,13,13,0.92);
  backdrop-filter:blur(10px);
}
.nav-logo{
  font-family:var(--serif);
  font-size:24px;
  letter-spacing:2px;
  color:var(--white);
  text-transform:uppercase;
}
.nav-logo span{color:var(--gold)}
.nav-links{
  display:flex;
  gap:38px;
  list-style:none;
  align-items:center;
}
.nav-links a{
  color:var(--white);
  font-size:12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  font-weight:400;
  position:relative;
}
.nav-links a:hover{color:var(--gold)}
.nav-links a.cta{
  border:1px solid var(--gold);
  padding:10px 22px;
  color:var(--gold);
}
.nav-links a.cta:hover{background:var(--gold);color:var(--black)}

.hamburger{
  display:none;
  width:30px;
  height:22px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:101;
}
.hamburger span{
  display:block;
  width:100%;
  height:1.5px;
  background:var(--white);
  transition:transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(6px,7px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(6px,-7px)}

/* === HERO SLIDER === */
.hero{
  position:relative;
  height:100vh;
  min-height:600px;
  overflow:hidden;
  color:var(--white);
}
.hero-slides{
  position:absolute;
  top:0;left:0;width:100%;height:100%;
}
.hero-slide{
  position:absolute;
  top:0;left:0;width:100%;height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.5s ease;
}
.hero-slide.active{opacity:1}
.hero-slide::after{
  content:"";
  position:absolute;
  top:0;left:0;width:100%;height:100%;
  background:linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 5%;
}
.hero-eyebrow{
  font-size:11px;
  letter-spacing:6px;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:24px;
}
.hero-eyebrow::before, .hero-eyebrow::after{
  content:"";
  display:inline-block;
  width:40px;
  height:1px;
  background:var(--gold);
  vertical-align:middle;
  margin:0 16px;
}
.hero h1{
  font-size:clamp(42px, 7vw, 88px);
  font-weight:300;
  margin-bottom:24px;
  max-width:1000px;
}
.hero h1 em{color:var(--gold);font-style:italic;font-weight:300}
.hero-subtitle{
  font-size:17px;
  font-weight:300;
  max-width:600px;
  margin-bottom:48px;
  opacity:0.9;
}

/* Boutons */
.btn{
  display:inline-block;
  padding:16px 40px;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:500;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  cursor:pointer;
  transition:all .25s ease;
  font-family:var(--sans);
}
.btn:hover{background:var(--gold);color:var(--black)}
.btn-filled{background:var(--gold);color:var(--black)}
.btn-filled:hover{background:var(--gold-light);border-color:var(--gold-light)}
.btn-dark{border-color:var(--black);color:var(--black)}
.btn-dark:hover{background:var(--black);color:var(--gold)}

/* Indicateurs slider */
.hero-dots{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.hero-dots span{
  width:36px;
  height:2px;
  background:rgba(255,255,255,0.3);
  cursor:pointer;
  transition:background .3s ease;
}
.hero-dots span.active{background:var(--gold)}

/* === SECTIONS === */
section{padding:120px 0}
.section-title-block{text-align:center;margin-bottom:80px}
.section-eyebrow{
  font-size:11px;
  letter-spacing:5px;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:20px;
  font-weight:500;
}
.section-title{
  font-size:clamp(34px, 4.5vw, 56px);
  font-weight:300;
  color:var(--black);
  margin-bottom:24px;
  font-style:italic;
}
.section-subtitle{
  max-width:680px;
  margin:0 auto;
  font-size:16px;
  color:var(--gray);
  line-height:1.8;
}
.gold-divider{
  width:60px;
  height:1px;
  background:var(--gold);
  margin:24px auto;
}

/* Intro section */
.intro{background:var(--white)}
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.intro-img{
  position:relative;
  overflow:hidden;
}
.intro-img img{
  width:100%;
  height:560px;
  object-fit:cover;
  filter:grayscale(15%);
}
.intro-img::before{
  content:"";
  position:absolute;
  top:20px;left:20px;
  width:calc(100% - 40px);
  height:calc(100% - 40px);
  border:1px solid var(--gold);
  z-index:2;
  pointer-events:none;
}
.intro-text h2{
  font-size:48px;
  font-style:italic;
  margin-bottom:24px;
}
.intro-text .gold-divider{margin:0 0 32px}
.intro-text p{
  font-size:16px;
  color:var(--gray);
  margin-bottom:20px;
  line-height:1.9;
}
.intro-text .signature{
  font-family:var(--serif);
  font-style:italic;
  font-size:22px;
  color:var(--gold);
  margin-top:32px;
}

/* Services / cards */
.services{background:var(--beige)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.service-card{
  background:var(--white);
  padding:60px 40px;
  text-align:center;
  position:relative;
  transition:transform .3s ease, box-shadow .3s ease;
  border:1px solid rgba(201,169,97,0.15);
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 30px 60px -20px rgba(13,13,13,0.15);
}
.service-icon{
  width:60px;
  height:60px;
  margin:0 auto 28px;
  color:var(--gold);
}
.service-card h3{
  font-size:26px;
  font-style:italic;
  margin-bottom:16px;
}
.service-card .price{
  font-size:14px;
  letter-spacing:3px;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:20px;
  font-weight:500;
}
.service-card p{
  color:var(--gray);
  font-size:15px;
  line-height:1.8;
}

/* Galerie compacte (homepage preview) */
.gallery-section{background:var(--white)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.gallery-item{
  overflow:hidden;
  aspect-ratio:1/1;
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease, filter .4s ease;
  filter:grayscale(10%);
}
.gallery-item:hover img{
  transform:scale(1.06);
  filter:grayscale(0%);
}

/* Galerie page (plus grande) */
.gallery-full{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gallery-full .gallery-item{aspect-ratio:4/5}

/* Citation / pull-quote */
.quote-section{
  background:var(--black);
  color:var(--white);
  padding:140px 0;
  text-align:center;
}
.quote-section .container{max-width:880px}
.quote-mark{
  font-family:var(--serif);
  font-size:80px;
  color:var(--gold);
  line-height:1;
  margin-bottom:20px;
}
.quote-section blockquote{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(24px,3vw,36px);
  line-height:1.5;
  margin-bottom:32px;
  font-weight:300;
}
.quote-section cite{
  font-style:normal;
  font-size:12px;
  letter-spacing:4px;
  color:var(--gold);
  text-transform:uppercase;
}

/* CTA section */
.cta-section{
  background:var(--beige);
  text-align:center;
  padding:120px 0;
}
.cta-section h2{
  font-size:clamp(36px,5vw,60px);
  font-style:italic;
  margin-bottom:24px;
}
.cta-section p{
  color:var(--gray);
  margin-bottom:40px;
  font-size:17px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

/* === DINERS PAGE === */
.page-header{
  background:var(--black);
  color:var(--white);
  padding:200px 0 100px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-header::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size:cover;
  background-position:center;
  opacity:0.3;
  filter:grayscale(40%);
}
.page-header > *{position:relative;z-index:2}
.page-header h1{
  font-size:clamp(48px,6vw,78px);
  font-style:italic;
  margin-bottom:16px;
}
.page-header .breadcrumb{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
}
.page-header .breadcrumb a{color:rgba(255,255,255,0.7)}
.page-header .breadcrumb a:hover{color:var(--gold)}

.diners-list{padding:120px 0;background:var(--white)}
.diner-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  margin-bottom:120px;
}
.diner-block:nth-child(even){direction:rtl}
.diner-block:nth-child(even) > *{direction:ltr}
.diner-block:last-child{margin-bottom:0}
.diner-img{
  position:relative;
  overflow:hidden;
  height:520px;
}
.diner-img img{
  width:100%;height:100%;
  object-fit:cover;
}
.diner-info .number{
  font-family:var(--serif);
  font-size:14px;
  letter-spacing:6px;
  color:var(--gold);
  margin-bottom:16px;
  text-transform:uppercase;
}
.diner-info h2{
  font-size:46px;
  font-style:italic;
  margin-bottom:24px;
}
.diner-info > .gold-divider{margin:0 0 28px}
.diner-info p{
  color:var(--gray);
  font-size:16px;
  line-height:1.9;
  margin-bottom:24px;
}
.diner-info .price-tag{
  display:inline-block;
  padding:8px 20px;
  border:1px solid var(--gold);
  color:var(--gold);
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:32px;
}

/* === CONTACT === */
.contact-section{padding:120px 0;background:var(--white)}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.contact-info h2{
  font-size:42px;
  font-style:italic;
  margin-bottom:24px;
}
.contact-info p{
  color:var(--gray);
  margin-bottom:40px;
  line-height:1.8;
}
.contact-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
  margin-bottom:28px;
}
.contact-item-icon{
  width:44px;height:44px;
  border:1px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  color:var(--gold);
}
.contact-item-icon svg{width:20px;height:20px}
.contact-item-text strong{
  display:block;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--black);
  margin-bottom:6px;
  font-weight:500;
}
.contact-item-text span, .contact-item-text a{
  color:var(--gray);
  font-size:15px;
}
.contact-item-text a:hover{color:var(--gold)}

.contact-form{
  background:var(--beige);
  padding:60px 50px;
}
.contact-form h3{
  font-size:32px;
  font-style:italic;
  margin-bottom:32px;
}
.form-group{margin-bottom:24px}
.form-group label{
  display:block;
  font-size:11px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  margin-bottom:10px;
  color:var(--black);
  font-weight:500;
}
.form-group input, .form-group textarea, .form-group select{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(13,13,13,0.15);
  background:var(--white);
  font-family:var(--sans);
  font-size:15px;
  color:var(--black);
  transition:border-color .25s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus{
  outline:none;
  border-color:var(--gold);
}
.form-group textarea{resize:vertical;min-height:140px}
.form-msg{
  padding:14px 18px;
  margin-bottom:20px;
  font-size:14px;
  display:none;
}
.form-msg.success{background:rgba(201,169,97,0.15);color:var(--gold-dark);border-left:3px solid var(--gold);display:block}
.form-msg.error{background:#fdecec;color:#a94442;border-left:3px solid #a94442;display:block}

.map-wrapper{
  margin-top:60px;
  height:400px;
  position:relative;
  overflow:hidden;
}
.map-wrapper iframe{width:100%;height:100%;border:0;filter:grayscale(30%)}

/* === FOOTER === */
footer{
  background:var(--black);
  color:rgba(255,255,255,0.6);
  padding:80px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
  margin-bottom:60px;
}
.footer-brand{
  font-family:var(--serif);
  font-size:28px;
  letter-spacing:3px;
  color:var(--white);
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-brand span{color:var(--gold)}
.footer p{
  font-size:14px;
  line-height:1.8;
}
.footer h4{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:24px;
  font-weight:500;
}
.footer ul{list-style:none}
.footer ul li{margin-bottom:12px}
.footer ul a{font-size:14px}
.footer ul a:hover{color:var(--gold)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  letter-spacing:1px;
}
.footer-bottom a:hover{color:var(--gold)}

/* === BANNIÈRE COOKIES === */
.cookie-banner{
  position:fixed;
  bottom:20px;
  left:20px;
  right:20px;
  max-width:560px;
  margin:0 auto;
  background:var(--black);
  color:var(--white);
  padding:24px 28px;
  z-index:9998;
  display:none;
  border:1px solid var(--gold);
  box-shadow:0 20px 60px rgba(0,0,0,0.4);
}
.cookie-banner.show{display:flex;gap:20px;align-items:center;flex-wrap:wrap}
.cookie-banner p{font-size:13px;flex:1;min-width:220px;line-height:1.6}
.cookie-banner a{color:var(--gold);text-decoration:underline}
.cookie-banner .cookie-btns{display:flex;gap:10px}
.cookie-banner button{
  padding:10px 20px;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  cursor:pointer;
  font-family:var(--sans);
  transition:all .2s ease;
}
.cookie-banner button.accept{background:var(--gold);color:var(--black)}
.cookie-banner button:hover{opacity:0.85}

/* === LEGAL PAGES === */
.legal-content{
  padding:80px 0 120px;
  background:var(--white);
}
.legal-content .container{max-width:900px}
.legal-content h2{
  font-size:28px;
  font-style:italic;
  margin:48px 0 20px;
  color:var(--black);
}
.legal-content h2:first-child{margin-top:0}
.legal-content p, .legal-content li{
  color:var(--gray);
  font-size:15px;
  line-height:1.9;
  margin-bottom:14px;
}
.legal-content ul{padding-left:24px;margin-bottom:20px}
.legal-content strong{color:var(--black);font-weight:500}

/* === ADMIN === */
.admin-wrap{
  min-height:100vh;
  background:var(--beige);
  padding:40px 5%;
}
.admin-login{
  max-width:420px;
  margin:80px auto;
  background:var(--white);
  padding:50px 40px;
  border:1px solid rgba(201,169,97,0.2);
}
.admin-login h1{
  font-size:32px;
  font-style:italic;
  margin-bottom:8px;
  text-align:center;
}
.admin-login p{
  text-align:center;
  color:var(--gray);
  font-size:14px;
  margin-bottom:32px;
}
.admin-panel{
  max-width:1200px;
  margin:0 auto;
  background:var(--white);
  padding:50px;
}
.admin-panel h1{
  font-size:36px;
  font-style:italic;
  margin-bottom:8px;
}
.admin-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(201,169,97,0.2);
}
.msg-card{
  background:var(--beige);
  padding:24px 28px;
  margin-bottom:16px;
  border-left:3px solid var(--gold);
}
.msg-card-head{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:14px;
  font-size:13px;
}
.msg-card strong{color:var(--black)}
.msg-card .date{color:var(--gray-light);font-size:12px}
.msg-card .email{color:var(--gold-dark)}
.msg-card .content{
  color:var(--gray);
  white-space:pre-wrap;
  line-height:1.7;
  margin-top:10px;
}
.empty-state{
  text-align:center;
  padding:60px 20px;
  color:var(--gray);
}

/* === RESPONSIVE === */
@media (max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
  .services-grid{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
}

@media (max-width:768px){
  .hamburger{display:flex}
  .nav-links{
    position:fixed;
    top:0;right:-100%;
    width:80%;
    max-width:340px;
    height:100vh;
    background:var(--black);
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:32px;
    transition:right .35s ease;
    padding:40px;
  }
  .nav-links.open{right:0}
  .nav-links a{font-size:13px}
  .navbar{padding:18px 5%}

  section{padding:80px 0}
  .section-title-block{margin-bottom:50px}

  .intro-grid{grid-template-columns:1fr;gap:50px}
  .intro-img img{height:380px}
  .intro-text h2{font-size:36px}

  .services-grid{grid-template-columns:1fr;gap:20px}
  .service-card{padding:48px 30px}

  .gallery-grid{grid-template-columns:1fr 1fr;gap:10px}
  .gallery-full{grid-template-columns:1fr 1fr;gap:10px}

  .quote-section{padding:80px 0}
  .quote-section blockquote{font-size:22px}

  .diner-block, .diner-block:nth-child(even){
    grid-template-columns:1fr;
    direction:ltr;
    gap:40px;
    margin-bottom:80px;
  }
  .diner-img{height:340px}
  .diner-info h2{font-size:32px}

  .contact-grid{grid-template-columns:1fr;gap:50px}
  .contact-form{padding:40px 30px}

  .footer-grid{grid-template-columns:1fr;gap:40px;text-align:left}
  .footer-bottom{flex-direction:column;gap:10px;text-align:center}

  .page-header{padding:160px 0 80px}
  .admin-panel{padding:30px 20px}
}

@media (max-width:480px){
  .hero h1{font-size:38px}
  .hero-eyebrow{font-size:10px;letter-spacing:4px}
  .hero-eyebrow::before, .hero-eyebrow::after{width:20px;margin:0 8px}
  .gallery-grid, .gallery-full{grid-template-columns:1fr}
}
