/* El Pollón — Dark Mode Premium */

:root {
  --red: #D62828;
  --red-deep: #B91C1C;
  --red-glow: rgba(214, 40, 40, 0.45);
  --gold: #F77F00;
  --gold-soft: #FCBF49;
  --gold-muted: rgba(252, 191, 73, 0.55);
  --white: #FFFFFF;
  --white-soft: rgba(255, 255, 255, 0.88);
  --white-muted: rgba(255, 255, 255, 0.55);
  --black: #0A0A0A;
  --black-card: #141414;
  --black-elevated: #1A1A1A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white-soft);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding: .75rem 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(252, 191, 73, 0.12);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-muted);
  background: rgba(255, 255, 255, 0.04);
}

.site-header__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-header__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.site-header__city {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: .15rem;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: .35rem;
}

@media (min-width: 960px) {
  .site-header__nav { display: flex; }
}

.site-header__link {
  padding: .45rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: color .25s;
  font-family: inherit;
  letter-spacing: .02em;
}

.site-header__link:hover {
  color: var(--white);
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: .75rem;
}

@media (min-width: 960px) {
  .site-header__actions { display: flex; }
}

.site-header__outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.2rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold-soft) !important;
  text-decoration: none;
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  transition: background .25s, border-color .25s;
}

.site-header__outline:hover {
  background: rgba(252, 191, 73, 0.08);
  border-color: var(--gold-soft);
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.35rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 6px 24px var(--red-glow);
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}

.site-header__cta:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--red-glow);
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gold-muted);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.site-header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 960px) {
  .site-header__burger { display: none; }
}

.mobile-menu {
  max-width: 1240px;
  margin: 0 auto;
  padding: .5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

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

.mobile-menu__cta {
  display: block;
  padding: .85rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--white) !important;
  text-decoration: none;
  background: var(--red);
  border-radius: 10px;
}

.mobile-menu__link {
  display: block;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--white-soft);
  text-decoration: none;
  background: var(--black-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 2rem;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero__glow--left {
  width: 420px;
  height: 420px;
  background: rgba(214, 40, 40, 0.12);
  top: 10%;
  left: -8%;
}

.hero__glow--right {
  width: 500px;
  height: 500px;
  background: rgba(185, 28, 28, 0.18);
  top: 5%;
  right: -10%;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 7rem 1.5rem 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero__copy {
  max-width: 540px;
  animation: fadeUp .9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.5rem;
}

.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.hero__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  line-height: 1.06;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero__title-accent {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--red);
  margin-top: .08em;
}

.hero__lead {
  margin: 0 0 2.25rem;
  font-size: clamp(.9rem, 1.8vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white-muted);
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.75rem;
  font-size: .875rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, border-color .3s;
}

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

.hero__btn--primary {
  color: var(--white) !important;
  background: var(--red);
  box-shadow: 0 8px 32px var(--red-glow);
}

.hero__btn--primary:hover {
  background: var(--red-deep);
  box-shadow: 0 12px 40px var(--red-glow);
}

.hero__btn--outline {
  color: var(--gold-soft) !important;
  background: transparent;
  border: 1px solid var(--gold-muted);
}

.hero__btn--outline:hover {
  background: rgba(252, 191, 73, 0.06);
  border-color: var(--gold-soft);
}

.hero__specialty {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  transition: opacity .2s;
}

.hero__specialty:hover { opacity: .85; }

.hero__specialty-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-muted);
  background: var(--black-elevated);
  flex-shrink: 0;
}

.hero__specialty-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__specialty-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: .03em;
}

.hero__specialty-link {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── Visual ─── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  animation: fadeUp 1s .1s var(--ease) both;
}

.hero__circle {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #C41E1E 0%, var(--red-deep) 45%, #7F0F0F 100%);
  box-shadow:
    0 0 0 1px rgba(252, 191, 73, 0.15),
    0 24px 80px rgba(214, 40, 40, 0.35),
    inset 0 -20px 60px rgba(0, 0, 0, 0.25);
}

.hero__dish-wrap {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  overflow: hidden;
  animation: floatDish 6s ease-in-out infinite;
}

@keyframes floatDish {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* Tarjeta oscura flotante */
.hero__card {
  position: absolute;
  bottom: 2%;
  right: -2%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .85rem;
  max-width: 280px;
  padding: .95rem 1.1rem;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 191, 73, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .hero__card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
  }
}

.hero__card-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(252, 191, 73, 0.2);
}

.hero__card-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .15rem;
}

.hero__card-name {
  font-weight: 600;
  font-size: .8125rem;
  color: var(--white);
}

.hero__card-badge {
  font-size: .58rem;
  font-weight: 700;
  padding: .18rem .5rem;
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__card-desc {
  margin: 0 0 .35rem;
  font-size: .72rem;
  color: var(--white-muted);
  line-height: 1.45;
}

.hero__card-link {
  font-size: .75rem;
  font-weight: 600;
  color: var(--red) !important;
  text-decoration: none;
}

.hero__card-link:hover {
  color: var(--red-soft) !important;
  text-decoration: underline;
}

/* ─── Features bar ─── */
.features {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba(252, 191, 73, 0.1);
}

.features__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .features__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.features__item {
  text-align: center;
}

.features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--gold-soft);
}

.features__icon svg {
  width: 32px;
  height: 32px;
}

.features__title {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.features__desc {
  margin: 0;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--white-muted);
  line-height: 1.5;
}

/* ─── Footer ─── */
.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(252, 191, 73, 0.08);
}

.site-footer__tagline {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 2vw, 1.125rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.site-footer__contact {
  margin: 0;
  font-size: .8125rem;
  color: var(--white-muted);
}

.site-footer__contact a {
  color: var(--white-soft);
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: var(--gold-soft);
}

.site-footer__sep {
  margin: 0 .5rem;
  opacity: .4;
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 2rem 1.75rem;
  background: var(--black-elevated);
  border-radius: 16px;
  border: 1px solid rgba(252, 191, 73, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--white-muted);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

.modal__close:hover {
  color: var(--white);
  border-color: var(--gold-muted);
}

.modal__title {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}

.modal__text {
  margin: 0 0 1.25rem;
  font-size: .875rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.modal__btn {
  display: block;
  width: 100%;
  padding: .85rem;
  text-align: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--white) !important;
  text-decoration: none;
  background: var(--red);
  border-radius: 10px;
  transition: background .2s;
}

.modal__btn:hover {
  background: var(--red-deep);
}
