:root {
  color-scheme: light;
  --bg: #f3ebe1;
  --paper: #fff8f0;
  --ink: #2a1812;
  --muted: #6e564c;
  --primary: #b44428;
  --primary-fg: #fff8f0;
  --border: #e2d2c2;
  --wa: #1f6b45;
  --wa-fg: #f4fff8;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.375rem;
  --radius-xl: 2rem;
  --shadow-card:
    0 0 0 1px rgb(42 24 18 / 0.06),
    0 1px 2px rgb(42 24 18 / 0.05),
    0 10px 28px rgb(42 24 18 / 0.06);
  --shadow-lift:
    0 0 0 1px rgb(42 24 18 / 0.08),
    0 8px 28px rgb(42 24 18 / 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

p {
  text-wrap: pretty;
  margin: 0;
}

button:not(:disabled),
[role="button"]:not(:disabled) {
  cursor: pointer;
}

.photo {
  outline: 1px solid rgb(42 24 18 / 0.1);
  outline-offset: -1px;
}

.wrap {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(72rem, calc(100% - 3rem));
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  border: 0;
  text-decoration: none;
  transition:
    color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.btn:active:not(:disabled) {
  transform: scale(0.96);
}

.btn:focus-visible,
.shot:focus-visible,
.menu-toggle:focus-visible,
.choice:focus-within,
select:focus-visible,
textarea:focus-visible,
.lb-close:focus-visible,
.lb-prev:focus-visible,
.lb-next:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
}

.btn-wa {
  background: var(--wa);
  color: var(--wa-fg);
  box-shadow: var(--shadow-card);
}

.btn-wa:hover {
  background: #1a5c3b;
}

.btn-outline {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.btn-outline:hover {
  box-shadow: var(--shadow-lift);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-card);
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgb(226 210 194 / 0.8);
  background: rgb(243 235 225 / 0.85);
  backdrop-filter: blur(12px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
  background: var(--primary);
  color: var(--primary-fg);
}

.mark svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-wa {
  display: none;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: var(--radius-md);
}

.menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-mobile {
  border-top: 1px solid var(--border);
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
}

.nav-mobile a {
  border-radius: var(--radius-md);
  padding: 0.75rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
}

.nav-mobile a:hover {
  background: rgb(42 24 18 / 0.05);
}

.nav-mobile-wa {
  margin-top: 0.25rem;
  justify-content: center;
}

.hero {
  position: relative;
  overflow: hidden;
}

.paper-grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 3rem;
}

.hero-copy h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.6rem, 6vw, 3.75rem);
}

.hero-copy em {
  font-style: italic;
}

.lede {
  margin-top: 1.25rem;
  max-width: 28rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-meta svg {
  width: 0.9rem;
  height: 0.9rem;
}

.hero-meta a:hover {
  color: var(--ink);
}

.hero-photos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(5.5rem, auto));
  gap: 0.5rem;
}

.hero-photos .span-2 {
  grid-column: span 2;
}

.hero-photos .row-2 {
  grid-row: span 2;
  height: 100%;
  max-height: 28rem;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  min-height: 7rem;
}

.hero-photos .wide {
  height: 8rem;
}

.price-chip {
  position: absolute;
  left: 1rem;
  bottom: -0.75rem;
  background: var(--paper);
  border-radius: 0.4rem;
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-card);
}

.price-chip p:first-child {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.price-chip p:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

.trust {
  border-block: 1px solid var(--border);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  padding: 0;
  list-style: none;
  margin: 0 auto;
}

.trust-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--paper);
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-grid svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--primary);
}

.menu,
.story {
  padding: 4rem 0;
}

.section-lead {
  max-width: 36rem;
}

.section-lead h2,
.gallery-head h2,
.story h2,
.order h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.85rem, 4vw, 2.25rem);
}

.section-lead p:last-child,
.gallery-head > p,
.story-copy,
.steps p + p {
  color: var(--muted);
}

