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

:root {
  --cream: #fff4e0;
  --coral: #ff945f;
  --berry: #7a2421;
  --blue: #233e6d;
  --olive: #636339;
  --mustard: #dfcf5f;
  --sage: #9ebfbe;
  --ink: #111111;
  --muted-ink: rgba(17, 17, 17, 0.64);
  --max-width: 1280px;
  --content-width: 1212px;
  --header-height: 4.5rem;
  --surface-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --font-display: "Grosa", "Avenir Next", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

button,
input {
  font: inherit;
}

strong,
b {
  font-weight: 400;
}

.legal-page {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-page p {
  max-width: 72ch;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.legal-page a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 1rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 148, 95, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: calc(var(--header-height) - 0.75rem);
  padding-block: 0.7rem;
  background: rgba(255, 148, 95, 0.985);
  border-bottom-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-brand__image {
  display: block;
  width: 5.6875rem;
  height: 1.4375rem;
  object-fit: contain;
  transition: transform 180ms ease;
}

.site-header.is-scrolled .site-brand__image {
  transform: scale(0.96);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.site-nav a {
  padding-bottom: 0.18rem;
}

.site-nav a,
.footer-links a,
.footer-social a {
  position: relative;
}

.footer-links a,
.footer-social a {
  width: fit-content;
}

.site-nav a.is-active {
  font-weight: 400;
}

.site-nav a::after,
.footer-links a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-social a:hover::after,
.footer-social a:focus-visible::after {
  transform: scaleX(1);
}

.section-panel {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.section-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: stretch;
  justify-items: center;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    url("./assets/images/hero-new.jpg") center center / cover no-repeat,
    #c8b394;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.44)),
    radial-gradient(circle at top left, rgba(255, 244, 224, 0.16), transparent 34%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.1));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-items: center;
  text-align: center;
  color: var(--cream);
  width: min(100%, 64rem);
  height: 100%;
  min-height: 0;
  padding-bottom: 0;
  animation: hero-rise 900ms ease-out;
  text-shadow: 0 10px 24px rgba(17, 17, 17, 0.24);
}

.hero__eyebrow,
.hero__meta {
  font-size: clamp(1.05rem, 1vw + 0.45rem, 2rem);
  letter-spacing: -0.03em;
}

.hero__content h1 {
  max-width: none;
  font-size: clamp(3.1rem, 5.45vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__footer {
  position: absolute;
  left: 50%;
  bottom: clamp(0.2rem, 1vh, 0.8rem);
  transform: translateX(-50%);
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  width: max-content;
  max-width: 100%;
}

.manifesto,
.story-quote,
.contact-section {
  display: grid;
  place-items: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.manifesto__inner,
.story-quote__inner {
  width: min(100%, 62rem);
  text-align: center;
}

.manifesto p,
.story-quote p {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.visual-slice {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin: 0 0 0 -50vw;
  padding: 0;
}

.visual-slice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.visual-slice__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.visual-slice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

.visual-slice__item--pie img {
  object-position: center center;
}

.info-ribbon {
  overflow: hidden;
  background: var(--olive);
  color: var(--cream);
  padding: 1.1rem 0;
}

.marquee {
  display: flex;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  min-width: 100%;
  animation: ribbon-scroll 18s linear infinite;
}

.marquee__track span {
  flex: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee__track span::after {
  content: " /";
  margin-left: 1.5rem;
}

.menu-section {
  background: var(--blue);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 3vw, 2.2rem);
  scroll-margin-top: calc(var(--header-height) + 0.8rem);
}

.section-heading {
  width: min(100%, var(--content-width));
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-heading span {
  display: inline-block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.78;
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.menu-index {
  position: static;
  width: min(100%, var(--content-width));
  margin: 0 auto clamp(1.7rem, 4vw, 2.5rem);
  padding: 0.7rem 0 0.9rem;
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
  background: linear-gradient(180deg, rgba(35, 62, 109, 0.98), rgba(35, 62, 109, 0.92));
}

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

.menu-index__link {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 244, 224, 0.16);
  border-radius: 999px;
  color: rgba(255, 244, 224, 0.82);
  background: rgba(255, 244, 224, 0.04);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-index__link:hover,
.menu-index__link:focus-visible {
  color: var(--cream);
  background: rgba(255, 244, 224, 0.1);
  border-color: rgba(255, 244, 224, 0.3);
}

.menu-index__link.is-active {
  color: var(--blue);
  background: var(--cream);
  border-color: var(--cream);
}

.menu-grid {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 3.2rem);
}

.menu-column {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  scroll-margin-top: calc(var(--header-height) + 0.8rem);
}

.menu-column__header {
  position: static;
  padding: 0.35rem 0 0.9rem;
  background: transparent;
}

.menu-column h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.menu-column__eyebrow {
  font-size: 1rem;
  color: rgba(255, 244, 224, 0.78);
}

.menu-column__intro {
  margin-top: 0.75rem;
  max-width: 38ch;
  color: rgba(255, 244, 224, 0.82);
  font-size: 0.95rem;
  line-height: 1.35;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 244, 224, 0.18);
}

.menu-item {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 0 1.05rem;
  border-bottom: 1px solid rgba(255, 244, 224, 0.14);
}

.menu-item__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item__title {
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.menu-item__price {
  font-size: 1rem;
  white-space: nowrap;
}

.menu-item__description {
  color: rgba(255, 244, 224, 0.8);
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 34ch;
}

.story-grid {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin: 0 0 0 -50vw;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "copy photo"
    "scene quotes";
  gap: 0;
  scroll-margin-top: calc(var(--header-height) + 0.8rem);
}

.story-card {
  min-height: 20rem;
}

.story-card--copy {
  --story-copy-font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  --story-copy-line-height: 1.25;
  --story-copy-letter-spacing: -0.03em;
  grid-area: copy;
  display: grid;
  gap: 1.8rem;
  align-content: start;
  padding: clamp(2rem, 4vw, 3.2rem);
  background: var(--berry);
  color: var(--cream);
}

.story-card--copy p {
  font-size: var(--story-copy-font-size);
  line-height: var(--story-copy-line-height);
  letter-spacing: var(--story-copy-letter-spacing);
  max-width: 36ch;
}

.story-founders {
  display: grid;
  gap: 0.2rem;
  margin-top: auto;
}

.story-founders span {
  color: rgba(255, 244, 224, 0.62);
  font-size: 1.05rem;
}

.story-founders strong {
  font-size: var(--story-copy-font-size);
  font-weight: 400;
  line-height: var(--story-copy-line-height);
  letter-spacing: var(--story-copy-letter-spacing);
}

.story-card--photo,
.story-card--scene,
.image-strip__item {
  position: relative;
  overflow: hidden;
}

.story-card--photo {
  grid-area: photo;
  min-height: 36rem;
  background: #ddd4bf;
}

.story-card--photo img,
.story-card--scene img,
.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card--photo img {
  object-position: left center;
  filter: saturate(0.92) contrast(0.98);
}

.story-card--scene {
  grid-area: scene;
  min-height: 36rem;
}

.story-card--scene img {
  object-position: center center;
}

.story-card--quotes {
  grid-area: quotes;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  grid-template-rows: repeat(2, minmax(16rem, 1fr));
}

.quote-cell {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.quote-cell--mustard {
  background: var(--mustard);
}

.quote-cell--sage {
  background: var(--sage);
}

.quote-cell p {
  max-width: 10ch;
  text-align: center;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.quote-cell--left p {
  transform: translateY(-0.8rem);
}

.quote-cell--right p {
  transform: translateY(0.8rem);
}

.contact-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
  scroll-margin-top: calc(var(--header-height) + 0.8rem);
}

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem clamp(0.75rem, 2vw, 1rem);
  color: inherit;
  text-decoration: none;
  border-radius: 1.25rem;
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-card span {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.contact-card p,
.contact-card__link {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.contact-card--interactive:hover,
.contact-card--interactive:focus-visible {
  background: rgba(17, 17, 17, 0.045);
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.contact-card--contact {
  align-content: start;
}

.contact-card__link {
  width: fit-content;
}

.contact-card__link:hover,
.contact-card__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.contact-card__meta {
  margin-top: 0.65rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-strip {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin: 0 0 0 -50vw;
}

.image-strip__pattern {
  width: 100%;
  margin: 0;
  height: 4.65rem;
  background:
    repeating-linear-gradient(
      90deg,
      var(--coral) 0,
      var(--coral) 3.35rem,
      var(--berry) 3.35rem,
      var(--berry) 6.8rem
    );
}

.image-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.image-strip__item {
  aspect-ratio: 1 / 1.82;
  margin: 0;
}

.image-strip__item--dough img {
  object-position: left center;
}

.image-strip__item--cream img {
  object-position: center center;
}

.site-footer {
  background: var(--mustard);
  padding: clamp(2rem, 4vw, 2.5rem);
}

.site-footer__top {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-links,
.footer-social {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 0.25rem;
}

.site-footer__bottom {
  width: min(100%, var(--content-width));
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}

.footer-caption {
  max-width: 22rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.site-footer__wordmark {
  display: block;
  width: 100%;
  aspect-ratio: 91 / 23;
  margin-top: 1rem;
  height: auto;
  object-fit: contain;
}

@keyframes ribbon-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .site-header + main {
    padding-top: var(--header-height);
  }

  .menu-grid,
  .story-grid,
  .contact-section,
  .site-footer__top,
  .image-strip__grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-areas:
      "copy"
      "photo"
      "scene"
      "quotes";
  }

  .menu-grid {
    gap: 2.1rem;
  }

  .menu-column__header {
    position: static;
    padding-top: 0;
    background: transparent;
  }

  .story-card--photo,
  .story-card--scene {
    min-height: 26rem;
  }

  .story-card--quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .image-strip__item {
    aspect-ratio: 1 / 1;
  }

  .site-footer__top {
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 4.15rem;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    flex-direction: row;
    gap: 0.85rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .site-header.is-scrolled {
    min-height: calc(var(--header-height) - 0.45rem);
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .site-header + main {
    padding-top: var(--header-height);
  }

  .site-nav {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.95rem;
    overflow-x: visible;
    white-space: nowrap;
    font-size: 0.88rem;
    padding-bottom: 0;
  }

  .menu-index {
    margin-bottom: 1.6rem;
    padding-top: 0.35rem;
    scroll-snap-type: x proximity;
  }

  .menu-index__link {
    min-height: 2.35rem;
    padding-inline: 1rem;
    scroll-snap-align: start;
  }

  .hero {
    min-height: 82svh;
    align-items: end;
    padding: 1.2rem 1rem 2.4rem;
    background-position: 62% center;
  }

  .hero__content {
    width: min(100%, 22rem);
    min-height: min(68svh, 34rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0;
  }

  .hero__eyebrow,
  .hero__meta {
    font-size: 1.05rem;
  }

  .hero__footer {
    position: static;
    transform: none;
    width: 100%;
    gap: 0.25rem;
  }

  .hero__content h1 {
    max-width: 11.9ch;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
  }

  .section-heading h2 {
    max-width: 17.5ch;
  }

  .manifesto,
  .story-quote,
  .contact-section {
    padding-top: 3.45rem;
    padding-bottom: 3.45rem;
  }

  .menu-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-heading {
    margin-bottom: 2.1rem;
  }

  .menu-grid {
    gap: 1.85rem;
  }

  .menu-column {
    gap: 1.05rem;
  }

  .menu-column h3 {
    font-size: clamp(1.75rem, 7.2vw, 2.2rem);
  }

  .manifesto p,
  .story-quote p {
    max-width: 17.5ch;
    margin-inline: auto;
  }

  .menu-column__eyebrow {
    font-size: 0.95rem;
  }

  .menu-item {
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }

  .menu-item__title-row {
    gap: 0.65rem;
    align-items: flex-start;
  }

  .menu-item__title {
    font-size: 1rem;
    line-height: 1.14;
  }

  .menu-item__price {
    font-size: 0.95rem;
    padding-top: 0.05rem;
  }

  .menu-item__description {
    max-width: none;
    font-size: 1rem;
    line-height: 1.45;
  }

  .story-card--copy {
    gap: 1.25rem;
    padding: 1.5rem 1rem 1.9rem;
  }

  .story-card--copy p {
    max-width: none;
  }

  .story-card--quotes {
    grid-template-columns: 1fr;
  }

  .quote-cell {
    min-height: 14rem;
  }

  .contact-card {
    padding-inline: 0;
  }

  .site-footer {
    padding: 2.3rem 1rem 2rem;
  }

  .site-footer__top {
    gap: 1.75rem;
  }

  .site-footer__top > * {
    padding-bottom: 1.05rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  }

  .site-footer__top > *:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-links,
  .footer-social {
    gap: 0.45rem;
  }

  .site-footer__bottom {
    margin-top: 1.7rem;
  }
}

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

  .section-panel,
  .hero__content,
  .marquee__track {
    animation: none;
    transition: none;
  }

  .section-panel {
    opacity: 1;
    transform: none;
  }
}
