:root {
  --primary-teal: #005559;
  --primary-teal-dark: #003d40;
  --accent-gold: #f8b90e;
  --warm-red: #cc4a28;
  --light-teal: #98e1d5;
  --dark-bg: #1c1b1b;
  --cream: #f2eee6;
  --white: #ffffff;
  --text-dark: #232323;
  --text-muted: #636363;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark-bg);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(28, 27, 27, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 128px;
  height: 64px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-panel a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--accent-gold);
  background: rgba(248, 185, 14, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-toggle {
  display: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  display: block;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  transform: translate(-50%, -50%);
}

.nav-toggle::before {
  transform: translate(-50%, -9px);
}

.nav-toggle::after {
  transform: translate(-50%, 7px);
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 82px 0 0;
  z-index: 45;
  display: none;
  padding: 28px;
  background: rgba(28, 27, 27, 0.98);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  width: min(420px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  padding: 150px 0 76px;
  overflow: hidden;
  isolation: isolate;
}

.hero.compact {
  min-height: 58vh;
  padding-bottom: 56px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(28, 27, 27, 0.2) 0%, rgba(28, 27, 27, 0.72) 66%, var(--dark-bg) 100%),
    linear-gradient(90deg, rgba(0, 85, 89, 0.76), rgba(28, 27, 27, 0.24));
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  letter-spacing: 0;
}

.compact h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.hero-copy {
  width: min(640px, 100%);
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius);
  background: var(--accent-gold);
  color: var(--dark-bg);
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.secondary {
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(248, 185, 14, 0.1);
}

.band {
  padding: 84px 0;
}

.band.teal {
  background: var(--primary-teal);
}

.band.cream {
  background: var(--cream);
  color: var(--text-dark);
}

.band.dark {
  background: var(--dark-bg);
}

.section-head {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.section-head p {
  margin-top: 16px;
  color: inherit;
  opacity: 0.78;
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.media-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.card,
.menu-card,
.event-card,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.card {
  padding: 24px;
}

.card h3,
.menu-card h3,
.event-card h3,
.info-card h3 {
  margin-bottom: 12px;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.card p,
.menu-card p,
.event-card p,
.info-card p {
  color: rgba(255, 255, 255, 0.78);
}

.cream .card,
.cream .info-card {
  border-color: rgba(0, 85, 89, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.cream .card p,
.cream .info-card p {
  color: rgba(35, 35, 35, 0.74);
}

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

.menu-card {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.menu-card.featured {
  background: rgba(248, 185, 14, 0.12);
  border-color: var(--accent-gold);
}

.menu-card .button {
  width: fit-content;
  margin-top: 18px;
}

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

.event-list.single {
  grid-template-columns: minmax(0, 720px);
}

.event-card {
  overflow: hidden;
}

.event-card img {
  width: 100%;
  /* aspect-ratio: 16 / 11; */
  object-fit: cover;
}

.event-card-content {
  padding: 24px;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.event-date {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(248, 185, 14, 0.14);
  color: var(--accent-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ticket-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.ticket-card.featured {;
}

.ticket-card h3 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.ticket-price {
  margin: 18px 0;
  color: var(--accent-gold);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.ticket-card .button {
  margin-top: 14px;
}

.award-band {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.award-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.award-layout h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.award-layout p:last-child {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}

.award-widget {
  display: flex;
  justify-content: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.poster-frame {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 108px;
}

.purchase-card {
  padding: 22px;
  border: 1px solid rgba(248, 185, 14, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 185, 14, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.purchase-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.purchase-copy,
.purchase-note {
  color: rgba(255, 255, 255, 0.76);
}

.purchase-copy {
  margin: 12px 0 18px;
}

.purchase-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.purchase-row span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  font-weight: 800;
}

.purchase-row strong {
  color: var(--accent-gold);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.purchase-card .button {
  width: 100%;
}

.purchase-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.poster-gallery {
  display: grid;
  gap: 12px;
}

.poster-gallery .button {
  width: 100%;
}

.gallery-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.gallery-slide {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: none;
  cursor: zoom-in;
}

.gallery-slide.is-active {
  display: block;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.gallery-button {
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 800 2rem/1 Arial, Helvetica, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.gallery-button:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.gallery-counter {
  min-width: 54px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(94vw, 920px);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: 800 1.8rem/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.poster-frame > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 14px;
}

.included-list {
  margin: 12px 0 18px;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.dietary-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.dietary-icons span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
}

.dietary-icons strong {
  color: var(--light-teal);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.timeline-item time {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.timeline-item h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.weather-note {
  margin-top: 18px;
  padding: 20px;
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  background: rgba(248, 185, 14, 0.1);
}

.weather-note h3 {
  color: var(--accent-gold);
  font-size: 1.15rem;
}

.weather-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 20px;
}

.info-stack {
  display: grid;
  gap: 14px;
}

.info-card {
  padding: 22px;
}

.map-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.site-footer {
  padding: 44px 0 28px;
  background: #111;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1rem;
  color: var(--accent-gold);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius);
  background: rgba(248, 185, 14, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.success-panel {
  width: min(760px, calc(100% - 32px));
  margin: 150px auto 80px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions .phone {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .split,
  .contact-grid,
  .event-list,
  .ticket-grid,
  .detail-layout,
  .award-layout {
    grid-template-columns: 1fr;
  }

  .award-layout {
    text-align: center;
  }

  .award-layout p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .poster-frame {
    position: static;
  }

  .card-grid,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 20px, 1180px);
    height: 74px;
  }

  .brand img {
    width: 112px;
  }

  .mobile-panel {
    top: 74px;
  }

  .hero,
  .hero.compact {
    min-height: 72vh;
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .band {
    padding: 58px 0;
  }

  .card-grid,
  .menu-grid,
  .footer-grid,
  .form-row,
  .media-strip {
    grid-template-columns: 1fr;
  }

  .media-strip {
    gap: 10px;
  }

  .media-strip img {
    aspect-ratio: 16 / 10;
  }

  .hero-actions,
  .section-actions,
  .event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    grid-template-columns: 46px auto 46px;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .map-frame {
    min-height: 380px;
  }
}

.navetta{
  background-color: #005559;
  color: #fff;
  border: 1px solid #fff;
  width: 100%;
}

.purchase-card-navetta {
  padding: 22px;
  border: 1px solid rgba(17, 101, 91, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(41, 159, 137, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}