/*
Theme Name: Golden Ticket Liquidation
Theme URI: https://goldenticketliquidation.com
Author: GTL
Description: Custom theme matching the Golden Ticket Liquidation design.
Version: 1.0.0
Text Domain: gtl
*/

/* Main styles */

:root {
        color-scheme: light;
        --ink: #1b1b1f;
        --night: #ffffff;
        --card: #ffffff;
        --gold: #f7c948;
        --gold-deep: #b07a06;
        --gold-light: #fff3c4;
        --gold-bright: #ffe28a;
        --neon: #1b1b1f;
        --hot: #b5162b;
        --white: #ffffff;
        --muted: #6b7280;
      }
      * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: "Bebas Neue", "Oswald", "Impact", system-ui, sans-serif;
        background: radial-gradient(circle at 20% 10%, #fff9e6 0%, #ffffff 50%, #f7f7fb 100%);
        color: var(--ink);
        line-height: 1.1;
        padding-top: 72px;
      }
      main {
        display: grid;
        gap: 48px;
      }
      section {
        padding: 56px 24px;
      }
      .wrap {
        max-width: 1400px;
        margin: 0 auto;
      }
      .hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #fff7dc 60%);
        border-bottom: 4px solid var(--gold-deep);
      }
      .hero::after {
        content: "";
        position: absolute;
        inset: -40% -20% auto auto;
        width: 60%;
        height: 120%;
        background: radial-gradient(circle, rgba(247, 201, 72, 0.45) 0%, transparent 60%);
        transform: rotate(-8deg);
        pointer-events: none;
      }
