:root {
  /* Sakura theme */
  --ink: #21191d; /* noir rosé profond */
  --ink-2: #2b2025; /* fond sombre secondaire */

  --paper: #fff6f4; /* blanc rosé */
  --paper-2: #f8e4e8; /* rose très clair */

  --charcoal: #35272c; /* texte principal */

  --lantern: #d96b8a; /* rose sakura principal */
  --lantern-dim: #b84f6c; /* rose plus profond */

  --jade: #58756b; /* vert sauge japonais */
  --bamboo: #c69b78; /* bois clair */

  --line: rgba(53, 39, 44, 0.15);
  --line-light: rgba(255, 246, 244, 0.18);

  --shadow: 0 30px 60px -25px rgba(80, 35, 50, 0.35);

  /* Bonus Sakura */
  --sakura: #f3a6bb;
  --sakura-light: #ffd6df;
  --petal: #ffe9ee;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--charcoal);
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.cuisto {
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
}
.typewriter {
  margin-top: 25px;
  height: 50px;
  color: #e75480; /* rose passion Sakura */
  font-weight: 500;
}

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lantern);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- NAV ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
header.site.scrolled {
  background: rgba(20, 24, 26, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 0.7rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.brand-logo {
  height: 105px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 0 4px rgba(247, 153, 200, 0.438));
}

.brand-logo:hover {
  transform: scale(1.05);
}
.brand em {
  font-style: italic;
  color: var(--lantern);
  font-weight: 600;
}
nav.links {
  display: flex;
  gap: 2.1rem;
  font-size: 0.88rem;
}
nav.links a {
  color: var(--paper);
  opacity: 0.78;
  position: relative;
  padding: 0.2rem 0;
  transition: opacity 0.25s ease;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--lantern);
  transition: width 0.3s ease;
}
nav.links a:hover {
  opacity: 1;
}
nav.links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lantern);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--lantern-dim);
  transform: translateY(-2px);
}
.burger {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(
      ellipse 60% 50% at 18% 20%,
      rgba(226, 71, 43, 0.2),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 45% at 85% 78%,
      rgba(62, 99, 87, 0.28),
      transparent 60%
    ),
    linear-gradient(180deg, #14181a 0%, #191d1f 55%, #14181a 100%);
  color: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
}
.hero-photo {
  width: 200px;
  height: 100%;
  left: 235px;
  top: -320px;
  margin: 35px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 238, 222, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 238, 222, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black,
    transparent 75%
  );
  pointer-events: none;
}
.lantern-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
  animation: sway 7s ease-in-out infinite;
}
.lantern-glow.l1 {
  width: 14px;
  height: 20px;
  top: 18%;
  right: 14%;
  background: radial-gradient(circle, #ffb37a 0%, var(--lantern) 70%);
  box-shadow: 0 0 30px 8px rgba(226, 71, 43, 0.55);
  animation-delay: 0.2s;
}
.lantern-glow.l2 {
  width: 10px;
  height: 15px;
  top: 32%;
  right: 22%;
  background: radial-gradient(circle, #ffb37a 0%, var(--lantern) 70%);
  box-shadow: 0 0 22px 6px rgba(226, 71, 43, 0.45);
  animation-delay: 1.4s;
}
.lantern-glow.l3 {
  width: 8px;
  height: 12px;
  top: 12%;
  right: 29%;
  background: radial-gradient(circle, #ffcf9a 0%, var(--bamboo) 70%);
  box-shadow: 0 0 18px 5px rgba(185, 139, 78, 0.45);
  animation-delay: 2.5s;
}
@keyframes sway {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(2deg);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
  width: 100%;
}
.hero-copy .eyebrow {
  color: var(--bamboo);
}
.hero-copy h1 {
  margin-top: 1.1rem;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  color: var(--paper);
}
.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-copy h1 .line:nth-child(1) span {
  animation-delay: 0.15s;
}
.hero-copy h1 .line:nth-child(2) span {
  animation-delay: 0.3s;
}
.hero-copy h1 .line:nth-child(3) span {
  animation-delay: 0.45s;
  color: var(--lantern);
  font-style: italic;
  font-weight: 500;
}
@keyframes riseUp {
  to {
    transform: translateY(0);
  }
}

.hero-copy p.sub {
  margin-top: 1.6rem;
  max-width: 34ch;
  font-size: 1.06rem;
  color: rgba(244, 238, 222, 0.72);
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.75s;
}
.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.95s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.3s ease,
    color 0.3s ease;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--lantern);
  color: var(--paper);
}
.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -8px rgba(226, 71, 43, 0.55);
}
.btn.ghost {
  border-color: var(--line-light);
  color: var(--paper);
}
.btn.ghost:hover {
  background: rgba(244, 238, 222, 0.08);
  transform: translateY(-3px);
}
.btn svg {
  width: 14px;
  height: 14px;
}

