* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7efe3;
  --paper: #fffaf2;
  --orange: #e46f45;
  --olive: #68724a;
  --dark: #20211d;
  --gold: #c69d63;
  --muted: #746e64;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--dark);
  font-family: "Manrope", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;
  padding: 14px 4vw;

  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;

  border-bottom: 1px solid rgba(32, 33, 29, 0.08);
  background: rgba(247, 239, 227, 0.9);

  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 800;
}

.brand-symbol {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid var(--dark);
  border-radius: 50%;

  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-cta {
  padding: 8px 9px 8px 18px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: 999px;
  background: var(--dark);
  color: white;

  font-size: 0.77rem;
  font-weight: 800;
}

.header-cta span {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  background: var(--orange);
}

.menu-button {
  display: none;

  width: 48px;
  height: 48px;

  border: 0;
  border-radius: 50%;

  background: var(--dark);
  cursor: pointer;
}

.menu-button span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 5px auto;

  background: white;
}

/* MENU MOBILE */

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;

  padding: 110px 24px 40px;

  background: var(--olive);
  color: white;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  font-family: "DM Serif Display", serif;
  font-size: 3rem;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 135px 4vw 60px;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 65px;
}

.eyebrow,
.section-heading > span,
.story-copy > span,
.reservation-copy > span {
  display: block;
  margin-bottom: 22px;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h2,
.reservation-copy h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(5rem, 9vw, 9.5rem);
  line-height: 0.84;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy > p {
  max-width: 580px;
  margin-top: 28px;

  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 35px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-primary,
.button-secondary {
  padding: 16px 22px;

  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 800;
}

.button-primary {
  background: var(--dark);
  color: white;
}

.button-secondary {
  border: 1px solid rgba(32, 33, 29, 0.18);
}

.hero-details {
  margin-top: 52px;
  padding-top: 20px;

  display: flex;
  flex-direction: column;
  gap: 7px;

  border-top: 1px solid rgba(32, 33, 29, 0.12);

  color: var(--muted);
  font-size: 0.72rem;
}

/* VISUEL HERO */

.hero-visual {
  position: relative;

  min-height: 680px;
  overflow: hidden;

  border-radius: 42% 42% 26px 26px;
  background: var(--orange);
}

.plate {
  position: absolute;

  width: 430px;
  height: 430px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -48%);

  border: 24px solid var(--paper);
  border-radius: 50%;

  background: #f0d7b7;

  box-shadow: 0 35px 70px rgba(32, 33, 29, 0.22);
}

.food {
  position: absolute;
  border-radius: 50%;
}

.food-one {
  width: 170px;
  height: 130px;

  left: 65px;
  top: 100px;

  background: #e6b64f;

  transform: rotate(-12deg);
}

.food-two {
  width: 130px;
  height: 100px;

  right: 60px;
  bottom: 90px;

  background: var(--olive);

  transform: rotate(15deg);
}

.food-three {
  width: 95px;
  height: 95px;

  right: 70px;
  top: 65px;

  background: #df6840;
}

.leaf {
  position: absolute;

  width: 18px;
  height: 80px;

  border-radius: 100% 0 100% 0;
  background: #4e633d;
}

.leaf-one {
  left: 95px;
  bottom: 55px;

  transform: rotate(28deg);
}

.leaf-two {
  right: 100px;
  top: 150px;

  transform: rotate(-34deg);
}

.olive {
  position: absolute;

  width: 30px;
  height: 42px;

  border-radius: 50%;
  background: #39432d;
}

.olive-one {
  left: 12%;
  top: 18%;

  transform: rotate(18deg);
}

.olive-two {
  right: 13%;
  top: 24%;

  transform: rotate(-20deg);
}

.olive-three {
  right: 18%;
  bottom: 13%;

  transform: rotate(12deg);
}

.hero-card {
  position: absolute;

  left: 7%;
  bottom: 8%;

  padding: 16px 18px;

  display: flex;
  flex-direction: column;

  border-radius: 16px;
  background: var(--paper);

  box-shadow: 0 18px 40px rgba(32, 33, 29, 0.16);

  transform: rotate(-3deg);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-card strong {
  margin-top: 4px;
  font-size: 0.8rem;
}

/* BANDEAU */

.marquee {
  overflow: hidden;

  border-top: 1px solid rgba(32, 33, 29, 0.1);
  border-bottom: 1px solid rgba(32, 33, 29, 0.1);
}

.marquee-track {
  width: max-content;
  display: flex;

  animation: scroll 22s linear infinite;
}

.marquee-group {
  min-width: 100vw;
  padding: 20px 30px;

  display: flex;
  justify-content: space-around;
  gap: 50px;
}

.marquee-group span {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-group i {
  color: var(--orange);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */

.menu-section,
.story,
.gallery,
.reservation,
.info-section {
  padding: 120px 4vw;
}

.section-heading {
  max-width: 1050px;
  margin-bottom: 65px;
}

.section-heading h2,
.story-copy h2,
.reservation-copy h2 {
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: 0.95;
}

/* MENU */

.menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.menu-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.menu-tab {
  width: 100%;
  padding: 18px 0;

  border: 0;
  border-bottom: 1px solid rgba(32, 33, 29, 0.14);

  background: transparent;
  color: var(--muted);

  font: inherit;
  font-weight: 800;
  text-align: left;

  cursor: pointer;
}

.menu-tab.active {
  color: var(--orange);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-panel article {
  padding: 24px 0;

  display: flex;
  justify-content: space-between;
  gap: 25px;

  border-bottom: 1px solid rgba(32, 33, 29, 0.12);
}

.menu-panel h3 {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
}

.menu-panel p {
  margin-top: 7px;

  color: var(--muted);
  font-size: 0.8rem;
}

.menu-panel strong {
  font-size: 0.9rem;
}

/* HISTOIRE */

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;

  background: var(--olive);
  color: white;
}

.story-visual {
  position: relative;

  min-height: 660px;
  overflow: hidden;

  border-radius: 32px;
  background: #d9b58d;
}

.arch {
  position: absolute;

  top: 8%;

  width: 34%;
  height: 58%;

  border-radius: 50% 50% 0 0;
  background: #f2e3cd;
}

.arch-one {
  left: 12%;
}

.arch-two {
  right: 12%;
}

.table-shape {
  position: absolute;

  left: 28%;
  right: 28%;
  bottom: 20%;

  height: 100px;

  border-radius: 50%;
  background: #7f5539;
}

.chair {
  position: absolute;

  bottom: 12%;

  width: 90px;
  height: 180px;

  border: 16px solid #453426;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}

.chair-left {
  left: 16%;
  transform: rotate(-5deg);
}

.chair-right {
  right: 16%;
  transform: rotate(5deg);
}

.story-label {
  position: absolute;

  left: 25px;
  bottom: 25px;

  padding: 12px 16px;

  border-radius: 999px;
  background: white;
  color: var(--dark);

  font-size: 0.7rem;
  font-weight: 800;
}

.story-copy p {
  margin-top: 28px;

  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.story-signature {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
}

.story-signature span {
  font-size: 0.7rem;
  opacity: 0.6;
}

.story-signature strong {
  margin-top: 5px;

  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  font-weight: 400;
}

/* GALERIE */

.section-heading.split {
  max-width: none;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.section-heading.split p {
  color: var(--muted);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-large {
  grid-column: 1 / -1;
}

.gallery-card {
  position: relative;

  min-height: 430px;
  overflow: hidden;

  border-radius: 28px;
}

.gallery-large {
  min-height: 580px;
}

.scene-room {
  background: #d6ae83;
}

.window {
  position: absolute;

  left: 13%;
  top: 9%;

  width: 38%;
  height: 58%;

  border-radius: 50% 50% 0 0;
  background: #f4ead9;
}

.banquette {
  position: absolute;

  left: 8%;
  right: 8%;
  bottom: 10%;

  height: 23%;

  border-radius: 70px 70px 18px 18px;
  background: var(--olive);
}

.round-table {
  position: absolute;

  right: 18%;
  bottom: 17%;

  width: 190px;
  height: 70px;

  border-radius: 50%;
  background: #9e6846;
}

.scene-dish {
  background: var(--orange);
}

.small-plate {
  position: absolute;

  width: 290px;
  height: 290px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: var(--paper);

  box-shadow: 0 25px 50px rgba(32, 33, 29, 0.16);
}

.small-food {
  position: absolute;

  width: 150px;
  height: 110px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%) rotate(-12deg);

  border-radius: 48% 52% 45% 55%;
  background: var(--olive);
}

.scene-bar {
  background: #b99062;
}

.bar-counter {
  position: absolute;

  left: 7%;
  right: 7%;
  bottom: 11%;

  height: 32%;

  border-top: 24px solid #92633f;
  background: #67452f;
}

.bottles {
  position: absolute;

  left: 18%;
  right: 18%;
  top: 18%;

  display: flex;
  justify-content: space-between;
}

.bottles i {
  width: 44px;
  height: 145px;

  border-radius: 15px 15px 8px 8px;
  background: #556241;
}

.bottles i:nth-child(2) {
  height: 115px;
  background: #d66e46;
}

.bottles i:nth-child(3) {
  height: 160px;
  background: #6b3d2d;
}

.bottles i:nth-child(4) {
  height: 125px;
  background: #efe3cf;
}

/* RÉSERVATION */

.reservation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;

  background: var(--orange);
  color: white;
}

.reservation-copy p {
  max-width: 500px;
  margin-top: 26px;

  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.reservation-form {
  padding: 30px;

  border-radius: 28px;
  background: var(--paper);
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.reservation-form label {
  margin-bottom: 18px;

  display: flex;
  flex-direction: column;
  gap: 9px;

  font-size: 0.72rem;
  font-weight: 800;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 15px;

  border: 1px solid rgba(32, 33, 29, 0.14);
  border-radius: 14px;

  background: white;

  font: inherit;
}

.reservation-form button {
  width: 100%;
  padding: 8px 8px 8px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-radius: 16px;

  background: var(--dark);
  color: white;

  font-weight: 800;
  cursor: pointer;
}

.reservation-form button span {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 12px;
  background: var(--olive);
}

/* INFORMATIONS */

.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-height: 300px;
  padding: 28px;

  border-radius: 28px;
  background: var(--paper);
}

.info-card > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-top: 110px;

  font-family: "DM Serif Display", serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.15;
}

.olive-card {
  background: var(--olive);
  color: white;
}

.dark-card {
  background: var(--dark);
  color: white;
}

/* FOOTER */

footer {
  padding: 70px 4vw 28px;

  background: var(--dark);
  color: white;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-symbol {
  border-color: white;
}

.footer-brand p {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.footer-cta {
  padding: 14px 18px;

  border-radius: 999px;
  background: var(--orange);

  font-size: 0.8rem;
  font-weight: 800;
}

.footer-links {
  margin: 55px 0;
  padding: 32px 0;

  display: flex;
  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TABLETTE */

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .story,
  .reservation {
    grid-template-columns: 1fr;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-direction: row;
    overflow-x: auto;
  }

  .menu-tab {
    min-width: 160px;
  }

  .gallery-grid,
  .info-section {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: auto;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero {
    padding: 110px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 20vw, 6.3rem);
  }

  .hero-visual {
    min-height: 480px;
  }

  .plate {
    width: 320px;
    height: 320px;
  }

  .food-one {
    width: 120px;
    height: 90px;

    left: 45px;
    top: 70px;
  }

  .food-two {
    width: 95px;
    height: 70px;

    right: 40px;
    bottom: 65px;
  }

  .menu-section,
  .story,
  .gallery,
  .reservation,
  .info-section {
    padding: 85px 20px;
  }

  .section-heading h2,
  .story-copy h2,
  .reservation-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .story-visual {
    min-height: 480px;
  }

  .gallery-card,
  .gallery-large {
    min-height: 370px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.back-kestryo {
  position: fixed;
  z-index: 1200;

  left: 22px;
  bottom: 22px;

  padding: 12px 18px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;

  background: rgba(15, 15, 15, 0.88);
  color: #ffffff;

  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.back-kestryo:hover {
  transform: translateY(-4px);
  background: #000000;
}

.back-kestryo span {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .back-kestryo {
    left: 14px;
    bottom: 14px;

    padding: 10px 14px;

    font-size: 0.68rem;
  }
}