@font-face {
  font-family: "Instrument Sans";
  src: url("../assets/fonts/instrument-sans-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-72pt-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --forest: #3c5e32;
  --forest-dark: #294523;
  --gold: #d1c06a;
  --ink: #17231a;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --sage: #dde6d8;
  --tomato: #b84a35;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Instrument Sans", Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  color: white;
  background: var(--forest-dark);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.shell {
  width: min(100% - 40px, 1360px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: white;
  background: var(--forest);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.button--quiet {
  color: var(--forest);
  background: transparent;
}

.button--quiet:hover {
  color: white;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgb(60 94 50 / 18%);
  background: var(--cream);
}

.nav {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: block;
  flex-shrink: 0;
  width: 190px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a:not(.button) {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-links a[aria-current="page"]:not(.button) {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.nav-links .language-switch {
  padding: 0.15rem 0.42rem;
  border: 1px solid rgb(60 94 50 / 40%);
  border-radius: 2px;
  color: var(--forest-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 6rem) 0 calc(clamp(3.5rem, 6vw, 6rem) + 3.5rem);
  background:
    radial-gradient(circle at 78% 24%, rgb(209 192 106 / 70%) 0 12%, transparent 35%),
    radial-gradient(circle at 87% 78%, rgb(184 74 53 / 68%) 0 13%, transparent 34%),
    #f5dfbf;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(245 223 191 / 78%) 0%, rgb(245 223 191 / 62%) 34%, rgb(245 223 191 / 24%) 58%, transparent 78%);
  content: "";
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-canvas.is-ready {
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: clamp(570px, 46vw, 680px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 2rem;
}

h1,
h2,
h3,
blockquote {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  color: var(--forest-dark);
  font-size: clamp(3.6rem, 7vw, 7rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 8.5ch;
  margin-bottom: 1.75rem;
  color: var(--forest-dark);
  font-size: clamp(4.25rem, 7vw, 7.25rem);
  line-height: 0.84;
}

.hero h1 span {
  display: block;
  color: var(--tomato);
  font-style: italic;
}

.hero .eyebrow {
  max-width: 52ch;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--forest-dark);
}

.hero-copy {
  max-width: 45ch;
  margin: 0 0 2.25rem;
  color: rgb(23 35 26 / 78%);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero .button {
  border-color: var(--forest-dark);
  color: white;
  background: var(--forest-dark);
}

.hero .button:hover {
  border-color: var(--tomato);
  background: var(--tomato);
}

.hero .button--quiet {
  color: var(--forest-dark);
  background: transparent;
}

.hero .button--quiet:hover {
  color: white;
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.hero-visual {
  position: relative;
  min-height: clamp(540px, 44vw, 640px);
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  top: 1%;
  right: 0;
  width: 89%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 47% 51%, transparent 0 60%, rgb(255 253 248 / 74%) 60.25% 64.5%, transparent 64.75%),
    radial-gradient(ellipse 47% 42% at 53% 51%, transparent 0 97.6%, rgb(60 94 50 / 25%) 98% 98.35%, transparent 98.75%);
  content: "";
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 2%;
  width: 82%;
  aspect-ratio: 1.16;
  border: 1px solid rgb(209 192 106 / 52%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: rotate(13deg);
}

.hero-image-wrap {
  position: absolute;
  z-index: 2;
  top: 7%;
  right: 7%;
  width: 75%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #f1d6a8;
  box-shadow: 0 1.75rem 3.5rem rgb(90 35 24 / 20%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transition: transform 900ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.hero:hover .hero-image {
  transform: scale(1.035);
}

.hero-local {
  position: absolute;
  z-index: 3;
  bottom: 1%;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.hero-note {
  display: flex;
  width: clamp(170px, 14vw, 210px);
  height: clamp(170px, 14vw, 210px);
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.7rem;
  border-radius: 50%;
  color: white;
  background: var(--tomato);
  box-shadow: 0 1.25rem 2.5rem rgb(90 35 24 / 22%);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
  transform: rotate(5deg);
}

.hero-quebec-mark {
  width: clamp(195px, 17vw, 255px);
  margin-bottom: 1.15rem;
  filter: drop-shadow(0 0.85rem 1.25rem rgb(90 35 24 / 16%));
  transform: rotate(-2deg);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.45rem;
  color: white;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-ribbon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 0.9rem 0;
  color: white;
  background: var(--forest-dark);
}

.hero-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: hero-ribbon 26s linear infinite;
}

.hero-ribbon-set {
  display: flex;
  width: max(100vw, 62rem);
  flex: none;
  align-items: center;
  justify-content: space-around;
}

.hero-ribbon span {
  padding-inline: 1rem;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ribbon i {
  flex: none;
  width: 0.45rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes hero-ribbon {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  padding: clamp(4rem, 9vw, 8rem) 0;
  color: white;
  background: var(--forest-dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(2rem, 8vw, 9rem);
}

.intro .eyebrow {
  color: var(--gold);
}

.intro h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.intro-copy {
  max-width: 58ch;
  margin: 0;
  align-self: end;
  color: rgb(255 253 248 / 78%);
  font-size: 1.15rem;
}

.formats {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.formats::before {
  position: absolute;
  top: -4rem;
  right: -8rem;
  width: clamp(22rem, 31vw, 32rem);
  aspect-ratio: 1;
  background: url("../assets/illustrations/bread-line.webp") center / contain no-repeat;
  content: "";
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(8deg);
}

.formats > .shell {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.menu-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--forest-dark);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.text-link {
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgb(60 94 50 / 24%);
  background: rgb(60 94 50 / 24%);
}

.format-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: white;
  background: var(--forest-dark);
}

.format-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(23 35 26 / 94%), rgb(23 35 26 / 6%) 75%);
  content: "";
  pointer-events: none;
}

.format-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-image--cocktail {
  object-position: center 58%;
}

.format-image--table {
  object-position: center 65%;
}

.format-image--buffets {
  object-position: center 55%;
}

.format-card-content {
  position: relative;
  z-index: 1;
}

.format-card h3 {
  margin-bottom: 0.75rem;
  color: white;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.format-card p {
  max-width: 30ch;
  margin: 0 0 1.25rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.format-card .text-link {
  color: inherit;
}

.menu-story {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--sage);
}

.menu-story::before {
  position: absolute;
  right: -13rem;
  bottom: -15rem;
  width: clamp(30rem, 45vw, 42rem);
  aspect-ratio: 1;
  background: url("../assets/illustrations/plate-line.webp") center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(13deg);
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.menu-image-wrap {
  position: relative;
  padding: 0 0 2.25rem 2.25rem;
}

.menu-image-wrap::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 78%;
  height: 78%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.menu-image {
  position: relative;
  width: 100%;
  border-radius: 8px;
}

.menu-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
}

.source-intro {
  max-width: 53ch;
  margin: 0 0 1.5rem;
  color: rgb(23 35 26 / 78%);
  font-size: 1rem;
  line-height: 1.6;
}

.source-point {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgb(60 94 50 / 34%);
}

.source-point:last-of-type {
  border-bottom: 1px solid rgb(60 94 50 / 34%);
}

.source-point h3 {
  margin-bottom: 0.25rem;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 700;
}

.source-point p {
  margin: 0;
  color: rgb(23 35 26 / 72%);
  font-size: 0.92rem;
}

.source-point span {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb {
  padding-top: 1.5rem;
  font-size: 0.86rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: var(--gold);
  content: "/";
}

.breadcrumb a {
  color: var(--forest);
  text-underline-offset: 4px;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
}

.service-hero::before {
  position: absolute;
  z-index: 0;
  width: clamp(24rem, 35vw, 36rem);
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.service-hero::after {
  position: absolute;
  z-index: 0;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.1;
  pointer-events: none;
}

.service-hero--cocktail::before {
  top: -17rem;
  right: 12%;
}

.service-hero--cocktail::after {
  bottom: -8rem;
  left: -11rem;
  width: 34rem;
  background-image: url("../assets/illustrations/chef-knife-line.webp");
  transform: rotate(-18deg);
}

.service-hero--table::before {
  right: -13rem;
  bottom: -17rem;
}

.service-hero--table::after {
  bottom: -10rem;
  left: -12rem;
  width: 35rem;
  background-image: url("../assets/illustrations/plate-line.webp");
  transform: rotate(-12deg);
}

.service-hero--buffets::before {
  top: 6rem;
  left: 43%;
}

.service-hero--buffets::after {
  bottom: -9rem;
  left: -10rem;
  width: 32rem;
  background-image: url("../assets/illustrations/bread-line.webp");
  transform: rotate(-8deg);
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.service-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
}

.service-intro {
  max-width: 53ch;
  margin: 0 0 2.25rem;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgb(60 94 50 / 24%);
}

.service-facts div {
  padding: 1rem;
  background: var(--paper);
}

.service-facts dt {
  margin-bottom: 0.25rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-facts dd {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
}

.service-portrait {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.5rem 0 0;
}

.service-portrait::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 74%;
  height: 74%;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.service-portrait img {
  width: 100%;
  border-radius: 8px;
}

.service-portrait figcaption {
  max-width: 38ch;
  margin-top: 0.75rem;
  color: rgb(23 35 26 / 68%);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.45;
}

.service-section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.service-section--tint {
  background: var(--sage);
}

.service-section--dark {
  color: white;
  background: var(--forest-dark);
}

.service-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: 2.5rem;
}

.service-section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  color: var(--forest-dark);
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.service-section--dark .eyebrow {
  color: var(--gold);
}

.service-section--dark .service-section-heading h2 {
  color: white;
}

.section-lede {
  max-width: 58ch;
  margin: 0;
  align-self: end;
  color: rgb(23 35 26 / 72%);
}

.service-section--dark .section-lede {
  color: rgb(255 253 248 / 75%);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgb(60 94 50 / 28%);
  background: var(--paper);
}

.price-tables {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.price-table-group {
  min-width: 0;
}

.price-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.price-table caption {
  padding: 1rem 1.25rem;
  color: var(--forest-dark);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgb(60 94 50 / 20%);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: var(--forest);
  background: rgb(221 230 216 / 55%);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table tbody th {
  color: var(--forest-dark);
  font-weight: 750;
}

.price-table td:last-child {
  font-weight: 750;
  white-space: nowrap;
}

.price-cell {
  font-weight: 750;
  white-space: nowrap;
}

.price-list-cell {
  font-weight: 400 !important;
  white-space: normal !important;
}

.price-list-cell ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding-left: 1.1rem;
}

.price-row-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-row-icon {
  margin-top: 0.15rem;
  color: var(--forest);
}

.price-table-notes {
  display: grid;
  gap: 0.25rem;
  max-width: 80ch;
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  color: rgb(23 35 26 / 70%);
  font-size: 0.82rem;
}

.price-table--wide thead th:first-child,
.price-table--wide tbody th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.price-table--wide thead th:first-child {
  background: #e8eee4;
}

.price-table--wide tbody th:first-child {
  background: var(--paper);
}

.status-note {
  max-width: 70ch;
  margin: 1rem 0 0;
  color: rgb(23 35 26 / 70%);
  font-size: 0.86rem;
}

.price-tables-notices {
  display: grid;
  gap: 0.4rem;
}

.price-tables-notices .status-note {
  margin: 0;
}

.conditions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.conditions-block + .conditions-block {
  margin-top: clamp(4.5rem, 9vw, 8rem);
  padding-top: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid rgb(60 94 50 / 28%);
}

.conditions-format {
  margin: -0.35rem 0 0.85rem;
  color: var(--forest-dark);
  font-size: 1.05rem;
  font-weight: 750;
}

.notice-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-list li {
  padding: 1.15rem 0;
  border-top: 1px solid rgb(60 94 50 / 28%);
}

.notice-list li:last-child {
  border-bottom: 1px solid rgb(60 94 50 / 28%);
}

.notice-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--forest-dark);
}

.allergy-note {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.allergy-note h3 {
  margin-bottom: 0.75rem;
  color: var(--forest-dark);
  font-size: 1.6rem;
}

.allergy-note p {
  margin: 0;
  font-size: 0.94rem;
}

.menu-panels {
  display: grid;
  gap: 2rem;
}

.menu-sections {
  display: grid;
  gap: clamp(4.5rem, 9vw, 8rem);
}

.menu-section {
  min-width: 0;
}

.menu-section-heading {
  width: min(100%, 1180px);
  margin: 0 auto clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(209 192 106 / 72%);
}

.menu-section-heading h3 {
  margin: 0;
  color: white;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.menu-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 3px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
}

.menu-panel > header {
  padding-bottom: 1.5rem;
}

.menu-panel h3,
.menu-panel-title {
  margin-bottom: 0.5rem;
  color: var(--forest-dark);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.menu-panel header p {
  margin: 0;
  color: rgb(23 35 26 / 68%);
  font-size: 0.9rem;
}

.menu-panel [data-menu-items] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 1rem;
}

.menu-item {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid rgb(60 94 50 / 22%);
  border-radius: 3px;
  background: rgb(247 242 231 / 48%);
}

.menu-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-item h4,
.menu-item-title {
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--body);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.3;
}

.menu-item-surcharge {
  flex: none;
  padding: 0.18rem 0.42rem;
  border-radius: 2px;
  color: var(--forest-dark);
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.35;
  white-space: nowrap;
}

.menu-item-ingredients {
  margin-top: 0.9rem;
}

.menu-item-ingredients > p {
  margin: 0 0 0.35rem;
  color: rgb(23 35 26 / 60%);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-item-ingredients ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item-ingredients li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.4rem;
  border-radius: 2px;
  color: rgb(23 35 26 / 76%);
  background: rgb(60 94 50 / 8%);
  font-size: 0.76rem;
  line-height: 1.35;
}

.key-ingredient-marker {
  display: inline-flex;
  margin-left: 0.15rem;
  color: var(--tomato);
}

.key-ingredient-marker .menu-icon {
  width: 0.85rem;
  height: 0.85rem;
}

.origin-tag {
  --origin-color: #5e6a62;
  display: inline-flex;
  min-width: 1.55rem;
  min-height: 1.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.28rem;
  border: 1px solid var(--origin-color);
  border-radius: 999px;
  color: white;
  background: var(--origin-color);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.origin-tag--ab { --origin-color: #c44d36; }
.origin-tag--au { --origin-color: #8a5a44; }
.origin-tag--bc { --origin-color: #286c59; }
.origin-tag--ca { --origin-color: #b13d3d; }
.origin-tag--mb { --origin-color: #71539a; }
.origin-tag--nb { --origin-color: #b85b38; }
.origin-tag--nl { --origin-color: #3e718c; }
.origin-tag--ns { --origin-color: #3f6197; }
.origin-tag--on { --origin-color: #6e6432; }
.origin-tag--pe { --origin-color: #a44747; }
.origin-tag--qc { --origin-color: #2765a8; }
.origin-tag--sk { --origin-color: #477836; }

.menu-item-source {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  padding-left: 0.55rem;
  border-left: 3px solid rgb(60 94 50 / 35%);
  color: rgb(23 35 26 / 72%);
  font-size: 0.74rem;
  line-height: 1.45;
}

.menu-item-source--ab { border-left-color: #c44d36; }
.menu-item-source--bc { border-left-color: #286c59; }
.menu-item-source--mb { border-left-color: #71539a; }
.menu-item-source--nb { border-left-color: #b85b38; }
.menu-item-source--nl { border-left-color: #3e718c; }
.menu-item-source--ns { border-left-color: #3f6197; }
.menu-item-source--on { border-left-color: #6e6432; }
.menu-item-source--pe { border-left-color: #a44747; }
.menu-item-source--qc { border-left-color: #2765a8; }
.menu-item-source--sk { border-left-color: #477836; }

.menu-item-source strong {
  color: var(--forest-dark);
}

.menu-item-source .origin-tag {
  flex: none;
  margin-top: 0.05rem;
}

.menu-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.menu-item-source > .menu-icon {
  margin-top: 0.12rem;
  color: var(--forest);
}

.menu-item-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.menu-item-attributes li {
  display: inline-flex;
  min-height: 1.75rem;
  align-items: center;
  gap: 0.28rem;
  padding: 0.2rem 0.48rem;
  border: 1px solid rgb(60 94 50 / 26%);
  border-radius: 999px;
  color: var(--forest-dark);
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.2;
}

.menu-item-photo {
  margin-top: 0.9rem;
  border-top: 1px solid rgb(60 94 50 / 18%);
}

.menu-item-photo summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  list-style: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.menu-item-photo summary::-webkit-details-marker {
  display: none;
}

.menu-item-photo summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.1rem;
  text-decoration: none;
}

.menu-item-photo summary:focus-visible {
  outline: 3px solid var(--tomato);
  outline-offset: 3px;
}

.menu-item-photo[open] summary::after {
  content: "−";
}

.photo-label-hide,
.menu-item-photo[open] .photo-label-show {
  display: none;
}

.menu-item-photo[open] .photo-label-hide {
  display: inline;
}

.menu-item-photo-frame {
  margin-top: 0.25rem;
  padding: 0.45rem;
  background: var(--forest-dark);
}

.menu-item-photo img {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  background: var(--forest-dark);
}

.menu-item-meta {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-panels {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  gap: 0;
  border: 1px solid rgb(209 192 106 / 55%);
  background: var(--paper);
  box-shadow: 0 2rem 5rem rgb(7 18 8 / 22%);
  counter-reset: menu-section;
}

.menu-panels::before,
.menu-panels::after {
  position: absolute;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-color: var(--gold);
  content: "";
  pointer-events: none;
}

.menu-panels::before {
  top: 0.75rem;
  left: 0.75rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.menu-panels::after {
  right: 0.75rem;
  bottom: 0.75rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.menu-panels .menu-panel {
  padding: clamp(2rem, 5vw, 4.75rem);
  border-top: 0;
  background: transparent;
  counter-increment: menu-section;
}

.menu-panels .menu-panel + .menu-panel {
  border-top: 1px solid rgb(60 94 50 / 24%);
}

.menu-panels .menu-panel > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 0.35rem 1rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgb(60 94 50 / 42%);
}

.menu-panels .menu-panel > header::before {
  color: var(--tomato);
  content: "0" counter(menu-section);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-panels .menu-panel h3,
.menu-panels .menu-panel-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.menu-panels .menu-panel header p {
  grid-column: 2;
  max-width: 62ch;
  font-size: 0.92rem;
}

.menu-panels .menu-panel [data-menu-items] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 7vw, 6.5rem);
  background: linear-gradient(rgb(60 94 50 / 18%), rgb(60 94 50 / 18%)) center / 1px 100% no-repeat;
}

.menu-panels .menu-item {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.15rem) 0;
  border: 0;
  border-bottom: 1px solid rgb(60 94 50 / 22%);
  border-radius: 0;
  background: transparent;
}

.menu-panels .menu-item-heading {
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.65rem;
}

.menu-panels .menu-item h4,
.menu-panels .menu-item-title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.menu-panels .menu-item-leader {
  min-width: 1.5rem;
  flex: 1;
  border-bottom: 1px dotted rgb(60 94 50 / 48%);
}

.menu-panels .menu-item-surcharge {
  padding: 0;
  border-radius: 0;
  color: var(--tomato);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-panels .menu-item-ingredients {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.45rem;
  margin-top: 0.65rem;
}

.menu-panels .menu-item-ingredients > p {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.menu-panels .menu-item-ingredients ul {
  gap: 0 0.22rem;
  flex: 1 1 15rem;
}

.menu-panels .menu-item-ingredients li {
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.84rem;
  line-height: 1.5;
}

.menu-panels .menu-item-ingredients .origin-tag {
  margin-left: 0.2rem;
}

.menu-panels .menu-item-ingredients li::after {
  content: ",";
}

.menu-panels .menu-item-ingredients li:last-child::after {
  content: ".";
}

.menu-panels .origin-tag {
  min-width: 1.45rem;
  min-height: 1.05rem;
  padding: 0.08rem 0.25rem;
  color: var(--origin-color);
  background: transparent;
  font-size: 0.56rem;
}

.menu-panels .menu-item-meta-row {
  display: grid;
  justify-items: start;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.menu-panels .menu-item-meta {
  margin-top: 0;
}

.menu-panels .menu-item-group-size,
.menu-panels .menu-item-availability,
.menu-panels .menu-item-photo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--forest-dark);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.3;
}

.menu-panels .menu-item-group-size .menu-icon,
.menu-panels .menu-item-availability .menu-icon {
  color: var(--tomato);
}

.menu-panels .menu-item-photo-placeholder {
  color: rgb(23 35 26 / 58%);
  font-style: italic;
}

.menu-panels .menu-item-source {
  align-items: center;
  margin: 0;
  padding-left: 0;
  border-left: 0;
}

.menu-panels .menu-item-source > .menu-icon {
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0;
  color: var(--tomato);
}

.menu-panels .menu-item-attributes {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.menu-panels .menu-item-attributes li {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 750;
}

.menu-panels .menu-item-photo {
  width: 100%;
  margin: 0;
  border-top: 0;
}

.menu-panels .menu-item-photo summary {
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-panels .menu-item-photo summary::after {
  margin-left: 0;
  content: "\2198";
  font-size: 0.8rem;
}

.menu-panels .menu-item-photo[open] summary::after {
  content: "\2196";
}

.menu-panels .menu-item-photo-frame {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgb(60 94 50 / 18%);
}

.menu-panels .menu-item-photo img {
  width: auto;
  max-width: 100%;
  max-height: 32rem;
  margin-inline: auto;
  background: var(--cream);
}

.related-services {
  padding: 2.5rem 0;
  border-top: 1px solid rgb(60 94 50 / 20%);
}

.related-services ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-services strong {
  color: var(--forest-dark);
}

.related-services a {
  color: var(--forest);
  font-weight: 700;
  text-underline-offset: 5px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 10vw, 9rem);
}

.about-hero::after {
  position: absolute;
  right: -10rem;
  bottom: -13rem;
  width: clamp(28rem, 42vw, 40rem);
  aspect-ratio: 1;
  background: url("../assets/illustrations/plate-line.webp") center / contain no-repeat;
  content: "";
  opacity: 0.09;
  pointer-events: none;
  transform: rotate(12deg);
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.about-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.about-hero-grid > div > p {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.chef-stories {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--sage);
}

.chef-profile {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  margin-inline: auto;
}

.chef-profile + .chef-profile {
  margin-top: clamp(7rem, 14vw, 13rem);
}

.chef-profile--reverse .chef-photo {
  order: 2;
}

.chef-profile--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.chef-photo {
  position: relative;
  margin: 0;
  padding: 0 0 2rem 2rem;
}

.chef-photo::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 82%;
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.chef-profile--reverse .chef-photo {
  padding: 2rem 2rem 0 0;
}

.chef-profile--reverse .chef-photo::before {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

.chef-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;
  border-radius: 6px;
  object-fit: cover;
}

.chef-role {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chef-profile h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  color: var(--forest-dark);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.chef-profile-content > p:not(.chef-role) {
  max-width: 54ch;
  margin: 0 0 1rem;
  color: rgb(23 35 26 / 76%);
}

.chef-profile-content .chef-lede {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgb(60 94 50 / 30%);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.25;
}

.about-manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: white;
  background: var(--forest-dark);
  text-align: center;
}

.about-manifesto::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60vw, 42rem);
  aspect-ratio: 1;
  border: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
  opacity: 0.25;
  transform: translate(-50%, -50%);
}

.about-manifesto .shell {
  position: relative;
  z-index: 1;
}

.about-manifesto .eyebrow {
  color: var(--gold);
}

.about-manifesto blockquote {
  max-width: 18ch;
  color: white;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.about-manifesto > .shell > p:last-child {
  max-width: 62ch;
  margin: 0 auto;
  color: rgb(255 253 248 / 76%);
}

.closing {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 10rem) 0;
  text-align: center;
}

.closing::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48vw, 38rem);
  aspect-ratio: 1;
  background: url("../assets/illustrations/plate-line.webp") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.closing > .shell {
  position: relative;
  z-index: 1;
}

blockquote {
  max-width: 18ch;
  margin: 0 auto 2.5rem;
  color: var(--forest-dark);
  font-size: clamp(2.8rem, 6vw, 6.25rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.site-footer {
  padding: 2rem 0;
  color: white;
  background: var(--forest-dark);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-name {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
}

.footer-contact a {
  color: white;
  font-weight: 650;
  text-underline-offset: 4px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social svg {
  width: 0.9rem;
  height: 1rem;
  fill: var(--gold);
}

@media (max-width: 1040px) {
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-block: 0.75rem;
  }

  .nav-links {
    order: 2;
    width: 100%;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    white-space: nowrap;
  }

  .nav-links .button {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .menu-grid,
  .service-hero-grid,
  .service-section-heading,
  .conditions-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .chef-profile {
    gap: 3rem;
  }

  .chef-profile--reverse .chef-photo {
    order: initial;
  }

  .chef-profile--reverse {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .chef-photo {
    width: min(100%, 480px);
  }

  .service-hero-grid {
    gap: 3rem;
  }

  .service-hero::after {
    display: none;
  }

  .hero {
    padding-bottom: calc(clamp(3.5rem, 6vw, 6rem) + 3.5rem);
  }

  .hero::before {
    background: linear-gradient(180deg, rgb(245 223 191 / 78%) 0%, rgb(245 223 191 / 62%) 42%, rgb(245 223 191 / 22%) 76%, transparent 100%);
  }

  .hero-grid {
    min-height: 0;
    gap: 1rem;
  }

  .hero-content {
    max-width: 650px;
  }

  .formats::before {
    right: -10rem;
    width: 26rem;
  }

  .menu-story::before {
    right: -10rem;
    bottom: -11rem;
    width: 30rem;
  }

  .closing::before {
    width: min(78vw, 34rem);
  }

  .service-portrait {
    width: min(100%, 620px);
  }

  .section-lede {
    align-self: auto;
  }

  .hero-visual {
    width: min(94%, 700px);
    min-height: clamp(500px, 76vw, 620px);
    margin-left: auto;
  }

  .hero-image {
    object-position: center;
  }

  .intro-copy {
    max-width: 48ch;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: clamp(340px, 58vw, 460px);
  }

  .menu-image-wrap {
    width: min(100%, 560px);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  :lang(en) .hero-note {
    padding: 1.35rem;
    font-size: 0.8rem;
  }

  :lang(en) .hero-note strong {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 32px, 1360px);
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    width: 145px;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding: 3.25rem 0 calc(3.25rem + 3.25rem);
  }

  .formats::before,
  .menu-story::before,
  .about-hero::after {
    display: none;
  }

  .chef-profile {
    grid-template-columns: 1fr;
  }

  .chef-profile + .chef-profile {
    margin-top: 7rem;
  }

  .chef-photo {
    padding: 0 0 1.25rem 1.25rem;
  }

  .chef-profile--reverse .chef-photo {
    padding: 1.25rem 1.25rem 0 0;
  }

  .about-manifesto::before {
    width: 34rem;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.45rem, 16vw, 4.25rem);
    line-height: 0.88;
  }

  .hero .eyebrow {
    margin-bottom: 2rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    width: 100%;
    min-height: 390px;
    margin-top: 0;
  }

  .hero-visual::before {
    top: 2%;
    right: -3%;
    width: 96%;
  }

  .hero-visual::after {
    top: 8%;
    right: -1%;
    width: 90%;
  }

  .hero-image-wrap {
    top: 10%;
    right: 5%;
    width: 78%;
  }

  .hero-note {
    width: 150px;
    height: 150px;
    padding: 1rem;
    font-size: 0.72rem;
  }

  .hero-local {
    bottom: 2%;
  }

  .hero-quebec-mark {
    width: clamp(145px, 44vw, 175px);
    margin-bottom: 0.8rem;
  }

  .hero-note strong {
    font-size: 1.25rem;
  }

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

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 320px;
  }

  .menu-image-wrap {
    padding: 0 0 1.5rem 1.5rem;
  }

  .service-hero {
    padding-top: 3rem;
  }

  .service-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .service-facts {
    grid-template-columns: 1fr;
  }

  .service-portrait {
    padding: 1rem 1rem 0 0;
  }

  .price-table th,
  .price-table td {
    padding: 0.85rem 1rem;
  }

  .price-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.78rem;
  }

  .price-table caption {
    font-size: 1.1rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.75rem 0.55rem;
    overflow-wrap: anywhere;
  }

  .price-table th:first-child {
    width: 24%;
  }

  .price-table th:nth-child(2) {
    width: 48%;
  }

  .price-table th:last-child {
    width: 28%;
  }

  .price-table td:last-child {
    white-space: normal;
  }

  .price-table--wide {
    min-width: 640px;
    table-layout: auto;
  }

  .price-table--wide th:first-child,
  .price-table--wide th:nth-child(2),
  .price-table--wide th:last-child {
    width: auto;
  }

  .price-table--wide th:first-child {
    width: 11.25rem;
    min-width: 11.25rem;
  }

  .price-cell {
    white-space: normal;
  }

  .menu-panels .menu-panel {
    padding: 2rem 1.5rem;
  }

  .menu-panels .menu-panel [data-menu-items] {
    grid-template-columns: 1fr;
    background: none;
  }

  .menu-panels .menu-panel > header {
    gap: 0.3rem 0.65rem;
  }

  .menu-panels .menu-panel h3,
  .menu-panels .menu-panel-title {
    font-size: 2.35rem;
  }

  .menu-panels .menu-item-heading {
    flex-wrap: wrap;
  }

  .menu-panels .menu-item-leader {
    order: 2;
  }

  .menu-panels .menu-item-surcharge {
    order: 3;
  }

  .footer-grid {
    align-items: start;
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
    justify-content: flex-start;
  }

  .footer-contact a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
  }

  .closing::before {
    width: 28rem;
    opacity: 0.055;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .hero-ribbon-track {
    animation: none;
  }
}
