/* Apple-inspired clean layout overrides. */
:root {
  --cvp-black: #000;
  --cvp-ink: #1d1d1f;
  --cvp-panel: #fff;
  --cvp-panel-solid: #fff;
  --cvp-line: rgba(0, 0, 0, 0.08);
  --cvp-line-soft: rgba(0, 0, 0, 0.06);
  --cvp-red: #e60000;
  --cvp-red-dark: #bf0000;
  --cvp-white: #fff;
  --cvp-muted: #6e6e73;
  --cvp-dim: #86868b;
  --cvp-parchment: #f5f5f7;
  --cvp-surface: #fbfbfd;
  --cvp-dark-tile: #111113;
  --cvp-font: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

html,
body {
  background: var(--cvp-parchment);
  color: var(--cvp-ink);
  font-family: var(--cvp-font);
  letter-spacing: -0.012em;
}

body {
  background: var(--cvp-parchment);
  color: var(--cvp-ink);
}

.cvp-page {
  background: var(--cvp-parchment);
}

.cvp-shell {
  width: min(1180px, calc(100% - 48px));
}

.cvp-site-header {
  top: 0;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(1.25);
}

.cvp-site-header .cvp-shell {
  width: min(1120px, calc(100% - 32px));
}

.cvp-nav-frame {
  grid-template-columns: 178px minmax(420px, 1fr) auto;
  min-height: 52px;
  padding: 0;
  gap: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  clip-path: none;
}

.cvp-nav-frame::before,
.cvp-nav-frame::after,
.cvp-brand::after {
  display: none;
}

.cvp-brand {
  padding: 0;
}

.cvp-brand img {
  width: 138px;
  filter: none;
}

.cvp-main-menu {
  gap: 18px;
}

.cvp-main-menu > .cvp-menu-item > a {
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cvp-main-menu > .cvp-menu-item > a:hover,
.cvp-main-menu > .cvp-menu-item > a:focus-visible,
.cvp-menu-item.is-current > a {
  background: transparent;
  border-color: transparent;
  color: #fff;
}

.cvp-menu-item.is-current > a::after {
  left: 0;
  right: 0;
  bottom: 7px;
  background: rgba(255, 255, 255, 0.76);
}

.cvp-menu-caret {
  width: 6px;
  height: 6px;
  border-width: 1px;
  opacity: 0.7;
}

.cvp-submenu {
  top: calc(100% + 4px);
  width: 236px;
  padding: 8px;
  background: rgba(30, 30, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(1.2);
}

.cvp-submenu::before {
  display: none;
}

.cvp-submenu a {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 400;
}

.cvp-submenu a:hover,
.cvp-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: none;
}

.cvp-nav-actions {
  gap: 8px;
}

.cvp-nav-actions .cvp-button {
  min-width: auto;
  min-height: 32px;
  padding: 0 15px;
  gap: 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.cvp-nav-actions .cvp-button .cvp-arrow {
  font-size: 18px;
}

.cvp-icon-link {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
}

.cvp-icon-link:hover,
.cvp-icon-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

.cvp-icon-link svg {
  width: 18px;
  height: 18px;
}

.cvp-cart-count {
  top: -2px;
  right: -2px;
  min-width: 15px;
  height: 15px;
  font-size: 9px;
}

.cvp-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--cvp-red);
  box-shadow: none;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.cvp-button:hover,
.cvp-button:focus-visible,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
  background: #f20a0a;
}

.cvp-button:active,
.button:active,
.wp-element-button:active {
  transform: scale(0.96);
}

.cvp-button--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: #fff;
}

.cvp-button--ghost:hover,
.cvp-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: currentColor;
  box-shadow: none;
}

.cvp-arrow {
  font-size: 23px;
}

.cvp-hero {
  min-height: 100svh;
  padding: 128px 0 92px;
  background: #000;
}

.cvp-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9) 88%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.72)),
    url("../images/concert-bg.webp") center / cover no-repeat;
  transform: none;
}

.cvp-hero::after {
  display: none;
}

.cvp-hero-grid {
  grid-template-columns: minmax(500px, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 220px);
}

.cvp-eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.cvp-eyebrow::before {
  display: none;
}

