@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ======================
   VARIABLES
   ====================== */
:root {
  --vert:       #2C4A3E;
  --vert-mid:   #3D6357;
  --vert-pale:  #EEF4F1;
  --or:         #C9A227;
  --or-light:   #DDB94A;
  --creme:      #F5F0E6;
  --ecru:       #FDFAF4;
  --brun:       #2A1F10;
  --brun-mid:   #6B5835;
  --brun-soft:  #A08860;
  --border:     #DDD0B0;
  --dark:       #141E18;
}

/* ======================
   RESET
   ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', system-ui, sans-serif;
  background: var(--ecru);
  color: var(--brun);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* ======================
   TYPOGRAPHIE
   ====================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 8vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: .65rem;
}

/* ======================
   LAYOUT
   ====================== */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.bg-creme { background: var(--creme); }
.bg-ecru  { background: var(--ecru); }
.bg-vert  { background: var(--vert); }
.bg-dark  { background: var(--dark); }
.bg-pale  { background: var(--vert-pale); }

/* ======================
   BOUTONS
   ====================== */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-or    { background: var(--or);   color: white; border-color: var(--or); }
.btn-or:hover { background: var(--or-light); border-color: var(--or-light); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: white; }
.btn-vert  { background: var(--vert); color: white; border-color: var(--vert); }
.btn-vert:hover  { background: var(--vert-mid); border-color: var(--vert-mid); }
.btn-white { background: white; color: var(--vert); border-color: white; }
.btn-white:hover { background: var(--ecru); }
.btn-outline-vert { background: transparent; color: var(--vert); border-color: var(--vert); }
.btn-outline-vert:hover { background: var(--vert); color: white; }

/* ======================
   TOPBAR
   ====================== */
.topbar {
  display: none;
  background: var(--vert);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}
.topbar a { color: white; }
.topbar-phone { font-weight: 700; font-size: .8rem; }
.topbar-phone:hover { color: var(--or-light); }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-book {
  background: var(--or);
  color: white;
  padding: .28rem .9rem;
  border-radius: 2px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.topbar-book:hover { background: var(--or-light); }
@media (min-width: 768px) { .topbar { display: block; } }

/* ======================
   NAV
   ====================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253,250,244,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.nav-logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--vert);
  line-height: 1;
}
.nav-logo-sub {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--or);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--vert);
  transition: opacity .2s;
}

.nav-links {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--ecru);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease, opacity .25s;
}
.nav-links.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.nav-links a {
  display: block;
  padding: .7rem 1.5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brun-mid);
}
.nav-links a:hover, .nav-links a.active { color: var(--vert); }

.nav-cta {
  display: none;
  background: var(--or);
  color: white;
  padding: .4rem 1.1rem;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--or-light); }

@media (min-width: 768px) {
  .nav-burger { display: none; }
  .nav-links {
    position: static;
    transform: none; opacity: 1; visibility: visible;
    background: none; border: none; padding: 0;
    display: flex; align-items: center; gap: .1rem;
  }
  .nav-links a { padding: .4rem .85rem; }
  .nav-links a:hover { color: var(--or); }
  .nav-links a.active { color: var(--or); }
  .nav-cta { display: inline-block; margin-left: .75rem; }
}

/* ======================
   HERO
   ====================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  background:
    linear-gradient(rgba(14,22,16,.62), rgba(14,22,16,.68)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
}

.hero-inner { max-width: 780px; position: relative; }

.hero-label {
  display: inline-block;
  border: 1px solid rgba(201,162,39,.45);
  color: #E2C46B;
  padding: .38rem 1.1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 {
  color: white;
  font-weight: 700;
  margin-bottom: .35rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero h1 .cursive {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.25em;
  color: #E2C46B;
  font-weight: 700;
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(.95rem, 2.5vw, 1.25rem);
  margin-bottom: 2.75rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
  display: block;
}

/* Hero entrance */
.hero-label { animation: up .7s ease .1s both; }
.hero h1    { animation: up .7s ease .25s both; }
.hero-sub   { animation: up .7s ease .4s both; }
.hero-btns  { animation: up .7s ease .55s both; }
@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======================
   BANDE PROMESSES
   ====================== */
.promesses {
  background: var(--vert);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.promesses-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}
.promesse {
  flex: 1 1 180px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: .84rem;
}
.promesse:last-child { border-right: none; }
.promesse-icon { font-size: 1.3rem; flex-shrink: 0; }
.promesse strong { display: block; color: white; font-size: .86rem; font-weight: 700; }
.promesse small  { color: rgba(255,255,255,.45); font-size: .74rem; }

/* ======================
   INTRO
   ====================== */
.intro-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-quote {
  border-left: 2px solid var(--or);
  padding-left: 1.75rem;
}
.intro-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--brun);
  line-height: 1.65;
  margin-bottom: .9rem;
}
.intro-quote cite {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--or);
}
.intro-labels {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.intro-label {
  font-size: .74rem;
  font-weight: 600;
  color: var(--brun-mid);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.intro-label::before { content: '·'; color: var(--or); font-size: 1rem; }

.intro-text h2 { color: var(--vert); margin-bottom: 1.25rem; }
.intro-text p {
  color: var(--brun-mid);
  line-height: 1.85;
  margin-bottom: .9rem;
  font-size: .96rem;
}

@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1fr 1.25fr; }
}

