:root {
  --rojo-profundo: #4e120d;
  --rojo: #7b2118;
  --rojo-vivo: #a7351f;
  --verde: #233a21;
  --verde-suave: #35582e;
  --crema: #fff3dc;
  --crema-claro: #fffaf0;
  --dorado-suave: #efd08d;
  --cafe: #2f1b11;
  --blanco: #ffffff;
  --sombra: 0 24px 70px rgba(47, 27, 17, .18);
  --sombra-suave: 0 14px 36px rgba(47, 27, 17, .12);
  --radio-grande: 34px;
  --radio-medio: 22px;
  --ancho: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--cafe);
  background:
    radial-gradient(circle at top left, rgba(167, 53, 31, .20), transparent 32rem),
    radial-gradient(circle at top right, rgba(35, 58, 33, .16), transparent 28rem),
    linear-gradient(180deg, #fff7e8 0%, #ffefd0 48%, #fffaf0 100%);
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.section {
  width: min(100% - 36px, var(--ancho));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 18px;
  background: rgba(255, 243, 220, .92);
  border-bottom: 1px solid rgba(78, 18, 13, .12);
  backdrop-filter: blur(16px);
}
.navbar {
  width: min(100%, var(--ancho));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--crema-claro);
  background: linear-gradient(135deg, var(--rojo), var(--verde));
  box-shadow: 0 12px 28px rgba(78, 18, 13, .25);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(47, 27, 17, .76);
  font-size: .95rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(123, 33, 24, .10);
  color: var(--rojo);
  transform: translateY(-1px);
  outline: none;
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--rojo);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--crema-claro);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(48px, 8vw, 96px) 0 clamp(42px, 7vw, 78px);
}
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rojo);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.eyebrow-light { color: var(--dorado-suave); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  color: var(--rojo-profundo);
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: .84;
  letter-spacing: -.08em;
  text-shadow: 0 10px 0 rgba(239, 208, 141, .62);
}
h2 {
  margin-bottom: 16px;
  color: var(--rojo-profundo);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h3 {
  margin-bottom: 8px;
  color: var(--rojo-profundo);
  font-size: 1.15rem;
}
p {
  color: rgba(47, 27, 17, .78);
  line-height: 1.68;
}
.hero-description {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 27, 17, .18);
  outline: none;
}
.button-primary {
  color: var(--crema-claro);
  background: linear-gradient(135deg, var(--rojo), var(--rojo-vivo));
}
.button-secondary {
  color: var(--rojo);
  background: rgba(255, 255, 255, .75);
  border-color: rgba(123, 33, 24, .15);
}
.quick-info {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 210px));
  gap: 12px;
}
.quick-info article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(123, 33, 24, .12);
  box-shadow: var(--sombra-suave);
}
.quick-info span {
  display: block;
  margin-bottom: 6px;
  color: rgba(47, 27, 17, .62);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.quick-info strong {
  color: var(--rojo-profundo);
  font-size: 1.05rem;
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(123, 33, 24, .22), rgba(35, 58, 33, .18));
  transform: rotate(-3deg);
}
.image-frame {
  padding: 12px;
  border-radius: var(--radio-grande);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(123, 33, 24, .13);
  box-shadow: var(--sombra);
}
.image-frame img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: calc(var(--radio-grande) - 12px);
  background: var(--crema-claro);
}
.image-frame-featured img {
  max-height: 640px;
}

.summary-band {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--rojo-profundo), var(--verde));
  color: var(--crema-claro);
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.summary-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}
.summary-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--rojo-profundo);
  background: var(--dorado-suave);
  font-weight: 900;
}
.summary-card h2 {
  color: var(--crema-claro);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  letter-spacing: -.04em;
}
.summary-card p,
.delivery p,
.site-footer p { color: rgba(255, 250, 240, .82); }

.about {
  display: grid;
  grid-template-columns: minmax(290px, .9fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 64px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) 0;
}
.about-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
}
.info-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.info-list article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(123, 33, 24, .12);
  box-shadow: var(--sombra-suave);
}
.info-list p { margin-bottom: 0; }

.delivery {
  padding: 66px 0;
  background: linear-gradient(135deg, var(--verde), var(--rojo-profundo));
}
.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(210px, .55fr) minmax(210px, .55fr);
  gap: 18px;
  align-items: stretch;
}
.delivery h2 { color: var(--crema-claro); }
.delivery-copy,
.delivery-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
}
.delivery-card {
  display: grid;
  align-content: center;
  gap: 12px;
  text-align: center;
}
.delivery-card span {
  color: rgba(255, 250, 240, .72);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
}
.delivery-card a,
.delivery-card strong {
  color: var(--dorado-suave);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 900;
}

.gallery-section {
  padding: clamp(70px, 9vw, 112px) 0;
  background: linear-gradient(180deg, #3b2113 0%, #51160f 100%);
}
.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}
.section-heading h2 { color: var(--crema-claro); }
.section-heading p { color: rgba(255, 250, 240, .78); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
}
.gallery-item-wide { grid-column: span 2; }
.gallery-button {
  width: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 250, 240, .95);
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-button img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
}
.gallery-item figcaption {
  padding: 12px 4px 2px;
  color: rgba(255, 250, 240, .84);
  font-size: .95rem;
  font-weight: 800;
}

.contact-section {
  padding: clamp(70px, 9vw, 112px) 0;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .7fr);
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radio-grande);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(123, 33, 24, .12);
  box-shadow: var(--sombra);
}
.contact-panel p { font-size: 1.08rem; }
.contact-panel a {
  color: var(--rojo);
  font-weight: 900;
}
.social-box {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(123, 33, 24, .10), rgba(35, 58, 33, .10));
  border: 1px solid rgba(123, 33, 24, .12);
}
.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-pills span {
  display: inline-flex;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--crema-claro);
  background: var(--rojo);
  font-weight: 900;
}
.site-footer {
  padding: 30px 18px 86px;
  text-align: center;
  background: var(--rojo-profundo);
}
.site-footer p {
  margin: 6px 0;
}
.site-footer p:first-child {
  color: var(--crema-claro);
  font-size: 1.35rem;
  font-weight: 900;
}
.floating-phone {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--crema-claro);
  background: linear-gradient(135deg, var(--rojo), var(--verde));
  box-shadow: 0 18px 38px rgba(47, 27, 17, .28);
  font-weight: 900;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 10, 5, .86);
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-image {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: var(--crema-claro);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .35);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--rojo-profundo);
  background: var(--crema-claro);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav-menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 78px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 250, 240, .98);
    border: 1px solid rgba(123, 33, 24, .14);
    box-shadow: var(--sombra);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }
  .summary-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item-wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { width: min(100% - 28px, var(--ancho)); }
  .site-header { padding: 10px 14px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-text { font-size: 1.05rem; }
  h1 { font-size: clamp(3.3rem, 20vw, 5rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .hero { min-height: auto; padding-top: 42px; }
  .quick-info { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .summary-card, .delivery-copy, .delivery-card { padding: 24px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-button { min-height: 220px; }
  .floating-phone { left: 16px; right: 16px; }
  .site-footer { padding-bottom: 94px; }
}