.hero-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-photo:hover img {
  transform: scale(1);
}
.hero-photo .tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(20, 24, 26, 0.72);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--line-light);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.9rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(244, 238, 222, 0.5);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .stick {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--lantern), transparent);
  animation: stick 1.8s ease-in-out infinite;
}
@keyframes stick {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > * {
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* ---------- INTRO / AMBIANCE ---------- */
.intro {
  padding: 7rem 0 5rem;
  position: relative;
}
/* ===========================
   INTRO
=========================== */

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

/* Bloc nouveautés */

.intro-news.reveal {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.news {
  background: #fff;
  background-color: #f3a6bb;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  height: 100%;
}
/* Images */

.news-slider img {
  position: absolute;
  inset: 0;

  width: 82%;
  height: 82%;

  margin: auto;

  object-fit: cover;

  border-radius: 22px;

  opacity: 0;

  transform: scale(0.94) rotate(-2deg);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.news {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 255, 255, 0.35),
      transparent 30%
    ),
    linear-gradient(145deg, #f3a6bb, #f6bfd0);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Petit élément décoratif */

.news::before {
  content: "✦";
  position: absolute;
  right: 25px;
  top: 75px;

  font-size: 70px;
  opacity: 0.12;
}

.intro-news h3 {
  margin: 12px 0 25px;
}

/* Slider */

.news-slider {
  position: relative;

  aspect-ratio: 1/1;

  border-radius: 18px;

  overflow: hidden;
}

.news-slider img {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  margin: auto;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.8s;
}
.news-text h4,
H3 {
  margin: 0 0 2px;
  font-size: 1.5rem;
  margin-top: 20px;
}

.news-slider img.active {
  opacity: 1;
}

.intro-copy .eyebrow {
  color: var(--jade);
}
.intro-copy h2 {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--charcoal);
}
.intro-copy p {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(36, 31, 25, 0.78);
  max-width: 46ch;
}
.facts {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.6rem;
}
.facts li {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.facts li b {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0;
  color: var(--charcoal);
  margin-top: 0.25rem;
}
.intro-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/4;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-photo:hover img {
  transform: scale(1.05);
}

/* ---------- MENU ---------- */
.menu {
  background: var(--ink);
  color: var(--paper);
  padding: 6.5rem 0 6rem;
  position: relative;
}
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.menu-head .eyebrow {
  color: var(--lantern);
}
.menu-head h2 {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--paper);
}
.menu-head p {
  max-width: 40ch;
  color: rgba(244, 238, 222, 0.6);
  font-size: 0.98rem;
  line-height: 1.6;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.6rem;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 1.6rem;
}
.tab {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.6rem 1.05rem;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  color: rgba(244, 238, 222, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab:hover {
  border-color: var(--lantern);
  color: var(--paper);
}
.tab.active {
  background: var(--lantern);
  border-color: var(--lantern);
  color: var(--paper);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.dish {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 1.25rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(16px);
}
.dish.show {
  animation: dishIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes dishIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dish:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 71, 43, 0.5);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.55);
}
.dish .thumb {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(226, 71, 43, 0.16),
    rgba(62, 99, 87, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish:hover .thumb img {
  transform: scale(1.07);
}
.dish .thumb .glyph {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.6rem;
  color: rgba(244, 238, 222, 0.35);
}
.dish .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  border-top: 1px dashed var(--line-light);
  padding-top: 0.8rem;
  position: relative;
}
.dish .row::before,
.dish .row::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}
.dish .row::before {
  left: -1.3rem;
}
.dish .row::after {
  right: -1.3rem;
}
.dish .name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.04rem;
  line-height: 1.25;
}
.dish .price {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
  color: var(--bamboo);
  white-space: nowrap;
}

.menu-foot {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ---------- INFO / HOURS ---------- */
.info {
  padding: 6.5rem 0 6rem;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.card {
  background: var(--paper-2);
  border-radius: 18px;
  padding: 2.4rem 2.2rem;
  border: 1px solid var(--line);
}
.card .eyebrow {
  color: var(--lantern);
}
.card h3 {
  margin-top: 0.9rem;
  font-size: 1.55rem;
  margin-bottom: 1.5rem;
}
.hours-list {
  display: flex;
  flex-direction: column;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list li span:first-child {
  font-weight: 500;
}
.hours-list li .times {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  text-align: right;
  color: rgba(36, 31, 25, 0.75);
}
.hours-list li.closed .times {
  color: var(--lantern-dim);
  opacity: 0.75;
}
.hours-list li.today {
  background: rgba(226, 71, 43, 0.08);
  margin: 0 -1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border-bottom: 1px solid transparent;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-list .item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-list .ic {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list .ic svg {
  width: 17px;
  height: 17px;
}
.contact-list h4 {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(36, 31, 25, 0.55);
  margin-bottom: 0.25rem;
}
.contact-list p,
.contact-list a {
  font-size: 1rem;
  line-height: 1.5;
}
.contact-list a.link {
  border-bottom: 1px solid var(--line);
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}
.contact-list a.link:hover {
  border-color: var(--charcoal);
}
.info-ctas {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.btn.dark {
  background: var(--charcoal);
  color: var(--paper);
}
.btn.dark:hover {
  background: #000;
  transform: translateY(-3px);
}
.btn.outline {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn.outline:hover {
  background: var(--charcoal);
  color: var(--paper);
  transform: translateY(-3px);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--jade);
  color: var(--paper);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(
    ellipse 40% 60% at 30% 50%,
    rgba(244, 238, 222, 0.1),
    transparent 60%
  );
}
.cta-band h2 {
  position: relative;
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 18ch;
  margin: 0 auto;
}
.cta-band p {
  position: relative;
  margin-top: 1rem;
  color: rgba(244, 238, 222, 0.78);
}
.cta-band .hero-actions {
  position: relative;
  justify-content: center;
  margin-top: 2.2rem;
  opacity: 1;
  animation: none;
}
.cta-band .btn.ghost {
  border-color: rgba(244, 238, 222, 0.4);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(244, 238, 222, 0.6);
  padding: 3.5rem 0 2.2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--paper);
}
.footer-brand em {
  color: var(--lantern);
  font-style: italic;
}
.footer-grid p {
  max-width: 32ch;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-links h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 238, 222, 0.4);
  margin-bottom: 0.9rem;
}
.footer-links li {
  margin-bottom: 0.55rem;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: var(--paper);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(244, 238, 222, 0.4);
}

/* ------------------------------------------------- RESPONSIVE ------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-photo {
    max-width: 340px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-photo {
    order: -1;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav.links {
    display: none;
  }
  /* Base mobile */
  * {
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  .wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* HEADER */
  .site {
    padding: 12px 0;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-logo {
    width: 90px;
    height: auto;
  }

  .links {
    display: none;
  }

  .nav-cta {
    font-size: 13px;
    padding: 10px 14px;
  }

  .eyebrow {
    width: 255px;
  }
  /* HERO */
  .hero {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    text-align: center;
  }

  .cuisto img {
    width: 220px;
    max-width: 80%;
    margin-top: 70px;
    margin-left: 40%;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  h1 {
    font-size: clamp(38px, 10vw, 60px);
    line-height: 1;
  }

  .typewriter {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 60px;
    padding-bottom: 200px;
    width: 50%;
    margin-left: 5%;
  }
  .wrap.hero-grid {
    height: 650px;
  }

  /* BOUTONS */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 50px;
  }
  .cuisto {
    margin-top: 190px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* INTRO */
  .intro-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .intro-photo img {
    width: 100%;
    height: auto;
  }

  /* MENU */
  .menu-head {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* INFO */
  .info-grid {
    display: flex;
    flex-direction: column;
  }

  .contact-list .item {
    align-items: flex-start;
  }

  /* CTA */
  .cta-band {
    text-align: center;
  }

  .cta-band .hero-actions {
    margin-top: 25px;
  }

  /* FOOTER */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 670px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
  .hero-copy p.sub {
    max-width: none;
  }
  .dish .row::before,
  .dish .row::after {
    display: none;
  }
  .cuisto img {
    position: inherit;
    margin-top: 40px;
    margin-left: 50%;
  }
  .typewriter {
    margin-top: 70px;
    width: 40%;
    margin-left: 8%;
  }
}
/* =====================================
   MOBILE FIRST - LA CABANE À SUSHI MS
===================================== */
@media (max-width: 500px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
  .hero-copy p.sub {
    max-width: none;
  }
  .dish .row::before,
  .dish .row::after {
    display: none;
  }
  .typewriter {
    margin-top: 70px;
    width: 30%;
    margin-left: 4%;
    font-size: 14px;
  }
  .cuisto img {
    position: inherit;
    margin-top: 100px;
    margin-left: 55%;
    width: 30%;
  }
}

@media (max-width: 455px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
  .hero-copy p.sub {
    max-width: none;
  }
  .dish .row::before,
  .dish .row::after {
    display: none;
  }
  .typewriter {
    margin-top: 250px;
    width: 100%;
    margin-left: 2%;
    font-size: 14px;
  }
  .cuisto img {
    position: inherit;
    margin-top: 0px;
    margin-left: 40%;
    width: 40%;
  }
  .hero-actions {
    margin-top: -80px;
  }
  .brand-logo {
    width: 35%;
  }
  .eyebrow {
    margin-top: 30px;
    font-size: 10px;
  }
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.05;
  }
}
@media (max-width: 375px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    flex-direction: column;
  }
  .hero-copy p.sub {
    max-width: none;
  }
  .dish .row::before,
  .dish .row::after {
    display: none;
  }
  .typewriter {
    margin-top: 220px;
    width: 100%;
    margin-left: 2%;
    font-size: 14px;
  }
  .cuisto img {
    position: inherit;
    margin-top: 10px;
    margin-left: 50%;
    width: 30%;
  }
  .hero-actions {
    margin-top: -80px;
  }
  .brand-logo {
    width: 35%;
  }
  .eyebrow {
    margin-left: 25%;
    font-size: 8px;
  }
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.05;
  }
  .nav-cta {
    font-size: 8px;
    padding: 8px 52px;
  }
}

/* =====================================
   TABLET
===================================== */

@media (min-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.05;
  }
}

/* ================================
   Agency Signature
================================ */

.agency-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  margin: 55px auto 20px;
  padding-top: 35px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  font-family: inherit;
}

/* Petite phrase */
.agency-collab {
  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  opacity: 0.55;
}

/* Nom de l'agence */
.agency-name {
  position: relative;

  display: inline-block;

  color: var(--lantern, #e58aa0);

  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Petite ligne sous le nom */
.agency-name::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: currentColor;

  transform: translateX(-50%);

  transition: width 0.35s ease;
}

.agency-name:hover {
  color: #fff;
  transform: translateY(-2px);
}

.agency-name:hover::after {
  width: 100%;
}

/* WEB DESIGN STUDIO */
.agency-type {
  margin-top: 10px;

  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;

  opacity: 0.45;
}

/* Services */
.agency-services {
  margin-top: 14px;

  font-size: 11px;
  letter-spacing: 0.06em;

  opacity: 0.55;
}