.cvp-hero-title {
  max-width: 650px;
  font-size: clamp(48px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.cvp-hero-title span {
  color: #ff1d1d;
}

.cvp-hero-copy {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(21px, 1.6vw, 26px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.018em;
}

.cvp-hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.cvp-product-stage {
  min-height: 560px;
  filter: drop-shadow(3px 5px 30px rgba(0, 0, 0, 0.22));
}

.cvp-stage-platform {
  left: 4%;
  right: 2%;
  bottom: 44px;
  height: 88px;
  background: linear-gradient(180deg, #202020, #0d0d0f);
  border: 0;
  box-shadow: none;
}

.cvp-stage-platform::after {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 400;
}

.cvp-credential {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.cvp-credential::before,
.cvp-credential::after {
  display: none;
}

.cvp-credential img,
.cvp-stage-wristband img {
  filter: saturate(0.94) contrast(1.05) brightness(0.94);
}

.cvp-credential-main {
  left: 28%;
  top: 7%;
  width: 268px;
  height: 368px;
}

.cvp-credential-side {
  right: 2%;
  top: 25%;
  width: 184px;
  height: 256px;
}

.cvp-credential-small {
  left: 4%;
  top: 32%;
  width: 172px;
  height: 248px;
}

.cvp-stage-wristband {
  right: 2%;
  bottom: 118px;
  border: 0;
  box-shadow: none;
}

.cvp-product-band {
  padding: 86px 0 72px;
  background: var(--cvp-parchment);
  color: var(--cvp-ink);
}

.cvp-product-row {
  gap: 22px;
  margin: 0;
}

.cvp-product-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  clip-path: none;
  box-shadow: none;
  color: var(--cvp-ink);
}

.cvp-product-card::after {
  display: none;
}

.cvp-card-number {
  color: var(--cvp-dim);
  font-size: 13px;
  font-weight: 400;
}

.cvp-product-card h3 {
  max-width: 260px;
  margin: 12px 0 10px;
  color: var(--cvp-ink);
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cvp-product-card p {
  max-width: 310px;
  color: var(--cvp-muted);
  font-size: 17px;
  line-height: 1.45;
}

.cvp-card-link {
  margin-top: 18px;
  color: var(--cvp-red);
  font-size: 17px;
  font-weight: 400;
}

.cvp-product-image {
  align-self: end;
  justify-self: center;
  width: min(88%, 330px);
  margin: 24px auto 0;
}

.cvp-product-image img {
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(3px 5px 30px rgba(0, 0, 0, 0.22));
}

.cvp-trust-strip {
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-top: 44px;
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 0;
  clip-path: none;
  color: var(--cvp-muted);
}

.cvp-trust-copy {
  color: var(--cvp-muted);
  font-size: 14px;
  letter-spacing: 0;
}

.cvp-trust-copy span {
  color: var(--cvp-red);
}

.cvp-trust-icons {
  display: none;
}

.cvp-trust-meta {
  color: var(--cvp-muted);
}

.cvp-quote-section {
  padding: 64px 0;
  background: #fff;
  color: var(--cvp-ink);
}

.cvp-quote-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cvp-panel-label {
  margin: 0 0 7px;
  color: var(--cvp-muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.cvp-quote-copy h2,
.cvp-quote-panel h2 {
  margin: 0;
  color: var(--cvp-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cvp-quote-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.cvp-quote-option {
  display: inline-grid;
  grid-template-columns: 20px auto 17px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--cvp-ink);
  font-size: 14px;
  font-weight: 400;
}

.cvp-quote-option svg {
  stroke: var(--cvp-muted);
}

.cvp-check {
  width: 16px;
  height: 16px;
  border-color: rgba(0, 0, 0, 0.24);
  border-radius: 999px;
}

.cvp-quote-option.is-active {
  border-color: rgba(230, 0, 0, 0.32);
}

.cvp-quote-option.is-active .cvp-check {
  background: var(--cvp-red);
}

.cvp-content-section {
  padding: 100px 0;
  background: #fff;
  color: var(--cvp-ink);
}

.cvp-section-heading {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.cvp-section-heading .cvp-eyebrow {
  color: var(--cvp-muted);
}

.cvp-section-heading h2 {
  color: var(--cvp-ink);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.cvp-section-heading p {
  color: var(--cvp-muted);
  font-size: 21px;
  line-height: 1.38;
}

.cvp-showcase-grid {
  gap: 22px;
}

.cvp-showcase-card {
  min-height: 380px;
  padding: 28px;
  background: var(--cvp-parchment);
  border: 0;
  border-radius: 18px;
  color: var(--cvp-ink);
}

.cvp-showcase-card img {
  height: 210px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
}

.cvp-showcase-card h3 {
  color: var(--cvp-ink);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cvp-showcase-card p {
  color: var(--cvp-muted);
  font-size: 17px;
}

.cvp-standard-page,
.site-main {
  background: var(--cvp-parchment);
  color: var(--cvp-ink);
}

.cvp-standard-page .entry-title,
.woocommerce-products-header__title,
.page-title {
  color: var(--cvp-ink);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.cvp-standard-page .entry-content {
  color: var(--cvp-ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
}

.cvp-standard-page .entry-content h2,
.cvp-standard-page .entry-content h3,
.cvp-standard-page .entry-content h4 {
  color: var(--cvp-ink);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.cvp-standard-page .entry-content a {
  color: var(--cvp-red);
  border-bottom: 0;
}

.cvp-site-footer {
  background: var(--cvp-parchment);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--cvp-muted);
}

.woocommerce {
  color: var(--cvp-ink);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--cvp-ink);
}

@media (max-width: 1180px) {
  .cvp-site-header .cvp-shell {
    width: min(100% - 32px, 1120px);
  }

  .cvp-nav-frame {
    grid-template-columns: 150px minmax(360px, 1fr) auto;
    gap: 12px;
  }

  .cvp-brand img {
    width: 124px;
  }

  .cvp-main-menu {
    gap: 12px;
  }

  .cvp-main-menu > .cvp-menu-item > a {
    font-size: 12px;
    padding: 0;
  }

  .cvp-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cvp-product-stage {
    min-height: 460px;
  }

  .cvp-quote-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 860px) {
  .cvp-site-header {
    position: fixed;
    top: 0;
  }

  .cvp-nav-frame {
    min-height: 56px;
    padding: 0;
  }

  .cvp-brand img {
    width: 132px;
  }

  .cvp-hero {
    padding-top: 104px;
  }

  .cvp-hero-title {
    font-size: clamp(44px, 12vw, 58px);
  }

  .cvp-hero-copy {
    font-size: 20px;
  }

  .cvp-product-row,
  .cvp-showcase-grid {
    grid-template-columns: 1fr;
  }

  .cvp-product-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .cvp-shell,
  .cvp-site-header .cvp-shell {
    width: min(100% - 32px, 1120px);
  }

  .cvp-nav-frame {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .cvp-brand img {
    width: 122px;
  }

  .cvp-nav-actions .cvp-button {
    min-width: auto;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cvp-hero-title {
    font-size: clamp(38px, 10.8vw, 45px);
  }

  .cvp-hero-actions {
    width: 100%;
  }

  .cvp-product-stage {
    min-height: 330px;
  }

  .cvp-credential-main {
    left: 24%;
    width: 166px;
    height: 228px;
  }

  .cvp-credential-side,
  .cvp-credential-small {
    width: 112px;
    height: 156px;
  }

  .cvp-stage-wristband {
    width: 188px;
  }

  .cvp-product-band,
  .cvp-content-section {
    padding: 64px 0;
  }

  .cvp-trust-strip {
    grid-template-columns: 1fr;
  }

  .cvp-quote-options {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* v0.3.13 imported content polish and Foiled Passes page treatment. */
.cvp-standard-page .entry-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 34px 0;
  list-style: none;
}

.cvp-standard-page .entry-content .wp-block-gallery.columns-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cvp-standard-page .entry-content .wp-block-gallery > li,
.cvp-standard-page .entry-content .blocks-gallery-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cvp-standard-page .entry-content .wp-block-gallery > li::marker,
.cvp-standard-page .entry-content .blocks-gallery-item::marker {
  content: "";
}

.cvp-standard-page .entry-content .blocks-gallery-item figure {
  margin: 0;
}

.cvp-standard-page .entry-content .blocks-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
}

.cvp-page-foiled-passes .cvp-standard-page .entry-header,
.cvp-page-foiled-passes .cvp-standard-page .entry-content {
  max-width: none;
}

.cvp-page-foiled-passes .cvp-standard-page .entry-header {
  margin-bottom: 34px;
}

.cvp-page-foiled-passes .cvp-standard-page .entry-title {
  max-width: 880px;
  font-size: 64px;
  line-height: 1.03;
}

.cvp-foil-page {
  padding-bottom: 112px;
}

.cvp-foil-page :where(h2, h3, p, figure, ul) {
  margin-top: 0;
}

.cvp-foil-page img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 8px;
}

.cvp-foil-kicker {
  margin-bottom: 12px;
  color: var(--cvp-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.cvp-foil-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.cvp-foil-hero__copy {
  max-width: 720px;
}

.cvp-foil-hero h2,
.cvp-foil-craft h2,
.cvp-foil-section-heading h2 {
  color: var(--cvp-ink);
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

.cvp-foil-hero h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1.04;
}

.cvp-foil-page p {
  max-width: 67ch;
  color: #454548;
  font-size: 18px;
  line-height: 1.62;
}

.cvp-foil-lede {
  color: #252528;
  font-size: 22px;
  line-height: 1.48;
}

.cvp-foil-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.cvp-foil-button,
.cvp-foil-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.cvp-foil-button {
  background: var(--cvp-red);
  color: #fff;
}

.cvp-standard-page .entry-content a.cvp-foil-button {
  min-width: 154px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 0;
}

.cvp-standard-page .entry-content a.cvp-foil-text-link {
  color: var(--cvp-ink);
}

.cvp-standard-page .entry-content a.cvp-foil-button::before {
  content: "Request a quote";
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 15px;
}

.cvp-foil-button:hover,
.cvp-foil-button:focus-visible {
  background: #c90000;
  color: #fff;
}

.cvp-standard-page .entry-content a.cvp-foil-button:hover,
.cvp-standard-page .entry-content a.cvp-foil-button:focus-visible {
  color: #fff;
}

.cvp-foil-text-link {
  background: #fff;
  color: var(--cvp-ink);
}

.cvp-foil-text-link:hover,
.cvp-foil-text-link:focus-visible {
  background: #ececef;
  color: var(--cvp-ink);
}

.cvp-foil-button:active,
.cvp-foil-text-link:active {
  transform: scale(0.98);
}

.cvp-foil-hero__media,
.cvp-foil-craft,
.cvp-foil-card {
  box-shadow: 0 22px 60px rgba(28, 28, 31, 0.08);
}

.cvp-foil-hero__media {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.cvp-foil-hero__media img {
  aspect-ratio: 1.08;
  object-fit: cover;
}

.cvp-foil-hero__media figcaption {
  padding: 16px 18px 18px;
  color: var(--cvp-muted);
  font-size: 14px;
  line-height: 1.42;
}

.cvp-foil-craft {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  margin: 104px 0;
  padding: 42px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.cvp-foil-craft__media {
  margin: 0;
}

.cvp-foil-craft__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cvp-foil-craft h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
}

.cvp-foil-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.cvp-foil-proof-list li {
  min-height: 164px;
  padding: 20px;
  background: var(--cvp-parchment);
  border-radius: 8px;
}

.cvp-foil-proof-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--cvp-red);
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.cvp-foil-proof-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cvp-ink);
  font-size: 17px;
  line-height: 1.2;
}

.cvp-foil-proof-list p {
  margin: 0;
  color: var(--cvp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.cvp-foil-gallery {
  margin-top: 96px;
}

.cvp-foil-gallery--use {
  margin-top: 104px;
}

.cvp-foil-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.cvp-foil-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 46px;
  line-height: 1.08;
}

.cvp-foil-section-heading p:last-child {
  margin-bottom: 0;
}

.cvp-foil-grid {
  display: grid;
  gap: 20px;
}

.cvp-foil-grid--varieties {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
}

.cvp-foil-grid--use {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cvp-foil-card {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.cvp-foil-card img {
  aspect-ratio: 600 / 735;
  object-fit: cover;
  background: #141414;
  border-radius: 0;
}

.cvp-foil-card--wide img {
  aspect-ratio: 16 / 9;
}

.cvp-foil-card figcaption {
  padding: 13px 14px 15px;
  color: var(--cvp-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .cvp-page-foiled-passes .cvp-standard-page .entry-title {
    font-size: 52px;
  }

  .cvp-foil-hero,
  .cvp-foil-craft,
  .cvp-foil-section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cvp-foil-hero h2 {
    font-size: 44px;
  }

  .cvp-foil-craft {
    padding: 28px;
  }

  .cvp-foil-craft h2,
  .cvp-foil-section-heading h2 {
    font-size: 36px;
  }

  .cvp-foil-proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .cvp-page-foiled-passes .cvp-standard-page .entry-title {
    font-size: 42px;
  }

  .cvp-foil-page {
    padding-bottom: 76px;
  }

  .cvp-foil-hero h2 {
    font-size: 34px;
  }

  .cvp-foil-craft,
  .cvp-foil-gallery,
  .cvp-foil-gallery--use {
    margin-top: 72px;
  }

  .cvp-foil-craft {
    padding: 18px;
  }

  .cvp-foil-page p,
  .cvp-foil-lede {
    font-size: 17px;
  }

  .cvp-foil-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cvp-foil-grid--varieties,
  .cvp-foil-grid--use,
  .cvp-standard-page .entry-content .wp-block-gallery,
  .cvp-standard-page .entry-content .wp-block-gallery.columns-3 {
    grid-template-columns: 1fr;
  }
}

/* v0.2.6 true final header padding override. */
.cvp-site-header {
  padding-block: 8px;
}

.cvp-nav-frame {
  min-height: 58px;
}

.cvp-hero {
  padding-top: 136px;
}

.cvp-standard-page {
  padding-top: 176px;
}

@media (max-width: 860px) {
  .cvp-site-header {
    padding-block: 6px;
  }

  .cvp-nav-frame {
    min-height: 58px;
  }

  .cvp-hero {
    padding-top: 124px;
  }

  .cvp-standard-page {
    padding-top: 148px;
  }
}

/* v0.2.4 header breathing room. */
.cvp-site-header {
  padding: 8px 0;
}

.cvp-nav-frame {
  min-height: 58px;
  align-items: center;
}

.cvp-brand {
  display: inline-flex;
  align-items: center;
}

.cvp-main-menu > .cvp-menu-item > a {
  min-height: 42px;
}

.cvp-hero {
  padding-top: 132px;
}

.cvp-standard-page {
  padding-top: 170px;
}

@media (max-width: 860px) {
  .cvp-site-header {
    padding: 7px 0;
  }

  .cvp-nav-frame {
    min-height: 60px;
  }

  .cvp-hero {
    padding-top: 124px;
  }

  .cvp-standard-page {
    padding-top: 148px;
  }
}

@media (max-width: 560px) {
  .cvp-site-header {
    padding: 6px 0;
  }

  .cvp-nav-frame {
    min-height: 58px;
  }
}

/* v0.2.5 final header padding override. */
.cvp-site-header {
  padding-block: 8px;
}

.cvp-nav-frame {
  min-height: 58px;
}

.cvp-hero {
  padding-top: 136px;
}

.cvp-standard-page {
  padding-top: 176px;
}

@media (max-width: 860px) {
  .cvp-site-header {
    padding-block: 6px;
  }

  .cvp-nav-frame {
    min-height: 58px;
  }

  .cvp-hero {
    padding-top: 124px;
  }

  .cvp-standard-page {
    padding-top: 148px;
  }
}

/* v0.2.3 dark footer restoration. */
.cvp-site-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
}

.cvp-footer-grid {
  min-height: 148px;
  gap: 28px;
}

.cvp-footer-grid img {
  width: 142px;
  filter: none;
}

.cvp-footer-grid p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
}

.cvp-footer-grid p:last-child {
  color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 760px) {
  .cvp-footer-grid {
    min-height: 0;
    padding: 40px 0;
    gap: 16px;
  }
}

/* v0.2.2 Apple-clean final cascade. */
html,
body,
button,
input,
select,
textarea,
.cvp-page {
  letter-spacing: 0;
}

.cvp-shell {
  width: min(1200px, calc(100% - 64px));
}

.cvp-site-header {
  background: rgba(0, 0, 0, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  padding-block: 8px;
}

.cvp-site-header .cvp-shell {
  width: min(1180px, calc(100% - 48px));
}

.cvp-nav-frame {
  grid-template-columns: 170px minmax(430px, 1fr) auto;
  min-height: 58px;
  gap: 20px;
}

.cvp-brand img {
  width: 126px;
}

.cvp-main-menu {
  gap: 22px;
}

.cvp-main-menu > .cvp-menu-item > a {
  min-height: 44px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.cvp-main-menu > .cvp-menu-item > a:hover,
.cvp-main-menu > .cvp-menu-item > a:focus-visible,
.cvp-menu-item.is-current > a {
  color: #fff;
}

.cvp-menu-item.is-current > a::after {
  bottom: 4px;
  height: 1px;
  background: rgba(255, 255, 255, 0.74);
}

.cvp-nav-actions .cvp-button {
  min-height: 32px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.cvp-icon-link {
  width: 30px;
  height: 30px;
}

.cvp-icon-link svg {
  width: 17px;
  height: 17px;
}

.cvp-button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 44px;
  padding: 0 22px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.cvp-button .cvp-arrow {
  transform: translateY(-1px);
}

.cvp-hero {
  min-height: 94svh;
  padding: 136px 0 88px;
}

.cvp-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.95) 90%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.78)),
    url("../images/concert-bg.webp") center / cover no-repeat;
}

.cvp-hero-grid {
  grid-template-columns: minmax(545px, 0.92fr) minmax(480px, 1.08fr);
  gap: 72px;
  min-height: calc(94svh - 206px);
}

.cvp-eyebrow,
.cvp-panel-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.cvp-hero-title {
  max-width: 700px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: 0;
  text-wrap: normal;
}

.cvp-hero-copy {
  max-width: 560px;
  margin-top: 18px;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.34;
  letter-spacing: 0;
}

.cvp-hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.cvp-product-stage {
  min-height: 540px;
}

.cvp-credential-main {
  left: 28%;
  top: 8%;
  width: 250px;
  height: 344px;
}

.cvp-credential-side {
  right: 4%;
  top: 26%;
  width: 170px;
  height: 238px;
}

.cvp-credential-small {
  left: 4%;
  top: 34%;
  width: 158px;
  height: 230px;
}

.cvp-stage-wristband {
  right: 4%;
  bottom: 116px;
}

.cvp-product-band {
  padding: 104px 0 82px;
}

.cvp-product-row {
  gap: 18px;
}

.cvp-product-card {
  min-height: 548px;
  padding: 38px;
  border-radius: 18px;
}

.cvp-product-card h3 {
  max-width: 300px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.cvp-product-card p,
.cvp-card-link,
.cvp-showcase-card p,
.cvp-standard-page .entry-content {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: 0;
}

.cvp-card-number {
  font-size: 13px;
  letter-spacing: 0;
}

.cvp-trust-strip {
  margin-top: 48px;
}

.cvp-trust-copy,
.cvp-trust-meta {
  font-size: 13px;
  letter-spacing: 0;
}

.cvp-quote-section {
  padding: 78px 0;
}

.cvp-quote-shell {
  grid-template-columns: minmax(250px, 0.58fr) minmax(440px, 1fr) auto;
  gap: 32px;
}

.cvp-quote-copy h2,
.cvp-quote-panel h2 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: 0;
}

.cvp-quote-option {
  font-size: 14px;
  letter-spacing: 0;
}

.cvp-content-section {
  padding: 116px 0;
}

.cvp-section-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.cvp-section-heading h2 {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

.cvp-section-heading p {
  font-size: 21px;
  line-height: 1.42;
  letter-spacing: 0;
}

.cvp-showcase-card {
  padding: 30px;
}

.cvp-showcase-card h3 {
  font-size: 24px;
  letter-spacing: 0;
}

.cvp-standard-page {
  padding-top: 176px;
}

.cvp-standard-page .entry-header,
.cvp-standard-page .entry-content {
  max-width: 980px;
}

.cvp-standard-page .entry-title,
.woocommerce-products-header__title,
.page-title {
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

.cvp-standard-page .entry-content h2 {
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: 0;
}

.cvp-standard-page .entry-content h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}

@media (max-width: 1180px) {
  .cvp-shell,
  .cvp-site-header .cvp-shell {
    width: min(100% - 48px, 1120px);
  }

  .cvp-nav-frame {
    grid-template-columns: 146px minmax(350px, 1fr) auto;
    gap: 14px;
  }

  .cvp-brand img {
    width: 116px;
  }

  .cvp-main-menu {
    gap: 14px;
  }

  .cvp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cvp-hero-title {
    max-width: 680px;
    font-size: 52px;
  }

  .cvp-product-stage {
    max-width: 650px;
    min-height: 450px;
    margin: 0 auto;
  }

  .cvp-quote-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .cvp-shell,
  .cvp-site-header .cvp-shell {
    width: min(100% - 32px, 1120px);
  }

  .cvp-nav-frame {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .cvp-brand img {
    width: 126px;
  }

  .cvp-hero {
    min-height: auto;
    padding: 124px 0 72px;
  }

  .cvp-hero-grid {
    min-height: 0;
  }

  .cvp-hero-title {
    max-width: 100%;
    font-size: 44px;
    line-height: 1.08;
  }

  .cvp-hero-copy {
    font-size: 20px;
    line-height: 1.36;
  }

  .cvp-hero-actions {
    width: 100%;
  }

  .cvp-hero-actions .cvp-button {
    flex: 1 1 220px;
    justify-content: center;
  }

  .cvp-product-row,
  .cvp-showcase-grid {
    grid-template-columns: 1fr;
  }

  .cvp-product-card {
    min-height: auto;
  }

  .cvp-product-card h3 {
    font-size: 32px;
  }

  .cvp-section-heading h2,
  .cvp-standard-page .entry-title,
  .woocommerce-products-header__title,
  .page-title {
    font-size: 42px;
  }

  .cvp-standard-page {
    padding-top: 148px;
  }
}

@media (max-width: 560px) {
  .cvp-nav-actions .cvp-button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .cvp-hero-title {
    font-size: 39px;
    line-height: 1.08;
  }

  .cvp-product-stage {
    min-height: 320px;
  }

  .cvp-credential-main {
    left: 24%;
    width: 162px;
    height: 224px;
  }

  .cvp-credential-side,
  .cvp-credential-small {
    width: 108px;
    height: 152px;
  }

  .cvp-product-band,
  .cvp-content-section {
    padding: 72px 0;
  }

  .cvp-quote-section {
    padding: 64px 0;
  }

  .cvp-quote-options {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Rounded floating island navigation. */
.cvp-site-header {
  background: transparent !important;
  border-bottom: 0 !important;
}

.cvp-site-header .cvp-nav-frame {
  border-radius: 18px !important;
  clip-path: none !important;
}

.cvp-site-header .cvp-nav-frame::before {
  content: "";
  display: block !important;
  border-radius: 18px !important;
  clip-path: none !important;
}

/* Rounded header search overlay. */
.cvp-site-header .cvp-search-panel[hidden] {
  display: none !important;
}

.cvp-site-header .cvp-search-panel {
  left: 50%;
  pointer-events: auto;
  position: absolute;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 70;
}

.cvp-site-header .cvp-search-panel__form {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(18, 22, 23, 0.96), rgba(8, 10, 11, 0.9)),
    rgba(8, 10, 11, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  clip-path: none !important;
  display: grid;
  gap: clamp(0.7rem, 1.6vw, 1.2rem);
  grid-template-columns: 44px minmax(0, 1fr) auto 48px;
  min-height: 76px;
  overflow: hidden;
  padding: 8px 10px 8px clamp(1rem, 2.2vw, 1.5rem);
}

.cvp-site-header .cvp-search-panel__icon {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
}

.cvp-site-header .cvp-search-panel__icon svg {
  height: 30px;
  stroke-width: 1.7;
  width: 30px;
}

.cvp-site-header .cvp-search-panel input[type="search"] {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.35vw, 2.1rem);
  font-weight: 520;
  line-height: 1.1;
  min-height: 48px;
  min-width: 0;
  outline: 0;
  padding: 0 0 0 clamp(0.8rem, 1.8vw, 1.2rem);
  width: 100%;
}

.cvp-site-header .cvp-search-panel input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
}

.cvp-site-header .cvp-search-panel__submit {
  background: linear-gradient(180deg, #f0cf72, #e0b853);
  border: 0;
  border-radius: 12px;
  color: #111;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  min-height: 52px;
  padding: 0 clamp(1.2rem, 2.6vw, 2.15rem);
  text-transform: uppercase;
}

.cvp-site-header .cvp-search-panel__close {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: inline-flex;
  font-size: 2.2rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0;
  width: 48px;
}

@media (max-width: 680px) {
  .cvp-site-header .cvp-search-panel {
    top: calc(100% + 10px);
    width: min(100% - 24px, 560px);
  }

  .cvp-site-header .cvp-search-panel__form {
    gap: 0.7rem;
    grid-template-columns: 34px minmax(0, 1fr) 42px;
    min-height: 66px;
    padding: 8px;
  }

  .cvp-site-header .cvp-search-panel__submit {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 44px;
    width: 100%;
  }

  .cvp-site-header .cvp-search-panel input[type="search"] {
    font-size: 1.1rem;
    min-height: 42px;
  }

  .cvp-site-header .cvp-search-panel__close {
    grid-column: 3;
    grid-row: 1;
    min-height: 42px;
    width: 42px;
  }
}