.section-lead p:last-child {
  margin-top: 0.75rem;
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  overflow: hidden;
  background: var(--paper);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

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

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.card-head h3 {
  font-size: 1.5rem;
}

.price {
  text-align: right;
  flex: 0 0 auto;
}

.price span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.price small {
  color: var(--muted);
  font-size: 0.75rem;
}

.card-body > p {
  font-size: 0.875rem;
  color: var(--muted);
}

.card-body .btn {
  width: fit-content;
  margin-top: 0.15rem;
}

.savory {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
}

.savory li {
  background: rgb(255 248 240 / 0.7);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
}

.savory p:first-child {
  font-weight: 500;
}

.savory p:last-child {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.gallery {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0;
}

.gallery .eyebrow {
  color: #e07a5f;
}

.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-head > p {
  max-width: 22rem;
  font-size: 0.875rem;
  color: rgb(255 248 240 / 0.7);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.shot {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 0.5rem;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 500ms ease;
}

.shot:hover img {
  transform: scale(1.03);
}

.shot span {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--paper);
  background: linear-gradient(to top, rgb(42 24 18 / 0.7), transparent);
}

.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.story-photo {
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

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

.story-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.story-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.story-cta .btn-outline {
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.order {
  border-top: 1px solid var(--border);
  background: var(--paper);
  padding: 4rem 0 6rem;
}

.order-grid {
  display: grid;
  gap: 3rem;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: flex;
  gap: 1rem;
}

.steps span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.steps p:first-child {
  font-weight: 500;
}

.steps p + p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.zones-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.zones-note svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--primary);
}

.order-form {
  background: var(--bg);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.form-lede {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

fieldset {
  border: 0;
  margin: 1.5rem 0 0;
  padding: 0;
}

legend,
.field span {
  font-size: 0.875rem;
  font-weight: 500;
}

.choices {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.choice {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-size: 0.875rem;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice:has(input:checked) {
  background: var(--ink);
  color: var(--paper);
}

.field {
  display: block;
  margin-top: 1.25rem;
}

.field span {
  display: block;
}

select,
textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  box-shadow: var(--shadow-card);
}

select {
  height: 2.75rem;
  border-radius: var(--radius-md);
  padding: 0 0.75rem;
}

textarea {
  resize: none;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
}

textarea::placeholder {
  color: rgb(110 86 76 / 0.7);
}

.form-submit {
  width: 100%;
  margin-top: 1.5rem;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}

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

.footer-grid p + p,
.footer-grid a {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 248 240 / 0.65);
}

.footer-grid div > p:first-child {
  font-weight: 500;
}

.footer-grid a:hover {
  color: var(--paper);
}

.footer-bar {
  border-top: 1px solid rgb(255 248 240 / 0.1);
}

.footer-bar .wrap {
  padding: 1rem 0;
  font-size: 0.75rem;
  color: rgb(255 248 240 / 0.45);
}

.fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--wa-fg);
  box-shadow: var(--shadow-lift);
}

.fab svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fab:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(42 24 18 / 0.9);
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  max-width: 56rem;
}

.lightbox img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox figcaption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgb(255 248 240 / 0.8);
  font-size: 0.875rem;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--paper);
}

.lb-close {
  top: 1rem;
  right: 1rem;
}

.lb-prev {
  left: 0.75rem;
}

.lb-next {
  right: 0.75rem;
}

.lb-close svg,
.lb-prev svg,
.lb-next svg {
  width: 1.6rem;
  height: 1.6rem;
}

@media (min-width: 640px) {
  .hero-grid {
    padding-block: 4rem;
  }

  .header-wa {
    display: inline-flex;
  }

  .hero-photos {
    gap: 0.75rem;
  }

  .hero-photos .wide {
    height: 10rem;
  }

  .price-chip {
    left: 1.5rem;
  }

  .card-body {
    padding: 1.5rem;
  }

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

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

  .choice.span-2 {
    grid-column: span 2;
  }

  .order-form {
    padding: 1.75rem;
  }

  .fab {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

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

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

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

  .mosaic {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .shot.wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .shot.wide img {
    aspect-ratio: auto;
    min-height: 20rem;
    height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hero-grid,
  .story-grid,
  .order-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    align-items: center;
  }

  .hero-copy,
  .order-grid > div:first-child {
    grid-column: span 5;
  }

  .hero-photos,
  .order-form {
    grid-column: span 7;
  }

  .story-photo {
    grid-column: span 5;
  }

  .story-grid > div:last-child {
    grid-column: span 7;
  }

  .gallery-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-grid {
    padding-block: 5rem;
  }

  .menu,
  .gallery,
  .story,
  .order {
    padding-block: 6rem;
  }

  .order {
    padding-bottom: 6rem;
  }
}

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

  .stagger-in > *,
  .card-media img,
  .shot img,
  .fab {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.stagger-in > * {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
  animation: rise-in 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.stagger-in > *:nth-child(1) {
  animation-delay: 40ms;
}
.stagger-in > *:nth-child(2) {
  animation-delay: 120ms;
}
.stagger-in > *:nth-child(3) {
  animation-delay: 200ms;
}
.stagger-in > *:nth-child(4) {
  animation-delay: 280ms;
}
.stagger-in > *:nth-child(5) {
  animation-delay: 360ms;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
