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

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

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/Fraunces-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --warm-white: #fbf8f3;
  --cream: #f2e9df;
  --oat: #e7d3c2;
  --rose: #c69382;
  --rose-soft: #ead7ce;
  --wine: #7b2440;
  --wine-dark: #50172a;
  --espresso: #35231e;
  --maple: #b7926d;
  --brass: #a88a4f;
  --green: #54704a;
  --line: rgba(53, 35, 30, 0.17);
  --line-light: rgba(255, 255, 255, 0.22);
  --wrap: 78rem;
  --sans: "Archivo", "Segoe UI", Arial, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 0.75rem;
  --radius: 1.5rem;
  --radius-lg: 2.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
}

html.lenis { scroll-behavior: auto; }

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--warm-white);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  translate: 0 -150%;
  padding: 0.7rem 1rem;
  background: var(--espresso);
  color: var(--white);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.skip-link:focus { translate: 0; }

:where(a, button, input):focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.today-bar {
  position: sticky;
  top: 0;
  z-index: 45;
  background: var(--wine);
  color: var(--white);
  font-size: 0.78rem;
  transition: transform 420ms var(--ease-out);
  will-change: transform;
}

.today-bar__inner {
  width: min(calc(100% - 2rem), var(--wrap));
  min-height: 2.35rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.today-bar p { margin: 0; }

.today-bar a {
  flex: none;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.shop-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 650;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  flex: none;
  display: inline-block;
  border-radius: 50%;
  background: #f0b3b9;
}

.shop-status.is-open .status-dot,
.mobile-action-bar .is-open-dot { background: #b9d296; }

.site-header {
  position: sticky;
  top: 2.35rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
  will-change: transform;
}

body.chrome-hidden .today-bar {
  transform: translate3d(0, -100%, 0);
}

body.chrome-hidden .site-header {
  transform: translate3d(0, calc(-100% - 2.35rem), 0);
}

body.nav-open .today-bar,
body.nav-open .site-header {
  transform: translate3d(0, 0, 0);
}

body.has-scrolled:not(.chrome-hidden) .site-header {
  box-shadow: 0 0.85rem 2.2rem rgba(53, 35, 30, 0.08);
}

.site-header__inner {
  width: min(calc(100% - 2rem), var(--wrap));
  height: 5.2rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 13.5rem 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 10rem;
  display: block;
  text-decoration: none;
}

.brand-lockup {
  position: relative;
  width: 100%;
  display: block;
  background: var(--white);
  isolation: isolate;
}

.brand-lockup img {
  width: 100%;
  display: block;
}

/* Repairs the filled counter in the supplied raster O while preserving the lockup. */
.brand-o-repair {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 27.9%;
  width: 10.4%;
  aspect-ratio: 0.85;
  border-radius: 50%;
  background: var(--white);
  pointer-events: none;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.6vw, 2.7rem);
}

.desktop-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  background: var(--wine);
  scale: 0 1;
  transform-origin: left center;
  transition: scale 280ms var(--ease-out);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { scale: 1 1; }

.header-directions {
  padding: 0.74rem 1.15rem;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.header-directions:hover {
  background: var(--wine);
  color: var(--white);
}

.menu-toggle,
.mobile-nav { display: none; }

.hero {
  width: min(calc(100% - 3rem), var(--wrap));
  min-height: min(48rem, calc(100svh - 7.55rem));
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.75rem) 0 clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(31rem, 1.15fr);
  align-items: center;
  gap: clamp(2.25rem, 5vw, 5.75rem);
}

.hero__copy { padding-left: clamp(0rem, 2vw, 1.5rem); }

.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow span::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--light { color: var(--rose-soft); }

.hero h1,
.section-heading h2,
.builder-intro h2,
.story-copy h2,
.visit-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 6.15rem);
  font-weight: 770;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero h1 em {
  color: var(--wine);
  font-style: normal;
  font-weight: 490;
}

.hero__lede {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 780;
  text-decoration: none;
  transition: translate 150ms ease, background-color 150ms ease, color 150ms ease;
}

