/* Le Pain Quotidien — matched to live be/fr */

@font-face {
  font-family: "druk";
  src: url("../assets/fonts/73a473a12dc75f84-s.p.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "druk";
  src: url("../assets/fonts/de1474f903d9ef49-s.p.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandonText";
  src: url("../assets/fonts/b2a6cacc9c8ee98e-s.p.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandonText";
  src: url("../assets/fonts/6a6d00e52aba05db-s.p.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandonText";
  src: url("../assets/fonts/96a403462b6ab647-s.p.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "brandonText";
  src: url("../assets/fonts/5c8846c47d57efd4-s.p.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "brandonText";
  src: url("../assets/fonts/cbda2b7650389a35-s.p.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "quickbrush";
  src: url("../assets/fonts/151acff376730d0b-s.p.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "blackDiamond";
  src: url("../assets/fonts/dee13369afc4dd08-s.p.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #fdc400;
  --dough: #fbf5ee;
  --ink: #000;
  --white: #fff;
  --nav-h: 3.125rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: brandonText, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--dough);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ——— Navbar (bordered cells) ——— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid #000;
  display: none;
}

@media (min-width: 1024px) {
  .navbar {
    display: flex;
    width: calc(100% - 1.5rem);
    margin: 1.25rem auto 0;
    border: 1px solid #000;
    box-shadow: 0 0 0 1px #000;
  }
}

.navbar-left,
.navbar-right {
  display: flex;
  flex: 1;
  height: 100%;
}

.navbar-left {
  border-right: 1px solid #000;
}

.navbar-right {
  border-left: 1px solid #000;
  justify-content: flex-end;
}

.navbar a.nav-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  white-space: nowrap;
  border-right: 1px solid #000;
}

.navbar-left a.nav-cell:last-child {
  border-right: none;
}

.navbar-right a.nav-cell {
  border-right: none;
  border-left: 1px solid #000;
}

.navbar a.nav-cell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s;
}

.navbar a.nav-cell:hover::after,
.navbar a.nav-cell[aria-current="page"]::after {
  background: var(--yellow);
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.4;
  height: 100%;
  padding: 0 1rem;
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.25;
}

/* Mobile top bar */
.mobile-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 2.75rem 1fr 2.75rem;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #000;
  padding: 0 0.75rem;
}

@media (min-width: 1024px) {
  .mobile-bar {
    display: none;
  }
}

.mobile-bar .brand-sm {
  font-style: italic;
  font-size: 0.78rem;
  text-align: center;
  max-width: none;
  line-height: 1.2;
  justify-self: center;
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: -0.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 0.95rem;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.2s;
}

.menu-icon span {
  top: 50%;
  margin-top: -1px;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon span {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::before {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::after {
  bottom: 50%;
  margin-bottom: -1px;
  transform: rotate(-45deg);
}

.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dough);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  padding-top: var(--nav-h);
}

.overlay-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.overlay-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.overlay-nav a {
  font-family: druk, sans-serif;
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  display: block;
  padding: 0.1em 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #000;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-black:hover {
  background: var(--yellow);
  color: #000;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  background: #000;
  color: #fff;
}

/* ——— Hero poem (scroll blur + cutout product image) ——— */
.hero-scroll {
  position: relative;
  height: 340vh;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-fixed {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  height: 100svh;
  min-height: 700px;
  width: 100%;
  justify-content: center;
  background: var(--dough) url("../assets/img/hero-bg.jpg") center / cover no-repeat;
  will-change: opacity;
}

.hero-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 245, 238, 0.28);
  pointer-events: none;
}

.hero-poem-wrap {
  position: absolute;
  top: 200px;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  display: flex;
  width: 100%;
  max-width: 500px;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-poem-wrap {
    bottom: 6vh;
  }
}

.poem {
  position: absolute;
  top: 55%;
  z-index: 0;
  width: 100%;
  max-width: 90%;
  margin: 0;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-align: center;
  text-wrap: balance;
  will-change: transform;
}

@media (min-width: 768px) {
  .poem {
    max-width: 500px;
    font-size: clamp(5rem, 7vw, 6rem);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.poem-visual {
  display: flex;
  flex-direction: column;
}

.poem-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}

.poem-word {
  display: inline-block;
  transform: translate3d(0, 0, 0);
  will-change: filter, opacity;
}

.hero-loaf {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(420px, 72vw);
  min-width: 0;
  height: 58vh;
  overflow: visible;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-loaf {
    top: 48%;
    width: min(280px, 70vw);
    height: 48vh;
  }
}

.hero-loaf-scale {
  position: absolute;
  inset: 0;
  transform-origin: center bottom;
  will-change: transform;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-loaf-scale img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

.defiler {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s linear;
}

.defiler .circle {
  width: 2rem;
  height: 2rem;
  border: 1px solid #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ——— Content sheets ——— */
.sheets {
  position: relative;
  z-index: 5;
  padding: 0 0.75rem 0.75rem;
}

@media (min-width: 1024px) {
  .sheets {
    padding: 0 1.5rem 1.5rem;
  }
}

.sheet {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid #000;
  background: #fff;
  margin: 1.25rem 0;
  min-height: auto;
}

@media (min-width: 1024px) {
  .sheet {
    grid-template-columns: 1fr 1fr;
    margin: 1.5rem 0;
    min-height: calc(100svh - 90px);
    position: sticky;
    top: 4.35rem;
  }
}

.sheet-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #000;
}

@media (min-width: 1024px) {
  .sheet-copy {
    padding: 4rem;
    border-bottom: none;
  }

  .sheet:not(.sheet-flip) .sheet-copy {
    border-right: 1px solid #000;
  }

  .sheet-flip .sheet-copy {
    border-left: 1px solid #000;
    order: 2;
  }

  .sheet-flip .sheet-media {
    order: 1;
  }
}

.script {
  font-family: quickbrush, cursive;
  color: var(--yellow);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1;
  margin: 0 0 0.15rem;
  font-weight: 400;
}

.sheet-title {
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.sheet-body {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.sheet-media {
  position: relative;
  min-height: 280px;
  background: #eee;
}

@media (min-width: 1024px) {
  .sheet-media {
    min-height: 100%;
  }
}

.sheet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Menu feature block — polaroid strip like live LPQ */
.menu-feature {
  margin: 1.25rem 0;
  padding: 6rem 1rem 0;
  text-align: center;
  background: var(--dough);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 10vw, 8rem);
}

@media (min-width: 1024px) {
  .menu-feature {
    margin: 1.5rem 0;
    padding: 8rem 1.5rem 0;
  }
}

.menu-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  padding: 0 0.5rem;
}

.menu-feature-heading {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
}

.menu-feature .script {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
  margin: 0 0 -0.35rem;
  transform: rotate(-2deg);
  z-index: 2;
  position: relative;
}

@media (min-width: 1280px) {
  .menu-feature .script {
    margin-bottom: -0.6rem;
  }
}

.menu-feature .sheet-title {
  font-size: clamp(3rem, 7vw, 5rem);
  margin: 0;
  z-index: 1;
}

.menu-feature .sheet-body {
  margin: 2rem auto 0;
  max-width: 600px;
}

.menu-feature .btn {
  margin-top: 2rem;
}

.menu-photos {
  display: flex;
  width: 220%;
  max-width: none;
  margin: 0 0 -8%;
  transform: translateX(5%) translateY(-8%);
  justify-content: center;
  align-items: center;
  overflow: visible;
}

@media (min-width: 768px) {
  .menu-photos {
    width: 100%;
    transform: translateY(-12%);
    margin-bottom: -6%;
  }
}

.menu-photo {
  position: relative;
  flex: 1 1 0;
  margin: 0 -40px;
  aspect-ratio: 1.49;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: 5px;
  box-shadow: none;
}

.menu-photo--1 {
  transform: rotate(-9deg);
  z-index: 1;
}

.menu-photo--2 {
  transform: rotate(2deg);
  z-index: 2;
}

.menu-photo--3 {
  transform: rotate(-4deg);
  z-index: 3;
}

.menu-photo--4 {
  transform: rotate(3deg);
  z-index: 2;
}

.menu-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Atelier cinema */
.atelier {
  position: relative;
  margin: 1.25rem 0;
  min-height: 85svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

@media (min-width: 1024px) {
  .atelier {
    margin: 1.5rem 0;
  }
}

.atelier-media {
  position: absolute;
  inset: 0;
}

.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.atelier-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 920px;
}

.atelier-title {
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  line-height: 0.92;
  color: #fff;
  margin: 0 0 2rem;
}

.atelier-title span {
  display: block;
}

.atelier-title .ring {
  position: relative;
  display: inline-block;
}

.atelier-title .ring::after {
  content: "";
  position: absolute;
  inset: -12% -6%;
  background: url("../assets/img/highlight.png") center / contain no-repeat;
  pointer-events: none;
  opacity: 0.95;
}

.pause-ctrl {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pause-ctrl .circle {
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Magazine */
.magazine {
  padding: 4rem 1.25rem 5rem;
}

.magazine-head {
  text-align: center;
  margin-bottom: 3rem;
}

.years {
  font-family: druk, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  margin: 0 0 0.5rem;
  color: var(--yellow);
}

.magazine-head h2 {
  font-family: druk, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}

.stories {
  display: grid;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .stories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story {
  background: #fff;
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
}

.story-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid #000;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.story h3 {
  margin: 0;
  font-family: brandonText, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.story p {
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.magazine-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #000;
  background: #fff;
  padding: 3rem 1.25rem 2rem;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-family: druk, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-col a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Inner pages */
.page-hero {
  margin-top: calc(var(--nav-h) + 2rem);
  padding: 4rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #000;
  background: #fff;
}

.page-hero h1 {
  font-family: druk, sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 0.95;
}

.main-pad {
  padding-top: calc(var(--nav-h) + 1.5rem);
}

@media (min-width: 1024px) {
  .main-pad {
    padding-top: calc(var(--nav-h) + 2.5rem);
  }
}

/* ——— Active nav (Menu yellow like live) ——— */
.navbar a.nav-cell.nav-cell--active {
  background: var(--yellow);
}

.navbar a.nav-cell.nav-cell--active::after {
  display: none;
}

/* ——— Menu page ——— */
.page-menu {
  background: var(--dough);
}

/* Scroll-stacked sticky hero slides (desktop); stacked runway on mobile */
.menu-scroll-hero {
  position: relative;
  display: block;
  margin-bottom: 1.75rem;
}

.menu-sticky-slide {
  position: relative;
  z-index: 1;
  height: 85svh;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
  background: #ddd;
}

.menu-sticky-slide:nth-child(1) {
  z-index: 1;
}
.menu-sticky-slide:nth-child(2) {
  z-index: 2;
}
.menu-sticky-slide:nth-child(3) {
  z-index: 3;
}

@media (max-width: 1023px) {
  .menu-sticky-slide--split {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-split-panel {
    position: relative;
    height: 55svh;
    min-height: 360px;
  }
}

/* Desktop: full-viewport sticky takeover on scroll (like live) */
@media (min-width: 1024px) {
  .menu-sticky-slide {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 0;
  }
}

.menu-sticky-slide--border {
  border-top: 1px solid #000;
}

.menu-sticky-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-sticky-slide--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  overflow: hidden;
}

.menu-split-panel {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid #000;
}

.menu-split-panel:last-child {
  border-right: none;
}

.menu-split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 2.25rem);
  bottom: clamp(1.25rem, 4vw, 2.75rem);
  z-index: 2;
  max-width: min(92%, 680px);
  color: #000;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.menu-sticky-slide:nth-child(1) .menu-hero-caption,
.menu-sticky-slide:nth-child(2) .menu-hero-caption {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.menu-split-panel .menu-hero-caption {
  max-width: 90%;
}

.menu-hero-cat {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-hero-title {
  margin: 0;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.menu-hero-title--sm {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.menu-hero-info {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #000;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}

/* Food block: long dish list so category bar stays pinned at bottom */
.menu-food {
  position: relative;
  padding-bottom: 8rem;
}

.menu-cat-section {
  scroll-margin-top: 1rem;
}

.menu-cat-section + .menu-cat-section {
  margin-top: 2.5rem;
}

/* Category intro: image + copy from menu-page */
.menu-cat-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 0.75rem;
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 900px) {
  .menu-cat-block {
    grid-template-columns: 1.1fr 1fr;
    min-height: 320px;
  }

  .menu-cat-block--flip .menu-cat-block-media {
    order: 2;
  }

  .menu-cat-block--flip .menu-cat-block-copy {
    order: 1;
  }
}

.menu-cat-block-media {
  position: relative;
  min-height: 240px;
  background: #eee;
}

.menu-cat-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

@media (min-width: 900px) {
  .menu-cat-block-media {
    min-height: 100%;
  }
}

.menu-cat-block-copy {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 900px) {
  .menu-cat-block-copy {
    padding: 2.5rem 2.25rem;
  }
}

.menu-cat-block-copy h2 {
  margin: 0 0 0.85rem;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-cat-block-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #222;
  max-width: 38rem;
}

.menu-cats-sticky {
  position: sticky;
  top: calc(100svh - 96px);
  z-index: 40;
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: center;
  pointer-events: none;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .menu-cats-sticky {
    top: calc(100svh - 80px);
  }
}

.menu-cats-sticky .menu-cats {
  pointer-events: auto;
}

.menu-cats {
  display: flex;
  max-width: 90svw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: 1px solid #000;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.menu-cat {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 1rem 1.5rem;
  border: none;
  border-right: 1px solid #000;
  border-bottom: 2px solid transparent;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b6b6b;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.menu-cat:last-child {
  border-right: none;
}

.menu-cat:hover {
  color: #000;
}

.menu-cat.is-active {
  color: #000;
  border-bottom-color: var(--yellow);
}

/* Dish grid */
.menu-grid-section {
  padding: 0.5rem 0.75rem 7rem;
}

@media (min-width: 768px) {
  .menu-grid-section {
    padding: 0.75rem 1.25rem 8rem;
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-align: left;
  overflow: hidden;
  transition: opacity 0.3s;
}

.menu-card.is-hidden {
  display: none;
}

.menu-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.04);
}

.menu-badge {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  background: var(--yellow);
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
}

.menu-badge--classic {
  background: #000;
  color: #fff;
}

.menu-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.menu-card-body h2 {
  margin: 0;
  font-family: brandonText, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.menu-card-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Story band */
.menu-story {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  overflow: hidden;
}

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

.menu-story-copy {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #000;
}

@media (min-width: 900px) {
  .menu-story-copy {
    border-bottom: none;
    border-right: 1px solid #000;
  }
}

.menu-story-copy .sheet-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-align: left;
}

.menu-story-copy .script {
  text-align: left;
}

.menu-story-copy .sheet-body {
  text-align: left;
}

.menu-story-copy .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.menu-story-media {
  min-height: 320px;
  position: relative;
}

.menu-story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-closing {
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem;
  background: var(--dough);
}

.menu-closing .sheet-body {
  margin-inline: auto;
}

.menu-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.menu-download {
  display: grid;
  gap: 2rem;
  padding: 3rem 1.25rem 4rem;
  border-top: 1px solid #000;
  background: #fff;
  text-align: center;
  align-items: center;
}

@media (min-width: 900px) {
  .menu-download {
    grid-template-columns: 1fr 1.2fr;
    text-align: left;
    padding: 4rem 2rem;
  }

  .menu-download .script,
  .menu-download .sheet-title {
    text-align: left;
  }
}

.menu-download-photos {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.menu-download-photos img {
  flex: 1;
  aspect-ratio: 1;
  object-fit: cover;
  max-height: 220px;
}

/* ——— À propos ——— */
.page-about {
  background: var(--dough);
}

.about-hero {
  text-align: center;
  padding: 2.5rem 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .about-hero {
    padding: 3.5rem 2rem 2rem;
  }
}

.about-hero-title {
  margin: 0 0 1rem;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-hero-lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #222;
}

.about-sheets {
  margin-bottom: 2rem;
}

.about-closing {
  text-align: center;
  padding: 3.5rem 1.25rem 4.5rem;
  border-top: 1px solid #000;
  background: var(--dough);
}

.about-closing .sheet-body {
  margin-left: auto;
  margin-right: auto;
}

.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ——— Nos Services ——— */
.page-services {
  background: var(--dough);
}

.services-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-pillars {
    padding: 0 1.25rem 3rem;
    gap: 1.5rem;
  }
}

.service-pillar {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 900px) {
  .service-pillar {
    grid-template-columns: 1fr 1.15fr;
    min-height: 280px;
  }

  .service-pillar--flip .service-pillar-media {
    order: 2;
  }

  .service-pillar--flip .service-pillar-copy {
    order: 1;
    border-right: 1px solid #000;
    border-left: none;
  }

  .service-pillar:not(.service-pillar--flip) .service-pillar-copy {
    border-left: 1px solid #000;
  }
}

.service-pillar-media {
  position: relative;
  min-height: 220px;
  background: #eee;
}

.service-pillar-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-pillar-copy {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #000;
}

@media (min-width: 900px) {
  .service-pillar-copy {
    padding: 2.25rem 2.5rem;
    border-top: none;
  }
}

.service-pillar-copy .script {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.35rem;
}

.service-pillar-copy h2 {
  margin: 0 0 0.85rem;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.service-pillar-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #222;
  max-width: 36rem;
}



/* ——— Contact page ——— */
.page-contact {
  background: var(--dough);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem 2rem;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    gap: 2.5rem;
    align-items: start;
    padding: 0 1.5rem 3rem;
  }
}

.contact-form {
  border: 1px solid #000;
  background: #fff;
  padding: 1.5rem 1.25rem 1.75rem;
}

@media (min-width: 768px) {
  .contact-form {
    padding: 2rem 2.25rem 2.25rem;
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-field input {
  width: 100%;
  border: 1px solid #000;
  background: var(--dough);
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1.05rem;
  color: #000;
}

.contact-field input:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
}

.contact-form .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .contact-form .btn {
    width: auto;
    min-width: 220px;
  }
}

.contact-form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #000;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-form-status.is-pending {
  background: #fff8e7;
}

.contact-form-status.is-success {
  background: #e8f6e8;
}

.contact-form-status.is-error {
  background: #fdeeee;
}

.contact-info {
  border: 1px solid #000;
  background: #fff;
  padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .contact-info {
    padding: 2.25rem 2rem;
  }
}

.contact-info-title {
  margin: 0 0 1.5rem;
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-info-block {
  margin-bottom: 1.5rem;
}

.contact-info-block:last-child {
  margin-bottom: 0;
}

.contact-info-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}

.contact-info-block p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-info-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coming-soon {
  min-height: calc(70svh - 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ——— Où nous trouver ——— */
.page-find {
  background: var(--dough);
}

.find-hero {
  position: relative;
}

.find-hero::after {
  content: "";
  display: block;
  width: min(12rem, 40%);
  height: 3px;
  margin: 1.75rem auto 0;
  background: var(--yellow);
}

.find-partners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 0.75rem 2rem;
}

@media (min-width: 768px) {
  .find-partners {
    padding: 0 1.25rem 3rem;
    gap: 1.15rem;
  }
}

.find-card {
  border: 1px solid #000;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease);
}

.find-card.is-open {
  box-shadow: 6px 6px 0 #000;
}

.find-card-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(7rem, 9.5rem) 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 0.25s var(--ease);
}

.find-card-toggle:hover {
  background: color-mix(in srgb, var(--yellow) 28%, #fff);
}

.find-card.is-open .find-card-toggle {
  background: var(--yellow);
  border-bottom: 1px solid #000;
}

.find-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 0.35rem 0.5rem;
  background: #fff;
  border: 1px solid #000;
}

.find-card-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 3.25rem;
  object-fit: contain;
}

.find-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.find-card-name {
  font-family: druk, sans-serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.find-card-count {
  font-size: 0.95rem;
  color: #333;
}

.find-card-chevron {
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid #000;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.25s;
}

.find-card-chevron::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -60%) rotate(45deg);
}

.find-card.is-open .find-card-chevron {
  transform: rotate(180deg);
  background: var(--dough);
}

.find-card-panel {
  padding: 0;
  animation: find-panel-in 0.4s var(--ease);
}

@keyframes find-panel-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.find-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .find-card-grid {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    min-height: 22rem;
  }
}

.find-store-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #000;
  max-height: 22rem;
  overflow: auto;
}

@media (min-width: 900px) {
  .find-store-list {
    border-bottom: 0;
    border-right: 1px solid #000;
  }
}

.find-store-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: start;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e6e0d8;
}

.find-store-list li:last-child {
  border-bottom: 0;
}

.find-store {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.find-store:hover .find-store-name {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.find-store-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
}

.find-store-address {
  font-size: 0.92rem;
  line-height: 1.4;
  color: #333;
}

.find-store-directions {
  align-self: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  padding: 0.35rem 0.15rem;
}

.find-map-wrap {
  position: relative;
  min-height: 18rem;
  background: #ebe4da;
}

@media (min-width: 900px) {
  .find-map-wrap {
    min-height: 100%;
  }
}

.find-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  z-index: 0;
}

.find-pin {
  background: transparent;
  border: 0;
}

.find-pin-dot {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.35rem auto 0;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--yellow);
  border: 2px solid #000;
  box-shadow: 1px 1px 0 #000;
}

.find-pin-dot::after {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: 50%;
  background: #000;
}

@media (max-width: 640px) {
  .find-card-toggle {
    grid-template-columns: minmax(5.5rem, 7rem) 1fr auto;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .find-card-logo {
    height: 2.6rem;
  }

  .find-card-logo-wrap {
    min-height: 3.5rem;
  }
}
