/* Parco Minerario di Kreas — landing */
:root {
  --teal: #0a6b73;
  --teal-deep: #064850;
  --teal-soft: #d7ebee;
  --green: #2f6b3a;
  --orange: #d35400;
  --brown: #6b3a2a;
  --ink: #142028;
  --ink-soft: #3a4a52;
  --stone: #e6e2db;
  --stone-dark: #cfc8bc;
  --paper: #f7f5f1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 72, 80, 0.18);
  --radius: 4px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-script: "Caveat", cursive;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(10, 107, 115, 0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(211, 84, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f3f1ec 0%, var(--paper) 40%, #efece6 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange);
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.section-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section-wrap.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head.tight {
  margin-bottom: 1.75rem;
}

.section-head.light {
  color: var(--paper);
}

.section-head.light .section-lead,
.section-head.light .eyebrow {
  color: rgba(247, 245, 241, 0.82);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--teal-deep);
}

.section-head.light h2 {
  color: var(--paper);
}

.section-lead {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #b84300 100%);
  color: white;
  box-shadow: 0 10px 28px rgba(211, 84, 0, 0.28);
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 14px 34px rgba(211, 84, 0, 0.38);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid rgba(10, 107, 115, 0.25);
  padding-inline: 1rem;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 245, 241, 0.88);
  border-bottom: 1px solid rgba(20, 32, 40, 0.08);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 128px;
  height: auto;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(20, 32, 40, 0.08);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.mobile-nav.is-open {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  color: white;
  overflow: clip;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 30, 34, 0.82) 0%, rgba(6, 30, 34, 0.45) 48%, rgba(6, 30, 34, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 30, 34, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 5.5rem;
  max-width: 38rem;
  animation: riseIn 1s var(--ease) both;
}

.brand-mark {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

#hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 0.92;
}

.h1-line {
  display: block;
  color: #dceff1;
}

.h1-accent {
  display: block;
  color: #f0c9a4;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin: 1.1rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
}

.hero-event {
  margin-top: 1.25rem;
  max-width: 28rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, rgba(211, 84, 0, 0.92), rgba(184, 67, 0, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hero-event-date {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.hero-event-times {
  margin: 0.55rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-event-slot {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero-event-slot:hover,
.hero-event-slot:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
  transform: translateY(-1px);
}

.hero-event-note {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: pulseY 2.2s ease-in-out infinite;
}

/* Info strip */
.info-strip {
  padding: 4.5rem 0 3rem;
}

.alert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.alert-card {
  background: white;
  border: 1px solid rgba(20, 32, 40, 0.08);
  border-left: 4px solid var(--orange);
  padding: 1.2rem 1.25rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.8s var(--ease) both;
}

.alert-card:nth-child(2) {
  animation-delay: 0.08s;
  border-left-color: var(--teal);
}

.alert-card:nth-child(3) {
  animation-delay: 0.16s;
  border-left-color: var(--green);
}

.alert-icon {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--orange);
}

.alert-card:nth-child(2) .alert-icon {
  color: var(--teal);
}

.alert-card:nth-child(3) .alert-icon {
  color: var(--green);
}

.alert-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--teal-deep);
}

.alert-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.fact-row {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: white;
  border-radius: var(--radius);
}

.fact-row li {
  text-align: center;
  padding: 0.75rem 0.4rem;
}

.fact-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.fact-row span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  opacity: 0.85;
}

/* Booking */
.booking {
  padding: 2rem 0 5rem;
}

.booking-copy--solo {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: white;
  border: 1px solid rgba(20, 32, 40, 0.08);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.booking-copy--solo .check-list {
  display: inline-block;
  text-align: left;
}

.booking-copy--solo .section-lead {
  margin-inline: auto;
}

.check-list {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 107, 58, 0.15);
}

.booking-note {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Experience */
.experience {
  padding: 4.5rem 0;
  background:
    linear-gradient(180deg, rgba(10, 107, 115, 0.05), transparent 30%),
    var(--paper);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pillar {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.85rem;
  align-content: start;
}

.pillar-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: #dfe8ea;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
  transition: transform 0.6s var(--ease);
}

.pillar:hover .pillar-media img {
  transform: scale(1.03);
}

.pillar h3 {
  font-size: 1.25rem;
  color: var(--teal-deep);
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
}

.visit-detail {
  margin: 0 0 2.5rem;
  background: white;
  border: 1px solid rgba(20, 32, 40, 0.08);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 0 1.15rem;
}

.visit-detail > summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.05rem 0;
  list-style: none;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.visit-detail > summary::-webkit-details-marker {
  display: none;
}

.visit-detail > summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 1.15rem;
  line-height: 1;
}

.visit-detail[open] > summary::after {
  content: "–";
}

.visit-detail-body {
  padding: 0 0 1.35rem;
  border-top: 1px solid rgba(20, 32, 40, 0.08);
  color: var(--ink-soft);
}

.visit-detail-body p {
  margin: 1rem 0 0;
}

.visit-detail-body h3 {
  margin: 1.4rem 0 0.55rem;
  font-size: 1.05rem;
  color: var(--teal-deep);
}

.visit-detail-body ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.visit-detail-body li {
  margin-bottom: 0.35rem;
}

.visit-detail-close {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--teal) !important;
}

.program {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.program li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: white;
  border-left: 3px solid var(--teal);
}

.program .step {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}

.program h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.program p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Tickets */
.tickets {
  padding: 5rem 0;
  background:
    linear-gradient(160deg, var(--teal-deep) 0%, #0a5a61 45%, #1d3d2a 100%);
  color: white;
  position: relative;
  overflow: clip;
}

.tickets::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(211, 84, 0, 0.25), transparent 60%);
  pointer-events: none;
}

