:root {
  --green: #2f4a46;
  --green-dark: #223936;
  --green-soft: #6f8180;
  --cream: #f6f1e8;
  --white: #ffffff;
  --gold: #d8b56d;
  --text: #20312f;
  --muted: #667775;
  --card: rgba(255,255,255,.94);
  --shadow: 0 20px 50px rgba(0,0,0,.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  padding-bottom: 88px;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.hero{
    position:relative;

    min-height:80vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:120px 20px 80px;

    overflow:hidden;

    background-image:url('/images/fond-zebu-rooftop.webp');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.35),
        rgba(0,0,0,.65)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:900px;

    text-align:center;
    color:#fff;
}

.logo {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.eyebrow{
    margin-bottom:18px;

    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;

    opacity:.9;
}

.hero h1{
    margin-bottom:25px;

    font-size:72px;
    line-height:1;

    font-weight:700;
}

.hero p{
    max-width:760px;

    margin:auto auto 40px;

    font-size:20px;
    line-height:1.8;

    color:rgba(255,255,255,.92);
}

.hero-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:220px;

    padding:16px 32px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #1f2d2b;
  box-shadow: 0 16px 32px rgba(0,0,0,.25);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.7);
    color:#fff;

    backdrop-filter:blur(8px);

    background:rgba(255,255,255,.08);
}

.btn-outline:hover{
    background:rgba(255,255,255,.16);
}

@media(max-width:768px){

    .hero{
        min-height:90vh;

        padding:60px 20px 60px;

        background-position:center center;
    }

    .logo{
        width:300px;
    }

    .hero h1{
        font-size:46px;
    }

    .hero p{
        font-size:17px;
        line-height:1.7;
    }

    .btn{
        width:100%;
        min-width:auto;
    }

}

.nav-menu {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(246,241,232,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47,74,70,.12);
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-inner {
  display: flex;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  white-space: nowrap;
}

.nav-inner a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47,74,70,.08);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.nav-inner a:hover {
  background: rgba(47,74,70,.14);
}

.nav-inner a.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(47,74,70,.18);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 16px 32px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  margin-bottom: 36px;

  scroll-margin-top: 80px;
}

.horaires {
  scroll-margin-top: 80px;
}

.intro-card,
.ardoise {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.intro-card {
  background: var(--white);
}

.intro-card h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  color: var(--green-dark);
  line-height: 1;
}

.intro-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.ardoise {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: var(--white);
}

.ardoise .tag {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ardoise h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.ardoise p {
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.section {
  padding: 46px 0 10px;
  scroll-margin-top: 54px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}

.section-label {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: .95;
}

.grid,
.simple-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.item {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(47,74,70,.12);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(47,74,70,.08);
}

.item.signature {
  background: linear-gradient(145deg,#ffffff,#eef1ec);
  border: 1px solid rgba(216,181,109,.55);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216,181,109,.18);
  color: #8a6420;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.item h3 {
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.22;
  color: var(--green-dark);
}

.desc {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .02em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47,74,70,.08);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.note-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  border: 1px dashed rgba(47,74,70,.3);
  background: rgba(47,74,70,.08);
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.6;
}

.wine-card .item {
  margin-bottom: 14px;
}

.wine-card .item:last-child {
  margin-bottom: 0;
}

.cta-band {
  margin: 56px 0 20px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(34,57,54,.96), rgba(47,74,70,.9));
  scroll-margin-top: 80px;
}