.sticky-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(176, 122, 6, 0.2);
        transform: translateY(0);
        opacity: 1;
        transition: opacity 0.2s ease;
}
.golden-gallery {
  display: grid;
  gap: 24px;
}
.golden-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.golden-gallery-header h1 {
  margin: 0;
  font-size: 42px;
}
.golden-gallery-header p {
  margin: 6px 0 0 0;
  font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  color: var(--muted);
}
.golden-gallery-nav {
  display: inline-flex;
  gap: 12px;
}
.golden-gallery-nav button {
  border: 1px solid rgba(176, 122, 6, 0.35);
  background: #fff7dc;
  color: #4a3a12;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.golden-gallery-grid {
  display: grid;
  gap: 16px;
}
.golden-gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(176, 122, 6, 0.2);
  box-shadow: 0 16px 30px rgba(25, 20, 5, 0.08);
  background: #ffffff;
}
.golden-gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.golden-gallery.is-loading .golden-gallery-grid {
  opacity: 0.6;
  pointer-events: none;
}
.gtl-golden-thumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px 12px 0;
}
.gtl-golden-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(176, 122, 6, 0.2);
}
@media (min-width: 720px) {
  .golden-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .golden-gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .golden-gallery-card img {
    height: 180px;
  }
}
      .sticky-nav.is-visible {
        transform: translateY(0);
        opacity: 1;
      }
      .nav-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
      }
      .brand {
        font-size: 18px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold-deep);
      }
      .nav-links {
        display: none;
        gap: 14px;
        flex-wrap: wrap;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-left: auto;
      }
      .nav-links a {
        text-decoration: none;
        color: #4a3a12;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid transparent;
        transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
      }
      .nav-links a.active,
      .nav-links a:hover {
        border-color: rgba(176, 122, 6, 0.4);
        background: rgba(255, 243, 196, 0.6);
        color: #2f2208;
      }
      .nav-toggle {
        display: inline-flex;
        border: 1px solid rgba(176, 122, 6, 0.4);
        background: #fff7dc;
        color: #4a3a12;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 14px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        align-items: center;
        gap: 8px;
      }
      .nav-toggle span {
        display: inline-flex;
        width: 18px;
        height: 2px;
        background: currentColor;
        position: relative;
      }
      .nav-toggle span::before,
      .nav-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 18px;
        height: 2px;
        background: currentColor;
      }
      .nav-toggle span::before {
        top: -6px;
      }
      .nav-toggle span::after {
        top: 6px;
      }
      @media (min-width: 901px) {
        .nav-toggle {
          display: none;
        }
        .nav-inner {
          flex-wrap: nowrap;
        }
        .nav-links {
          width: auto;
          flex-direction: row;
          gap: 14px;
          padding: 0;
          display: flex;
          margin-left: auto;
        }
        .nav-links a {
          border-radius: 999px;
          background: transparent;
        }
      }
      @media (max-width: 900px) {
        .nav-inner {
          flex-wrap: wrap;
        }
        .nav-links {
          width: 100%;
          flex-direction: column;
          gap: 8px;
          padding: 6px 0 8px 0;
        }
        .nav-links.is-open {
          display: flex;
        }
        .nav-links a {
          border-radius: 12px;
          background: rgba(255, 243, 196, 0.4);
        }
      }
      .hero-grid {
        display: grid;
        gap: 24px;
        align-items: start;
      }
      .hero-title {
        display: grid;
        gap: 12px;
      }
      .hero-body {
        display: grid;
        gap: 16px;
      }
      .hero-text {
        display: grid;
        gap: 6px;
      }
      .hero-card {
        align-self: start;
      }
      .hero h1 {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: #2b1d05;
        letter-spacing: 0.01em;
      }
      .eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 12px;
        color: var(--gold-deep);
      }
      h1 {
        margin: 0;
        font-size: clamp(40px, 7vw, 90px);
        letter-spacing: 0.02em;
      }
      h2,
      h3,
      h4 {
        font-weight: 500;
        letter-spacing: 0.01em;
        color: #4a3a12;
      }
      .story h2,
      .cta h2 {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-weight: 600;
        color: #3a2f14;
        letter-spacing: 0.01em;
      }
      .story p,
      .cta p,
      .cta .info-list div {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: var(--muted);
        line-height: 1.6;
      }
      .story .highlight {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-weight: 600;
        color: #5b4a22;
      }
      .gold-check-list {
        list-style: none;
        padding: 0;
        margin: 18px 0 0 0;
        display: grid;
        gap: 12px;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: #3a2f14;
        font-size: 16px;
      }
      .gold-check-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.4;
      }
      .gold-check-list li::before {
        content: "✓";
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        margin-top: 2px;
        border-radius: 999px;
        background: linear-gradient(135deg, #fff3c4 0%, #f7c948 60%, #b07a06 100%);
        color: #2f2208;
        font-size: 12px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(176, 122, 6, 0.25);
      }
      .soft-head {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0.01em;
      }
      .subhead {
        font-size: clamp(18px, 3vw, 30px);
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: #3d2d10;
        letter-spacing: 0.01em;
        max-width: 640px;
        margin: 0 0 8px 0;
      }
      .cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-bright) 55%, var(--gold-deep) 100%);
        color: #1c1402;
        padding: 14px 22px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        box-shadow: 0 10px 26px rgba(176, 122, 6, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.7);
      }
      .btn.alt {
        background: #ffffff;
        color: var(--ink);
        border: 2px solid rgba(176, 122, 6, 0.4);
        box-shadow: none;
      }
      .ticker {
        margin-top: 18px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--gold-deep);
      }
      .card-grid {
        display: grid;
        gap: 16px;
      }
      .ticket-section {
        background: linear-gradient(135deg, #ffffff 0%, #fff6db 100%);
      }
      .ticket-grid {
        display: grid;
        gap: 24px;
        align-items: center;
      }
      .ticket-visual {
        min-height: 320px;
        border-radius: 20px;
        background:
          radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 35%),
          radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 35%),
          linear-gradient(135deg, #fff3c4 0%, #f7c948 45%, #b07a06 100%);
        box-shadow: 0 18px 40px rgba(176, 122, 6, 0.25);
        position: relative;
        overflow: hidden;
      }
      .ticket-visual::after {
        content: "GOLDEN TICKET";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: clamp(24px, 5vw, 48px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(122, 90, 30, 0.6);
      }
      .ticket-text h2 {
        margin: 0 0 10px 0;
        color: #4a3a12;
      }
      .ticket-subhead {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: #6b7280;
        font-size: 20px;
        margin: 0 0 16px 0;
      }
      .ticket-text p {
        color: #6b7280;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
      }
      .micro-list {
        display: grid;
        gap: 8px;
        margin: 16px 0;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: var(--muted);
        font-size: 16px;
      }
      .micro-list strong {
        color: #4a3a12;
      }
      .rules {
        font-size: 13px;
        color: #7b6b4a;
        margin-top: 14px;
        display: grid;
        gap: 6px;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
      }
      .card-grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .card {
        background: var(--card);
        border: 1px solid rgba(176, 122, 6, 0.2);
        border-radius: 18px;
        padding: 24px;
        box-shadow: 0 16px 36px rgba(23, 18, 5, 0.08);
        position: relative;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .card-icon {
        width: 80px;
        height: 80px;
        margin: -64px auto 14px auto;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff6d6 0%, #f7c948 45%, #b07a06 100%);
        box-shadow: 0 10px 20px rgba(176, 122, 6, 0.25), inset 0 2px 4px rgba(255, 255, 255, 0.7);
        color: #3c2604;
        font-size: 28px;
      }
      .card h3 {
        margin: 0 0 10px 0;
        font-size: 28px;
      }
      .card p {
        margin: 0;
        font-size: 18px;
        color: var(--muted);
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        line-height: 1.5;
      }
      .how-cards .card:hover,
      .weekly-rhythm .card:hover {
        transform: scale(1.06);
        box-shadow: 0 20px 40px rgba(176, 122, 6, 0.25);
      }
      .how-cards p {
        text-align: left;
      }
      .weekly-rhythm .list,
      .weekly-rhythm p {
        text-align: left;
      }
      .price-ladder {
        display: grid;
        gap: 12px;
      }
      .section-title {
        display: flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 20px;
        color: var(--gold-deep);
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        margin: 0 0 48px 0;
        justify-content: center;
      }
      .section-title span {
        height: 1px;
        width: 36px;
        background: linear-gradient(90deg, rgba(176, 122, 6, 0.1), rgba(176, 122, 6, 0.6));
      }
      .price-row {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        background: linear-gradient(135deg, #ffffff 0%, #fff6d6 100%);
        border: 1px solid rgba(176, 122, 6, 0.18);
        border-radius: 18px;
        padding: 16px 18px;
        text-align: left;
        box-shadow: 0 10px 24px rgba(23, 18, 5, 0.08);
        margin-bottom: 12px;
      }
      .price-row:last-child {
        margin-bottom: 0;
      }
      .price-day {
        display: grid;
        gap: 4px;
      }
      .price-day-title {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #2f2208;
        letter-spacing: 0.02em;
        text-transform: uppercase;
      }
      .price-amount {
        text-align: right;
        justify-self: end;
        font-size: 28px;
        font-weight: 700;
        color: var(--gold-deep);
        background: linear-gradient(135deg, #fff3c4 0%, #f7c948 60%, #b07a06 100%);
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid rgba(176, 122, 6, 0.35);
        letter-spacing: 0.04em;
      }
      .price-note {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #6b5a36;
        letter-spacing: 0.01em;
        text-transform: none;
      }
      .price-row.hot {
        border-color: rgba(176, 122, 6, 0.5);
        box-shadow: 0 0 18px rgba(176, 122, 6, 0.2);
      }
      .price-row.hot strong {
        color: var(--gold-deep);
      }
      .golden {
        background: linear-gradient(120deg, rgba(247, 201, 72, 0.2) 0%, rgba(255, 243, 196, 0.6) 50%, rgba(247, 201, 72, 0.15) 100%);
        border: 2px solid rgba(176, 122, 6, 0.5);
      }
      .golden h2 {
        font-size: 38px;
        margin: 0 0 10px 0;
        color: #2f2208;
      }
      .tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 60%, var(--gold-bright) 100%);
        color: #1c1402;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
      }
      .split {
        display: grid;
        gap: 20px;
      }
      .list {
        display: grid;
        gap: 10px;
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.5;
      }
      .visit {
        background: linear-gradient(135deg, #ffffff 0%, #fff7e1 100%);
        border-top: 3px solid var(--gold-deep);
      }
      .visit-grid {
        display: grid;
        gap: 16px;
      }
      .visit-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 18px;
        border: 1px solid rgba(176, 122, 6, 0.15);
        box-shadow: 0 12px 24px rgba(23, 18, 5, 0.06);
      }
      .map {
        width: 100%;
        height: 260px;
        border: 0;
        border-radius: 16px;
        box-shadow: 0 12px 24px rgba(23, 18, 5, 0.08);
      }
      .visit-card h4 {
        margin: 0 0 8px 0;
        font-size: 22px;
      }
      .visit-card p {
        margin: 0;
        color: var(--muted);
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
      }
      .social {
        text-align: center;
      }
      .social h2 {
        font-size: 36px;
        margin: 0 0 8px 0;
      }
      .social p {
        font-family: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
        color: var(--muted);
      }
      @media (min-width: 980px) {
        .hero-body {
          grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
          align-items: start;
        }
      }
      .countdown {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        background: linear-gradient(135deg, rgba(247, 201, 72, 0.2) 0%, rgba(255, 243, 196, 0.7) 100%);
        border: 1px solid rgba(176, 122, 6, 0.35);
        color: var(--gold-deep);
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
      }
      @media (min-width: 900px) {
        .ticket-grid {
          grid-template-columns: 0.9fr 1.1fr;
        }
        .card-grid,
        .split,
        .visit-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      .card-grid.four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }
      .carousel {
        position: relative;
        overflow: hidden;
      }
      .carousel-track {
        display: flex;
        gap: 18px;
        transition: transform 0.6s ease;
        will-change: transform;
      }
      .carousel .card {
        min-width: 240px;
        max-width: 280px;
        flex: 0 0 auto;
      }
      .carousel-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 14px;
      }
      .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        border: 1px solid rgba(176, 122, 6, 0.5);
        background: transparent;
        cursor: pointer;
      }
      .carousel-dot.is-active {
        background: rgba(176, 122, 6, 0.8);
      }
      @media (min-width: 900px) {
        .carousel .card {
          min-width: 260px;
        }
      }
      @keyframes pulse {
        0% {
          transform: scale(1);
          box-shadow: 0 0 0 rgba(246, 196, 83, 0.5);
        }
        50% {
          transform: scale(1.02);
          box-shadow: 0 0 24px rgba(176, 122, 6, 0.45);
        }
        100% {
          transform: scale(1);
          box-shadow: 0 0 0 rgba(246, 196, 83, 0.5);
        }
      }
      .pulse {
        animation: pulse 2.2s infinite;
      }
      @media (prefers-reduced-motion: reduce) {
        .pulse {
          animation: none;
        }
      }