.ticket-board {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.payment-safe {
  position: relative;
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.payment-safe-copy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.payment-lock {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c9a4;
  flex-shrink: 0;
}

.payment-safe-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.98rem;
}

.payment-safe-text {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.payment-brands {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.pay-badge {
  display: grid;
  place-items: center;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pay-badge svg {
  display: block;
}

.ticket-cta {
  position: relative;
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.museum-ticket {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f3eee4 100%);
  color: var(--ink);
  padding: 1.6rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.museum-ticket::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0a5a61;
  transform: translateY(-50%);
}

.ticket-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--teal-deep);
}

.ticket-place {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticket-mid {
  margin: 1.4rem 0 1rem;
  padding: 1rem 0;
  border-top: 1px dashed rgba(20, 32, 40, 0.2);
  border-bottom: 1px dashed rgba(20, 32, 40, 0.2);
}

.ticket-label {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brown);
  font-weight: 700;
}

.ticket-price {
  margin: 0.2rem 0;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--orange);
}

.ticket-price span {
  font-size: 1.6rem;
}

.ticket-note {
  margin: 0;
  color: var(--ink-soft);
}

.ticket-perf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ticket-perf span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.fare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.fare {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.1rem;
  backdrop-filter: blur(6px);
}

.fare h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.fare-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  color: #f0c9a4;
}

.fare p:last-child {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Practical */
.practical {
  padding: 5rem 0;
}

.practical-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.rules article {
  background: white;
  padding: 1rem 1.1rem;
  border-top: 3px solid var(--teal);
}

.rules h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--teal-deep);
}

.rules p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.map-card {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.map-card img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
  background: white;
}

.map-card figcaption {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.map-download {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.92rem;
}

/* Curiosità */
.curiosita {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #ece8e1, var(--paper));
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.story {
  padding: 1.4rem 1.35rem;
  background: white;
  border-bottom: 3px solid var(--orange);
}

.story:nth-child(2) {
  border-bottom-color: var(--teal);
}

.story:nth-child(3) {
  border-bottom-color: var(--green);
}

.story:nth-child(4) {
  border-bottom-color: var(--brown);
}

.story h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}

.story p {
  margin: 0;
  color: var(--ink-soft);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.gallery-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

/* Audience */
.audience {
  padding: 4.5rem 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-grid article {
  padding: 1.4rem;
  background: white;
  border: 1px solid rgba(20, 32, 40, 0.08);
}

.audience-grid h3 {
  color: var(--teal-deep);
  margin-bottom: 0.45rem;
}

.audience-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.mid-cta {
  margin-top: 2.5rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(10, 107, 115, 0.1), rgba(211, 84, 0, 0.08)),
    url("images/galleria-tunnel.jpg") center / cover;
  background-blend-mode: multiply, normal;
  color: white;
  position: relative;
  isolation: isolate;
}

.mid-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 72, 80, 0.88), rgba(30, 40, 28, 0.78));
  z-index: -1;
}

.script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #f0c9a4;
}

.mid-cta > p:nth-of-type(2) {
  margin: 0.35rem 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.03em;
}

/* FAQ */
.faq {
  padding: 4rem 0 5.5rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  background: white;
  border: 1px solid rgba(20, 32, 40, 0.08);
  padding: 0.2rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 0;
  list-style: none;
  color: var(--teal-deep);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: #0c1c20;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: white;
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: #d7ebee;
}

.fine {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.legal {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  font-size: 0.8rem;
  opacity: 0.55;
}

.credits {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0.85rem auto 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

.credits a {
  color: #f0c9a4;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 201, 164, 0.45);
}

.credits a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* Motion */
@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

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

@keyframes pulseY {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, -6px);
    opacity: 0.9;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-img,
  .hero-scroll,
  .alert-card,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .header-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .alert-grid,
  .fact-row,
  .pillars,
  .ticket-board,
  .practical-grid,
  .story-grid,
  .gallery-mosaic,
  .audience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .rules,
  .fare-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    position: static;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    margin-bottom: 4.5rem;
  }

  .pillar-media {
    aspect-ratio: 16 / 11;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .payment-safe {
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-row {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-price {
    font-size: 3.4rem;
  }

  .header-actions .btn-primary {
    padding-inline: 1rem;
  }
}
