:root {
  --bg: #070402;
  --ink: #120804;
  --panel: rgba(18, 9, 3, 0.9);
  --panel-soft: rgba(31, 16, 6, 0.82);
  --paper: #eed7aa;
  --paper-deep: #d7b783;
  --orange: #c87416;
  --orange-bright: #e09021;
  --line: rgba(221, 145, 40, 0.46);
  --line-soft: rgba(238, 215, 170, 0.2);
  --muted: #c7a36b;
  --shadow: rgba(0, 0, 0, 0.72);
}

@font-face {
  font-family: "Averil Rough";
  src: url("../Averil Rough/Averil Rough.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

#activo,
#contacto,
#calendario,
.event-contact {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.45;
  background:
    radial-gradient(circle at 50% 0%, rgba(191, 94, 22, 0.18), transparent 32rem),
    linear-gradient(rgba(8, 4, 2, 0.58), rgba(8, 4, 2, 0.84)),
    url("../assets/background.png") top center / min(100%, 864px) auto repeat-y,
    #050302;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 6px 6px, 7px 7px;
  mix-blend-mode: overlay;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  border: 0;
  font: inherit;
}

.poster-wrap {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.poster-panel {
  position: relative;
  margin-top: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(25, 13, 5, 0.9), rgba(11, 6, 3, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(221, 145, 40, 0.08), transparent 55%);
  box-shadow:
    0 18px 48px var(--shadow),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.poster-panel::before,
.poster-panel::after {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(221, 145, 40, 0.22);
}

.poster-panel::after {
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, transparent, rgba(226, 129, 31, 0.16), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(226, 129, 31, 0.11), transparent) bottom / 100% 1px no-repeat;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 22px;
  border: 1px solid rgba(77, 35, 9, 0.6);
  border-radius: 4px;
  color: #fff1cd;
  background:
    linear-gradient(#d98b24, #a85d10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 5px 0 rgba(56, 22, 4, 0.8);
  font-family: "Averil Rough", "Oswald", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,0.45);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  text-align: center;
}

.section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: "Averil Rough", "Ultra", "Rye", serif;
  font-size: clamp(1.45rem, 4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #210d03;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "★";
  color: var(--orange-bright);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.45em;
}

.section-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll[data-animation="fade-up"] {
  transform: translateY(20px);
}

.animate-on-scroll[data-animation="fade-left"] {
  transform: translateX(-20px);
}

.animate-on-scroll[data-animation="fade-right"] {
  transform: translateX(20px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(4, 2, 1, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221, 145, 40, 0.22);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  grid-column: 2;
  gap: clamp(28px, 3.2vw, 46px);
}

.nav-links a {
  color: #dcc39c;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.85);
}

.nav-links li:first-child a,
.nav-links a:hover {
  color: var(--orange-bright);
}

.nav-social {
  display: flex;
  justify-content: flex-end;
  grid-column: 3;
  gap: 22px;
}

.nav-social a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper);
}

.nav-social svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.nav-social a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  justify-self: end;
  grid-column: 3;
  width: 40px;
  height: 36px;
  padding: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: center;
  min-height: 500px;
  padding: 30px 28px 34px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(236, 194, 105, 0.12), transparent 62%),
    linear-gradient(transparent, rgba(0,0,0,0.54));
}

.hero-badge {
  display: none;
}

.hero-badge img {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.75));
}

.hero-logo {
  align-self: end;
}

.hero-logo img {
  width: min(492px, 96%);
  margin-left: 28px;
  filter:
    drop-shadow(0 12px 0 rgba(0,0,0,0.12))
    drop-shadow(0 20px 35px rgba(0,0,0,0.8));
}

.hero-copy {
  padding: 42px 34px 24px 10px;
  text-align: left;
}

.ornament-line {
  display: none;
}

