:root {
  --paper: #faf8f2;
  --ink: #111;
  --muted: #6d6a64;
  --yellow: #ffd32a;
  --pink: #f72d80;
  --line: rgba(17, 17, 17, .13);
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  scroll-behavior: smooth;
  background: var(--paper);
}
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
@supports (overflow: clip) {
  html, body, main { overflow-x: clip; }
}
main { max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.promotions-section {
  width: min(100%, 1544px);
  margin-inline: auto;
  padding: clamp(38px, 5vw, 76px) clamp(24px, 7vw, 108px);
  border-top: 4px solid #ef018d;
  border-bottom: 4px solid #ef018d;
  background: var(--yellow);
  overflow: hidden;
}
.promotions-section[hidden] { display: none; }
.promotions-shell {
  position: relative;
  width: min(1120px, 92%);
  margin-inline: auto;
  padding-top: clamp(24px, 3vw, 42px);
}
.promotion-title {
  position: absolute;
  z-index: 2;
  top: 0;
  left: clamp(-42px, -4vw, -20px);
  margin: 0;
  padding: 8px clamp(18px, 3vw, 42px);
  background: #ef018d;
  color: #fff;
  font: 700 clamp(34px, 5vw, 68px)/.95 "Montserrat", Arial, Helvetica, sans-serif;
  letter-spacing: -.03em;
  text-transform: uppercase;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.promotion-track {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: rotate(-3deg);
}
.section-heading { margin-bottom: 30px; }
.section-heading h2 {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
}
.scribble-label { display: inline-block; padding: 3px 12px; background: var(--yellow); font-weight: 800; }
.scribble-label.pink { background: var(--pink); color: #fff; }
.hand-heart { color: var(--pink); font-size: 64px; }
.promotion-card {
  overflow: hidden;
  width: 100%;
  border: clamp(6px, .8vw, 12px) solid #ef018d;
  background: #fff;
}
.promotion-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(650px, 65vh);
  object-fit: contain;
  background: #fff;
}

.menu-section {
  /* Frame 1 uses the same visual column as the stories below it. */
  width: min(1560px, calc(100% - 96px));
  padding: 46px 0 60px;
}
.menu-section .section-heading { margin-bottom: 0; }
.menu-section .section-heading h2 { font-size: clamp(40px, 3.2vw, 50px); }
.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 30%) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}
.menu-board {
  container: menu-card / inline-size;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 18px 0 0;
  background: transparent;
  overflow: hidden;
}
.category-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  min-height: 10px;
  margin: 0 0 18px;
}
.menu-category-controls { position: relative; }
.menu-category-arrow {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: 700 21px/1 "Montserrat", Arial, Helvetica, sans-serif;
  cursor: pointer;
}
.menu-category-arrow:active { background: var(--yellow); }
.menu-category-arrow:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.category-dot, .about-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.category-dot.active, .about-dot.active { border-color: var(--pink); background: var(--pink); }
.customer-product-list { display: grid; margin-bottom: 0; will-change: transform, opacity; }
.customer-category-panel {
  grid-area: 1 / 1;
  min-width: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.customer-category-panel.active { visibility: visible; opacity: 1; pointer-events: auto; }
.customer-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  padding: 4px 0;
}
.customer-product-name {
  min-width: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
}
.customer-product-prices {
  align-self: start;
  text-align: right;
  white-space: nowrap;
  font-size: 19px;
  line-height: 1.3;
}
.customer-product-description {
  grid-column: 1 / -1;
  margin: 2px 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.empty-message { color: var(--muted); }
.menu-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: default;
}
.photo-showcase { min-width: 0; overflow: hidden; aspect-ratio: 2.62 / 1; }
.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  height: 100%;
  min-height: 0;
  will-change: transform, opacity;
}
.carousel-photo, .carousel-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: #eee9df;
}
.carousel-placeholder { grid-column: 1 / -1; display: grid; place-items: center; padding: 24px; text-align: center; }

