:root {
  --ink: #111423;
  --paper: #fffaf0;
  --white: #ffffff;
  --coral: #f45d48;
  --gold: #f2ba3d;
  --rose: #b72f5f;
  --sky-blue: #2f79d8;
  --line: rgba(17, 20, 35, 0.14);
  --shadow: 0 24px 70px rgba(17, 20, 35, 0.2);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sky-blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px clamp(18px, 3.4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(17, 20, 35, 0.1);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 32px rgba(17, 20, 35, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 55px;
  font-weight: 950;
}

.brand-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.25rem;
}

.header-partners {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.65vw, 24px);
  margin-right: auto;
  margin-left: clamp(14px, 2.1vw, 29px);
  padding-left: clamp(14px, 2.1vw, 29px);
  border-left: 1px solid rgba(17, 20, 35, 0.18);
}

.site-header.is-scrolled .header-partners,
.site-header.is-open .header-partners {
  border-color: rgba(17, 20, 35, 0.18);
}

.header-partners img {
  display: block;
  height: auto;
  object-fit: contain;
}

.header-partners .logo-manzana {
  width: clamp(60px, 6.72vw, 84px);
}

.header-partners .logo-caja {
  width: clamp(92px, 9.4vw, 124px);
  max-height: 50px;
}

.header-partners .logo-ayuntamiento {
  width: clamp(24px, 2.4vw, 33px);
  height: clamp(38px, 3.84vw, 50px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.92vw, 29px);
  font-size: 1.09rem;
  font-weight: 800;
}

.site-nav a {
  padding-block: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.home-page .hero {
  min-height: calc(100svh - 105px);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(47, 121, 216, 0) 0%,
    rgba(47, 121, 216, 0.2) 62%,
    rgba(47, 121, 216, 0.38) 100%
  );
}

.hero-image,
.hero-pig,
.hero-wall-layer,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.hero-wall-layer {
  object-fit: cover;
  transform: scale(1.205) translate(clamp(30px, 8.2vw, 105px), clamp(12px, 2.3vw, 29px));
  transform-origin: center center;
}

.hero-image {
  z-index: 0;
}

.hero-pig {
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-62vw) translateY(12px) rotate(-3deg);
  animation: pig-drift-in 3000ms cubic-bezier(0.25, 0.9, 0.28, 1) 260ms forwards;
}

