:root {
  --bg: #f1ebde;
  --bg-soft: #f7f1e6;
  --paper: #fbf6ea;
  --paper-deep: #efe6d4;
  --ink: #101010;
  --muted: #5d5b55;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 18px 40px rgba(16, 16, 16, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wa: #24d366;
  --wa-soft: rgba(36, 211, 102, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next Rounded", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(180deg, #faf7f0 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 246, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-title,
.hero-title,
h1,
h2,
h3,
.menu-sheet-title,
.menu-sheet-heading,
.contact-phone,
.location-phone {
  font-family: "Chalkboard SE", "Marker Felt", "Avenir Next Rounded", "Trebuchet MS", sans-serif;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  padding: 28px 0 32px;
}

.section {
  padding: 22px 0 44px;
}

.hero-grid,
.content-grid,
.location-grid,
.proof-grid,
.menu-grid,
.ads-grid,
.menu-summary-grid,
.visual-proof-grid {
  display: grid;
  gap: 20px;
}

.hero-grid,
.location-grid,
.ads-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.home-hero-grid {
  align-items: start;
}

.content-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-grid,
.menu-summary-grid,
.visual-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.paper-card,
.menu-sheet,
.proof-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.paper-card {
  padding: 34px;
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 246, 234, 0.96));
}

.home-hero-copy {
  min-height: 100%;
}

.home-hero-copy h1,
.ads-grid .hero-copy h1 {
  max-width: 9.5ch;
}

.home-hero-copy h1 {
  font-size: clamp(2.8rem, 5.6vw, 4.5rem);
}

.ads-grid .hero-copy h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.35rem);
}

.eyebrow,
.menu-chip,
.status-pill,
.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.menu-chip {
  background: rgba(16, 16, 16, 0.06);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h3 {
  font-size: 1.5rem;
}

.lead,
.section-head p,
.paper-card p,
.proof-card p,
.menu-note,
.location-note,
.contact-meta {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin: 18px 0 0;
  font-size: 1.03rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.button-ghost,
.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button {
  color: #fff;
  background: #111111;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.button-whatsapp {
  background: var(--wa-soft);
  color: #0f6f3c;
  border: 1px solid rgba(36, 211, 102, 0.2);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.quick-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.quick-card strong,
.quick-card span {
  display: block;
}

.quick-card strong {
  margin-bottom: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-card span {
  color: var(--muted);
  line-height: 1.5;
}

.quick-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.home-hero-stack {
  grid-template-rows: auto auto;
}

.hero-focus-card {
  padding: 24px;
}

.hero-focus-head p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 14px;
  margin-top: 18px;
}

.focus-item {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(16, 16, 16, 0.08);
}

.focus-item-main {
  grid-row: span 2;
}

.focus-item h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.focus-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.media-slot,
.photo-slot {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  border: 1.5px dashed rgba(16, 16, 16, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(239, 230, 212, 0.92));
  color: rgba(16, 16, 16, 0.56);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.media-slot {
  min-height: 170px;
  padding: 20px;
}

.focus-item-main .media-slot {
  min-height: 360px;
}

.media-slot img,
.photo-slot img,
.proof-inline-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slot-savory {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(239, 230, 212, 0.96)),
    radial-gradient(circle at top left, rgba(16, 16, 16, 0.06), transparent 30%);
}

.media-slot-sweet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(244, 234, 221, 0.96)),
    radial-gradient(circle at top right, rgba(16, 16, 16, 0.05), transparent 26%);
}

.media-slot-drink {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(228, 238, 223, 0.96)),
    radial-gradient(circle at bottom left, rgba(16, 16, 16, 0.05), transparent 28%);
}

.dark-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #171717, #0f0f0f);
  color: #fff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.14);
}

