:root {
  --paper: #f4f0e8;
  --paper-deep: #e9e1d4;
  --ink: #11100f;
  --muted: #69635c;
  --red: #ee2b1f;
  --red-dark: #b71912;
  --green: #14864a;
  --white: #fffdf8;
  --display: "Special Elite", "Courier New", serif;
  --sans: "Oswald", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 25% 0%, rgba(255,255,255,.75), transparent 34rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(100% - 40px, 1320px);
  min-height: 116px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17,16,15,.24);
  position: relative;
  z-index: 10;
}

.brand { width: 210px; flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 100%; height: auto; object-fit: contain; }

nav { display: flex; align-items: center; gap: 34px; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
nav > a { transition: opacity .2s ease; }
nav > a:hover { opacity: .55; }
.nav-order { border: 1px solid var(--ink); padding: 13px 17px; }

.hero {
  width: min(100% - 40px, 1320px);
  min-height: calc(100svh - 116px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 5vw;
  padding: 68px 0 84px;
}

.kicker {
  margin: 0 0 24px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(4rem, 7.5vw, 8.4rem); }
h2 { font-size: clamp(3.2rem, 5.5vw, 6.5rem); }
h1 em, h2 em { color: var(--red); font-style: normal; }

.hero-lead {
  max-width: 585px;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.button {
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button svg, .floating-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { background: var(--red); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid currentColor; text-transform: uppercase; letter-spacing: .1em; font-size: .84rem; }

.hero-art { min-height: 650px; position: relative; display: grid; place-items: center; }
.red-disc { width: min(36vw, 530px); aspect-ratio: 1; border-radius: 50%; background: var(--red); position: absolute; transform: rotate(-5deg); }
.red-disc::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(17,16,15,.55);
  border-radius: inherit;
}
.stamp-wrap {
  width: min(35vw, 510px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(4deg);
  position: relative;
  z-index: 1;
  box-shadow: 15px 24px 50px rgba(39, 14, 5, .18);
}
.stamp-wrap img { width: 100%; height: 100%; object-fit: cover; }
.note { position: absolute; z-index: 2; background: var(--white); border: 1px solid var(--ink); padding: 9px 13px; font-family: var(--display); font-size: .9rem; text-transform: uppercase; box-shadow: 4px 4px 0 var(--ink); }
.note-one { top: 13%; left: 4%; transform: rotate(-8deg); }
.note-two { top: 21%; right: -1%; transform: rotate(6deg); }
.note-three { bottom: 8%; left: 10%; transform: rotate(4deg); }

.promise {
  background: var(--ink);
  color: var(--white);
  padding: 25px max(24px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-size: .83rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.promise p { margin: 0; }
.promise strong { color: var(--red); margin-right: 12px; }

.section-pad { width: min(100% - 40px, 1320px); margin: 0 auto; padding: 145px 0; }
.section-label { margin-bottom: 74px; display: flex; align-items: center; gap: 20px; font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.label-line { height: 1px; flex: 1; background: rgba(17,16,15,.26); }
.about-grid { display: grid; grid-template-columns: 1fr .83fr; gap: clamp(40px, 8vw, 130px); align-items: start; }
.about-copy { padding-top: 6px; color: var(--muted); font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.62; }
.about-copy p + p { margin-top: 24px; }

.products-section { border-top: 1px solid rgba(17,16,15,.24); }
.products-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.products-intro > p { max-width: 450px; color: var(--muted); font-size: 1.12rem; line-height: 1.6; padding-bottom: 12px; }
.product-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 34px 18px; }
.product-card { grid-column: span 3; margin: 0; min-width: 0; }
.product-card-featured { grid-column: span 6; }
.product-photo { position: relative; display: block; overflow: hidden; background: var(--paper-deep); border: 1px solid rgba(17,16,15,.2); }
.product-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.32); pointer-events: none; }
.product-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.product-card:nth-child(2) img { object-position: center 56%; }
.product-card:nth-child(3) img { object-position: center 58%; }
.product-card:nth-child(5) img { object-position: center 64%; }
.product-photo:hover img { transform: scale(1.025); filter: saturate(1.05); }
.photo-expand { position: absolute; right: 12px; top: 12px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: rgba(255,253,248,.92); border: 1px solid var(--ink); font-size: 1rem; transform: translateY(-54px); transition: transform .25s ease; }
.product-photo:hover .photo-expand, .product-photo:focus-visible .photo-expand { transform: translateY(0); }
.product-card figcaption { min-height: 76px; padding-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; border-top: 1px solid rgba(17,16,15,.22); }
.product-number { color: var(--red); font-family: var(--display); font-size: .78rem; line-height: 1.5; }
.product-card strong, .product-card small { display: block; }
.product-card strong { font-family: var(--display); font-size: 1rem; font-weight: 400; line-height: 1.25; }
.product-card small { margin-top: 5px; color: var(--muted); font-size: .76rem; line-height: 1.4; letter-spacing: .035em; }

.menu-section { border-top: 1px solid rgba(17,16,15,.24); }
.menu-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 80px; }
.menu-intro > p { max-width: 450px; color: var(--muted); font-size: 1.12rem; line-height: 1.6; padding-bottom: 12px; }
.vegan-dot { display: inline-grid; place-items: center; color: var(--white); background: var(--green); width: 22px; height: 22px; border-radius: 50%; font-weight: 700; font-size: .75rem; }
.menu-layout { display: grid; grid-template-columns: 1.03fr .67fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.menu-list { border-top: 3px solid var(--ink); }
.menu-group { padding: 40px 0 46px; border-bottom: 1px solid rgba(17,16,15,.28); }
.menu-group header { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 24px; }
.menu-group header p { color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; order: 2; }
.menu-group h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; }
.menu-item { padding: 17px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-top: 1px dashed rgba(17,16,15,.18); }
.menu-item h4 { margin: 0 0 6px; font-family: var(--display); font-size: 1.08rem; font-weight: 400; }
.menu-item p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.4; }
.vegan-badge { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--green); color: var(--green); font-weight: 700; transform: rotate(-5deg); }
.menu-poster { position: sticky; top: 28px; }
.poster-frame { padding: 10px; background: var(--white); border: 1px solid rgba(17,16,15,.3); box-shadow: 12px 15px 0 rgba(17,16,15,.08); transform: rotate(1deg); }
.poster-frame img { width: 100%; height: auto; }
.poster-button { width: 100%; cursor: zoom-in; }
.poster-link { width: 100%; margin-top: 26px; display: flex; justify-content: space-between; gap: 16px; padding: 0 0 11px; border: 0; border-bottom: 1px solid; background: transparent; color: inherit; font: inherit; font-size: .8rem; letter-spacing: .12em; text-align: left; text-transform: uppercase; cursor: pointer; }

.order-builder { border-top: 1px solid rgba(17,16,15,.24); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.order-heading > p:last-child { max-width: 560px; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }
.order-form { padding: clamp(28px, 4vw, 52px); background: var(--white); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); display: flex; flex-direction: column; gap: 10px; }
.order-form label { margin-top: 9px; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.order-form label span { color: var(--muted); font-weight: 400; }
.order-form input, .order-form select, .order-form textarea { width: 100%; border: 1px solid rgba(17,16,15,.46); border-radius: 0; background: var(--paper); color: var(--ink); padding: 13px 14px; font: 400 1rem/1.4 var(--sans); }
.order-form textarea { resize: vertical; min-height: 94px; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: 3px solid rgba(238,43,31,.22); border-color: var(--red); }
.form-row { display: grid; grid-template-columns: .45fr 1fr; gap: 16px; }
.form-row > div { display: flex; flex-direction: column; gap: 10px; }
.order-form .button { margin-top: 16px; width: 100%; cursor: pointer; }
.form-note { margin: 5px 0 0; color: var(--muted); font-size: .78rem; text-align: center; }

.whatsapp-letter { width: 25px; height: 25px; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: Arial, sans-serif; font-size: .72rem; font-weight: 700; }

.menu-dialog { width: min(94vw, 980px); height: min(94vh, 960px); padding: 0; border: 1px solid var(--ink); background: var(--paper); color: var(--ink); box-shadow: 15px 15px 0 rgba(17,16,15,.5); }
.menu-dialog::backdrop { background: rgba(17,16,15,.78); backdrop-filter: blur(4px); }
.dialog-toolbar { position: sticky; top: 0; z-index: 2; min-height: 62px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: var(--white); font-family: var(--display); }
.dialog-toolbar button { border: 1px solid var(--white); background: transparent; color: inherit; padding: 8px 11px; font: inherit; cursor: pointer; }
.dialog-image-scroll { height: calc(100% - 62px); overflow: auto; padding: 12px; }
.dialog-image-scroll img { width: max(100%, 720px); height: auto; }

.order-band { background: var(--red); color: var(--ink); padding: 80px max(24px, calc((100vw - 1320px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.order-band h2 { margin: 0; font-size: clamp(3.4rem, 7vw, 7rem); }
.order-band .kicker { margin-bottom: 18px; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--ink); box-shadow: 7px 7px 0 var(--ink); }
.button-light:hover { box-shadow: 4px 4px 0 var(--ink); }

footer { width: min(100% - 40px, 1320px); margin: 0 auto; padding: 58px 0 96px; display: grid; grid-template-columns: 1.2fr .7fr .7fr; align-items: center; gap: 40px; }
footer img { width: 310px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: .88rem; letter-spacing: .08em; }
footer > p { margin: 0; text-align: right; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 15; min-height: 54px; padding: 0 20px; display: flex; align-items: center; gap: 10px; color: white; background: #168b4f; border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .78rem; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }

.cookie-notice { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 40; width: min(calc(100% - 48px), 1040px); margin: 0 auto; padding: 22px 24px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; color: var(--white); background: var(--ink); border: 1px solid var(--white); box-shadow: 9px 9px 0 var(--red); }
.cookie-copy p { margin: 0; }
.cookie-copy > p:last-child { max-width: 700px; color: #ded9d1; font: 400 .94rem/1.55 var(--sans); }
.cookie-kicker { margin-bottom: 7px !important; color: var(--white); font-size: .73rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.cookie-actions { display: flex; align-items: center; gap: 18px; }
.cookie-actions a { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.cookie-actions button { min-height: 48px; padding: 0 17px; border: 1px solid var(--white); border-radius: 0; color: var(--ink); background: var(--white); font: 600 .74rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.cookie-actions button:hover, .cookie-actions button:focus-visible { color: var(--white); background: var(--red); }

.privacy-page { min-height: 100svh; }
.privacy-header { width: min(100% - 40px, 1060px); min-height: 116px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(17,16,15,.24); }
.privacy-header img { width: 210px; height: auto; }
.privacy-back { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.privacy-shell { width: min(100% - 40px, 920px); margin: 0 auto; padding: 100px 0 130px; }
.privacy-shell h1 { margin-bottom: 34px; }
.privacy-lead { max-width: 760px; margin-bottom: 72px; color: var(--muted); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.6; }
.privacy-shell section { padding: 36px 0; border-top: 1px solid rgba(17,16,15,.24); }
.privacy-shell section h2 { margin-bottom: 16px; color: var(--ink); font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -.02em; line-height: 1.1; }
.privacy-shell section p { max-width: 780px; margin-bottom: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.privacy-shell section a { color: var(--red-dark); text-decoration: underline; text-underline-offset: 3px; }
.privacy-updated { margin-top: 36px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 620px; }
  .red-disc, .stamp-wrap { width: min(70vw, 520px); }
  .promise { grid-template-columns: 1fr; gap: 16px; }
  .product-card, .product-card-featured { grid-column: span 6; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-poster { position: relative; top: auto; width: min(100%, 560px); margin: 0 auto; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p { text-align: left; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 78px; }
  .site-header { width: min(100% - 28px, 1320px); min-height: 82px; gap: 12px; }
  .brand { width: 135px; }
  nav > a:not(.nav-order) { display: none; }
  .nav-order { padding: 10px 12px; font-size: .68rem; }
  .hero { width: min(100% - 28px, 1320px); min-height: auto; padding: 74px 0 64px; gap: 20px; }
  h1 { font-size: clamp(3.6rem, 18vw, 5.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 24px; }
  .button-primary { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-art { min-height: 440px; }
  .red-disc, .stamp-wrap { width: min(88vw, 405px); }
  .note { font-size: .72rem; }
  .note-one { left: 0; }
  .note-two { right: 0; }
  .note-three { left: 5%; bottom: 4%; }
  .promise { padding: 28px 20px; font-size: .74rem; }
  .section-pad { width: min(100% - 28px, 1320px); padding: 94px 0; }
  .section-label { margin-bottom: 48px; }
  .about-grid, .products-intro, .menu-intro { grid-template-columns: 1fr; gap: 22px; }
  h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .about-copy { font-size: 1.08rem; }
  .products-intro { margin-bottom: 46px; }
  .product-gallery { gap: 30px; }
  .product-card, .product-card-featured { grid-column: 1 / -1; }
  .photo-expand { transform: translateY(0); }
  .menu-intro { margin-bottom: 46px; }
  .menu-group header { align-items: flex-start; flex-direction: column; }
  .menu-group header p { order: 0; margin-bottom: 0; }
  .menu-item { align-items: flex-start; }
  .poster-link { line-height: 1.45; }
  .order-builder { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-band { padding: 64px 20px 84px; flex-direction: column; align-items: stretch; }
  .order-band .button { width: 100%; }
  footer { width: min(100% - 28px, 1320px); padding-bottom: 120px; grid-template-columns: 1fr; }
  footer > p { text-align: left; }
  .floating-whatsapp { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
  .cookie-notice { left: 14px; right: 14px; bottom: 14px; width: auto; padding: 20px; grid-template-columns: 1fr; gap: 18px; box-shadow: 6px 6px 0 var(--red); }
  .cookie-actions { align-items: stretch; flex-direction: column-reverse; gap: 14px; }
  .cookie-actions a { align-self: flex-start; }
  .cookie-actions button { width: 100%; }
  .privacy-header { width: min(100% - 28px, 1060px); min-height: 82px; gap: 20px; }
  .privacy-header img { width: 135px; }
  .privacy-back { font-size: .68rem; }
  .privacy-shell { width: min(100% - 28px, 920px); padding: 72px 0 100px; }
  .privacy-lead { margin-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
