:root {
  --ink: #17120f;
  --muted: #6d625b;
  --paper: #f7f2ea;
  --logo-bg: #f8f4eb;
  --surface: #fffdf8;
  --line: #e6d9cb;
  --coal: #120f0d;
  --wine: #76281f;
  --green: #2e5d4e;
  --gold: #b8873d;
  --gold-soft: #ead7b7;
  --sage: #dce5dc;
  --shadow: 0 22px 60px rgba(23, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 68px);
  background: var(--logo-bg);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 132px;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  color: var(--wine);
}

.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--coal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.96), rgba(18, 15, 13, 0.7) 48%, rgba(18, 15, 13, 0.18)),
    linear-gradient(0deg, rgba(18, 15, 13, 0.98), transparent 54%),
    url("assets/hero-burritos.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(960px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 76px) clamp(42px, 9vh, 86px);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.8vw, 104px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.42;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: white;
  box-shadow: 0 16px 32px rgba(184, 135, 61, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(234, 215, 183, 0.42);
}

.button.secondary.dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button:hover {
  transform: translateY(-1px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(234, 215, 183, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section,
.band,
.quote {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 16px;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.48;
}

.section-heading p:not(.eyebrow),
.intro-copy p,
.quote p,
.planner-grid span,
.menu-card p,
.format-list p,
.format-list li {
  color: var(--muted);
  line-height: 1.55;
}

.band {
  background: var(--coal);
  color: white;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(118, 40, 31, 0.18), transparent 46%),
    radial-gradient(circle at 92% 14%, rgba(184, 135, 61, 0.16), transparent 26%);
  pointer-events: none;
}

.band > * {
  position: relative;
}

.compact {
  margin-bottom: 26px;
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.planner-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(234, 215, 183, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.planner-grid strong,
.planner-grid span {
  display: block;
}

.planner-grid strong {
  margin-bottom: 10px;
  color: white;
  font-size: 18px;
}

.planner-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 108px;
}

.format-list {
  display: grid;
  gap: 16px;
}

.format-list article {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(23, 18, 15, 0.07);
}

.format-list ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 93, 78, 0.13);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.menu-section {
  background: #efe7dc;
}

.gallery-section {
  background: var(--surface);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-gallery figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--coal);
  box-shadow: 0 14px 32px rgba(23, 18, 15, 0.08);
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border: 1px solid rgba(234, 215, 183, 0.38);
  border-radius: 999px;
  background: rgba(18, 15, 13, 0.72);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.menu-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(23, 18, 15, 0.08);
}

.menu-card.feature {
  border-color: rgba(184, 135, 61, 0.48);
}

.menu-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #2a211b;
}

.menu-card div {
  padding: 22px;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 560px);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: var(--sage);
}

.quote-panel {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

pre {
  min-height: 330px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  background: #191410;
  color: #fff4e8;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.contact-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.contact-numbers p {
  width: 100%;
  margin: 0;
}

.contact-numbers a {
  color: inherit;
  font-weight: 800;
}

.mobile-whatsapp {
  display: none;
}

.image-fallback {
  position: relative;
  background: #e9e1d6;
}

.photo-gallery figure.image-fallback,
.menu-card.image-fallback {
  min-height: 220px;
}

.image-fallback::before {
  content: "Imagen no disponible";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.menu-card.image-fallback > div {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: var(--surface);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 72px);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .planner-grid,
  .photo-gallery,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .two-column,
  .quote {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(18, 15, 13, 0.96), rgba(18, 15, 13, 0.42)),
      url("assets/hero-burritos.jpg") center / cover no-repeat;
  }

  .hero-actions,
  .contact-actions,
  .planner-grid,
  .photo-gallery,
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 88px;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  }
}

@media print {
  .site-header,
  .hero-actions,
  .contact-actions,
  .button,
  .mobile-whatsapp {
    display: none;
  }

  body {
    background: white;
  }

  .hero,
  .band,
  .quote,
  .gallery-section,
  .menu-section {
    background: white;
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding: 36px;
  }

  .hero-media,
  .band::before {
    display: none;
  }

  .hero-content {
    margin: 0;
    color: var(--ink);
  }

  .hero p,
  .planner-grid span {
    color: var(--muted);
  }

  .menu-card,
  .format-list article,
  .quote-panel {
    box-shadow: none;
  }
}