.button:hover { translate: 0 -2px; }
.button--primary { background: var(--wine); color: var(--white); }
.button--primary:hover { background: var(--wine-dark); }
.button--text { padding-inline: 0; border-radius: 0; border-bottom-color: var(--espresso); }
.button--cream { background: var(--cream); color: var(--wine-dark); }

.quick-facts {
  max-width: 36rem;
  list-style: none;
  margin: clamp(2.75rem, 5vw, 4.5rem) 0 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quick-facts li {
  min-width: 0;
  padding-right: 1rem;
  display: grid;
  gap: 0.18rem;
}

.quick-facts li + li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.quick-facts strong {
  color: var(--wine);
  font-size: 1.12rem;
}

.quick-facts span {
  font-size: 0.73rem;
  color: rgba(53, 35, 30, 0.68);
}

.hero__visual { position: relative; }

.hero__photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--oat);
}

.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 907;
  object-fit: contain;
  object-position: center;
}

.hero__stamp {
  position: absolute;
  top: -1.2rem;
  right: clamp(0.8rem, 3vw, 2rem);
  width: 7.2rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 0;
  rotate: 5deg;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  text-align: center;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  box-shadow: 0 0 0 0.45rem var(--warm-white);
}

.hero__stamp b { color: #f1bdc2; font-size: 1rem; line-height: 1; }

.hero__caption {
  position: absolute;
  right: -1.2rem;
  bottom: -1rem;
  margin: 0;
  padding: 0.7rem 1rem;
  rotate: -2deg;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 760;
}

.soft-note {
  padding: 1.1rem max(1.5rem, calc((100vw - var(--wrap)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--rose-soft);
  border-block: 1px solid rgba(80, 23, 42, 0.15);
  color: var(--wine-dark);
  font-size: 0.83rem;
}

.soft-note p { margin: 0; }
.soft-note a { flex: none; font-weight: 800; text-underline-offset: 0.22em; }

.section {
  width: min(calc(100% - 3rem), var(--wrap));
  margin-inline: auto;
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.75rem);
}

.section-heading h2,
.story-copy h2,
.visit-heading h2,
.builder-intro h2 {
  font-size: clamp(2.65rem, 5.4vw, 5.4rem);
}

.section-heading > p {
  margin: 0 0 0.35rem;
  color: rgba(53, 35, 30, 0.72);
  font-size: 0.98rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  align-items: start;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.feature {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: visible;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  isolation: isolate;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.feature:nth-child(2) {
  margin-top: clamp(2.5rem, 4vw, 4rem);
}

.feature:nth-child(3) {
  margin-top: clamp(1rem, 1.8vw, 1.75rem);
}

.feature__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  border-radius: var(--radius-lg);
  background: var(--oat);
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 500ms cubic-bezier(.2,.8,.2,1);
}

.feature--wide .feature__image img { object-position: center 68%; }
.feature--stacked .feature__image img { object-position: center 55%; }
.feature:hover .feature__image img { scale: 1.025; }

.photo-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--wine);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature__copy {
  position: relative;
  z-index: 2;
  margin: -1.2rem 0.7rem 0;
  padding: 1.1rem 1.2rem 1.2rem;
  border-radius: calc(var(--radius-lg) - 0.7rem);
  background: rgba(255, 252, 247, 0.97);
  box-shadow: 0 1rem 2.8rem rgba(53, 35, 30, 0.16);
}

.feature__number {
  margin-bottom: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature__number::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.feature h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.15vw, 2.45rem);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.feature p {
  max-width: 29rem;
  margin: 0.65rem 0 0;
  color: rgba(53, 35, 30, 0.72);
  font-size: 0.88rem;
}

.builder-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--wrap)) / 2));
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  background: var(--cream);
  color: var(--espresso);
}

.builder-section .eyebrow--light { color: var(--wine); }

.builder-intro > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 1.5rem 0 0;
  color: rgba(53, 35, 30, 0.72);
}

.builder-photo {
  width: min(100%, 34rem);
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--oat);
}

.builder-photo.is-scroll-scale {
  transform: scale(var(--builder-image-scale, 0.78));
  transform-origin: 50% 50%;
  will-change: transform, border-radius, box-shadow;
}

