:root {
  --ink: #1f120b;
  --ink-soft: #5f4638;
  --paper: #fffaf3;
  --paper-alt: #f7eadb;
  --night: #100804;
  --night-soft: #201009;
  --cream: #fff7ed;
  --cream-muted: #d8c0aa;
  --fire: #c2410c;
  --fire-dark: #9a3412;
  --amber: #fbbf24;
  --line-dark: rgba(255, 247, 237, 0.16);
  --line-light: rgba(82, 45, 24, 0.18);
  --shadow: 0 16px 42px rgba(31, 18, 11, 0.14);
  --radius-sm: 0.6rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container: 74rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.65rem, 12vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.55rem;
  line-height: 1.15;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
  border-radius: 0.3rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.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;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(16, 8, 4, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--container));
  min-height: 4.6rem;
  margin-inline: auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  text-decoration: none;
}
.brand-mark { width: 1.75rem; height: 2.2rem; color: var(--amber); flex: 0 0 auto; }
.brand span { display: flex; flex-direction: column; line-height: 1.08; }
.brand strong { font-family: Georgia, serif; font-size: 1.05rem; }
.brand small { margin-top: 0.2rem; color: var(--cream-muted); font-size: 0.65rem; letter-spacing: 0.05em; }

.menu-toggle {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
  gap: 0.3rem;
}
.menu-toggle > span[aria-hidden] {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(2) { transform: translateY(0.43rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span[aria-hidden]:nth-of-type(4) { transform: translateY(-0.43rem) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: -1rem;
  right: -1rem;
  display: none;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--night-soft);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: grid; }
.site-nav a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.site-nav a:hover { background: rgba(255,255,255,0.08); }
.site-nav .nav-call { justify-content: center; margin-top: 0.35rem; background: var(--fire); color: white; }

.hero {
  display: grid;
  min-height: calc(100svh - 4.6rem);
  background: var(--night);
}
.hero-copy {
  order: 2;
  padding: 2.5rem max(1rem, calc((100vw - var(--container)) / 2)) 3rem;
}
.hero-media {
  order: 1;
  position: relative;
  background: var(--night-soft);
}
.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(16, 8, 4, 0.78));
}
.photo-caption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.8rem;
  left: 1rem;
  margin: 0;
  color: white;
  font-size: 0.78rem;
  text-align: right;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  color: var(--cream-muted);
  font-size: 1.05rem;
}

.hero-actions, .contact-actions {
  display: grid;
  gap: 0.75rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--fire); color: white; }
.button-primary:hover { background: var(--fire-dark); }
.button-secondary { border-color: rgba(255, 247, 237, 0.42); color: var(--cream); }
.button-secondary:hover { border-color: var(--amber); }
.section-light .button-secondary { border-color: var(--ink); color: var(--ink); }

.quick-facts {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}
.quick-facts li { display: grid; gap: 0.12rem; }
.quick-facts strong { color: var(--cream); }
.quick-facts span { color: var(--cream-muted); font-size: 0.86rem; }

.section { padding: 4.5rem 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-light .eyebrow { color: var(--fire-dark); }
.section-intro { max-width: 48rem; margin-bottom: 2.25rem; }
.section-intro > p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 1.03rem; }

.food-grid { display: grid; gap: 1.25rem; }
.food-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(31, 18, 11, 0.08);
}
.food-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.food-card-body { padding: 1.25rem; }
.food-card-body h3 { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.4rem 1rem; }
.product-price { color: var(--fire-dark); font-size: 0.9em; white-space: nowrap; }
.food-card-body p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.card-number { margin-bottom: 0.35rem; color: var(--fire-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.center-action { display: flex; justify-content: center; margin-top: 2rem; }

.area-grid { display: grid; gap: 1rem; }
.area-card { padding: 1.25rem; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(31, 18, 11, 0.06); }
.area-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.area-card p:last-child { margin: 0; color: var(--ink-soft); }

.story { background: var(--night-soft); }
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
.answer-block { color: var(--cream-muted); font-size: 1.05rem; }
.steps { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 2.5rem 1fr; align-items: start; gap: 0.85rem; }
.steps li > span { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--fire); color: white; font-weight: 900; }
.steps strong { color: var(--cream); }
.steps p { margin: 0.15rem 0 0; color: var(--cream-muted); }
.story-image { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.story-image img { aspect-ratio: 4 / 3; object-fit: cover; }

.gallery-grid { display: grid; gap: 0.75rem; }
.gallery-grid picture { overflow: hidden; border-radius: var(--radius); background: var(--paper-alt); }
.gallery-grid img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform 240ms ease; }
.gallery-grid picture:hover img { transform: scale(1.025); }

.faq { background: var(--paper-alt); color: var(--ink); }
.faq .eyebrow { color: var(--fire-dark); }
.faq-grid { display: grid; gap: 2rem; }
.faq-grid > div:first-child > p:last-child { color: var(--ink-soft); }
.faq-list { display: grid; gap: 0.75rem; }
.faq-list details { background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--radius-sm); }
.faq-list summary { min-height: 3.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 1rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--fire-dark); font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 1rem 1rem; color: var(--ink-soft); }
.faq-list a { color: var(--fire-dark); font-weight: 800; }

.contact { background: var(--night); }
.contact-grid { display: grid; gap: 2rem; align-items: start; }
.contact-grid > div > p:last-of-type { color: var(--cream-muted); }
.contact-actions { margin-top: 1.5rem; }
.contact-card { display: grid; gap: 1rem; padding: 1.25rem; background: var(--night-soft); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.contact-card div { display: grid; gap: 0.2rem; overflow-wrap: anywhere; }
.contact-card span { color: var(--amber); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card a:not(.map-link) { color: var(--cream); font-weight: 800; }
.map-link { min-height: 3rem; display: flex; align-items: center; justify-content: center; padding: 0.7rem 1rem; border: 1px solid var(--amber); border-radius: var(--radius-sm); color: var(--cream); text-align: center; text-decoration: none; font-weight: 800; }

.site-footer { padding: 3.5rem 0 2rem; background: #090402; border-top: 1px solid var(--line-dark); color: var(--cream-muted); }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-grid strong { color: var(--cream); }
.footer-grid p, .footer-grid address { margin: 0.35rem 0 0; }
.footer-grid a { color: var(--cream); }
.footer-bottom { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); font-size: 0.84rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--cream); }

@media (min-width: 560px) {
  .hero-actions, .contact-actions { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .quick-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 720px) {
  .food-grid, .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 820px) {
  .story-grid, .faq-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 6vw, 5rem); }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .site-nav a { min-height: 2.75rem; padding-inline: 0.75rem; font-size: 0.9rem; }
  .site-nav .nav-call { margin: 0 0 0 0.35rem; padding-inline: 1.2rem; }

  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-copy { order: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem) max(2rem, calc((100vw - var(--container)) / 2)); }
  .hero-media { order: 2; min-height: 100%; }
  .hero-media picture, .hero-media img { height: 100%; }
  .hero-media img { aspect-ratio: auto; }
  .section { padding: 6.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Pages informatives */
.legal-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}

.legal-header {
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  background: var(--night-soft);
}

.legal-header .brand {
  width: min(100%, var(--container));
  margin-inline: auto;
  color: #fff;
}

.legal-shell {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
  padding-block: 2rem 5rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--fire-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.legal-content {
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h1 {
  margin-bottom: 0.4rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 5vw, 1.6rem);
}

.legal-content p,
.legal-content address {
  max-width: 68ch;
}

.legal-content address {
  font-style: normal;
}

.error-page {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100vh;
}

.error-page h1 {
  margin-top: 0;
}
