:root {
  --ink: #211914;
  --muted: #68584b;
  --cream: #fff8ed;
  --paper: #fffdf8;
  --coffee: #5a2d1b;
  --espresso: #27130d;
  --gold: #f5bd42;
  --copper: #c86a33;
  --green: #25564c;
  --line: rgba(90, 45, 27, 0.18);
  --shadow: 0 24px 60px rgba(39, 19, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff8ed;
  background: linear-gradient(180deg, rgba(16, 9, 5, 0.72), rgba(16, 9, 5, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(20px, 5vw, 72px) 58px;
  color: #fff8ed;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/cafeteria-la-nueva-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 10, 5, 0.9) 0%, rgba(30, 15, 8, 0.68) 42%, rgba(30, 15, 8, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 10, 5, 0.48) 0%, rgba(20, 10, 5, 0) 36%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  width: 100%;
}

.hero-content {
  max-width: 760px;
}

.delivery-note {
  width: 100%;
  margin-top: 84px;
  border: 1px solid rgba(245, 189, 66, 0.38);
  border-radius: 8px;
  padding: 18px 18px;
  color: #fff8ed;
  background: rgba(20, 10, 5, 0.5);
  box-shadow: 0 16px 34px rgba(20, 10, 5, 0.2);
  backdrop-filter: blur(12px);
}

.delivery-note span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-note {
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.16);
  padding-bottom: 14px;
}

.promo-note span {
  margin-bottom: 4px;
  color: #fff4bd;
  font-size: 1rem;
}

.promo-note p {
  color: rgba(255, 248, 237, 0.88);
}

.delivery-note strong,
.delivery-note p {
  display: block;
  margin: 0;
}

.delivery-note strong {
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}

.delivery-note a {
  color: #fff4bd;
}

.delivery-note p {
  margin-top: 6px;
  color: rgba(255, 248, 237, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

.eyebrow,
.label,
.intro-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shine-title {
  width: min-content;
  min-width: 100%;
  margin: 14px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  background: linear-gradient(100deg, #fff2c2 0%, #f4ae2f 22%, #fff9df 45%, #d87a32 62%, #fff4bd 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(245, 189, 66, 0.28));
  animation: title-shine 5.5s ease-in-out infinite;
}

@keyframes title-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 248, 237, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #251108;
  background: var(--gold);
  box-shadow: 0 18px 32px rgba(245, 189, 66, 0.28);
}

.button.secondary {
  color: #fff8ed;
  border-color: rgba(255, 248, 237, 0.38);
  background: rgba(255, 248, 237, 0.1);
}

.button.ghost {
  color: #fff8ed;
  border-color: rgba(245, 189, 66, 0.45);
  background: rgba(90, 45, 27, 0.28);
}

.button.dark {
  color: var(--espresso);
  border-color: var(--line);
  background: #fff;
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.quick-stats span,
.quick-stats a {
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 8px;
  padding: 10px 14px;
  color: rgba(255, 248, 237, 0.9);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-stats a:hover {
  border-color: rgba(245, 189, 66, 0.7);
  color: #fff4bd;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px clamp(20px, 4vw, 52px);
  background: var(--cream);
}

.intro-item strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background: #fffdf8;
}

.section-heading h2,
.contact-card h2,
.social-card h2 {
  margin: 12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.contact-card p,
.social-card p,
.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.centered {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.hours-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hours-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

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

.hours-row span {
  color: var(--muted);
  font-weight: 700;
}

.hours-row strong {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.hours-row.highlight {
  color: #fff8ed;
  background: var(--green);
}

.hours-row.highlight span {
  color: #f4dfb5;
}

.menu-band {
  background: var(--espresso);
  color: #fff8ed;
}

.menu-band .section-heading p,
.menu-band .menu-card p {
  color: rgba(255, 248, 237, 0.76);
}

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

.menu-card {
  min-height: 230px;
  border: 1px solid rgba(255, 248, 237, 0.14);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.08), rgba(255, 248, 237, 0.03));
}

.menu-number {
  color: var(--gold);
  font-weight: 800;
}

.menu-card h3 {
  margin: 38px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.gallery-section {
  background: #fffdf8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--espresso);
  box-shadow: 0 14px 32px rgba(39, 19, 13, 0.12);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 16px;
  color: #fff8ed;
  background: linear-gradient(180deg, transparent, rgba(20, 10, 5, 0.78));
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  background: var(--cream);
}

.contact-card,
.social-card {
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 46px);
  background: #fffdf8;
  box-shadow: 0 12px 34px rgba(39, 19, 13, 0.08);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 237, 0.88)),
    radial-gradient(circle at 92% 16%, rgba(245, 189, 66, 0.24), transparent 34%);
}

.contact-info {
  max-width: 620px;
}

.contact-actions {
  margin-top: 2px;
}

.mini-map {
  position: relative;
  width: min(100%, 560px);
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(35deg, transparent 0 42%, rgba(56, 112, 100, 0.16) 42% 46%, transparent 46%),
    linear-gradient(145deg, transparent 0 48%, rgba(80, 92, 110, 0.2) 48% 52%, transparent 52%),
    linear-gradient(90deg, transparent 0 34%, rgba(80, 92, 110, 0.16) 34% 38%, transparent 38%),
    #f2eadf;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.map-road {
  position: absolute;
  height: 20px;
  border: 2px solid rgba(116, 136, 148, 0.38);
  border-left: 0;
  border-right: 0;
  background: rgba(255, 255, 255, 0.68);
}

.road-one {
  width: 130%;
  top: 45%;
  left: -18%;
  transform: rotate(-25deg);
}

.road-two {
  width: 100%;
  top: 28%;
  left: 8%;
  transform: rotate(18deg);
}

.road-three {
  width: 80%;
  top: 68%;
  left: 22%;
  transform: rotate(44deg);
}

.map-label {
  position: absolute;
  right: 18px;
  bottom: 42px;
  color: #485768;
  font-size: 0.84rem;
  font-weight: 800;
  transform: rotate(44deg);
}

.map-label.secondary {
  top: 38px;
  right: 70px;
  bottom: auto;
  color: #667384;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 34px;
  height: 34px;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #d93b2f;
  box-shadow: 0 8px 22px rgba(39, 19, 13, 0.24);
  transform: translate(-50%, -70%) rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #8f211a;
}

.map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--espresso);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 18px rgba(39, 19, 13, 0.16);
  font-size: 0.9rem;
  font-weight: 800;
}

.social-card {
  color: #fff8ed;
  background: linear-gradient(145deg, #5a2d1b, #9d4429 52%, #25564c);
}

.social-card p {
  color: rgba(255, 248, 237, 0.78);
}

.social-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.social-link {
  display: inline-block;
  width: fit-content;
  border-bottom: 2px solid var(--gold);
  color: #fff4bd;
  font-size: 1.2rem;
  font-weight: 800;
}

.social-link:hover {
  color: #fff8ed;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 248, 237, 0.72);
  background: #140a05;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .delivery-note {
    max-width: 520px;
    margin-top: 10px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(20, 10, 5, 0.88), rgba(20, 10, 5, 0.48)),
      linear-gradient(0deg, rgba(20, 10, 5, 0.58), rgba(20, 10, 5, 0.08));
  }

  .intro-band,
  .split,
  .menu-grid,
  .gallery-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

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

  .hours-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 10px;
  }

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

  .shine-title {
    min-width: 0;
    width: auto;
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .button {
    width: 100%;
  }

  .quick-stats span,
  .quick-stats a {
    width: 100%;
  }
}