.builder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.foam-builder { align-self: center; }

.builder-step {
  margin: 0;
  padding: 1.65rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.builder-step legend {
  padding: 0;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.builder-step legend span {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.55rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  font-size: 0.7rem;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.choice {
  position: relative;
  cursor: pointer;
}

.choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice span {
  display: block;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(53, 35, 30, 0.28);
  border-radius: 999px;
  color: var(--espresso);
  font-size: 0.76rem;
  font-weight: 650;
  transition: background-color 130ms ease, color 130ms ease, border-color 130ms ease;
}

.choice:hover span { border-color: var(--wine); color: var(--wine); }

.choice input:checked + span {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

.choice input:focus-visible + span {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.order-ticket {
  margin-top: 1.8rem;
  padding: 1.5rem;
  background: var(--white);
  color: var(--wine-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1rem 3rem rgba(80, 23, 42, 0.08);
}

.order-ticket__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(80, 23, 42, 0.3);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-ticket > p:first-of-type {
  margin: 1.15rem 0 0;
  font-size: clamp(1.3rem, 2.4vw, 2.05rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.order-ticket__note {
  min-height: 1.4em;
  margin: 0.5rem 0 0;
  color: rgba(80, 23, 42, 0.72);
  font-size: 0.78rem;
}

.order-ticket__actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.ticket-button,
.ticket-reset {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.ticket-reset { color: rgba(80, 23, 42, 0.62); }
.ticket-button[hidden], .ticket-reset[hidden] { display: none; }

.section-heading--menu { margin-bottom: 3rem; }

.menu-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(53, 35, 30, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5rem 4rem rgba(80, 23, 42, 0.07);
}

.menu-grid::after {
  content: "LIL HONEY";
  position: absolute;
  right: -0.45rem;
  bottom: -1.85rem;
  color: rgba(123, 36, 64, 0.045);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.menu-category {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 1.7rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.menu-category:first-child {
  grid-row: 1 / span 3;
  padding-top: 0;
  border-top: 0;
}

.menu-category:nth-child(2) { padding-top: 0; border-top: 0; }
.menu-category--rose,
.menu-category--dark { background: transparent; color: var(--espresso); }

.menu-category__heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-category__heading > span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 850;
}

.menu-category--dark .menu-category__heading > span { color: var(--wine); }

.menu-category h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  font-style: italic;
  font-weight: 540;
  letter-spacing: -0.035em;
}

.menu-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.menu-list li {
  padding: 0.82rem 0;
  display: grid;
  grid-template-columns: minmax(8rem, auto) minmax(7rem, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  border-bottom: 1px dotted rgba(53, 35, 30, 0.22);
}

.menu-list strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.menu-list li > span {
  max-width: none;
  color: rgba(53, 35, 30, 0.62);
  font-size: 0.72rem;
  text-align: right;
}

.menu-category--dark .menu-list li > span { color: rgba(53, 35, 30, 0.62); }

.bake-callout {
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
  background: var(--oat);
  border-radius: var(--radius-lg);
}

.bake-callout h3 {
  max-width: 42rem;
  margin: 0;
  color: var(--wine-dark);
  font-size: clamp(1.6rem, 3.4vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.bake-callout > p {
  margin: 0;
  color: rgba(53, 35, 30, 0.7);
  font-size: 0.83rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-photo {
  position: relative;
  margin-left: clamp(0rem, 4vw, 4rem);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.story-photo__label {
  position: absolute;
  right: -1.15rem;
  bottom: 1.4rem;
  padding: 0.68rem 0.85rem;
  rotate: -2deg;
  background: var(--wine);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
}

.story-copy { max-width: 39rem; }

.story-copy > p:not(.eyebrow) {
  margin: 1.6rem 0 0;
  color: rgba(53, 35, 30, 0.76);
  font-size: 0.97rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.8rem;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.visit-section {
  padding: clamp(5rem, 9vw, 9rem) max(1.5rem, calc((100vw - var(--wrap)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.72fr);
  grid-template-areas:
    "heading photo"
    "details photo";
  column-gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  background: var(--rose-soft);
  color: var(--espresso);
}

.visit-section .eyebrow--light { color: var(--wine); }

.visit-heading {
  grid-area: heading;
  max-width: 57rem;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.visit-grid {
  grid-area: details;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.visit-grid > div {
  min-width: 0;
  padding: 2rem 2rem 0 0;
}

.visit-grid > div + div {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.visit-update {
  grid-column: 1 / -1;
  margin-top: 1.75rem;
  padding: 1.75rem 0 0 !important;
  border-top: 1px solid var(--line);
  border-left: 0 !important;
}

.visit-label {
  margin: 0 0 1rem;
  color: var(--wine);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-location address {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 690;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.visit-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visit-hours li {
  padding: 0.34rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  color: rgba(53, 35, 30, 0.72);
  font-size: 0.78rem;
}

.visit-hours li.is-today {
  color: var(--wine);
  font-weight: 800;
}

.visit-update > p:not(.visit-label) {
  margin: 0;
  color: rgba(53, 35, 30, 0.72);
  font-size: 0.85rem;
}

.text-link--light { color: var(--wine); }

.visit-section .button--cream {
  background: var(--wine);
  color: var(--white);
}

.visit-photo {
  position: relative;
  grid-area: photo;
  width: min(100%, 31rem);
  aspect-ratio: 2 / 3;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--oat);
  box-shadow: 0 2.2rem 5rem rgba(80, 23, 42, 0.16);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-radius: calc(var(--radius-lg) - 0.85rem);
  background: rgba(255, 252, 247, 0.94);
  color: var(--espresso);
  font-size: 0.72rem;
}

.visit-photo figcaption strong { color: var(--wine); }
.visit-photo figcaption span { color: rgba(53, 35, 30, 0.66); }

.site-footer {
  padding: 2.25rem max(1.5rem, calc((100vw - var(--wrap)) / 2)) 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  background: var(--warm-white);
  color: rgba(53, 35, 30, 0.7);
  border-top: 1px solid var(--line);
}

.footer-brand { display: grid; line-height: 1; }
.footer-brand span { color: var(--wine); font-size: 1.2rem; font-weight: 850; }
.footer-brand small { margin-top: 0.3rem; letter-spacing: 0.34em; }
.site-footer > p { margin: 0; font-size: 0.72rem; text-align: center; }
.footer-links { justify-self: end; display: flex; gap: 1rem; }
.footer-links a { font-size: 0.72rem; font-weight: 750; text-underline-offset: 0.25em; }

.site-footer.footer-motion > * {
  opacity: 0;
  translate: 0 1rem;
  transition: opacity 620ms var(--ease-out), translate 720ms var(--ease-out);
}

.site-footer.footer-motion.footer-visible > * {
  opacity: 1;
  translate: 0 0;
}

.site-footer.footer-motion.footer-visible > :nth-child(2) { transition-delay: 80ms; }
.site-footer.footer-motion.footer-visible > :nth-child(3) { transition-delay: 160ms; }

.mobile-action-bar { display: none; }

/* Site choreography: an opening beat, then section-level reveals as the page moves. */
body.intro-pending .today-bar,
body.intro-pending .site-header,
body.intro-pending .hero .eyebrow,
body.intro-pending .hero h1,
body.intro-pending .hero__lede,
body.intro-pending .hero__actions,
body.intro-pending .quick-facts,
body.intro-pending .hero__visual,
body.intro-pending .hero__stamp,
body.intro-pending .hero__caption {
  opacity: 0;
}

body.intro-pending .today-bar { translate: 0 -100%; }
body.intro-pending .site-header { translate: 0 -1rem; }
body.intro-pending .hero .eyebrow,
body.intro-pending .hero h1,
body.intro-pending .hero__lede,
body.intro-pending .hero__actions,
body.intro-pending .quick-facts { translate: 0 1.4rem; }
body.intro-pending .hero__visual { translate: 0 1.8rem; scale: 0.965; }
body.intro-pending .hero__stamp { scale: 0.72; rotate: -8deg; }
body.intro-pending .hero__caption { translate: 0 0.75rem; rotate: -2deg; }
body.intro-pending .soft-note { clip-path: inset(0 100% 0 0); }
body.intro-pending .soft-note > * { opacity: 0; translate: 0 0.65rem; }

body.intro-pending.intro-loaded .today-bar,
body.intro-pending.intro-loaded .site-header,
body.intro-pending.intro-loaded .hero .eyebrow,
body.intro-pending.intro-loaded .hero h1,
body.intro-pending.intro-loaded .hero__lede,
body.intro-pending.intro-loaded .hero__actions,
body.intro-pending.intro-loaded .quick-facts,
body.intro-pending.intro-loaded .hero__visual,
body.intro-pending.intro-loaded .hero__stamp,
body.intro-pending.intro-loaded .hero__caption {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  transition: opacity 720ms var(--ease-out), translate 850ms var(--ease-out), scale 1000ms var(--ease-out), rotate 900ms var(--ease-out), transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

body.intro-pending.intro-loaded .hero__stamp { rotate: 5deg; }
body.intro-pending.intro-loaded .hero__caption { rotate: -2deg; }
body.intro-pending.intro-loaded .soft-note {
  clip-path: inset(0 0 0 0);
  transition: clip-path 780ms var(--ease-out) 520ms;
}

body.intro-pending.intro-loaded .soft-note > * {
  opacity: 1;
  translate: 0 0;
  transition: opacity 560ms var(--ease-out), translate 680ms var(--ease-out);
}

body.intro-pending.intro-loaded .soft-note > p { transition-delay: 740ms; }
body.intro-pending.intro-loaded .soft-note > a { transition-delay: 850ms; }

body.intro-pending.intro-loaded .hero__visual { transition-delay: 80ms; }
body.intro-pending.intro-loaded .hero .eyebrow { transition-delay: 140ms; }
body.intro-pending.intro-loaded .hero h1 { transition-delay: 220ms; }
body.intro-pending.intro-loaded .hero__lede { transition-delay: 350ms; }
body.intro-pending.intro-loaded .hero__actions { transition-delay: 470ms; }
body.intro-pending.intro-loaded .quick-facts { transition-delay: 580ms; }
body.intro-pending.intro-loaded .hero__stamp { transition-delay: 620ms; }
body.intro-pending.intro-loaded .hero__caption { transition-delay: 720ms; }
body.intro-pending.intro-loaded .today-bar { transition-delay: 300ms; }
body.intro-pending.intro-loaded .site-header { transition-delay: 400ms; }

body.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 2rem;
  transition: opacity 700ms var(--ease-out), translate 850ms var(--ease-out), scale 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

body.motion-ready [data-reveal="left"] { translate: -2rem 0; }
body.motion-ready [data-reveal="right"] { translate: 2rem 0; }
body.motion-ready [data-reveal="scale"] { translate: 0 1rem; scale: 0.975; }

body.motion-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

body.motion-ready [data-reveal].reveal-complete { will-change: auto; }

body.motion-ready .feature[data-reveal] .feature__copy {
  opacity: 0;
  translate: 0 1rem;
  will-change: opacity, translate;
}

body.motion-ready .feature[data-reveal].is-visible .feature__copy {
  opacity: 1;
  translate: 0 0;
  transition: opacity 560ms ease-out, translate 680ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

body.motion-ready .feature[data-reveal].reveal-complete .feature__copy {
  will-change: auto;
}

.hero__photo img,
.builder-photo img,
.story-photo img {
  transition: scale 850ms var(--ease-out);
}

.builder-photo:hover img,
.story-photo:hover img { scale: 1.018; }

.choice input:checked + span { animation: choice-pop 300ms var(--ease-out); }
.order-ticket.is-updating { animation: ticket-update 360ms var(--ease-out); }
.shop-status.is-open .status-dot { animation: status-breathe 2.4s ease-in-out infinite; }

@keyframes choice-pop {
  50% { scale: 1.045; }
}

@keyframes ticket-update {
  45% { translate: 0 -0.25rem; box-shadow: 0 1.4rem 3.4rem rgba(80, 23, 42, 0.13); }
}

@keyframes status-breathe {
  50% { scale: 1.28; box-shadow: 0 0 0 0.24rem rgba(185, 210, 150, 0.2); }
}

@media (max-width: 68rem) {
  .site-header__inner { grid-template-columns: 11.5rem 1fr auto; gap: 1rem; }
  .brand { width: 9.5rem; }
  .desktop-nav { gap: 1.1rem; }
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(27rem, 1.1fr); }
  .feature__image img { height: 100%; }
}

@media (max-width: 54rem) {
  html { scroll-padding-top: 7rem; }
  body { padding-bottom: 4.6rem; }

  .today-bar__inner { justify-content: center; }
  .today-bar a { display: none; }

  .site-header__inner {
    height: 4.55rem;
    grid-template-columns: 10.5rem 1fr auto;
  }

  .brand { width: 8.5rem; }
  .desktop-nav, .header-directions { display: none; }

  .menu-toggle {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    border: 0;
    background: transparent;
    color: var(--espresso);
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 750;
  }

  .menu-toggle__icon { width: 1.25rem; display: grid; gap: 0.33rem; }
  .menu-toggle__icon i { display: block; height: 1px; background: currentColor; transition: rotate 150ms ease, translate 150ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { rotate: 45deg; translate: 0 0.215rem; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { rotate: -45deg; translate: 0 -0.215rem; }

  .mobile-nav {
    position: fixed;
    inset: 6.9rem 0 0;
    z-index: 35;
    padding: 1.4rem 1.5rem 6rem;
    background: var(--warm-white);
    overflow-y: auto;
  }

  .mobile-nav:not([hidden]) { display: grid; align-content: start; }
  .mobile-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--wine-dark);
    font-size: clamp(1.6rem, 8vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    text-decoration: none;
  }

  .mobile-nav:not([hidden]) a { animation: nav-item-in 460ms var(--ease-out) both; }
  .mobile-nav:not([hidden]) a:nth-child(2) { animation-delay: 45ms; }
  .mobile-nav:not([hidden]) a:nth-child(3) { animation-delay: 90ms; }
  .mobile-nav:not([hidden]) a:nth-child(4) { animation-delay: 135ms; }
  .mobile-nav:not([hidden]) a:nth-child(5) { animation-delay: 180ms; }

  .hero {
    width: min(calc(100% - 2rem), var(--wrap));
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    gap: 3rem;
  }

  .hero__copy { padding-left: 0; }
  .hero h1 { font-size: clamp(3.3rem, 12vw, 6rem); }
  .hero__lede { max-width: 39rem; }
  .hero__photo img { height: auto; aspect-ratio: 1600 / 907; }
  .hero__stamp { width: 6rem; }

  .section { width: min(calc(100% - 2rem), var(--wrap)); }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .section-heading > p { max-width: 31rem; }

  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature--wide { grid-column: 1 / -1; min-height: 0; }
  .feature:nth-child(2) { margin-top: 2rem; }
  .feature:nth-child(3) { margin-top: 0; }

  .builder-section { grid-template-columns: 1fr; }
  .builder-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(19rem, 1fr); column-gap: 2rem; align-items: end; }
  .builder-intro .eyebrow, .builder-intro h2, .builder-intro > p { grid-column: 1; }
  .builder-photo { grid-column: 2; grid-row: 1 / 4; margin: 0; }
  .builder-photo img { aspect-ratio: 4 / 5; }

  .story-section { grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr); gap: 3rem; }
  .story-photo { margin-left: 0; }

  .visit-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "details"
      "photo";
    row-gap: 3rem;
  }
  .visit-heading { padding-bottom: 0; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-update { grid-column: 1 / -1; margin-top: 2rem; border-left: 0 !important; border-top: 1px solid var(--line-light); padding-left: 0 !important; }
  .visit-photo { width: min(100%, 34rem); justify-self: center; }

  .mobile-action-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    min-height: 4.25rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--espresso);
    color: var(--white);
  }

  .mobile-action-bar p { margin: 0; display: flex; align-items: center; gap: 0.5rem; font-size: 0.73rem; font-weight: 700; }
  .mobile-action-bar a { padding: 0.62rem 0.85rem; border-radius: 999px; background: var(--white); color: var(--espresso); font-size: 0.72rem; font-weight: 800; text-decoration: none; }
}

@media (max-width: 38rem) {
  .today-bar { font-size: 0.7rem; }
  .today-bar__inner { width: min(calc(100% - 1.25rem), var(--wrap)); }
  .site-header__inner { width: min(calc(100% - 1.25rem), var(--wrap)); }

  .hero { padding-top: 2rem; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5rem); line-height: 0.92; }
  .hero__lede { font-size: 1rem; }
  .hero__actions { align-items: stretch; gap: 0.9rem; }
  .button--primary { flex: 1; }
  .button--text { font-size: 0.76rem; }

  .quick-facts { gap: 0; }
  .quick-facts strong { font-size: 0.97rem; }
  .quick-facts span { font-size: 0.62rem; line-height: 1.3; }
  .quick-facts li { padding-right: 0.55rem; }
  .quick-facts li + li { padding-left: 0.55rem; }

  .hero__photo { margin-inline: -0.25rem; }
  .hero__photo img { aspect-ratio: 1600 / 907; }
  .hero__stamp { top: -1.5rem; right: 0.5rem; width: 5.5rem; font-size: 0.58rem; }
  .hero__caption { right: 0; bottom: -0.8rem; }

  .soft-note { align-items: flex-start; flex-direction: column; gap: 0.65rem; padding-inline: 1rem; }

  .section { padding-block: 5.5rem; }
  .section-heading h2, .builder-intro h2, .story-copy h2, .visit-heading h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }

  .feature-grid { display: grid; grid-template-columns: 1fr; }
  .feature--wide { grid-column: auto; min-height: 0; }
  .feature,
  .feature:nth-child(2),
  .feature:nth-child(3) { min-height: 0; margin-top: 0; }
  .feature__number { margin-bottom: 1rem; }
  .feature h3 { font-size: 1.8rem; }

  .builder-section { padding-inline: 1rem; }
  .builder-intro { display: block; }
  .builder-photo { margin-top: 2rem; }
  .builder-photo img { aspect-ratio: 4 / 5; }
  .builder-step { padding-block: 1.35rem; }
  .choice-grid { gap: 0.45rem; }
  .choice span { padding: 0.62rem 0.75rem; font-size: 0.7rem; }
  .order-ticket { margin-right: 0.45rem; }

  .menu-grid { grid-template-columns: 1fr; padding: 1.5rem; }
  .menu-category:first-child { grid-row: auto; }
  .menu-category:nth-child(2) { padding-top: 1.7rem; border-top: 1px solid var(--line); }
  .menu-list li { align-items: flex-start; }
  .menu-list li > span { max-width: 10rem; }

  .bake-callout { grid-template-columns: 1fr; gap: 1.5rem; }

  .story-section { grid-template-columns: 1fr; }
  .story-photo { max-width: 27rem; }
  .story-photo__label { right: 0.5rem; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-grid > div { padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
  .visit-grid > div + div { padding-left: 0; border-left: 0; }
  .visit-update { grid-column: auto; margin-top: 0; border-top: 0; }
  .visit-photo figcaption { align-items: flex-start; flex-direction: column; gap: 0.25rem; }

  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer > p { text-align: left; }
  .footer-links { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body.intro-pending *,
  body.motion-ready [data-reveal] {
    opacity: 1 !important;
    translate: 0 0 !important;
    scale: 1 !important;
  }

  body.motion-ready .feature[data-reveal] .feature__copy {
    opacity: 1 !important;
    translate: 0 0 !important;
  }

  body.chrome-hidden .today-bar,
  body.chrome-hidden .site-header,
  .builder-photo.is-scroll-scale {
    transform: none !important;
  }
}

@keyframes nav-item-in {
  from { opacity: 0; translate: -1.25rem 0; }
  to { opacity: 1; translate: 0 0; }
}