.dark-card .contact-kicker {
  background: rgba(255, 255, 255, 0.08);
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-badge {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.contact-phone {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
}

.contact-categories {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.contact-compact-copy {
  margin: 16px 0 0;
  max-width: 18rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.contact-cat {
  width: 118px;
  height: 176px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.status-pill {
  margin-top: 18px;
  background: rgba(36, 211, 102, 0.12);
  color: #71eb9d;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-action {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.contact-action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-sheet {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(251, 246, 234, 0.96));
}

.menu-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 38%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
}

.menu-slide {
  scroll-snap-align: start;
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.menu-slide-frame {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.72);
  cursor: zoom-in;
}

.menu-slide-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-slide h3 {
  margin-top: 14px;
  font-size: 1.2rem;
}

.menu-slide p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.menu-slide-label {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-lightbox[hidden] {
  display: none;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.menu-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.82);
}

.menu-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.menu-lightbox-image {
  display: block;
  max-width: min(92vw, 820px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  background: #fff;
}

.menu-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.menu-carousel-actions {
  margin-top: 16px;
}

.section-head-menu h2 {
  font-size: clamp(1.9rem, 4.1vw, 3.2rem);
  letter-spacing: 0.04em;
}

.section-head-menu p {
  max-width: 32rem;
}

.menu-summary-card {
  min-height: 100%;
}

.menu-sheet-hero {
  position: relative;
  overflow: hidden;
}

.menu-sheet-hero::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px dashed rgba(16, 16, 16, 0.08);
}

.menu-sheet-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-sheet-heading {
  margin-top: 10px;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-sheet-subtitle {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.menu-table-head,
.menu-table-row,
.single-row {
  display: grid;
  align-items: start;
  gap: 12px;
}

.menu-table-head {
  grid-template-columns: minmax(0, 1fr) 86px 86px;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-table-row {
  grid-template-columns: minmax(0, 1fr) 86px 86px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(16, 16, 16, 0.1);
}

.single-row {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(16, 16, 16, 0.1);
}

.single-row:last-child,
.menu-table-row:last-child {
  border-bottom: 0;
}

.menu-name {
  font-weight: 800;
}

.menu-subtext {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.price {
  text-align: right;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 40rem;
  margin: 0;
}

.proof-card {
  padding: 26px;
}

.proof-card-dark {
  background: linear-gradient(180deg, #171717, #0f0f0f);
  color: #fff;
}

.proof-card-dark p,
.proof-card-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
}

.proof-card-dark .bullet-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-soft-band {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(255, 255, 255, 0));
}

.visual-proof-card h3 {
  margin-top: 16px;
  font-size: 1.3rem;
}

.visual-proof-card p {
  margin: 10px 0 0;
}

.photo-slot {
  min-height: 260px;
  padding: 24px;
}

.proof-inline-image {
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.photo-slot-salado {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(239, 230, 212, 0.94)),
    radial-gradient(circle at center, rgba(16, 16, 16, 0.06), transparent 38%);
}

.photo-slot-dulce {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(244, 234, 221, 0.94)),
    radial-gradient(circle at center, rgba(16, 16, 16, 0.05), transparent 38%);
}

.photo-slot-bebida {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(228, 238, 223, 0.94)),
    radial-gradient(circle at center, rgba(16, 16, 16, 0.05), transparent 38%);
}

.location-card {
  padding: 28px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.detail-row {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-value {
  color: var(--muted);
  line-height: 1.6;
}

.detail-link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(16, 16, 16, 0.2);
}

.location-phone {
  margin-top: 16px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.location-note {
  margin-top: 12px;
}

.dark-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.28);
}

.cta-panel {
  padding: 30px 34px;
}

.cta-panel h2 {
  margin-top: 16px;
}

.footer {
  padding: 8px 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .location-grid,
  .content-grid,
  .ads-grid,
  .proof-grid,
  .menu-grid,
  .quick-grid,
  .menu-summary-grid,
  .visual-proof-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .menu-carousel {
    grid-auto-columns: minmax(300px, 62%);
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .focus-item-main {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .paper-card,
  .menu-sheet,
  .dark-card,
  .proof-card,
  .location-card {
    padding: 24px;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .menu-table-head,
  .menu-table-row {
    grid-template-columns: minmax(0, 1fr) 74px 74px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .home-hero-copy h1,
  .ads-grid .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .media-slot {
    min-height: 150px;
  }

  .focus-item-main .media-slot,
  .photo-slot {
    min-height: 220px;
  }

  .menu-carousel {
    grid-auto-columns: minmax(260px, 84%);
  }
}