.home-story {
  width: min(1560px, calc(100% - 96px));
  padding-bottom: 24px;
  container-type: inline-size;
}
.workshop-promo {
  display: grid;
  grid-template-columns: minmax(0, 37%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
  padding: clamp(28px, 2.35vw, 42px);
  background: var(--yellow);
}
.workshop-promo-image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 5056 / 3040;
  background: #e7d9bd;
}
.workshop-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.workshop-promo-copy { align-self: center; }
.workshop-promo-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: normal;
}
.workshop-promo-copy p {
  max-width: 510px;
  margin: 0;
  white-space: pre-line;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.3;
  letter-spacing: normal;
}
.workshop-promo-button {
  display: inline-block;
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.workshop-promo-button:hover { color: #6a2140; }

.about-section {
  display: grid;
  grid-template-columns: 27.5% 5.61% 63.34% 3.55%;
  align-items: start;
  gap: 0;
  padding: 2cqw 0 3.62cqw;
}
.about-copy {
  grid-column: 1;
  align-self: start;
  min-width: 0;
  padding-top: clamp(96px, 10.42cqw, 141px);
}
.about-heading { margin-bottom: 24px; }
.about-heading h2 {
  margin: 0;
  font-size: clamp(52px, 4.29cqw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
}
.about-copy > p {
  max-width: 390px;
  margin: 0;
  font-size: clamp(18px, 1.48cqw, 20px);
  line-height: 1.42;
  letter-spacing: -.025em;
}
.about-carousel { grid-column: 3; min-width: 0; overflow: hidden; }
.about-gallery {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2.278 / 1;
  background: #eee8dc;
  will-change: transform, opacity;
  touch-action: pan-y;
}
.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  user-select: none;
}
.about-dots { display: none; }

@container menu-card (max-width: 280px) {
  .customer-product { grid-template-columns: 1fr; }
  .customer-product-prices { text-align: left; }
  .customer-product-description { grid-column: 1; }
}

@media (max-width: 900px) {
  .menu-layout { grid-template-columns: 1fr; }
  .menu-board { min-height: 0; padding-inline: 0; }
  .photo-showcase { aspect-ratio: auto; }
  .menu-board, .photo-showcase { touch-action: pan-y; }
  .carousel-track { height: auto; min-height: 390px; }
  .carousel-photo, .carousel-placeholder { height: 390px; }
  .home-story { width: min(1180px, calc(100% - 48px)); }
  .menu-section { width: min(1180px, calc(100% - 48px)); }
  .workshop-promo { gap: 30px; }
  .about-section { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 0; }
  .about-copy, .about-carousel { grid-column: 1; }
  .about-copy { padding-top: 0; }
  .about-copy > p { max-width: 620px; }
}

@media (max-width: 620px) {
  .promotions-section {
    padding: 30px 18px 34px;
    border-width: 3px;
  }
  .promotions-shell {
    width: 94%;
    padding-top: 24px;
  }
  .promotion-title {
    left: -12px;
    padding: 7px 16px;
    font-size: clamp(26px, 9vw, 40px);
    transform: rotate(-3deg);
  }
  .promotion-track { transform: rotate(-2deg); }
  .promotion-card { border-width: 5px; }
  .promotion-card img { max-height: 72vh; }
  .section-shell { width: min(100% - 28px, 1180px); }
  .home-story { width: calc(100% - 28px); padding-bottom: 48px; }
  .menu-section { width: calc(100% - 28px); padding: 54px 0 56px; }
  .menu-section { padding: 56px 0 52px; }
  .section-heading h2 { font-size: 46px; }
  .menu-board { padding-top: 8px; }
  .menu-category-controls {
    position: static;
    display: block;
    margin-bottom: 12px;
  }
  .menu-board { position: relative; }
  .menu-category-arrow {
    position: absolute;
    z-index: 4;
    top: 132px;
    display: none;
    width: 34px;
    height: 46px;
    place-items: center;
    border-color: rgba(9, 9, 9, .62);
    background: rgba(250, 248, 242, .72);
    box-shadow: 0 3px 12px rgba(9, 9, 9, .14);
    opacity: .76;
    transform: translateY(-50%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .menu-category-arrow--previous { left: 0; }
  .menu-category-arrow--next { right: 0; }
  .menu-category-arrow:active,
  .menu-category-arrow:focus-visible {
    background: rgba(255, 212, 42, .94);
    opacity: 1;
  }
  .menu-category-arrow[hidden] { display: none; }
  .category-dots { margin: 0; }
  .customer-product-list { padding-inline: 0; }
  .customer-product { grid-template-columns: minmax(0, 46%) minmax(0, 54%); gap: 5px 8px; padding: 11px 0; }
  .customer-product-name, .customer-product-prices { font-size: 15px; }
  .customer-product-prices { text-align: right; white-space: nowrap; }
  .customer-product-description { grid-column: 1 / -1; font-size: 13px; }
  .carousel-track { display: block; min-height: 420px; }
  .carousel-photo, .carousel-placeholder { display: none; height: 420px; }
  .carousel-photo:first-child, .carousel-placeholder:first-child { display: block; }
  .workshop-promo { grid-template-columns: 1fr; gap: 26px; padding: 20px; }
  .workshop-promo-copy h2 { font-size: 38px; }
  .workshop-promo-copy p { font-size: 18px; }
  .workshop-promo-button { margin-top: 20px; }
  .about-section { padding: 30px 0 0; }
  .about-heading h2 { font-size: 40px; }
  .about-copy > p { font-size: 15px; }
  .about-carousel,
  .about-gallery { width: 100%; }
  .about-gallery { aspect-ratio: 16 / 9; }
  .about-photo { object-position: center 46%; }
}

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