:root {
  color-scheme: light;
  --paper: #e6d2ae;
  --paper-soft: #efe2c9;
  --ink: #263a51;
  --blue: #3f6f9c;
  --teal: #52a0b4;
  --gold: #b99458;
  --rose: #be4f82;
  --line: rgba(53, 74, 101, 0.24);
  --card-shadow: 0 20px 55px rgba(53, 43, 24, 0.18);
}

* {
  box-sizing: border-box;

/* ── Accessibility utilities ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 0;
}

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

/* ── Focus styles ── */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 245, 224, 0.64), transparent 40%),
    radial-gradient(circle at 92% 88%, rgba(191, 78, 130, 0.1), transparent 36%),
    linear-gradient(135deg, #ddc69f 0%, #e9d7b8 45%, #d9c19a 100%);
  overflow-x: hidden;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.curve {
  position: absolute;
  opacity: 0.5;
  filter: saturate(0.85) contrast(0.96);
}

.curve-left {
  width: min(62vw, 900px);
  top: -15%;
  left: -10%;
}

.curve-right {
  width: min(74vw, 980px);
  bottom: -24%;
  right: -18%;
}

.stamp {
  position: absolute;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.stamp-a {
  width: 230px;
  top: 85px;
  right: 7%;
  transform: rotate(12deg);
}

.stamp-b {
  width: 200px;
  bottom: 94px;
  left: 5%;
  transform: rotate(-18deg);
}

.stamp-c {
  width: 170px;
  top: 44%;
  right: 3%;
  transform: rotate(-8deg);
  opacity: 0.13;
}

.stamp-d {
  display: none;
}

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

.shell-map {
  position: absolute;
  width: min(1100px, 110%);
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.13;
  mix-blend-mode: multiply;
}

.topbar,
.shell,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(1160px, calc(100vw - 24px));
  margin: 12px auto 0;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(246, 233, 208, 0.92);
  box-shadow: 0 10px 32px rgba(70, 57, 31, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.date-chip {
  border: 1px solid rgba(63, 111, 156, 0.36);
  border-radius: 999px;
  padding: 0.48rem 0.88rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 253, 248, 0.68);
}

.shell {
  position: relative;
  width: min(1160px, calc(100vw - 24px));
  margin: 14px auto 34px;
}

.ticket {
  position: relative;
  overflow: clip;
  border: 1px solid rgba(58, 81, 110, 0.3);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  background:
    radial-gradient(circle at 85% 8%, rgba(186, 132, 73, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(246, 235, 215, 0.97), rgba(235, 219, 190, 0.97));
  padding: clamp(18px, 3vw, 30px);
  animation: ticket-in 650ms ease-out both;
}


.details {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.notch-bottom {
  bottom: 32%;
}

.ticket-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ticket-art .map {
  position: absolute;
  width: min(900px, 86vw);
  top: 54px;
  left: 48%;
  transform: translateX(-50%);
  opacity: 0.33;
}

.stamp-main {
  position: absolute;
  width: min(360px, 48vw);
  right: -36px;
  bottom: -36px;
  opacity: 0.54;
  transform: rotate(-7deg);
}

.stamp-side {
  position: absolute;
  width: min(170px, 30vw);
  right: 60px;
  top: 20px;
  opacity: 0.44;
  transform: rotate(12deg);
}

.ticket-header,
.ticket-body,
.boarding-grid {
  position: relative;
  z-index: 1;
}

.boarding-grid {
  margin-top: 22px;
  border-top: 2px dashed rgba(44, 65, 91, 0.32);
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.detail-chip {
  min-width: 0;
  border: 1px solid rgba(53, 74, 101, 0.2);
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(250, 243, 229, 0.8);
  display: grid;
  gap: 4px;
}

.detail-label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(40, 58, 80, 0.9);
}

.detail-chip strong {
  display: block;
  min-width: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.34rem;
  letter-spacing: 0.02em;
  line-height: 1.05;
  word-break: break-word;
}

.museum-stripe {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid rgba(41, 70, 98, 0.38);
  background: linear-gradient(180deg, #426b90, #395d7e);
  color: rgba(244, 249, 255, 0.96);
  min-height: 62px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: clamp(0.84rem, 1.2vw, 1.02rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.museum-stripe img {
  width: min(620px, 88%);
  height: auto;
  position: relative;
  z-index: 1;
}

.museum-stripe-stamp {
  position: absolute;
  right: 18px;
  top: 50%;
  width: min(110px, 21vw);
  transform: translateY(-50%) rotate(-7deg);
  opacity: 0.35;
  mix-blend-mode: screen;
  z-index: 0;
}

.flight-logo,
.wordmark {
  max-width: min(540px, 60%);
  margin-bottom: 12px;
}

.kicker,
.subhead {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticket-body p {
  margin: 0;
  line-height: 1.72;
  font-size: 0.99rem;
}

.ticket-cta {
  margin-top: 24px;
  padding-top: 22px;
  /* border-top: 2px dashed rgba(44, 65, 91, 0.32); */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #426b90, #395d7e);
  color: rgba(244, 249, 255, 0.98);
  border: 1px solid rgba(79, 93, 111, 0.4);
  border-radius: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(57, 93, 126, 0.28);
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(57, 93, 126, 0.36);
  background: linear-gradient(180deg, #4a7aa5, #3d6689);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(57, 93, 126, 0.22);
}

.cta-pricing {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(40, 58, 80, 0.78);
}

.tickets {
  margin-top: 16px;
}

.sponsorship {
  margin-top: 16px;
}

.sponsorship-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 80%, rgba(185, 148, 88, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(244, 234, 214, 0.95), rgba(239, 226, 198, 0.97));
  box-shadow: var(--card-shadow);
  padding: 20px;
}

.sponsorship-deco-stamp {
  position: absolute;
  width: min(140px, 20vw);
  right: -12px;
  bottom: -12px;
  opacity: 0.25;
  transform: rotate(-11deg);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.sponsorship-card h2 {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sponsorship-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  max-width: 64ch;
  line-height: 1.7;
}

.sponsorship-cta {
  display: inline-block;
  margin-top: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f4d6a;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(47, 77, 106, 0.4);
  font-weight: 600;
}

.sponsorship-cta:hover {
  text-decoration-color: rgba(47, 77, 106, 0.9);
}

.tickets-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 16%, rgba(186, 132, 73, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(244, 234, 214, 0.95), rgba(239, 226, 198, 0.97));
  box-shadow: var(--card-shadow);
  padding: 20px;
}

.tickets-card h2,
.tickets-card p {
  position: relative;
  z-index: 1;
}

.tickets-deco-map {
  position: absolute;
  width: min(700px, 90%);
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  opacity: 0.1;
  pointer-events: none;
}

.tickets-deco-stamp {
  position: absolute;
  width: min(160px, 22vw);
  right: -18px;
  top: -12px;
  opacity: 0.3;
  transform: rotate(10deg);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.tickets-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tickets-card p {
  margin: 10px 0 0;
  max-width: 64ch;
  line-height: 1.7;
}

.tickets-embed {
  margin-top: 14px;
  min-height: 340px;
  border: 2px dashed rgba(53, 74, 101, 0.35);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.7);
  display: grid;
  place-items: center;
  padding: 14px;
}

.tickets-embed p {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a6070;
}

.card-deco {
  position: absolute;
  width: min(180px, 34%);
  right: -16px;
  bottom: -16px;
  opacity: 0.28;
  transform: rotate(-9deg);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 234, 214, 0.94), rgba(239, 226, 198, 0.95));
  box-shadow: var(--card-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.card h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.card li {
  line-height: 1.62;
}

.mission-inline {
  margin-top: 18px;
  border-top: 1px dashed rgba(53, 74, 101, 0.35);
  padding-top: 14px;
}

.mission-inline h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.3rem, 2.7vw, 1.7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mission-inline p {
  margin: 10px 0 0;
  line-height: 1.7;
  max-width: 54ch;
}

.card-venue {
  padding: 0;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.venue-stripe {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: linear-gradient(180deg, #426b90, #395d7e);
  margin: 0;
}

.venue-stripe img {
  width: min(450px, 96%);
}

.venue-photo {
  min-height: 230px;
  flex: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.venue-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}

.location-map {
  position: relative;
  display: block;
  min-height: 156px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(245, 236, 219, 0.92), rgba(239, 226, 199, 0.92));
  overflow: hidden;
}

.location-map-bg {
  position: absolute;
  right: -56px;
  bottom: -40px;
  width: min(360px, 88%);
  opacity: 0.24;
}

.location-pin {
  position: absolute;
  right: 24px;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #426b90;
  box-shadow: 0 0 0 3px rgba(248, 239, 225, 0.8);
}

.location-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f4ead4;
  top: 5px;
  left: 5px;
}

.location-title,
.location-address {
  position: relative;
  z-index: 1;
  display: block;
}

.location-title {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1rem;
  color: #2f4d6a;
}

.location-address {
  margin-top: 6px;
  max-width: 34ch;
  line-height: 1.55;
  font-weight: 600;
}

.footer {
  width: min(1160px, calc(100vw - 24px));
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  color: rgba(40, 58, 80, 0.92);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-right {
  align-items: flex-end;
}

.footer-kam-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.82;
}

.footer-marks {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-flight-logo {
  width: min(160px, 40vw);
  opacity: 0.82;
}

.footer-wordmark {
  width: min(160px, 40vw);
  opacity: 0.75;
}

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(40, 58, 80, 0.82);
  text-transform: none;
}

.footer-contact {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(40, 58, 80, 0.45);
  color: #28415a;
}

.footer-contact:hover {
  color: var(--ink);
  text-decoration-color: rgba(40, 58, 80, 0.8);
}

@keyframes ticket-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .boarding-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .details {
    grid-template-columns: 1fr;
  }

  .stamp-main {
    width: min(310px, 52vw);
  }
}

@media (max-width: 700px) {
  .topbar {
    border-radius: 18px;
  }

  .brand span {
    display: none;
  }

  .flight-logo,
  .wordmark {
    max-width: 80%;
  }

  .ticket {
    border-radius: 18px;
    padding: 16px;
  }

  .ticket-notch {
    display: none;
  }

  .ticket-art .map {
    width: 210%;
    top: 70px;
    left: -42%;
    transform: none;
    opacity: 0.24;
  }

  .stamp-side {
    right: 6px;
    top: 6px;
    width: 125px;
  }

  .stamp-main {
    right: -64px;
    width: 250px;
    bottom: -20px;
  }

  .kicker {
    font-size: 0.72rem;
  }

  .subhead {
    font-size: 0.85rem;
  }

  .ticket-body {
    margin-top: 14px;
    gap: 8px;
  }

  .ticket-body p {
    font-size: 0.92rem;
    line-height: 1.66;
  }

  .ticket-cta {
    margin-top: 18px;
    padding-top: 16px;
    gap: 10px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(57, 93, 126, 0.22);
  }

  .cta-pricing {
    font-size: 0.82rem;
  }

  .boarding-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-chip strong {
    font-size: 1.2rem;
  }

  .card {
    border-radius: 18px;
    padding: 16px;
  }

  .card-venue {
    padding: 0;
  }

  .venue-photo {
    min-height: 180px;
  }

  .location-map {
    min-height: 144px;
    padding: 14px;
  }

  .tickets-card {
    border-radius: 18px;
    padding: 16px;
  }

  .tickets-embed {
    min-height: 280px;
    border-radius: 14px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.78rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-marks {
    align-items: flex-start;
  }
}