.cta-band h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.cta-band p {
  max-width: 650px;
  margin: 16px auto 26px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

.bottom-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 999px;
  background: rgba(34,57,54,.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}

.bottom-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.bottom-bar a:first-child {
  background: var(--gold);
  color: #1f2d2b;
}

footer {
  padding: 24px 16px 10px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {

  .hero {
    min-height: 72vh;
  }

  .intro,
  .grid,
  .simple-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .item {
    padding: 19px;
  }

  main {
    padding-top: 32px;
  }

}

@media (min-width: 480px) {

  .nav-inner {
    justify-content: center;
  }

}

@media (max-width: 480px) {

  .hero-actions .btn {
    width: 100%;
  }

  .bottom-bar {
    grid-template-columns: 1.2fr 1fr;
    border-radius: 24px;
  }

}

.section-review {
    display:grid;
    grid-template-columns: 320px 1fr;
    gap:40px;
    align-items:start;
}

.google-review-card {
    display:block;
    padding:24px;
    border-radius:24px;
    background:#1f1f1f;
    color:white;
    text-decoration:none;
    margin-bottom:20px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.google-review-card:hover {
    transform:translateY(-4px);
    border-color:#c8a96b;
}

.google-review-top {
    display:flex;
    gap:14px;
    align-items:center;
    margin-bottom:18px;
}

.google-review-avatar img {
    width:48px;
    height:48px;
    object-fit:cover;
}

.google-review-stars {
    color:#d4af37;
    margin-top:4px;
}

.google-review-card p {
    line-height:1.7;
    opacity:.92;
}

.google-review-source {
    display:block;
    margin-top:15px;
    font-size:.85rem;
    opacity:.6;
}

@media (max-width: 900px) {
    .section-review {
        grid-template-columns: 1fr;
    }
}

.review-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:20px;

    padding:14px 28px;

    border-radius:50px;

    background:#2f4a46;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    font-size:15px;

    transition:all .25s ease;

    box-shadow:0 8px 24px rgba(0,0,0,.15);

}

.review-btn:hover{

    transform:translateY(-2px);

    background:#3d5d58;

    color:#fff;

}

.faq {
    max-width: 900px;
    margin: 80px auto 0;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 28px;
    color: var(--white);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(34, 57, 54, .96), rgba(47, 74, 70, .9));
    scroll-margin-top: 80px;
}

.faq .section-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(200, 169, 107, 0.12);
    color: #c8a96b;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 50px;
    color: #ffffff;
}

.faq h3 {
    padding-top: 20px;
    position: relative;
    padding-left: 22px;
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.faq h3::before {
    margin-top: 10px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8a96b;

}

.faq p {
    margin: 0;
    padding-left: 22px;
    line-height: 1.9;
    font-size: 1.02rem;
    color: rgba(255,255,255,.78);
}

.faq p + h3 {
    border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 768px) {

    .faq h2 {
        margin-bottom: 35px;
    }

    .faq h3 {
        font-size: 1.05rem;
    }

    .faq p {
        font-size: .98rem;
        line-height: 1.8;
    }

}

.home-menu-section {
    max-width: 1280px;
    margin: 60px auto;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 28px;
    color: var(--white);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(34, 57, 54, .96), rgba(47, 74, 70, .9));
    scroll-margin-top: 80px;
}

.home-menu-head {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: end;
    margin-bottom: 50px;
}

.home-menu-head h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 4.8rem);
    line-height: 1.05;
    color: #fff;
    margin-top: 12px;
}

.home-menu-intro {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    font-size: 1.02rem;
}

.home-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-highlight {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );
    border: 1px solid rgba(255,255,255,.06);
    transition: .35s;
}

.menu-highlight:hover {
    transform: translateY(-5px);
    border-color: rgba(200,169,107,.4);
}

.menu-highlight.large {
    grid-column: span 2;
    min-height: 340px;
}

.menu-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(200,169,107,.12);
    color: #c8a96b;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.menu-highlight h3 {
    font-size: 1.8rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.menu-highlight p {
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    max-width: 520px;
}

.menu-highlight span {
    position: absolute;
    left: 32px;
    bottom: 32px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.home-menu-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 980px) {

    .home-menu-head {
        grid-template-columns: 1fr;
    }

    .home-menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-highlight.large {
        grid-column: span 1;
    }

}

@media (max-width: 768px) {

    .menu-highlight {
        min-height: auto;
        padding: 26px;
    }

    .menu-highlight.large {
        min-height: auto;
    }

    .menu-highlight span {
        position: relative;
        left: auto;
        bottom: auto;
        display: block;
        margin-top: 24px;
    }

    .home-menu-actions {
        flex-direction: column;
    }

}