.hero-wall-layer {
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(17, 20, 35, 0.4) 0%, rgba(17, 20, 35, 0.18) 42%, rgba(17, 20, 35, 0.08) 100%),
    linear-gradient(0deg, rgba(17, 20, 35, 0.18) 0%, rgba(17, 20, 35, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(780px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 80px;
  text-shadow: 0 3px 20px rgba(17, 20, 35, 0.42);
}

@keyframes pig-drift-in {
  0% {
    opacity: 0;
    transform: translateX(-62vw) translateY(18px) rotate(-4deg);
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-pig {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 13vw, 8rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 760px;
  margin: 22px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.08;
  font-weight: 850;
}

.hero-place {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
}

.page-main {
  min-height: 72vh;
}

.sky-page {
  color: var(--white);
  background-color: var(--sky-blue);
  background-image:
    linear-gradient(180deg, rgba(47, 121, 216, 0.08), rgba(47, 121, 216, 0.2)),
    url("assets/section-sky-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.sky-page .section-light {
  background: transparent;
  color: var(--white);
}

.sky-page .section-copy > p:not(.section-kicker),
.sky-page .section-head p,
.sky-page .distance-list dd,
.sky-page .experience-image figcaption {
  color: rgba(255, 255, 255, 0.86);
}

.sky-page .section-kicker {
  color: var(--gold);
}

.sky-page .distance-list div {
  border-color: rgba(255, 255, 255, 0.32);
}

.festival-ticker {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  min-height: clamp(30px, 2.6vw, 40px);
  margin-top: -22px;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 28s linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding-inline: clamp(14px, 2vw, 28px);
}

.ticker-group span {
  white-space: nowrap;
  font-size: clamp(0.72rem, 1.5vw, 1.2rem);
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

@keyframes ticker-slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.sky-world {
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  background: var(--sky-blue);
}

.sky-world::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.sky-world::before {
  background:
    linear-gradient(180deg, rgba(47, 121, 216, 0.02), rgba(47, 121, 216, 0.18)),
    url("assets/section-sky-bg.png") center center / 100% 100% no-repeat;
  background-repeat: no-repeat;
}

.sky-pigs {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sky-pig {
  position: absolute;
  width: clamp(164px, 16vw, 264px);
  height: auto;
  opacity: 0.86;
  filter: drop-shadow(0 18px 30px rgba(17, 20, 35, 0.2));
}

.sky-pig-left {
  left: clamp(-88px, -3vw, -32px);
  top: clamp(88px, 9vw, 142px);
  transform: rotate(-5deg);
}

.sky-pig-right {
  right: clamp(-82px, -3vw, -30px);
  top: clamp(400px, 34%, 516px);
  transform: scaleX(-1) rotate(-5deg);
}

.sky-pig-lower {
  left: clamp(-104px, -4vw, -42px);
  bottom: clamp(62px, 7vw, 112px);
  width: clamp(142px, 14vw, 224px);
  transform: rotate(6deg);
  opacity: 0.72;
}

.sky-world > section {
  position: relative;
  z-index: 1;
}

.countdown-band {
  position: relative;
  background: transparent;
  color: var(--white);
  margin-top: -1px;
  padding: clamp(58px, 7vw, 92px) 0 clamp(70px, 8vw, 108px);
  overflow: hidden;
}

.countdown-band::before,
.poster-announcement::before {
  display: none;
}

.countdown-band::before {
  content: none;
}

.countdown-band::after,
.poster-announcement::after {
  display: none;
}

.countdown-band::after {
  content: none;
}

.poster-announcement::after {
  content: none;
}

.countdown-stack {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 4vw, 34px);
  width: min(1120px, 100%);
  text-align: center;
}

.countdown-copy h2 {
  max-width: min(1080px, 100%);
  margin-inline: auto;
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  line-height: 1.02;
  text-wrap: balance;
}

.countdown-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  font-weight: 950;
}

.countdown-band .section-kicker {
  color: var(--gold);
}

.countdown-card {
  width: min(920px, 100%);
}

.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.countdown-units span {
  display: grid;
  place-items: center;
  min-height: clamp(90px, 10vw, 128px);
  padding: 12px 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.34);
}

.countdown-units b {
  display: block;
  font-size: clamp(2.45rem, 8vw, 6.4rem);
  line-height: 1;
}

.countdown-units small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-description {
  max-width: 900px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.poster-announcement {
  position: relative;
  margin-top: -1px;
  padding: clamp(74px, 9vw, 132px) 0;
  overflow: hidden;
  color: var(--white);
  background: transparent;
}

.poster-announcement::before {
  content: none;
}

.poster-announcement-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.poster-announcement-copy {
  max-width: 680px;
}

.poster-announcement-copy .section-kicker {
  color: var(--gold);
}

.poster-announcement-copy h2 {
  max-width: 680px;
  font-size: clamp(2.25rem, 5.8vw, 5.65rem);
}

.poster-announcement-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 750;
}

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

.poster-announcement-art {
  justify-self: center;
  width: min(300px, 100%);
  margin: 0;
  padding: clamp(8px, 1vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(17, 20, 35, 0.34);
  transform: rotate(1.4deg);
}

.poster-announcement-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 941 / 1672;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.section {
  padding: clamp(70px, 9vw, 124px) 0;
}

.section.inner-page-start {
  padding-top: clamp(54px, 6vw, 80px);
}

.section-light {
  background: var(--sky-blue);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.poster-wrap {
  justify-self: center;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  background: var(--ink);
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-wrap-full {
  aspect-ratio: auto;
}

.poster-wrap-full img {
  height: auto;
  object-fit: contain;
}

.poster-page {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.poster-reveal {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(340px, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.poster-reveal .poster-wrap {
  width: 100%;
}

.poster-reveal-copy {
  max-width: 660px;
}

.poster-reveal-copy h2 {
  max-width: 620px;
  font-size: clamp(2.65rem, 5.7vw, 5.25rem);
  line-height: 0.97;
}

.poster-reveal-copy > p:not(.section-kicker) {
  max-width: 575px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 720;
}

.release-date {
  display: grid;
  gap: 6px;
  width: min(540px, 100%);
  margin-top: clamp(30px, 5vw, 44px);
  padding: clamp(16px, 2.5vw, 22px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.release-date span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.release-date strong {
  color: var(--white);
  font-size: clamp(1.6rem, 3.3vw, 2.7rem);
  line-height: 1.1;
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(60px, 8vw, 92px);
}

.announcement-grid article,
.experience-cards article,
.values-grid article,
.zone-grid article,
.village-spots article {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.36);
}

.announcement-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.announcement-grid article > p:not(.section-kicker) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.announcement-state {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cartel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(42px, 6vw, 64px);
  padding-top: clamp(26px, 4vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cartel-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
}

.section-copy > p:not(.section-kicker) {
  margin: 20px 0 0;
  color: rgba(17, 20, 35, 0.72);
  font-size: 1.05rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  max-width: 640px;
  color: rgba(17, 20, 35, 0.72);
}

.section-head.compact {
  max-width: 860px;
}

.ticket-access-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ticket-access-heading p,
.ticket-widget-pending .section-kicker {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.ticket-widget-shell {
  display: grid;
  place-items: center;
  min-height: clamp(390px, 55vw, 620px);
  padding: clamp(24px, 5vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.42);
}

.ticket-widget-shell iframe {
  width: 100%;
  min-height: clamp(390px, 55vw, 620px);
  border: 0;
}

.ticket-widget-pending {
  max-width: 470px;
  text-align: center;
}

.ticket-widget-pending h3 {
  margin: 12px 0 16px;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.ticket-widget-pending p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.minor-access-section {
  padding-top: 0;
}

.minor-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.minor-policy-grid article,
.minor-important,
.authorization-download,
.legal-document {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.42);
}

.minor-policy-grid article {
  padding: clamp(20px, 3vw, 26px);
}

.minor-age {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.minor-age span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.minor-policy-grid h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.52rem);
}

.minor-policy-grid article > p:not(.minor-age) {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.minor-policy-grid article > p:last-child {
  margin-bottom: 0;
}

.minor-important {
  margin-top: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.minor-important h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.minor-important p,
.authorization-download p:not(.section-kicker),
.legal-document p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.authorization-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.authorization-download h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.button-disabled {
  flex-shrink: 0;
  cursor: not-allowed;
  opacity: 0.7;
}

.button-disabled:hover,
.button-disabled:focus-visible {
  transform: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(340px, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.legal-document {
  min-height: 300px;
  padding: clamp(24px, 5vw, 42px);
}

.legal-document h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(290px, 0.82fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.experience-editorial .section-copy h2 {
  max-width: 700px;
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 0.98;
}

.experience-editorial .section-copy > p:not(.section-kicker) {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
}

.experience-facts {
  display: grid;
  gap: 0;
  margin: clamp(28px, 4vw, 40px) 0 0;
}

.experience-facts div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.experience-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.experience-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.experience-program {
  padding-top: clamp(28px, 5vw, 52px);
}

.experience-cards,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.experience-cards h3,
.values-grid h3,
.zone-grid h3,
.village-spots h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.card-number,
.zone-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.experience-cards p,
.values-grid p,
.zone-grid article > p:not(.zone-label),
.village-spots p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.experience-journey {
  padding-top: clamp(18px, 3vw, 38px);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(340px, 1fr);
  align-items: start;
  gap: clamp(34px, 7vw, 94px);
}

.journey-list {
  display: grid;
}

.journey-list article {
  display: grid;
  grid-template-columns: 92px 195px 1fr;
  gap: clamp(12px, 2vw, 25px);
  align-items: start;
  padding: clamp(18px, 3vw, 26px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.journey-list article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.journey-list p {
  margin: 3px 0 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.journey-list h3 {
  font-size: 1.12rem;
}

.journey-list span {
  color: rgba(255, 255, 255, 0.8);
}

.experience-values {
  padding-top: clamp(16px, 3vw, 36px);
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.experience-image {
  margin: 0;
}

.experience-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.experience-image figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.location-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.4);
  box-shadow: var(--shadow);
}

.location-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 13px;
  border-radius: var(--radius);
  background: rgba(14, 27, 68, 0.7);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.locations-opening,
.santo-domingo-section {
  padding-top: clamp(18px, 3vw, 38px);
}

.location-layout,
.santo-domingo-layout {
  display: grid;
  grid-template-columns: minmax(330px, 1.06fr) minmax(290px, 0.94fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.location-layout .section-copy > p:not(.section-kicker),
.santo-domingo-layout .section-copy > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.village-program,
.arrival-section {
  padding-top: clamp(18px, 3vw, 38px);
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.village-layout,
.arrival-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.village-layout > div:first-child > p:not(.section-kicker),
.arrival-layout > div > p:not(.section-kicker) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.village-spots {
  display: grid;
  gap: 12px;
}

.village-spots h3 {
  margin-top: 0;
}

.arrival-section .distance-list {
  margin: 0;
}

.distance-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.distance-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.distance-list dt {
  font-weight: 900;
}

.distance-list dd {
  margin: 0;
  color: rgba(17, 20, 35, 0.7);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-directory {
  padding-top: clamp(28px, 4vw, 54px);
}

.faq-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(30px, 5vw, 48px);
}

.faq-intro .section-head {
  margin-bottom: 0;
}

.faq-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 470px;
}

.faq-topics a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.32);
  font-size: 0.86rem;
  font-weight: 800;
}

.faq-topics a:hover,
.faq-topics a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-group {
  scroll-margin-top: 88px;
  padding: clamp(20px, 3vw, 27px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(14, 40, 108, 0.4);
}

.faq-group h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.faq-group .section-kicker {
  color: var(--gold);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(17, 20, 35, 0.72);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius);
  background: var(--rose);
}

.faq-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.site-footer {
  position: relative;
  padding: 34px 0 18px;
  overflow: hidden;
  background: rgba(14, 40, 108, 0.9);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.footer-partners {
  margin-bottom: 26px;
}

.footer-partners .section-kicker {
  margin-bottom: 8px;
  color: var(--gold);
}

.footer-partners h2 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
  white-space: nowrap;
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(34px, 4.4vw, 58px);
  min-height: 64px;
}

.footer-partner-logos img {
  display: block;
  height: auto;
  object-fit: contain;
}

.footer-partner-logos .logo-manzana {
  width: clamp(124px, 16vw, 190px);
}

.footer-partner-logos .logo-caja {
  width: clamp(192px, 25vw, 292px);
  max-height: 106px;
  filter: brightness(0) invert(1);
}

.footer-partner-logos .logo-ayuntamiento {
  width: clamp(52px, 6vw, 68px);
  height: clamp(78px, 9vw, 98px);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  align-items: center;
  column-gap: clamp(26px, 5vw, 62px);
  row-gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
  display: inline-flex;
  grid-row: span 2;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand span,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 1rem;
}

.footer-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-pages,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-pages {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-legal .footer-legal-featured {
  color: var(--gold);
  font-weight: 900;
}

.footer-pages a:hover,
.footer-pages a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .site-header {
    gap: 12px;
  }

  .header-partners {
    gap: 14px;
    margin-left: 10px;
    padding-left: 10px;
  }

  .header-partners .logo-manzana {
    width: 47px;
  }

  .header-partners .logo-caja {
    width: 72px;
    max-height: 32px;
  }

  .header-partners .logo-ayuntamiento {
    width: 19px;
    height: 31px;
  }

  .site-nav {
    gap: clamp(10px, 1.5vw, 16px);
  }

  .minor-policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1260px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 18px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 16px 32px rgba(17, 20, 35, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(255, 250, 240, 0.98);
    color: var(--ink);
    box-shadow: 0 16px 32px rgba(17, 20, 35, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 90vh;
    align-items: end;
  }

  .home-page .hero {
    min-height: 86vh;
  }

  .hero-content {
    margin: 0 auto;
    padding: 116px 0 146px;
  }

  .location-layout,
  .poster-reveal,
  .experience-editorial,
  .journey-layout,
  .village-layout,
  .santo-domingo-layout,
  .arrival-layout,
  .poster-announcement-layout {
    grid-template-columns: 1fr;
  }

  .announcement-grid,
  .experience-cards,
  .values-grid,
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .poster-reveal .poster-wrap {
    width: min(370px, 88%);
  }

  .cartel-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .authorization-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-intro {
    display: grid;
  }

  .faq-topics {
    justify-content: flex-start;
  }

  .faq-groups {
    grid-template-columns: 1fr;
  }

  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster-announcement-art {
    width: min(288px, 84%);
    transform: rotate(0.8deg);
  }

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

  .footer-brand {
    grid-row: auto;
  }

  .footer-pages,
  .footer-legal {
    justify-content: flex-start;
  }

  .sky-world {
    background: var(--sky-blue);
  }

  .sky-world::before {
    background-size: auto 100%;
    background-position: center center;
  }

  .sky-pig {
    width: 112px;
    opacity: 0.45;
  }

  .sky-pig-left {
    left: -48px;
  }

  .sky-pig-right {
    right: -48px;
  }

  .sky-pig-lower {
    width: 92px;
    left: -44px;
  }

  .poster-wrap {
    width: min(360px, 92%);
    order: 2;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand {
    gap: 10px;
    min-height: 46px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .header-partners {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 11px;
    margin: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(17, 20, 35, 0.14);
    border-left: 0;
  }

  .header-partners .logo-manzana {
    width: 42px;
  }

  .header-partners .logo-caja {
    width: 68px;
    max-height: 31px;
  }

  .header-partners .logo-ayuntamiento {
    width: 20px;
    height: 31px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-content {
    width: min(100% - 28px, 780px);
  }

  .hero-actions,
  .poster-actions,
  .button {
    width: 100%;
  }

  .countdown-units {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sky-pig {
    width: 76px;
    opacity: 0.28;
  }

  .sky-pig-lower {
    display: none;
  }

  .countdown-band::after,
  .poster-announcement::after {
    opacity: 0.34;
  }

  .footer-partners h2 {
    font-size: 1.08rem;
  }

  .distance-list div,
  .footer-layout {
    display: grid;
  }
}
