:root {
  --noir: #161210;
  --espresso: #2c221c;
  --cream: #f6f0e8;
  --butter: #f0d9a8;
  --ember: #c45a2c;
  --ember-glow: #e8783e;
  --gold: #c9a227;
  --text-muted: #6a615a;
  --text-soft: #5c534c;
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 28px 80px rgba(22, 18, 16, 0.35);
  --shadow-card: 0 16px 48px rgba(22, 18, 16, 0.18);
  --header-height: 72px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--espresso);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-height);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header--transparent:not(.header--scrolled) {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header--transparent.header--scrolled,
.header--scrolled {
  background: rgba(246, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 34, 28, 0.08);
  box-shadow: 0 4px 24px rgba(22, 18, 16, 0.08);
}

.header--transparent:not(.header--scrolled) .brand,
.header--transparent:not(.header--scrolled) .nav__link {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.header--transparent:not(.header--scrolled) .brand em { color: var(--butter); }

.header--transparent:not(.header--scrolled) .nav__toggle span { background: #fff; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--espresso);
  flex-shrink: 0;
}

.brand em { font-style: normal; color: var(--ember); }

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

.nav__link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--espresso);
  transition: color 0.2s ease;
}

.nav__link:hover { color: var(--ember); }

.nav__link--cta {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ember-glow), var(--ember));
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(196, 90, 44, 0.35);
}

.nav__link--cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 18, 16, 0.55);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav__overlay.active { opacity: 1; visibility: visible; }

.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream);
  z-index: 190;
  padding: calc(var(--header-height) + 1.5rem) 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: -8px 0 40px rgba(22, 18, 16, 0.15);
}

.nav__drawer.active { transform: translateX(0); }

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__drawer-links a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(44, 34, 28, 0.08);
}

.nav__drawer-links .nav__link--cta {
  margin-top: 1rem;
  text-align: center;
  border: none;
}

@media (min-width: 860px) {
  .nav__desktop { display: flex; }
  .nav__toggle { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn--fire {
  background: linear-gradient(135deg, var(--ember-glow), var(--ember));
  color: #fff;
  box-shadow: 0 12px 40px rgba(196, 90, 44, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); }

.btn--dark {
  background: var(--noir);
  color: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--ember);
  border: 1px solid rgba(196, 90, 44, 0.35);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: clip;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: #2a1810;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 9, 8, 0.94) 0%, rgba(12, 9, 8, 0.72) 38%, rgba(12, 9, 8, 0.35) 68%, rgba(12, 9, 8, 0.15) 100%),
    linear-gradient(0deg, rgba(12, 9, 8, 0.97) 0%, rgba(12, 9, 8, 0.55) 42%, rgba(12, 9, 8, 0.25) 100%);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.72);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__img { animation: ken 28s ease-in-out infinite alternate; }
  @keyframes ken { from { transform: scale(1); } to { transform: scale(1.07); } }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 3rem) 0 3.5rem;
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.hero__panel {
  max-width: 640px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: rgba(12, 9, 8, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--butter);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero__kicker span {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember-glow), transparent);
  border-radius: 99px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  margin-bottom: 1rem;
  max-width: 14ch;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.75);
}

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.trust div strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.trust div span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* Marquee */
.marquee {
  background: var(--noir);
  color: #e8dfd4;
  padding: 0.65rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(201, 162, 39, 0.25);
}

.marquee__inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: scroll 38s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__inner { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 1rem; padding: 0.5rem; }
  .hero__img { animation: none !important; }
}

@keyframes scroll { to { transform: translateX(-50%); } }

/* Sections */
section { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-head { margin-bottom: 2.25rem; }

.section-head h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }

.section-head p {
  color: var(--text-soft);
  max-width: 52ch;
  margin-top: 0.75rem;
  font-size: 1.08rem;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

/* Products */
.grid-prod {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.prod {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.prod:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(22, 18, 16, 0.22);
}

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

.prod__body { padding: 1.25rem 1.35rem 1.5rem; }

.prod__body h3 { margin-bottom: 0.35rem; font-size: 1.35rem; }

.prod__body p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(22, 18, 16, 0.82);
  color: var(--butter);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.prod__hint {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
}

/* Pillars */
.band { background: #f0e8df; }

.cols-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillar {
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  border: 1px solid rgba(44, 34, 28, 0.06);
  box-shadow: 0 16px 50px rgba(22, 18, 16, 0.07);
}

.pillar .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pillar h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }

.pillar p { color: var(--text-muted); font-size: 0.95rem; }

/* Split / historia */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
}

.split__visual {
  border-radius: calc(var(--radius-lg) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.split__visual img { width: 100%; aspect-ratio: 5/6; object-fit: cover; }

.split__visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(12, 9, 8, 0.85));
  color: #fff;
  font-size: 0.9rem;
}

.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-bottom: 1rem;
}

/* Menu */
.menu-board {
  background: var(--noir);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  color: #e8dfd4;
}

.menu-board h3 {
  color: var(--ember-glow);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font);
  font-weight: 700;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  align-items: baseline;
}

.menu-item:last-child { border-bottom: none; }

.menu-item strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.menu-item span { color: #b5aba2; font-size: 0.92rem; }

.menu-item em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ember-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(232, 223, 212, 0.65);
  font-style: italic;
}

/* Locations */
.locations {
  background: linear-gradient(180deg, #ebe3d9 0%, var(--cream) 100%);
}

.loc-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.loc {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(44, 34, 28, 0.08);
  box-shadow: 0 12px 36px rgba(22, 18, 16, 0.08);
  display: grid;
  grid-template-rows: 140px auto;
}

.loc__ph {
  height: 140px;
  overflow: hidden;
  background: #2a1810;
}

.loc__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.loc__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.loc h3 { font-size: 1.3rem; }

.loc p { color: var(--text-muted); flex: 1; font-size: 0.98rem; }

.loc__meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
}

.loc .btn--fire { width: 100%; text-align: center; }

/* Contact */
.contact-wrap {
  background: var(--noir);
  color: #f5ebe3;
  border-radius: calc(var(--radius-lg) + 10px);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .contact-wrap { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}

.contact-wrap h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.contact-wrap .fine {
  color: rgba(245, 235, 227, 0.7);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: rgba(245, 235, 227, 0.75);
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.9rem;
  font: inherit;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

textarea { min-height: 100px; resize: vertical; }

.contact-aside {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-aside h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-aside p {
  margin-bottom: 1rem;
  color: rgba(245, 235, 227, 0.75);
  font-size: 0.92rem;
}

.inline-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.inline-form input { flex: 1; margin: 0; min-width: 160px; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: var(--butter);
  font-weight: 700;
  font-size: 0.92rem;
}

.social-links a:hover { color: var(--ember-glow); }

/* Social strip */
.social-strip {
  background: var(--noir);
  color: #d8cfc6;
  text-align: center;
  padding: 3rem 1.25rem;
}

.social-strip h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.social-strip p {
  margin: 0 auto 1.75rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.72);
}

.social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-btns a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social-btns a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
}

/* Footer */
.footer {
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--espresso);
  font-weight: 700;
  margin: 0 0.4rem;
}

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