.hero h1 {
  position: relative;
  color: var(--paper);
  font-family: "Averil Rough", "Alfa Slab One", "Ultra", serif;
  font-size: clamp(3.25rem, 4.45vw, 4.85rem);
  font-weight: 400;
  letter-spacing: 0.018em;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  text-shadow:
    2px 2px 0 #1e0b03,
    4px 4px 0 rgba(0,0,0,0.55),
    0 0 16px rgba(0,0,0,0.5);
  transform: scaleY(1.06);
  transform-origin: center;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--paper);
}

.hero h1 span::before,
.hero h1 span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(58px, 7vw, 96px);
  height: 22px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--orange-bright), var(--orange-bright)) 0 3px / 100% 2px no-repeat,
    linear-gradient(var(--orange-bright), var(--orange-bright)) 18px 10px / calc(100% - 18px) 2px no-repeat,
    linear-gradient(var(--orange-bright), var(--orange-bright)) 36px 17px / calc(100% - 36px) 2px no-repeat;
}

.hero h1 span::before {
  right: calc(100% + 28px);
}

.hero h1 span::after {
  left: calc(100% + 28px);
  transform: translateY(-50%) scaleX(-1);
}

.hero h1 strong {
  display: block;
  color: var(--orange);
  font-weight: 400;
  white-space: nowrap;
  font-size: 0.86em;
}

.hero-kicker {
  margin-top: 32px;
  color: var(--paper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-kicker b {
  color: var(--orange-bright);
  font-size: 0.78em;
}

.hero-text {
  width: min(520px, 100%);
  margin: 22px auto 24px;
  color: #f0d9b5;
  font-size: clamp(1.05rem, 1.32vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.hero-copy .btn {
  display: flex;
  width: max-content;
  margin-inline: auto;
  font-size: 1.18rem;
  padding: 15px 30px;
}

.hero .animate-on-scroll {
  opacity: 1;
  transform: none;
}

.calendar-panel {
  z-index: 3;
  margin-top: -42px;
  padding: 0;
  overflow: visible;
  background: transparent;
  color: #241006;
  border: 0;
  box-shadow: 0 18px 48px var(--shadow);
}

.calendar-panel::before {
  display: none;
}

.calendar-panel::after {
  display: none;
}

.calendar-panel .section-heading h2 {
  color: #1c0b03;
  font-size: clamp(1.5rem, 4.1vw, 2.15rem);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.28);
}

.active-ribbon {
  position: absolute;
  top: -28px;
  left: 41px;
  z-index: 2;
  display: inline-flex;
  padding: 4px 16px;
  border: 1px solid #63300b;
  border-radius: 4px 4px 0 0;
  color: #ffe7bb;
  background: #481b05;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calendar-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.active-panel {
  padding: 10px 12px 12px;
  background:
    linear-gradient(180deg, rgba(10, 5, 2, 0.5), rgba(5, 3, 2, 0.72)),
    url("../assets/background.png") center / cover;
  border: 1px solid rgba(221, 145, 40, 0.34);
  box-shadow: none;
}

.active-panel::before,
.active-panel::after {
  display: none;
}

.event-contact {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.event-contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, 0.58fr);
  gap: 12px;
  align-items: stretch;
}

.event-contact .poster-panel {
  width: 100%;
  margin-top: 0;
}

.event-contact .section-heading {
  margin-bottom: 12px;
}

.event-contact .section-heading h2 {
  font-size: clamp(1.35rem, 2vw, 2.1rem);
}

.active-panel .section-heading {
  margin-bottom: 8px;
}

.active-panel .section-heading h2 {
  color: #e8d0a8;
  font-size: clamp(1.75rem, 2.55vw, 2.45rem);
  letter-spacing: 0.06em;
  text-shadow: 3px 3px 0 #160802, 0 0 12px rgba(0,0,0,0.75);
}

.active-panel .section-heading h2::before,
.active-panel .section-heading h2::after {
  color: var(--orange-bright);
  font-size: 0.45em;
}

.generated-active {
  min-height: 374px;
  grid-template-columns: 46% 54%;
  gap: 0;
  border: 0;
  background: transparent;
}

.event-visual {
  position: relative;
  overflow: hidden;
  min-height: 374px;
  background: transparent;
}

.event-visual::before {
  content: "";
  position: absolute;
  inset: -18px -14px -18px -18px;
  background: url("../assets/generated/evento-personaje.png") left center / cover no-repeat;
}

.event-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(4, 2, 1, 0) 0%,
      rgba(4, 2, 1, 0.2) 48%,
      rgba(4, 2, 1, 0.74) 74%,
      rgba(4, 2, 1, 1) 100%);
}

.generated-active .event-copy {
  min-height: 374px;
  padding: 18px 28px 18px 12px;
  background:
    linear-gradient(90deg, rgba(4, 2, 1, 0.96), rgba(4, 2, 1, 0.58) 58%, rgba(4, 2, 1, 0.2));
}

.generated-active .event-copy h3 {
  font-family: "Averil Rough", "Ultra", serif;
  font-size: clamp(2.35rem, 3.55vw, 3.55rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
}

.generated-active .event-copy p {
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.45;
}

.generated-active .event-icons {
  max-width: 440px;
  gap: 0;
  border-top: 1px solid rgba(238, 215, 170, 0.22);
  border-bottom: 1px solid rgba(238, 215, 170, 0.12);
}

.generated-active .event-icons li {
  padding: 8px 8px;
  border-right: 1px solid rgba(238, 215, 170, 0.22);
}

.generated-active .event-icons li:last-child {
  border-right: 0;
}

.generated-active .event-icons b {
  font-size: 1.75rem;
}

.generated-active .btn {
  width: min(100%, 390px);
  min-height: 48px;
  font-size: 1.18rem;
}

.experience-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.22) 48%, rgba(0,0,0,0.9) 78%),
    url("../assets/generated/experiencia-burger.png") center top / cover no-repeat;
}

.experience-overlay {
  position: absolute;
  inset: auto 18px 20px;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.experience-overlay h3 {
  color: var(--paper);
  font-family: "Averil Rough", "Ultra", serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #160802, 0 0 18px rgba(0,0,0,0.8);
}

.generated-contact {
  min-height: 232px;
  background:
    linear-gradient(90deg, rgba(10,5,2,0.94) 0 60%, rgba(10,5,2,0.38) 74%, rgba(10,5,2,0.08)),
    url("../assets/generated/contacto-celular.png") right center / auto 126% no-repeat,
    linear-gradient(180deg, rgba(25,13,5,0.9), rgba(11,6,3,0.92));
}

.generated-contact .section-heading {
  margin-bottom: 16px;
}

.generated-contact .contact-grid {
  grid-template-columns: minmax(265px, 0.9fr) minmax(280px, 1fr) minmax(210px, 0.75fr);
  gap: 22px;
}

.generated-contact .contact-links {
  padding-left: 30px;
}

.generated-contact .contact-links a {
  font-size: clamp(1.1rem, 1.6vw, 1.48rem);
}

.generated-contact .contact-copy p {
  text-align: left;
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
}

.phone-art {
  min-height: 110px;
}

.mid-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, 0.66fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
}

.mid-panels .poster-panel {
  width: 100%;
  margin-top: 0;
}

.active-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10px;
}

.active-grid .experience-card {
  grid-column: 1 / -1;
  min-height: 210px;
}

.panel-box {
  min-height: 276px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(rgba(8, 4, 2, 0.38), rgba(8, 4, 2, 0.78)),
    url("../assets/background.png") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.event-art {
  position: relative;
  display: grid;
  place-items: end center;
  padding: 16px;
  overflow: hidden;
}

.marquee {
  position: absolute;
  top: 20px;
  left: 32px;
  right: 32px;
  padding: 12px 8px;
  border: 4px solid #a36017;
  border-radius: 6px;
  color: #fff2d0;
  background: #130803;
  box-shadow: 0 0 0 4px rgba(28, 11, 3, 0.9), 0 0 18px rgba(224, 144, 33, 0.45);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.burger-mascot {
  position: relative;
  width: 128px;
  height: 112px;
  margin-bottom: 5px;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 34% 42%, #0b0502 0 10px, transparent 11px),
    radial-gradient(circle at 66% 42%, #0b0502 0 10px, transparent 11px),
    linear-gradient(#dd8f27 0 48%, #6f2d09 49% 58%, #e3aa31 59% 68%, #8b2e0c 69% 100%);
  box-shadow: 0 18px 22px rgba(0,0,0,0.55);
}

.burger-mascot::before,
.burger-mascot::after {
  content: "";
  position: absolute;
  top: 44px;
  width: 42px;
  height: 14px;
  border-radius: 0 0 16px 16px;
  border-bottom: 5px solid #0a0502;
}

.burger-mascot::before {
  left: 18px;
}

.burger-mascot::after {
  right: 18px;
}

.burger-mascot .cap {
  position: absolute;
  top: -22px;
  left: 30px;
  width: 72px;
  height: 40px;
  border-radius: 42px 42px 10px 10px;
  background: #263f50;
  transform: rotate(-9deg);
}

.burger-mascot .smile {
  position: absolute;
  left: 42px;
  bottom: 25px;
  width: 45px;
  height: 16px;
  border-bottom: 5px solid #0b0502;
  border-radius: 0 0 50px 50px;
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 8px 12px 14px;
}

.month-pill {
  width: max-content;
  margin-bottom: 10px;
  padding: 4px 28px;
  border-radius: 3px;
  color: #fff0c9;
  background: #385d19;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-copy h3 {
  color: var(--paper);
  font-family: "Ultra", serif;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #210d03;
}

.event-copy p {
  margin-top: 12px;
  color: #e9cfab;
  font-size: 0.86rem;
  font-weight: 700;
}

.event-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.event-icons li {
  color: var(--paper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.event-icons b {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-bright);
  font-size: 1.4rem;
  line-height: 1;
}

.experience-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
}

.burger-photo {
  position: relative;
  width: min(200px, 100%);
  height: 106px;
  margin-bottom: 2px;
  filter: drop-shadow(0 16px 14px rgba(0,0,0,0.65));
}

.burger-photo span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.burger-photo .bun.top {
  top: 0;
  width: 188px;
  height: 62px;
  border-radius: 90px 90px 20px 20px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 55% 18%, rgba(255,255,255,0.38) 0 3px, transparent 4px),
    linear-gradient(#b86b22, #f0a234 48%, #6d2f0b);
}

.burger-photo .cheese {
  top: 57px;
  width: 204px;
  height: 25px;
  background: #f6b42c;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 82% 55%, 65% 100%, 52% 48%, 38% 100%, 22% 55%, 10% 100%);
}

.burger-photo .meat {
  top: 72px;
  width: 210px;
  height: 34px;
  border-radius: 50px;
  background: linear-gradient(#6b210b, #311005);
}

.burger-photo .bun.bottom {
  top: 96px;
  width: 178px;
  height: 30px;
  border-radius: 10px 10px 36px 36px;
  background: linear-gradient(#e79a34, #8b4211);
}

.experience-card h3 {
  color: var(--paper);
  font-family: "Ultra", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #210d03;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.contact-panel {
  overflow: hidden;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.social-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1;
}

.contact-copy p {
  margin-bottom: 18px;
  color: #e4caa4;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.phone-mock {
  position: relative;
  width: min(230px, 86%);
  min-height: 198px;
  margin: 0 auto;
  padding: 26px 16px 18px;
  border: 8px solid #f3d9a9;
  border-radius: 28px;
  color: #201005;
  background: #f5ead1;
  box-shadow: 0 18px 35px rgba(0,0,0,0.65);
  transform: rotate(5deg);
}

.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 66px;
  height: 9px;
  border-radius: 99px;
  background: #0c0705;
  transform: translateX(-50%);
}

.phone-profile {
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
}

.phone-profile img {
  width: 44px;
}

.phone-profile strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.95rem;
}

.phone-profile span {
  font-size: 0.62rem;
  font-weight: 900;
}

.phone-stories {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.phone-stories span {
  width: 28px;
  height: 28px;
  border: 3px solid #0c0705;
  border-radius: 50%;
  background: var(--orange);
}

.carousel-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  gap: 12px;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.carousel-item {
  flex: 0 0 calc(16.666% - 14px);
}

.local-card {
  display: grid;
  min-height: 112px;
  place-items: center;
  gap: 8px;
  color: var(--paper);
  text-align: center;
}

.local-card img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  filter: sepia(0.1) brightness(1.05);
}

.local-name {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.carousel-btn {
  display: grid;
  width: 36px;
  height: 48px;
  place-items: center;
  color: var(--orange-bright);
  background: transparent;
  font-size: 3rem;
  line-height: 1;
}

.carousel-btn:disabled {
  opacity: 0.28;
}

.locals-btn {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  margin: 18px auto 0;
}

.sponsors-panel {
  padding-top: 20px;
  padding-bottom: 26px;
}

.sponsors-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 35px;
}

.sponsor-item img {
  max-width: 122px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(0.9) sepia(0.25) saturate(0.8);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 16px;
  padding: 12px 6px 28px;
  color: #b89764;
  font-size: 0.74rem;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-logo {
  width: 78px;
  margin-top: -10px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.6));
}

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 22px;
  color: var(--paper);
}

.event-modal.is-open {
  display: grid;
  place-items: center;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(200, 116, 22, 0.16), transparent 34rem),
    rgba(2, 1, 1, 0.82);
  backdrop-filter: blur(8px);
}

.event-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border: 1px solid rgba(221, 145, 40, 0.54);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(9, 5, 2, 0.96), rgba(20, 10, 4, 0.94)),
    url("../assets/background.png") center / cover;
  box-shadow: 0 30px 90px rgba(0,0,0,0.86), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.event-modal-dialog::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(221, 145, 40, 0.22);
}

.event-modal-close {
  position: sticky;
  top: 12px;
  z-index: 3;
  float: right;
  width: 42px;
  height: 42px;
  margin: 12px 12px 0 0;
  border: 1px solid rgba(238, 215, 170, 0.28);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(5, 2, 1, 0.8);
  font-size: 2rem;
  line-height: 1;
}

.event-modal-hero {
  position: relative;
  min-height: 250px;
  padding: 42px 56px 36px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,2,1,0.88) 0 48%, rgba(5,2,1,0.35) 72%, rgba(5,2,1,0.75)),
    url("../assets/generated/experiencia-burger.png") right center / 52% auto no-repeat;
}

.event-modal-brand {
  position: absolute;
  left: 34px;
  top: 18px;
  width: 260px;
  opacity: 0.08;
  filter: grayscale(0.15);
}

.event-modal-titlebox {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
}

.modal-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 16px;
  border-radius: 3px;
  color: #fff0c9;
  background: #385d19;
  font-family: "Averil Rough", "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-modal-titlebox h2 {
  color: var(--paper);
  font-family: "Averil Rough", "Ultra", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #170802, 0 0 18px rgba(0,0,0,0.85);
}

.event-modal-titlebox p {
  width: min(520px, 100%);
  margin-top: 16px;
  color: #eed7aa;
  font-size: 1.05rem;
  font-weight: 700;
}

.event-modal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 28px;
  padding: 30px 38px 38px;
}

.event-modal-main {
  display: grid;
  gap: 20px;
}

.event-modal-main section {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(238, 215, 170, 0.13);
}

.event-modal-main section:last-child {
  border-bottom: 0;
}

.event-modal h3 {
  margin-bottom: 10px;
  color: var(--orange-bright);
  font-family: "Averil Rough", "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.event-modal p {
  color: #e8cfaa;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.65;
}

.event-modal p + p {
  margin-top: 10px;
}

.event-modal-side {
  align-self: start;
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(221, 145, 40, 0.24);
  border-radius: 5px;
  background: rgba(6, 3, 1, 0.62);
}

.event-modal-burger {
  min-height: 170px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.28)),
    url("../assets/generated/experiencia-burger.png") center / cover no-repeat;
}

.event-modal-deal {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(221, 145, 40, 0.3);
  border-radius: 5px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 139, 36, 0.24), transparent 70%),
    rgba(18, 8, 2, 0.88);
  text-align: center;
}

.event-modal-deal span,
.event-modal-deal strong,
.event-modal-deal b {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-modal-deal span {
  color: var(--orange-bright);
  font-size: 1.05rem;
}

.event-modal-deal strong {
  color: var(--paper);
  font-size: 1.25rem;
}

.event-modal-deal b {
  color: #fff0c9;
  font-size: 1rem;
}

.event-modal-deal em {
  color: var(--orange-bright);
  font-family: "Averil Rough", "Ultra", serif;
  font-size: 2.45rem;
  font-style: normal;
  line-height: 1;
  text-shadow: 2px 2px 0 #160802;
}

body.modal-open {
  overflow: hidden;
}

#construccion-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #080503;
}

#construccion-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(5, 3, 2, 0.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
  }

  .nav-social {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 20px;
    text-align: center;
  }

  .hero-badge {
    display: none;
  }

  .hero-logo img {
    width: min(270px, 74%);
    margin: 0 auto;
  }

  .hero-logo {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .hero-copy {
    padding: 0 6px 16px;
    text-align: center;
  }

  .ornament-line {
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .event-contact-top,
  .mid-panels,
  .active-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .event-contact,
  .mid-panels {
    width: min(100% - 28px, 944px);
  }

  .generated-active {
    min-height: auto;
  }

  .event-visual {
    min-height: 290px;
    background-position: left center;
  }

  .generated-active .event-copy {
    min-height: auto;
    padding: 24px 18px;
  }

  .experience-panel {
    min-height: 360px;
  }

  .generated-contact {
    background:
      linear-gradient(180deg, rgba(10,5,2,0.96) 0 48%, rgba(10,5,2,0.72) 70%, rgba(10,5,2,0.3)),
      url("../assets/generated/contacto-celular.png") right bottom / 88% auto no-repeat,
      linear-gradient(180deg, rgba(25,13,5,0.9), rgba(11,6,3,0.92));
    padding-bottom: 210px;
  }

  .generated-contact .contact-grid {
    gap: 18px;
  }

  .generated-contact .contact-links {
    padding-left: 0;
  }

  .generated-contact .contact-copy p {
    text-align: center;
  }

  .event-art {
    min-height: 250px;
  }

  .phone-mock {
    width: min(250px, 88%);
    margin: 0 auto;
  }

  .carousel-item {
    flex-basis: calc(33.333% - 11px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }

  .event-modal {
    padding: 10px;
  }

  .event-modal-dialog {
    max-height: 92vh;
  }

  .event-modal-hero {
    padding: 34px 22px 28px;
    background:
      linear-gradient(180deg, rgba(5,2,1,0.72), rgba(5,2,1,0.94)),
      url("../assets/generated/experiencia-burger.png") center top / cover no-repeat;
  }

  .event-modal-titlebox h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .event-modal-content {
    grid-template-columns: 1fr;
    padding: 24px 18px 28px;
  }

  .event-modal-side {
    position: static;
  }
}

@media (max-width: 560px) {
  .poster-wrap {
    width: min(100% - 16px, 944px);
  }

  .poster-panel {
    padding: 18px 12px;
  }

  .section-heading h2 {
    font-size: 1.28rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.4vw, 1.75rem);
  }

  .hero h1 strong {
    white-space: normal;
  }

  .hero-copy {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-kicker {
    font-size: 0.9rem;
  }

  .active-ribbon {
    left: 20px;
  }

  .event-icons {
    gap: 4px;
  }

  .experience-card,
  .event-copy {
    padding-inline: 6px;
  }

  .contact-links a {
    font-size: 1rem;
  }

  .carousel-item {
    flex-basis: calc(50% - 8px);
  }

  .sponsor-item img {
    max-width: 96px;
    height: 34px;
  }
}