/* ======================
   PLATS
   ====================== */
.plats-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .plats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .plats-grid { grid-template-columns: repeat(3, 1fr); } }

.plat-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}
.plat-card:hover { border-color: var(--or); }

.plat-img {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: var(--creme);
}
.plat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plat-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(14,22,16,.6));
  padding: 1.5rem .9rem .55rem;
}
.plat-tag span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.plat-body { padding: 1.25rem 1.25rem 1.4rem; }
.plat-body h3 { color: var(--vert); margin-bottom: .4rem; }
.plat-body p {
  color: var(--brun-mid);
  font-size: .86rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.plat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  border-top: 1px solid var(--creme);
}
.plat-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--or);
}
.plat-more {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brun-soft);
}
.plat-more:hover { color: var(--vert); }

/* ======================
   SAVOIR-FAIRE
   ====================== */
.sf-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.sf-header { margin-bottom: 3rem; }
.sf-header h2 { color: white; margin-top: .5rem; }
.sf-header p  { color: rgba(255,255,255,.55); font-style: italic; margin-top: .5rem; }

.sf-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .sf-grid { grid-template-columns: repeat(3, 1fr); } }

.sf-step {}
.sf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,162,39,.25);
  line-height: 1;
  margin-bottom: .5rem;
}
.sf-step h3 { color: white; margin-bottom: .7rem; }
.sf-step p  { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.8; }
.sf-step em { color: rgba(201,162,39,.9); font-style: italic; }

/* ======================
   PRODUCTEURS
   ====================== */
.prod-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 640px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }

.prod-item {
  background: white;
  padding: 2rem 1.5rem;
}
.prod-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.prod-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--vert);
  margin-bottom: .2rem;
}
.prod-lieu {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: .75rem;
  display: block;
}
.prod-item p {
  font-size: .84rem;
  color: var(--brun-mid);
  line-height: 1.65;
}

/* ======================
   GALERIE
   ====================== */
.galerie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
@media (min-width: 768px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .g-wide { grid-column: span 2; }
}

.g-item {
  overflow: hidden;
  background: var(--creme);
  aspect-ratio: 1;
  position: relative;
}
.g-item.g-wide { aspect-ratio: 2/1; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.04); }

.g-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem .85rem .6rem;
  background: linear-gradient(transparent, rgba(14,22,16,.72));
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .88rem;
  opacity: 0;
  transition: opacity .3s;
}
.g-item:hover figcaption { opacity: 1; }

/* ======================
   AVIS
   ====================== */
.avis-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .avis-grid { grid-template-columns: repeat(3, 1fr); } }

.avis-card {
  background: white;
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.avis-stars { color: #D4A817; font-size: .9rem; letter-spacing: .08em; margin-bottom: .85rem; }
.avis-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brun);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.avis-author { font-size: .8rem; }
.avis-author strong { color: var(--vert); display: block; }
.avis-author span { color: var(--brun-soft); }

.avis-total {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .82rem;
  color: var(--brun-mid);
}
.avis-total strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--vert);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: .2rem;
}

/* ======================
   CTA
   ====================== */
.cta-band {
  background: var(--or);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: .6rem; }
.cta-band p  { color: rgba(255,255,255,.8); font-style: italic; margin-bottom: 2rem; font-size: 1.05rem; }

/* ======================
   CONTACT / HORAIRES
   ====================== */
.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-block {
  background: white;
  border: 1px solid var(--border);
  padding: 2rem;
}
.contact-block h3 {
  color: var(--vert);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--creme);
}

.h-season {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or);
  margin: 1rem 0 .5rem;
  display: block;
}
.h-season:first-of-type { margin-top: 0; }

.h-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .42rem 0;
  border-bottom: 1px solid var(--creme);
  font-size: .87rem;
}
.h-row:last-child { border-bottom: none; }
.h-day { font-weight: 700; color: var(--vert); }
.h-time { color: var(--brun-mid); }
.h-closed { color: var(--brun-soft); font-style: italic; }

.infos-list { display: flex; flex-direction: column; gap: 1rem; }
.info-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--brun-mid);
}
.info-row-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-row strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brun-soft);
  margin-bottom: .15rem;
}
.info-row a { color: var(--vert); font-weight: 700; }
.info-row a:hover { color: var(--or); }

.map-block {
  margin-top: 1.25rem;
  background: var(--vert-pale);
  border: 1px solid var(--border);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  cursor: pointer;
  font-size: .82rem;
  color: var(--brun-mid);
  text-align: center;
}
.map-block:hover { border-color: var(--vert); }
.map-block strong { color: var(--vert); display: block; font-size: .9rem; }

/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: .35rem;
}
.footer-brand .since {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p {
  font-size: .83rem;
  line-height: 1.75;
  color: rgba(255,255,255,.42);
  margin-bottom: 1.25rem;
}
.footer-socials { display: flex; gap: .5rem; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s;
}
.footer-social:hover { border-color: var(--or); color: var(--or); }

.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-col p { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.7; }
.footer-col p + p { margin-top: .35rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  max-width: 1160px;
  margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,.2); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }
