:root {
  --forest: #1b3a31;
  --forest-2: #142c25;
  --water: #3d7d71;
  --wood: #8b5e34;
  --sand: #e6dac2;
  --cream: #f6f1e6;
  --ink: #26271f;
  --amber: #c98a3c;
  --maxw: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Karla", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px
}

.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

/* ---------- NAV ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 28px;
}

.logo {
  font-family: "Petrona";
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .01em;
  text-decoration: none;
  margin-right: auto;
  line-height: 1.1
}

.logo small {
  display: block;
  font-family: "Karla";
  font-size: 10.5px;
  letter-spacing: .24em;
  font-weight: 500;
  opacity: .75;
  margin-top: 3px
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center
}

.nav-links a {
  color: #f2ece0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: .92;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s
}

.nav-links a:hover {
  border-color: #f2ece0
}

.nav .call {
  background: var(--cream);
  color: var(--forest);
  padding: 11px 20px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.nav .call:hover {
  background: var(--amber);
  color: #2a1c08
}

@media(max-width:820px) {
  .nav-links {
    display: none
  }

  .nav {
    padding: 18px
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(180deg, rgba(20, 44, 37, .62) 0%, rgba(20, 44, 37, .18) 34%, rgba(20, 44, 37, .55) 68%, rgba(20, 44, 37, .92) 100%),
    url("../images/hero-terrasse.jpg");
  background-size: cover;
  background-position: center 58%;
}

.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px 74px;
  width: 100%
}

.hero .place {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e9dfc8;
  font-size: 14.5px;
  letter-spacing: .04em;
  margin-bottom: 22px;
}

.hero .place::before {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--sand);
  opacity: .8
}

.hero h1 {
  font-family: "Petrona";
  font-weight: 400;
  color: #fff;
  font-size: clamp(50px, 9vw, 116px);
  line-height: .94;
  letter-spacing: -.015em;
  text-shadow: 0 2px 50px rgba(10, 25, 20, .45);
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: .44em;
  color: #ecd9b6;
  margin-top: 16px;
  letter-spacing: 0;
  line-height: 1.25;
  text-shadow: none
}

.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 15.5px;
  transition: background .2s, color .2s, border-color .2s;
}

.btn-primary {
  background: var(--amber);
  color: #2a1c08
}

.btn-primary:hover {
  background: #dda054
}

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

.btn-outline:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff
}

.hero-note {
  margin-top: 34px;
  color: #dfd4bd;
  font-size: 14.5px
}

@media(prefers-reduced-motion:no-preference) {

  .hero .place,
  .hero h1,
  .hero .actions,
  .hero-note {
    animation: rise .9s cubic-bezier(.22, .7, .3, 1) both
  }

  .hero h1 {
    animation-delay: .08s
  }

  .hero .actions {
    animation-delay: .18s
  }

  .hero-note {
    animation-delay: .26s
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(22px)
    }

    to {
      opacity: 1;
      transform: none
    }
  }
}

/* ---------- BANDE PRATIQUE ---------- */
.strip {
  background: var(--forest);
  color: #e8e0cd
}

.strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-top: 36px;
  padding-bottom: 36px
}

.strip h3 {
  font-family: "Karla";
  font-size: 12.5px;
  letter-spacing: .18em;
  font-weight: 700;
  color: #93b6a9;
  margin-bottom: 9px
}

.strip p {
  font-size: 16.5px;
  line-height: 1.55
}

.strip a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35)
}

.strip a:hover {
  border-color: #fff
}

@media(max-width:760px) {
  .strip .shell {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

/* ---------- SECTIONS GENERIQUES ---------- */
.sec {
  padding: 110px 0
}

.sec-head {
  max-width: 640px
}

.sec-head .over {
  font-family: "Petrona";
  font-style: italic;
  font-size: 20px;
  color: var(--wood);
  margin-bottom: 14px
}

.sec h2 {
  font-family: "Petrona";
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--forest)
}

.sec p.lede {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.72;
  color: #a3a3a3;
  max-width: 56ch
}

.groupes p.lede {
	color: #595757;
}

@media(max-width:760px) {
  .sec {
    padding: 74px 0
  }
}

/* ---------- LA CARTE ---------- */
.carte {
  background: var(--cream)
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center
}

.split .photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 34px 60px -34px rgba(27, 58, 49, .55)
}

.split .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.1
}

.plats {
  margin-top: 34px;
  border-top: 1px solid rgba(27, 58, 49, .16)
}

.plats div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(27, 58, 49, .16)
}

.plats strong {
  font-family: "Petrona";
  font-size: 21px;
  font-weight: 500;
  color: var(--forest)
}

.plats span {
  font-size: 14.5px;
  color: #6d6f5f;
  text-align: right;
  max-width: 24ch
}

.carte .after {
  margin-top: 26px;
  font-size: 15.5px;
  color: #5c5f50
}

@media(max-width:900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 38px
  }
}

/* ---------- LE CADRE ---------- */
.cadre {
  background: var(--forest-2);
  color: #ece4d2
}

.cadre h2 {
  color: #fff
}

.cadre .sec-head .over {
  color: #c9a468
}

.cadre .lede {
  color: #cfc6b2
}

.feats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .12)
}

.feats article {
  background: var(--forest-2);
  padding: 32px 30px
}

.feats h3 {
  font-family: "Petrona";
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px
}

.feats p {
  font-size: 15.5px;
  color: #bdb5a2;
  line-height: 1.6
}

@media(max-width:860px) {
  .feats {
    grid-template-columns: 1fr
  }
}

/* ---------- GROUPES ---------- */
.groupes {
  background: var(--sand)
}

.groupes .split {
  grid-template-columns: .98fr 1.02fr
}

.groupes .photo {
  order: -1
}

.groupes .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px
}

.groupes .tags span {
  background: #fff;
  border: 1px solid rgba(139, 94, 52, .28);
  color: var(--wood);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500
}

.groupes .btn-wood {
  display: inline-block;
  margin-top: 34px;
  background: var(--forest);
  color: var(--cream);
  padding: 16px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px
}

.groupes .btn-wood:hover {
  background: var(--water)
}

@media(max-width:900px) {
  .groupes .split {
    grid-template-columns: 1fr
  }

  .groupes .photo {
    order: 0
  }
}

/* ---------- RESERVER ---------- */

/* ---------- CARTE DYNAMIQUE ---------- */
.carte-liste {
  margin-top: 78px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 64px
}

.carte-vide {
  color: #6d6f5f;
  font-style: italic
}

.carte-cat {
  break-inside: avoid;
  margin-bottom: 46px
}

.carte-cat h3 {
  font-family: "Petrona";
  font-weight: 500;
  font-size: 27px;
  color: var(--forest);
  padding-bottom: 11px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--wood);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.carte-cat h3 small {
  font-family: "Karla";
  font-size: 13px;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: .02em
}

.plat {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(27, 58, 49, .13)
}

.plat .nom {
  font-weight: 600;
  font-size: 16.5px;
  color: var(--forest)
}

.plat .desc {
  display: block;
  font-weight: 400;
  font-size: 14.5px;
  color: #6d6f5f;
  margin-top: 3px;
  line-height: 1.5
}

.plat .dots {
  flex: 1;
  transform: translateY(-4px)
}

.plat .prix {
  font-family: "Petrona";
  font-size: 20px;
  color: var(--wood);
  white-space: nowrap
}

.plat .badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #4b6b3f;
  background: #e3ecd9;
  padding: 3px 7px;
  border-radius: 3px;
  vertical-align: 2px
}

.plat.epuise {
  opacity: .45
}

.plat.epuise .prix {
  text-decoration: line-through
}

.plat.epuise .nom::after {
  content: " — épuisé aujourd'hui";
  font-weight: 400;
  font-size: 13.5px;
  color: var(--wood)
}

.carte-note {
  margin-top: 14px;
  font-size: 15px;
  color: #5c5f50;
  font-style: italic
}

.saison-pastille {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-right: 9px;
  vertical-align: 1px;
}

.apercu {
  color: #9c3b2c;
  font-weight: 600
}

@media(max-width:860px) {
  .carte-liste {
    grid-template-columns: 1fr;
    margin-top: 52px;
    gap: 0
  }
}

/* ---------- FORMULAIRE DE RESERVATION ---------- */



/* ---------- QUESTIONS FRÉQUENTES ---------- */
.faq {
  background: var(--sand)
}

.faq-cols {
  margin-top: 54px;
  columns: 2;
  column-gap: 64px
}

.faq details {
  break-inside: avoid;
  margin-bottom: 14px;
  background: var(--cream);
  border: 1px solid rgba(27, 58, 49, .14);
  border-radius: 4px;
  overflow: hidden
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  position: relative;
  font-family: "Petrona";
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.35
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 29px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--wood);
  border-bottom: 2px solid var(--wood);
  transform: rotate(45deg);
  transition: transform .22s
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 33px
}

.faq summary:hover {
  background: #fbf8f0
}

.faq details p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #4a4d40
}

@media(max-width:860px) {
  .faq-cols {
    columns: 1
  }
}

/* ---------- PIED DE PAGE ---------- */
footer {
  background: var(--forest-2);
  color: #a9bcb2;
  padding: 70px 0 0;
  font-size: 15px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 54px;
  padding-bottom: 50px
}

.foot-logo {
  font-family: "Petrona";
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px
}

.foot-marque p {
  max-width: 34ch;
  line-height: 1.7;
  color: #a9bcb2
}

.foot-tel {
  display: inline-block;
  margin-top: 20px;
  font-family: "Petrona";
  font-size: 30px;
  color: var(--amber);
  text-decoration: none
}

.foot-tel:hover {
  color: #dda054
}

footer h3 {
  font-family: "Karla";
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #93b6a9;
  margin-bottom: 16px
}

.foot-horaires {
  list-style: none
}

.foot-horaires li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-horaires li b {
  font-weight: 500;
  color: #e4dccb
}

footer address {
  font-style: normal;
  line-height: 1.85;
  color: #c0cfc7
}

.foot-liens {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 22px
}

.foot-liens a {
  color: #a9bcb2;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent
}

.foot-liens a:hover {
  color: #fff;
  border-color: #fff
}

.foot-bas {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13.5px;
  color: #7f958a
}

@media(max-width:860px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

/* ---------- FAQ : titre de section ---------- */
.faq-titre {
  font-family: "Petrona";
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.04;
  color: var(--forest)
}

/* ---------- RÉSERVATION PAR TÉLÉPHONE ---------- */
.reserver {
  background: var(--forest);
  color: #e4dccb;
  padding: 112px 0;
  text-align: center
}

.reserver .over {
  font-family: "Petrona";
  font-style: italic;
  font-size: 20px;
  color: #c9a468;
  margin-bottom: 16px
}

.reserver h2 {
  font-family: "Petrona";
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.02;
  color: #fff
}

.reserver .intro {
  margin: 22px auto 0;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.7;
  color: #cfc6b2
}

.tel-geant {
  display: inline-block;
  margin-top: 44px;
  font-family: "Petrona";
  font-weight: 400;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--amber);
  text-decoration: none;
  transition: color .2s;
}

.tel-geant:hover {
  color: #f0c98a
}

.reserver-infos {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, .14);
  text-align: left;
}

.reserver-infos>div {
  background: var(--forest);
  padding: 30px 28px
}

.reserver-infos h3 {
  font-family: "Karla";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #93b6a9;
  margin-bottom: 11px
}

.reserver-infos p {
  font-size: 16px;
  line-height: 1.65;
  color: #d5cdba
}

@media(max-width:820px) {
  .reserver {
    padding: 76px 0
  }

  .reserver-infos {
    grid-template-columns: 1fr;
    margin-top: 48px
  }
}

/* ---------- CADRE ITINÉRAIRE ---------- */
.nav-cadre {
  margin: 62px auto 0;
  max-width: 840px;
  text-align: left;
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--cream);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 34px 60px -34px rgba(0, 0, 0, .55);
}

.nav-plan {
  background: #eef2ec;
  min-height: 100%
}

.nav-plan iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.nav-infos {
  padding: 34px 36px
}

.nav-lbl {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--wood);
  margin-bottom: 14px
}

.nav-adresse {
  font-family: "Petrona";
  font-size: 25px;
  line-height: 1.35;
  color: var(--forest)
}

.nav-detail {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #5c5f50
}

.nav-cadre .itin {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.itin-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid rgba(27, 58, 49, .3);
  border-radius: 3px;
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  background: #fff;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.itin-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  transform: translateY(-1px)
}

.itin-btn:hover circle {
  fill: var(--forest)
}

.itin-btn svg {
  width: 18px;
  height: 21px;
  flex: 0 0 auto
}

@media(max-width:760px) {
  .nav-cadre {
    grid-template-columns: 1fr;
    margin-top: 46px
  }

  .nav-plan {
    min-height: 190px
  }

  .nav-infos {
    padding: 28px 24px
  }

  .itin-btn {
    flex: 1 1 auto;
    justify-content: center
  }
}