﻿/* =====================
   1) RESET / GLOBALS
===================== */

* {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', cursive;
}




/* =====================
   2) IMPORTS
===================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');


/* =====================
   3) CSS VARIABLES
===================== */

/* =========================
   AUTH FORM (NAMESPACED)
   ========================= */
:root {
  --auth-white: #e9e9e9;
  --auth-gray: #333;
  --auth-blue: #535353;
  --auth-lightblue: #000000;
  --auth-radius: 0.7rem;
  --auth-max-width: 758px;
  --auth-max-height: 420px;
}

/* =====================
   4) BASE ELEMENT STYLES
===================== */

.container{ width:min(1100px, 92%); margin:0 auto; }

.topbar-tickets{
  position:sticky; top:0; z-index:50;
  background: rgba(10,10,14,.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  position: relative;              /* allows absolute centring */
  display: flex;
  align-items: center;
  justify-content: flex-start;       /* actions stay on the right */
  padding: 20px 0;
}

/* Centre the brand text */
.brand{
  position: absolute;
  left: 50%;
  transform: translateX(-115%);
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .08em;
}

/* Keep header unchanged, make logo LOOK bigger */
.brand-logo{
  height: 200px;                 /* layout height (doesn't stretch header) */
  width: auto;
  display: block;
  transform: scale(2);          /* visual size increase */
  transform-origin: left center;
  margin-top: -25px;   /* 👈 THIS is the nudge up */
}

.brand:hover{
  opacity: 0.9;
}


.cartBtn{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.cartBtn__count{
  display:inline-grid; place-items:center;
  min-width:22px; height:22px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-size:12px; font-weight:700;
}

/* Login button – same as cart, no counter */
.loginBtn{
  padding:10px;
}

.loginBtn i{
  font-size:18px;
}

.topbar-actions{
  display: flex;
  align-items: center;
  gap: 12px; /* space between login and cart */
}


body{
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: #ececee;
  background-color: #1f2029;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1462889/pat-back.svg');
  background-position: center;
  background-repeat: repeat;
  background-size: 4%;
}

.noscroll-page{
  height: 100vh;
  overflow: hidden;
}



h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 7vw;
  line-height: 1;
  color: #ffeba7;
  text-align: center;
  -webkit-text-stroke: 2px #ffeba7;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* =====================
   5) LAYOUT / STRUCTURE
===================== */

.section-center{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
}


/* =====================
   6) HOME PAGE
===================== */

/*HOME PAGE DATA*/

.bg-image{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../Images/Gallery/Photos/Timeless 0010.PNG") center / cover no-repeat;
  z-index: -1;
  opacity: 0.55; 
}

.bg-image-2{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../Images/Gallery/Photos/Timeless 0011.PNG") center / cover no-repeat;
  z-index: -1;
  opacity: 0.55; 
}

.bg-image-3{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../Images/Gallery/Photos/Timeless 0017.JPG") center / cover no-repeat;
  z-index: -1;
  opacity: 0.55; 
}

/* Tickets page background opacity */
body.tickets-page .bg-image{
  opacity: 0.55;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.25; 
}

#banner {
  background-color: rgba(0,0,0,0.35);
  height: 100vh;
}


/* =====================
   7) HEADER / NAV / ICONS
===================== */

/* Header Icons Positioned Relative to Logo */
.header-icons {
    position: absolute; 
    top: 50%;               
    transform: translateY(10%); 
    left: 40px;             
    display: flex;
    gap: 20px;
    z-index: 12;
}

.header-icons .icon {
    color: #ececee;
    font-size: 26px;
    text-decoration: none;
    transition: 0.3s ease;
}

.header-icons .icon:hover {
    color: #ffeba7;
    transform: scale(1.1);
}

.header-link {
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.header-link:hover {
    text-decoration: underline;
}


[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
}

.menu-icon:checked + label,
.menu-icon:not(:checked) + label{
  position: fixed;
  top: 22px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 200;
}

.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before{
  position: absolute;
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #ececee;
  border-bottom: 2px solid #ececee;
  transition: border-width 100ms 1500ms ease, 
              top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms ease,
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after{
  position: absolute;
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: #ececee;
  margin-top: -1px;
  transition: width 100ms 1750ms ease, 
              right 100ms 1750ms ease,
              margin-top 100ms ease, 
              transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:before{
  top: 10px;
  transform: rotate(45deg);
  height: 2px;
  background-color: #ececee;
  border-width: 0;
  transition: border-width 100ms 340ms ease, 
              top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
              height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), 
              background-color 200ms 500ms ease,
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:after{
  width: 30px;
  margin-top: 0;
  right: 0;
  transform: rotate(-45deg);
  transition: width 100ms ease,
              right 100ms ease,  
              margin-top 100ms 500ms ease, 
              transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
  position: fixed;
  top: 22px;
  right: 75px;
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
  margin: 0;
  transform: translate(25px, -25px);
  z-index: 150;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.3);
  background-color: #2b2b2b;
  animation: border-transform 7s linear infinite;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 1100ms ease,
              width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
              height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked ~ .nav {
  animation-play-state: paused;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),  
              right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 250ms 700ms ease,
              width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
              height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav ul{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  transform: translateY(-50%);
  list-style: none;
}

.nav ul li{
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 250ms linear;
}

.nav ul li:nth-child(1){
  transition-delay: 200ms;
}
.nav ul li:nth-child(2){
  transition-delay: 150ms;
}
.nav ul li:nth-child(3){
  transition-delay: 100ms;
}
.nav ul li:nth-child(4){
  transition-delay: 50ms;
}

.nav ul li a{
    font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px; 
  font-size: 9vh;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #ececee;
  transition: all 250ms linear;
}

.nav ul li a:hover{
  text-decoration: none;
  color: #000;
}

.nav ul li a:after {
  display: none;
}

.nav ul li a:hover:after{
  width: 100%;
}

.menu-icon:checked ~ .nav  ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 350ms ease,
              transform 250ms ease;
}

.menu-icon:checked ~ .nav ul li:nth-child(1){
  transition-delay: 1400ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(2){
  transition-delay: 1480ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(3){
  transition-delay: 1560ms;
}
.menu-icon:checked ~ .nav ul li:nth-child(4){
  transition-delay: 1640ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(5){
  transition-delay: 1720ms;
}


/* =====================
   8) HOME HERO TEXT / BUTTONS
===================== */

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    height: 100vh; 
    padding: 0 20px; 
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center; 
    transform: translateY(-40px);
    text-align: center;
    position: relative;
}

.banner-text h1{
    font-size: 130px;
}
.banner-text p{
    font-size: 20px;
    font-style: italic;
}

.banner-btn{
    margin: 10px auto 0;
}

/* GLOBAL PRIMARY BUTTON (Home + Next Events) */
.banner-btn a {
  width: 150px;
  height: 42px;                
  line-height: 42px;            
  padding: 0;                   

  display: inline-block;
  margin: 0 10px;

  border: 0.5px solid #fff;
  color: #fff;
  text-decoration: none;

  font-family: 'Bebas Neue', cursive;
  font-size: 14px;              /
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;

  position: relative;
  z-index: 1;
  transition: color 0.5s;
}

.banner-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.banner-btn a:hover span{
    width: 100%;
}
.banner-btn a:hover{
    color: #000;
}


/* =====================
   9) NEXT EVENTS PAGE (HERO SLIDER)
===================== */

/*NEXT EVENT PAGE DATA*/

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0,0,0,0.25); 
  background-blend-mode: multiply;
}

.hero-slider .carousel-cell.slide-1 {
  background-image: url("../Images/Gallery/Photos/Timeless 0005.jpg");
}

.hero-slider .carousel-cell.slide-2 {
  background-image: url("../Images/Gallery/Photos/Timeless 0004.jpg");
}

.hero-slider .carousel-cell.slide-3 {
  background-image: url("../Images/Gallery/Photos/Timeless 0001.jpg");
}

/* overlay base */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}

/* EXACT Home-style overlay (no gradient) */
.hero-slider .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);  
  z-index: 0;
}

.hero-slider .carousel-cell {
  position: relative;*
}

.hero-slider .overlay {
  z-index: 0;
}

.hero-slider .carousel-cell .inner {
  z-index: 1;
}

.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
}

.hero-slider .carousel-cell .inner .subtitle {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgb(255, 255, 255);
  margin-bottom: 5px;
}

.hero-slider .carousel-cell .inner .title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}

.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}

.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}

.hero-slider .flickity-page-dots {
  bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}

.hero-slider .flickity-page-dots .dot.is-selected {
  background: #ff0000;
  border: 0 solid #ff0000;
}


.hero-slider .banner-btn {
  margin: 40px auto 0;
}

.hero-slider .banner-btn {
  margin: 70px auto 0;   
  text-align: center;
}

.hero-slider .banner-btn a span {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}

.hero-slider .banner-btn a:hover span { width: 100%; }
.hero-slider .banner-btn a:hover { color: #000; }

.hero-slider .banner-btn {
  margin: 70px auto 0;
}


/* =====================
   10) LOADER
===================== */

/* Loader overlay */
.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dddddd;
    transition: opacity 5s, visibility 5s;
  }
  
  .loader-hidden{
    opacity: 0;
    visibility: hidden;
  }
  
  .loader:before,
  .loader:after {
    box-sizing: border-box;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 10px #fff, inset 0 0 10px #fff;
    transform: translate(-50%, -50%);
  }
  
  .loader:after {
    z-index: 1;
    animation: gogoloader 2s infinite 1s;
  }
  
  .loader:before {
    z-index: 2;
    animation: gogoloader 2s infinite;
  }


/* =====================
   11) ANIMATIONS
===================== */

@keyframes border-transform{
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; } 
  14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
  28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
  42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
  56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
  70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
  84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
}

@keyframes gogoloader {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.fade-in-text {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
  text-align: center;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0px;      
  margin-bottom: 20px; 
}

.fade-in-buttons {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s; 
} the text *

.fade-in-logo {
    opacity: 0;
    animation: logoFadeIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes authShow {
  0%, 49.99% { opacity: 0; z-index: 1; }
  50%, 100% { opacity: 1; z-index: 5; }
}


/* =====================
   12) MEMBER PAGE (AUTH)
===================== */

/* =========================
   MEMBER PAGE (AUTH) WRAPPER
   ========================= */
.member-page{
  position: relative;
  min-height: 100vh;
  z-index: 6; 
}

.auth-wrapper{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  transform: translateY(-40px);
}

.auth__title {
  font-weight: 300;
  margin: 0 0 1.25rem 0;
  color: #111;
}

.auth-link {
  color: var(--auth-gray);
  font-size: 0.9rem;
  margin: 1.5rem 0;
  text-decoration: none;
}

.auth-container {
  background-color: transparent;
  border-radius: var(--auth-radius);
  box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),
              0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);
  height: var(--auth-max-height);
  max-width: var(--auth-max-width);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.auth__form {
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.6s ease-in-out;
}

.auth--signin {
  left: 0;
  width: 50%;
  z-index: 2;
}

.auth-container.right-panel-active .auth--signin {
  transform: translateX(100%);
}

.auth--signup {
  left: 0;
  opacity: 0;
  width: 50%;
  z-index: 1;
}

.auth-container.right-panel-active .auth--signup {
  animation: authShow 0.6s;
  opacity: 1;
  transform: translateX(100%);
  z-index: 5;
}

.auth__overlay {
  height: 100%;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: transform 0.6s ease-in-out;
  width: 50%;
  z-index: 100;
}

.auth-container.right-panel-active .auth__overlay {
  transform: translateX(-100%);
}

.auth-overlay {
  background: rgba(0, 0, 0, 0.50); 
  backdrop-filter: blur(5x);     
  -webkit-backdrop-filter: blur(5px);

  height: 100%;
  left: -100%;
  position: relative;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
  width: 200%;
}

.auth-container.right-panel-active .auth-overlay {
  transform: translateX(50%);
}

.auth-overlay__panel {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: absolute;
  text-align: center;
  top: 0;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
  width: 50%;
}

.auth-overlay--left {
  transform: translateX(-20%);
}

.auth-container.right-panel-active .auth-overlay--left {
  transform: translateX(0);
}

.auth-overlay--right {
  right: 0;
  transform: translateX(0);
}

.auth-container.right-panel-active .auth-overlay--right {
  transform: translateX(20%);
}

.auth-btn {
  background-color: var(--auth-blue);
  background-image: linear-gradient(90deg, var(--auth-blue) 0%, var(--auth-lightblue) 74%);
  border-radius: 20px;
  border: 1px solid var(--auth-blue);
  color: var(--auth-white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 0.9rem 4rem;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}

.auth-form > .auth-btn { margin-top: 1.5rem; }
.auth-btn:active { transform: scale(0.95); }
.auth-btn:focus { outline: none; }

.auth-form {
  background-color: var(--auth-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 3rem;
  height: 100%;
  text-align: center;
}

.auth-input {
  background-color: #fff;
  border: none;
  padding: 0.9rem 0.9rem;
  margin: 0.5rem 0;
  width: 100%;
}


/* =====================
   13) RESPONSIVE
===================== */

@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label{
    right: 30px;
  }
  .logo {
    left: 30px;
  }
  .nav{
    right: 30px;
  }

  h1{
    font-size: 9vw;
    -webkit-text-stroke: 2px transparent;
    -webkit-text-fill-color: #ffeba7;
    color: #ffeba7;
  }
  .nav ul li a{
    font-size: 8vh;
  }
}

@media screen and (max-width: 770px){
    .banner-text h1{
        font-size: 44px;
    }
    .banner-btn a{
        display: block;
        margin: 20px auto;
    }
}

@media screen and (max-width: 600px) {
  .nav ul li a {
    font-size: 5vh;
    line-height: 1.1;
  }
}

@media screen and (max-width: 770px) {
    .logo {
        width: 300px;   
    }

    .site-header {
        top: -253px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 80px;
    }

    .site-header {
        top: 10px;
    }
}

@media screen and (max-width: 600px) {
    .header-icons {
        left: 20px;
        top: 50%;
        transform: translateY(10%);
    }

    .header-icons .icon {
        font-size: 20px;
    }
}

@media (max-width: 768px){
  .floating-logo img{
    height: 400px;
  }
}


@media (min-width: 1024px){
  .topbar-tickets .container{
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    padding-left: 16px;   
    padding-right: 16px;
  }
}

@media screen and (max-width: 991px) {
  .brand{
    left: 50%;
    transform: translateX(-93%);  
  }
}

/* =====================
   TICKETS PAGE (SCOPED)
===================== */

.container{ width:min(1100px, 92%); margin:0 auto; }

.topbar-tickets{
  position:sticky; top:0; z-index:50;
  background: rgba(10,10,14,.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  text-decoration:none; color:var(--text); font-weight:800; letter-spacing:.08em;
}

.cartBtn{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  cursor:pointer;
}
.cartBtn__count{
  display:inline-grid; place-items:center;
  min-width:22px; height:22px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  font-size:12px; font-weight:700;
}

.page{ padding:22px 0 70px; }

.eventHeader{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  margin-top:12px;
}
.eventHeader__media{
  border:1px solid var(--border);
  border-radius:18px;
  min-height:280px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    url("../Images/Gallery/Photos/Timeless 0010.PNG");
  background-size: cover;
  background-position:center;
}
.eventHeader__content{
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  background: rgba(255,255,255,.03);
}
.eventHeader__content h1{ margin:0 0 6px; font-size:34px; letter-spacing:.02em; }
.eventMeta{ margin:0 0 12px; color:var(--muted); }

.eventBadges{ display:flex; flex-wrap:wrap; gap:8px; margin:0 0 12px; }
.badge{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:7px 10px;
  border-radius:999px;
  font-size:13px;
}
.eventDesc{ margin:0; color:var(--muted); line-height:1.5; }

.ticketsSection{ margin-top:22px; }
.sectionTitle h2{ margin:0; font-size:24px; }
.sectionTitle p{ margin:6px 0 0; color:var(--muted); }

.ticketGrid{
  margin-top:14px;
  display:grid;
  gap:12px;
}
.ticketCard{
  display:grid;
  grid-template-columns: 1fr 260px;
  gap:14px;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background: rgba(255,255,255,.03);
}
.ticketCard__left h3{ margin:0; font-size:18px; }
.muted{ color:var(--muted); }
.ticketCard__left p{ margin:6px 0 0; }

.ticketCard__right{
  display:grid;
  gap:10px;
  align-content:start;
  justify-items:stretch;
}
.price{ font-size:18px; font-weight:800; text-align:right; }

.qtyRow{
  display:flex; align-items:center; justify-content:flex-end;
  gap:10px;
}
.qtyLabel{ color:var(--muted); font-size:14px; }
.qtyInput{
  width:90px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}

.btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:12px 12px;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
}
.btn.primary{ background: rgba(255,255,255,.10); }
.btn.checkout{
  width:100%;
  padding:14px 12px;
  font-size:16px;
}

.cartDrawer{
  position:fixed;
  inset:0;
  display:none;
  z-index:300;
}
.cartDrawer.isOpen{ display:block; }

.cartDrawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  border:none;
  z-index:0; 
}

.cartDrawer__panel{
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:min(420px, 92vw);
  background: rgba(15,16,22,.92);
  backdrop-filter: blur(14px);
  border-left:1px solid var(--border);
  display:flex;
  flex-direction:column;
  z-index:1; 
}

.cartDrawer__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  border:none;
}

.cartDrawer__header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px;
  border-bottom:1px solid var(--border);
}
.iconBtn{
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  width:38px; height:38px;
  border-radius:12px;
  cursor:pointer;
}

.cartDrawer__body{
  padding:12px 16px;
  overflow:auto;
  flex:1;
}
.cartItems{ display:grid; gap:10px; }
.cartItem{
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
  background: rgba(255,255,255,.03);
  display:grid;
  gap:8px;
}
.cartItem__top{
  display:flex; justify-content:space-between; gap:12px;
}
.cartItem__name{ font-weight:800; }
.cartItem__meta{ color:var(--muted); font-size:13px; }
.cartItem__actions{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px;
}
.cartItem__qty{
  display:flex; align-items:center; gap:8px;
}
.qtySmall{
  width:78px;
  padding:9px 9px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color:var(--text);
}
.linkBtn{
  border:none;
  background: transparent;
  color: var(--text);
  cursor:pointer;
  text-decoration: underline;
  opacity:.85;
}
.linkBtn:hover{ opacity:1; }

.emptyState{
  margin-top:18px;
  border:1px dashed var(--border);
  border-radius:16px;
  padding:18px;
  text-align:center;
}
.tiny{ font-size:12px; }

.cartDrawer__footer{
  padding:14px 16px 16px;
  border-top:1px solid var(--border);
}
.totals__row{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:10px;
}

/* Responsive */
@media (max-width: 860px){
  .eventHeader{ grid-template-columns: 1fr; }
  .ticketCard{ grid-template-columns: 1fr; }
  .price{ text-align:left; }
  .qtyRow{ justify-content:flex-start; }
}

/* ===========================
   TICKETS COPY — ORIGINAL TEXT STYLE
   (applies ONLY to tickets copy.html)
=========================== */


body.tickets-page{
  --bg:#0b0c10;
  --panel:#111218;
  --panel2:#151724;
  --text:#f4f4f6;
  --muted:#b7b9c6;
  --border:rgba(255,255,255,.08);
  --accent:#ffffff;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
}

/* tickets page uses normal readable typography  */
body.tickets-page h1,
body.tickets-page h2,
body.tickets-page h3,
body.tickets-page p,
body.tickets-page span,
body.tickets-page label{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-text-stroke: 0 !important;
  -webkit-text-fill-color: currentColor !important;
  color: inherit;
}


body.tickets-page h1{
  font-size: 34px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  margin: 0 0 6px !important;
}

body.tickets-page h2{
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

body.tickets-page h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* Muted/meta text */
body.tickets-page .muted,
body.tickets-page .eventMeta,
body.tickets-page .eventDesc,
body.tickets-page .sectionTitle p{
  color: var(--muted) !important;}

  .ticketCard .tickets-left {
  color: #ff3b3b !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticketCard .tickets-left {
  color: #ff3b3b !important;
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.6);
}

/* =====================
   TIMELESS MEMBERS — PHASE 7
===================== */

.member-body {
  --member-accent: #f1ead8;
  --member-accent-soft: #ff6868;
  min-height: 100vh;
  overflow-x: hidden;
  background: #0b0b0f;
  color: #f7f7f8;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.member-body [hidden] {
  display: none !important;
}

.member-body .bg-image {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  background-position: center;
  background-size: cover;
}

.member-main {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem) 1rem 5rem;
}

.member-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.member-fade-text,
.member-fade-panel {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.member-fade-text {
  transform: translateY(-20px);
  animation-delay: 0.5s;
}

.member-fade-panel {
  transform: translateY(-10px);
  animation-delay: 0.7s;
}

.member-intro {
  position: sticky;
  top: 2rem;
  padding-top: 2rem;
}

.member-kicker {
  margin: 0 0 0.7rem;
  color: var(--member-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.member-intro > .member-kicker {
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.6);
}

.member-intro h1 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-align: left;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0;
}

.member-lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #d2d2d8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.member-benefits {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.member-benefits li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.member-benefits i {
  display: grid;
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--member-accent);
  color: #111;
  font-size: 0.75rem;
}

.member-smallprint,
.member-field-help {
  color: #aaaab3;
  font-size: 0.85rem;
  line-height: 1.5;
}

.member-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(20, 20, 25, 0.93);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.member-loading {
  min-height: 22rem;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: #d2d2d8;
}

.member-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.member-tab {
  border: 0;
  border-radius: 0.85rem;
  background: transparent;
  color: #aaaab3;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 800;
}

.member-tab.is-active {
  background: #fff;
  color: #111;
}

.member-message {
  margin: 1.25rem 1.5rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
}

.member-message.is-error {
  border-color: rgba(255, 91, 91, 0.5);
  background: rgba(122, 20, 20, 0.32);
}

.member-message.is-success {
  border-color: rgba(93, 224, 148, 0.5);
  background: rgba(19, 104, 55, 0.3);
}

.member-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.member-form-heading h2,
.member-dashboard h2,
.member-offers-heading h3,
.privacy-card h1,
.privacy-card h2 {
  margin: 0;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
}

.member-form-heading h2 {
  font-size: 1.45rem;
}

.member-form-heading p,
.member-offers-heading p,
.member-status-card p {
  margin: 0.35rem 0 0;
  color: #aaaab3;
  line-height: 1.5;
}

.member-form label:not(.member-check) {
  display: grid;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.member-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 3rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.member-form input:not([type="checkbox"]):focus {
  border-color: var(--member-accent);
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.18);
}

.member-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.member-field-help {
  margin: -0.5rem 0 0;
}

.member-check {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: #d8d8dc;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.5;
}

.member-check input[type="checkbox"] {
  position: static;
  left: auto;
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.18rem 0 0;
  accent-color: var(--member-accent);
}

.member-check a {
  color: var(--member-accent);
}

.member-primary-button,
.member-secondary-button,
.member-text-button {
  border-radius: 0.9rem;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.member-primary-button {
  min-height: 3.2rem;
  border: 0;
  background: var(--member-accent);
  color: #fff;
  padding: 0.85rem 1rem;
}

.member-primary-button:hover,
.member-primary-button:focus-visible {
  background: var(--member-accent-soft);
}

.member-primary-button:disabled,
.member-secondary-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.member-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.75rem 1rem;
}

.member-text-button {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--member-accent);
  padding: 0.35rem;
}

.member-text-button:hover,
.member-text-button:focus-visible {
  text-decoration: underline;
}

.member-dashboard {
  padding: 1.6rem;
}

.member-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.member-dashboard-header h2 {
  font-size: 1.65rem;
}

.member-account-email {
  margin: 0.35rem 0 0;
  color: #aaaab3;
  word-break: break-word;
}

.member-status-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  border: 1px solid rgba(83, 223, 143, 0.28);
  border-radius: 1rem;
  background: rgba(28, 117, 65, 0.2);
  padding: 1rem;
}

.member-status-card > i {
  color: #5de094;
  font-size: 1.35rem;
}

.member-offers-heading {
  margin-top: 1.5rem;
}

.member-offers-heading h3 {
  font-size: 1.15rem;
}

.member-offers {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.member-offers > p,
.member-offer-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
  color: #d8d8dc;
  line-height: 1.55;
}

.member-offer-card h4 {
  margin: 0;
  color: var(--member-accent);
  font-size: 1rem;
}

.member-offer-card p {
  margin: 0.4rem 0 0;
}

.privacy-main {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.privacy-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(20, 20, 25, 0.95);
  padding: clamp(1.3rem, 4vw, 2.5rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.privacy-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.privacy-card h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.privacy-card p,
.privacy-card li {
  color: #d2d2d8;
  line-height: 1.7;
}

.privacy-card a {
  color: var(--member-accent);
}

@media (max-width: 900px) {
  .member-hero {
    grid-template-columns: 1fr;
    width: min(650px, 100%);
  }

  .member-intro {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .member-main {
    padding: 1.5rem 0.75rem 3rem;
  }

  .member-name-grid {
    grid-template-columns: 1fr;
  }

  .member-form,
  .member-dashboard {
    padding: 1.2rem;
  }

  .member-message {
    margin-right: 1.2rem;
    margin-left: 1.2rem;
  }

  .member-dashboard-header {
    display: grid;
  }

  .member-secondary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-fade-text,
  .member-fade-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================================
   TIMELESS MEMBERS — ARCHIVE PASS
========================================================= */

.member-body {
  --member-cream: #f1ead8;
  --member-cream-soft: #d8cfbb;
  --member-charcoal: #121214;
  --member-panel: #19191b;
  --member-chrome: #aaa9a5;
  --member-line: rgba(241, 234, 216, 0.24);
  --member-accent: var(--member-cream);
  --member-accent-soft: #fff9e9;
  background: var(--member-charcoal);
  color: var(--member-cream);
}

.member-body .bg-image {
  position: fixed;
  z-index: 0;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(24, 20, 16, 0.8), rgba(10, 10, 12, 0.91)),
    radial-gradient(circle at 16% 11%, rgba(241, 234, 216, 0.12), transparent 30%),
    url("../Images/Gallery/Photos/Timeless 0014.PNG") center 38% / cover no-repeat;
}

.member-main {
  padding: 34px 1rem 70px;
}

.member-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 0;
  align-items: stretch;
  width: min(1180px, 100%);
  overflow: hidden;
  border: 1px solid var(--member-line);
  border-radius: 3px;
  background: rgba(16, 16, 18, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.member-intro {
  position: relative;
  top: auto;
  display: flex;
  min-height: 920px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.1), rgba(8, 8, 9, 0.9)),
    linear-gradient(90deg, transparent 58%, rgba(12, 12, 13, 0.58)),
    url("../Images/Gallery/Photos/Timeless 0014.PNG") center 36% / cover no-repeat;
}

.member-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0, rgba(255, 255, 255, 0.016) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.34));
  pointer-events: none;
}

.member-intro > * {
  position: relative;
  z-index: 1;
}

.member-intro-logo {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 38px;
  width: min(190px, 42%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.member-kicker {
  color: var(--member-chrome);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.member-intro > .member-kicker {
  color: var(--member-chrome);
  text-shadow: none;
}

.member-intro h1 {
  max-width: 520px;
  color: var(--member-cream);
  font-size: clamp(4rem, 6vw, 6.2rem);
  letter-spacing: 0.035em;
  -webkit-text-fill-color: var(--member-cream);
}

.member-lead {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: var(--member-cream-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.member-benefits {
  gap: 10px;
  margin: 28px 0 22px;
}

.member-benefits li {
  min-height: 42px;
  border: 1px solid rgba(241, 234, 216, 0.22);
  border-radius: 2px;
  background: rgba(12, 12, 13, 0.62);
  color: var(--member-cream);
  padding: 9px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.member-benefits i {
  flex-basis: 30px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(241, 234, 216, 0.32);
  border-radius: 2px;
  background: var(--member-cream);
  color: var(--member-charcoal);
}

.member-smallprint {
  color: var(--member-chrome);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-card {
  position: relative;
  overflow: visible;
  border: 0;
  border-left: 1px solid var(--member-line);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 38%),
    var(--member-cream);
  box-shadow: none;
  color: var(--member-charcoal);
  backdrop-filter: none;
}

.member-card::before,
.member-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #121214;
}

.member-card::before { top: -12px; }
.member-card::after { bottom: -12px; }

.member-card-serial {
  display: block;
  padding: 36px 38px 24px;
  color: rgba(18, 18, 20, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.member-loading {
  min-height: 710px;
  color: rgba(18, 18, 20, 0.66);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-tabs {
  gap: 0;
  margin: 0 38px;
  border: 1px solid rgba(18, 18, 20, 0.35);
  border-radius: 2px;
  padding: 0;
  background: transparent;
}

.member-tab {
  min-height: 46px;
  border-radius: 0;
  color: rgba(18, 18, 20, 0.65);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.member-tab + .member-tab {
  border-left: 1px solid rgba(18, 18, 20, 0.35);
}

.member-tab.is-active {
  background: var(--member-charcoal);
  color: var(--member-cream);
}

.member-preview-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 38px 0;
  border: 1px solid rgba(18, 18, 20, 0.25);
  border-radius: 2px;
  padding: 11px 12px;
  background: rgba(18, 18, 20, 0.055);
  color: rgba(18, 18, 20, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.member-preview-notice i {
  margin-top: 2px;
}

.member-message {
  margin: 16px 38px 0;
  border-color: rgba(18, 18, 20, 0.25);
  border-radius: 2px;
  background: rgba(18, 18, 20, 0.055);
  color: var(--member-charcoal);
  font-size: 12px;
}

.member-message.is-error {
  border-color: rgba(147, 55, 48, 0.42);
  background: rgba(147, 55, 48, 0.11);
}

.member-message.is-success {
  border-color: rgba(43, 105, 68, 0.4);
  background: rgba(43, 105, 68, 0.1);
}

.member-form {
  gap: 15px;
  padding: 28px 38px 38px;
}

.member-form-heading h2,
.member-dashboard h2,
.member-offers-heading h3 {
  color: var(--member-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.member-form-heading h2 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.member-form-heading p,
.member-offers-heading p,
.member-status-card p {
  color: rgba(18, 18, 20, 0.65);
  font-size: 13px;
}

.member-form label:not(.member-check) {
  gap: 7px;
  color: var(--member-charcoal);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-form input:not([type="checkbox"]) {
  min-height: 48px;
  border-color: rgba(18, 18, 20, 0.42);
  border-radius: 2px;
  background: #18181b;
  color: var(--member-cream);
  padding: 13px 14px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.member-form input:not([type="checkbox"])::placeholder {
  color: rgba(241, 234, 216, 0.62);
  opacity: 1;
}

.member-form input:not([type="checkbox"]):focus {
  border-color: var(--member-charcoal);
  box-shadow: 0 0 0 2px rgba(18, 18, 20, 0.15);
}

.member-field-help {
  color: rgba(18, 18, 20, 0.58);
  font-size: 11px;
}

.member-check {
  color: rgba(18, 18, 20, 0.78);
  font-size: 12px;
}

.member-check input[type="checkbox"] {
  accent-color: var(--member-charcoal);
}

.member-check a {
  color: var(--member-charcoal);
  font-weight: 700;
}

.member-primary-button,
.member-secondary-button,
.member-text-button {
  border-radius: 2px;
}

.member-primary-button {
  min-height: 50px;
  border: 1px solid var(--member-charcoal);
  background: var(--member-charcoal);
  color: var(--member-cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.member-primary-button:hover,
.member-primary-button:focus-visible {
  transform: translateY(-1px);
  background: #2b2a29;
}

.member-secondary-button {
  border-color: rgba(18, 18, 20, 0.4);
  background: transparent;
  color: var(--member-charcoal);
}

.member-text-button {
  color: var(--member-charcoal);
}

.member-dashboard {
  position: relative;
  overflow: hidden;
  padding: 28px 38px 38px;
}

.member-dashboard::after {
  content: "004";
  position: absolute;
  right: 20px;
  bottom: -42px;
  color: rgba(18, 18, 20, 0.05);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 185px;
  line-height: 1;
  pointer-events: none;
}

.member-dashboard > * {
  position: relative;
  z-index: 1;
}

.member-dashboard-header h2 {
  font-size: 2.8rem;
}

.member-account-email {
  color: rgba(18, 18, 20, 0.62);
}

.member-status-card {
  border-color: var(--member-charcoal);
  border-radius: 2px;
  background: var(--member-charcoal);
  color: var(--member-cream);
}

.member-status-card > i {
  color: var(--member-cream);
}

.member-status-card p {
  color: var(--member-chrome);
}

.member-offer-card,
.member-offers > p {
  border-color: rgba(18, 18, 20, 0.25);
  border-radius: 2px;
  background: rgba(18, 18, 20, 0.055);
  color: var(--member-charcoal);
}

.member-offer-card h4 {
  color: var(--member-charcoal);
}

.member-assurance {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin: 18px auto 0;
  border-top: 1px solid var(--member-line);
  border-bottom: 1px solid var(--member-line);
  background: rgba(13, 13, 15, 0.6);
  backdrop-filter: blur(8px);
}

.member-assurance > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  color: var(--member-cream-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.member-assurance > div + div {
  border-left: 1px solid var(--member-line);
}

.member-assurance i {
  color: var(--member-chrome);
  font-size: 13px;
}

.member-body .privacy-card {
  border-color: rgba(241, 234, 216, 0.76);
  border-radius: 3px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 38%),
    var(--member-cream);
  color: var(--member-charcoal);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.member-body .privacy-card h1,
.member-body .privacy-card h2,
.member-body .privacy-card p,
.member-body .privacy-card a,
.member-body .privacy-card .member-kicker {
  color: var(--member-charcoal);
  -webkit-text-fill-color: var(--member-charcoal);
}

@media (max-width: 900px) {
  .member-hero {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .member-intro {
    min-height: 650px;
  }

  .member-card {
    border-top: 1px solid var(--member-line);
    border-left: 0;
  }

  .member-card::before,
  .member-card::after {
    display: none;
  }

  .member-assurance {
    width: min(680px, 100%);
  }
}

@media (max-width: 580px) {
  .member-main {
    padding: 22px 0.75rem 48px;
  }

  .member-intro {
    min-height: 590px;
    padding: 30px 24px;
  }

  .member-intro-logo {
    top: 26px;
    left: 24px;
    width: min(160px, 46%);
  }

  .member-intro h1 {
    font-size: 4rem;
  }

  .member-card-serial {
    padding: 30px 24px 22px;
  }

  .member-tabs,
  .member-preview-notice,
  .member-message {
    margin-right: 24px;
    margin-left: 24px;
  }

  .member-form,
  .member-dashboard {
    padding: 24px;
  }

  .member-name-grid,
  .member-assurance {
    grid-template-columns: 1fr;
  }

  .member-assurance > div + div {
    border-top: 1px solid var(--member-line);
    border-left: 0;
  }
}

/* =========================================================
   TIMELESS TICKETS — VINTAGE BOX OFFICE
========================================================= */

body.tickets-page {
  --ticket-cream: #f1ead8;
  --ticket-cream-soft: #d8cfbb;
  --ticket-charcoal: #121214;
  --ticket-panel: #1a1a1d;
  --ticket-chrome: #aaa9a5;
  --ticket-line: rgba(241, 234, 216, 0.24);
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ticket-charcoal);
  color: var(--ticket-cream);
}

body.tickets-page .bg-image {
  position: fixed;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(25, 21, 17, 0.82), rgba(11, 11, 13, 0.9)),
    radial-gradient(circle at 14% 10%, rgba(241, 234, 216, 0.14), transparent 30%),
    url("../Images/Gallery/Photos/Timeless 0010.PNG") center 38% / cover no-repeat;
}

body.tickets-page .page {
  position: relative;
  width: min(1180px, 92%);
  padding: 34px 0 82px;
}

body.tickets-page .eventHeader {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--ticket-line);
  border-radius: 3px;
  background: rgba(16, 16, 18, 0.8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

body.tickets-page .eventHeader__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.2), rgba(10, 10, 11, 0.78)),
    linear-gradient(90deg, transparent 55%, rgba(15, 15, 16, 0.72)),
    url("../Images/Gallery/Photos/Timeless 0005.jpg") center 44% / cover no-repeat;
  filter: saturate(0.72) sepia(0.08) contrast(1.04);
}

body.tickets-page .eventHeader__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

body.tickets-page .eventPoster__eyebrow,
body.tickets-page .eventPoster__archive {
  position: absolute;
  z-index: 2;
  color: var(--ticket-cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.tickets-page .eventPoster__eyebrow {
  top: 26px;
  left: 28px;
}

body.tickets-page .eventPoster__archive {
  right: 28px;
  bottom: 24px;
}

body.tickets-page .eventPoster__logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(220px, 48%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

body.tickets-page .eventHeader__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-left: 1px solid var(--ticket-line);
  border-radius: 0;
  padding: 42px 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.028), transparent 55%),
    rgba(23, 23, 25, 0.96);
}

body.tickets-page .eventHeader__eyebrow,
body.tickets-page .sectionTitle__eyebrow,
body.tickets-page .cartDrawer__eyebrow {
  margin: 0 0 10px;
  color: var(--ticket-chrome) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.tickets-page .eventHeader__content h1 {
  margin: 0 0 24px !important;
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: clamp(48px, 5vw, 70px) !important;
  font-weight: 400 !important;
  line-height: 0.95 !important;
  letter-spacing: 0.035em !important;
}

body.tickets-page .eventDetails {
  display: grid;
  gap: 0;
  margin: 0 0 22px;
}

body.tickets-page .eventDetails > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(241, 234, 216, 0.12);
}

body.tickets-page .eventDetails > div:last-child {
  border-bottom: 1px solid rgba(241, 234, 216, 0.12);
}

body.tickets-page .eventDetails dt {
  color: var(--ticket-chrome);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.tickets-page .eventDetails dd {
  margin: 0;
  color: var(--ticket-cream);
  font-size: 14px;
  font-weight: 600;
}

body.tickets-page .eventBadges {
  gap: 7px;
  margin: 0 0 18px;
}

body.tickets-page .badge {
  border-color: rgba(241, 234, 216, 0.24);
  border-radius: 2px;
  background: rgba(241, 234, 216, 0.035);
  color: var(--ticket-cream-soft);
  padding: 6px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.tickets-page .eventDesc {
  max-width: 46ch;
  color: var(--ticket-cream-soft) !important;
  font-size: 14px;
  line-height: 1.65;
}

body.tickets-page .ticketsSection {
  margin-top: 58px;
}

body.tickets-page .sectionTitle {
  max-width: 620px;
  margin-bottom: 22px;
}

body.tickets-page .sectionTitle h2,
body.tickets-page .promoAccess__intro h2 {
  margin: 0;
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.tickets-page .sectionTitle > p:last-child,
body.tickets-page .promoAccess__intro > p:last-child {
  margin: 5px 0 0;
  color: var(--ticket-cream-soft) !important;
  line-height: 1.6;
}

body.tickets-page .ticketGrid {
  display: grid;
  gap: 24px;
  margin-top: 0;
}

body.tickets-page .ticketCard--available {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 234, 216, 0.72);
  border-radius: 3px;
  padding: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.48), transparent 38%),
    var(--ticket-cream);
  color: var(--ticket-charcoal);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

body.tickets-page .ticketCard--available::before,
body.tickets-page .ticketCard--available::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 288px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #121214;
}

body.tickets-page .ticketCard--available::before { top: -12px; }
body.tickets-page .ticketCard--available::after { bottom: -12px; }

body.tickets-page .ticketCard--available .ticketCard__left {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  padding: 28px 36px 30px;
}

body.tickets-page .ticketCard--available .ticketCard__left::after {
  content: "004";
  position: absolute;
  right: 22px;
  bottom: -32px;
  color: rgba(18, 18, 20, 0.055);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 170px;
  line-height: 1;
}

body.tickets-page .ticketCard--available .ticketCard__right {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 26px 28px;
  border-left: 1px dashed rgba(18, 18, 20, 0.34);
  background: rgba(18, 18, 20, 0.035);
}

body.tickets-page .ticketSerial {
  display: inline-block;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

body.tickets-page .ticketCard__kicker {
  margin: 36px 0 4px;
  color: rgba(18, 18, 20, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.tickets-page .ticketCard--available h3 {
  color: var(--ticket-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1;
}

body.tickets-page .ticketCard__note {
  margin: 9px 0 0;
  color: rgba(18, 18, 20, 0.67);
  font-size: 13px;
}

body.tickets-page .ticketCard--available .price {
  color: var(--ticket-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: left;
}

body.tickets-page .ticketCard--available .qtyRow {
  justify-content: space-between;
}

body.tickets-page .ticketCard--available .qtyLabel {
  color: rgba(18, 18, 20, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.tickets-page .ticketCard--available .qtyInput {
  width: 82px;
  border-color: rgba(18, 18, 20, 0.32);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ticket-charcoal);
}

body.tickets-page .ticketCard--available .btn.primary {
  border-color: var(--ticket-charcoal);
  border-radius: 2px;
  background: var(--ticket-charcoal);
  color: var(--ticket-cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

body.tickets-page .ticketCard--available .btn.primary:hover {
  transform: translateY(-1px);
  background: #2b2a29;
}

body.tickets-page .releaseHistory {
  padding: 4px 0 0;
}

body.tickets-page .releaseHistory__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

body.tickets-page .releaseHistory__heading h3 {
  color: var(--ticket-cream-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.tickets-page .releaseHistory__heading span {
  color: rgba(216, 207, 187, 0.55);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.tickets-page .releaseHistory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.tickets-page .ticketCard--unavailable {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 112px;
  border: 1px solid rgba(170, 169, 165, 0.18);
  border-radius: 2px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(216, 207, 187, 0.58);
}

body.tickets-page .ticketCard--unavailable h3 {
  margin-top: 17px;
  color: inherit;
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.tickets-page .ticketCard--unavailable .price {
  color: inherit;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 19px;
  font-weight: 400;
}

body.tickets-page .unavailableStamp {
  display: inline-block;
  margin-top: 7px;
  border: 1px solid rgba(184, 79, 69, 0.62);
  padding: 3px 7px;
  transform: rotate(-2deg);
  color: #c27168;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.tickets-page .promoAccess {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 30px;
  align-items: center;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid var(--ticket-line);
}

body.tickets-page .promoAccess__intro > p:last-child {
  max-width: 38ch;
  font-size: 14px;
}

body.tickets-page .codeTicket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 0;
  border: 1px solid rgba(170, 169, 165, 0.35);
  border-radius: 3px;
  padding: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #1a1a1c;
}

body.tickets-page .codeTicket .ticketCard__left {
  padding: 24px 26px;
}

body.tickets-page .codeTicket .ticketCard__left h3 {
  margin-top: 30px;
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.tickets-page .codeTicket .ticketCard__left p {
  font-size: 13px;
}

body.tickets-page .codeTicket .ticketCard__right {
  gap: 11px;
  padding: 22px;
  border-left: 1px dashed rgba(241, 234, 216, 0.22);
}

body.tickets-page .promoRow {
  display: grid;
  gap: 6px;
}

body.tickets-page .promoLabel,
body.tickets-page .codeTicket .qtyLabel {
  color: var(--ticket-chrome);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.tickets-page .promoInput,
body.tickets-page .codeTicket .qtyInput {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(241, 234, 216, 0.23);
  border-radius: 2px;
  padding: 11px 12px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--ticket-cream);
  outline: none;
}

body.tickets-page .codeTicket .qtyRow {
  justify-content: space-between;
}

body.tickets-page .codeTicket .qtyInput {
  width: 82px;
}

body.tickets-page .codeTicket .btn.primary {
  border-color: rgba(241, 234, 216, 0.58);
  border-radius: 2px;
  background: var(--ticket-cream);
  color: var(--ticket-charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.tickets-page .codeTicket .btn.primary:disabled {
  border-color: rgba(241, 234, 216, 0.15);
  background: rgba(241, 234, 216, 0.07);
  color: rgba(241, 234, 216, 0.35);
  cursor: not-allowed;
}

body.tickets-page .promoMessage {
  min-height: 16px;
  margin: 0;
  font-size: 11px;
}

body.tickets-page .ticketAssurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--ticket-line);
  border-bottom: 1px solid var(--ticket-line);
}

body.tickets-page .ticketAssurance > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  color: var(--ticket-cream-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.tickets-page .ticketAssurance > div + div {
  border-left: 1px solid var(--ticket-line);
}

body.tickets-page .ticketAssurance i {
  color: var(--ticket-chrome);
  font-size: 13px;
}

body.tickets-page .cartDrawer__panel {
  width: min(440px, 94vw);
  border-left-color: rgba(241, 234, 216, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%),
    #151517;
  color: var(--ticket-cream);
}

body.tickets-page .cartDrawer__header {
  padding: 22px 20px 18px;
  border-bottom-color: var(--ticket-line);
}

body.tickets-page .cartDrawer__header h2 {
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.tickets-page .cartDrawer__eyebrow {
  display: block;
  margin-bottom: 2px;
}

body.tickets-page .iconBtn {
  border-color: var(--ticket-line);
  border-radius: 2px;
  background: transparent;
  color: var(--ticket-cream);
}

body.tickets-page .cartEventSummary {
  display: grid;
  gap: 4px;
  margin: 18px 20px 8px;
  border: 1px solid rgba(241, 234, 216, 0.16);
  padding: 15px;
  background: rgba(241, 234, 216, 0.035);
}

body.tickets-page .cartEventSummary strong {
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

body.tickets-page .cartEventSummary span {
  color: var(--ticket-chrome);
  font-size: 11px;
}

body.tickets-page .cartDrawer__body {
  padding: 10px 20px;
}

body.tickets-page .emptyState {
  border-color: rgba(241, 234, 216, 0.18);
  border-radius: 2px;
  padding: 26px 18px;
}

body.tickets-page .emptyState p {
  margin: 0;
}

body.tickets-page .emptyState p + p {
  margin-top: 5px;
}

body.tickets-page .cartItem {
  border-color: rgba(241, 234, 216, 0.2);
  border-radius: 2px;
  background: rgba(241, 234, 216, 0.035);
}

body.tickets-page .cartDrawer__footer {
  border-top-color: var(--ticket-line);
  padding: 17px 20px 20px;
}

body.tickets-page .checkoutDetails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 13px;
}

body.tickets-page .checkoutDetails label {
  display: grid;
  gap: 6px;
  color: var(--ticket-chrome);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.tickets-page .checkoutDetails input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(241, 234, 216, 0.3);
  border-radius: 2px;
  background: rgba(241, 234, 216, 0.055);
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 8px 10px;
}

body.tickets-page .checkoutDetails input::placeholder {
  color: rgba(241, 234, 216, 0.48);
}

body.tickets-page .checkoutDetails input:focus {
  border-color: var(--ticket-cream);
  outline: 1px solid var(--ticket-cream);
  outline-offset: 1px;
}

body.tickets-page .checkoutDetails__note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ticket-chrome);
  font-size: 11px;
  line-height: 1.45;
}

@media (max-width: 520px) {
  body.tickets-page .checkoutDetails {
    grid-template-columns: 1fr;
  }

  body.tickets-page .checkoutDetails__note {
    grid-column: auto;
  }
}

body.tickets-page .totals__row strong {
  color: var(--ticket-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

body.tickets-page .cartDrawer__footer .tiny {
  color: var(--ticket-chrome) !important;
}

body.tickets-page .btn.checkout {
  border-color: var(--ticket-cream);
  border-radius: 2px;
  background: var(--ticket-cream);
  color: var(--ticket-charcoal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.tickets-page .btn.checkout:disabled {
  border-color: rgba(241, 234, 216, 0.16);
  background: rgba(241, 234, 216, 0.07);
  color: rgba(241, 234, 216, 0.36);
  cursor: not-allowed;
}

@media (max-width: 860px) {
  body.tickets-page .eventHeader {
    grid-template-columns: 1fr;
  }

  body.tickets-page .eventHeader__media {
    min-height: 360px;
  }

  body.tickets-page .eventHeader__content {
    border-top: 1px solid var(--ticket-line);
    border-left: 0;
  }

  body.tickets-page .ticketCard--available,
  body.tickets-page .codeTicket {
    grid-template-columns: 1fr;
  }

  body.tickets-page .ticketCard--available::before,
  body.tickets-page .ticketCard--available::after {
    display: none;
  }

  body.tickets-page .ticketCard--available .ticketCard__right,
  body.tickets-page .codeTicket .ticketCard__right {
    border-top: 1px dashed rgba(18, 18, 20, 0.34);
    border-left: 0;
  }

  body.tickets-page .codeTicket .ticketCard__right {
    border-top-color: rgba(241, 234, 216, 0.22);
  }

  body.tickets-page .releaseHistory__grid {
    grid-template-columns: 1fr;
  }

  body.tickets-page .ticketCard--unavailable {
    min-height: 90px;
  }

  body.tickets-page .promoAccess {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.tickets-page .page {
    width: min(94%, 520px);
    padding-top: 22px;
  }

  body.tickets-page .eventHeader__media {
    min-height: 310px;
  }

  body.tickets-page .eventHeader__content {
    padding: 30px 24px;
  }

  body.tickets-page .eventHeader__content h1 {
    font-size: 50px !important;
  }

  body.tickets-page .ticketCard--available .ticketCard__left {
    min-height: 190px;
    padding: 24px;
  }

  body.tickets-page .ticketCard--available .ticketCard__right {
    padding: 22px 24px;
  }

  body.tickets-page .ticketAssurance {
    grid-template-columns: 1fr;
  }

  body.tickets-page .ticketAssurance > div + div {
    border-top: 1px solid var(--ticket-line);
    border-left: 0;
  }
}

/* =====================
   CONTACT — PHASE 8
===================== */

.contact-body {
  --contact-accent: #f1ead8;
  --contact-accent-soft: #ff6868;
  min-height: 100vh;
  overflow-x: hidden;
  background: #0b0b0f;
  color: #f7f7f8;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.contact-body .bg-image-2 {
  z-index: 0;
  opacity: 0.2;
}

.contact-main {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem) 1rem 5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.contact-fade-text,
.contact-fade-panel {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.contact-fade-text {
  transform: translateY(-20px);
  animation-delay: 0.5s;
}

.contact-fade-panel {
  transform: translateY(-10px);
  animation-delay: 0.7s;
}

.contact-intro {
  position: sticky;
  top: 2rem;
  padding-top: 2rem;
}

.contact-kicker {
  margin: 0 0 0.7rem;
  color: var(--contact-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.6);
}

.contact-intro h1,
.contact-success-card h1 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.025em;
  text-align: left;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0;
}

.contact-lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: #d2d2d8;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  padding: 1rem;
  text-decoration: none;
}

.contact-detail i {
  display: grid;
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--contact-accent);
  color: #fff;
}

.contact-detail span {
  min-width: 0;
}

.contact-detail small,
.contact-detail strong {
  display: block;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.contact-detail small {
  color: #aaaab3;
  font-size: 0.78rem;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  font-size: 0.93rem;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  border-color: rgba(255, 59, 59, 0.65);
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(20, 20, 25, 0.93);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}

.contact-card-heading {
  padding: 1.6rem 1.6rem 0;
}

.contact-card-heading h2 {
  margin: 0;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
}

.contact-card-heading > p:last-child {
  margin: 0.45rem 0 0;
  color: #aaaab3;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.contact-form label:not(.contact-honeypot label) {
  display: grid;
  gap: 0.45rem;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form label span,
.contact-form label span small {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.contact-form label span small {
  color: #aaaab3;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.85rem;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 3rem;
}

.contact-form select option {
  background: #17171c;
  color: #fff;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.18);
}

.contact-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-submit {
  min-height: 3.2rem;
  border: 0;
  border-radius: 0.9rem;
  background: var(--contact-accent);
  color: #fff;
  cursor: pointer;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 800;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--contact-accent-soft);
}

.contact-form-note {
  margin: 0;
  color: #888892;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.contact-success-main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 90px);
  place-items: center;
  padding: 2rem 1rem;
}

.contact-success-card {
  width: min(620px, 100%);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(20, 20, 25, 0.94);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.4);
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  backdrop-filter: blur(18px);
}

.contact-success-card > i {
  margin-bottom: 1.2rem;
  color: var(--contact-accent);
  font-size: 3rem;
  filter: drop-shadow(0 0 8px rgba(255, 59, 59, 0.55));
}

.contact-success-card .contact-kicker,
.contact-success-card h1 {
  text-align: center;
}

.contact-success-card > p:not(.contact-kicker) {
  max-width: 32rem;
  margin: 1.2rem auto 0;
  color: #d2d2d8;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.contact-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.8rem;
}

.contact-success-actions a {
  min-width: 9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.8rem 1rem;
  text-decoration: none;
}

.contact-success-actions a:first-child {
  border-color: var(--contact-accent);
  background: var(--contact-accent);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    width: min(650px, 100%);
  }

  .contact-intro {
    position: static;
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  .contact-main {
    padding: 1.5rem 0.75rem 3rem;
  }

  .contact-name-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-heading,
  .contact-form {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .contact-details {
    margin-top: 1.5rem;
  }

  .contact-success-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-fade-text,
  .contact-fade-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================================
   TIMELESS CONTACT — GUEST SERVICES
========================================================= */

.contact-body {
  --contact-cream: #f1ead8;
  --contact-cream-soft: #d8cfbb;
  --contact-charcoal: #121214;
  --contact-panel: #19191b;
  --contact-chrome: #aaa9a5;
  --contact-line: rgba(241, 234, 216, 0.24);
  --contact-accent: var(--contact-cream);
  --contact-accent-soft: #fff9e9;
  background: var(--contact-charcoal);
  color: var(--contact-cream);
}

.contact-body .bg-image-2 {
  position: fixed;
  z-index: 0;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(24, 20, 16, 0.78), rgba(10, 10, 12, 0.9)),
    radial-gradient(circle at 18% 12%, rgba(241, 234, 216, 0.13), transparent 31%),
    url("../Images/Gallery/Photos/Timeless 0011.PNG") center 42% / cover no-repeat;
}

.contact-main {
  padding: 34px 1rem 70px;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 0;
  align-items: stretch;
  width: min(1180px, 100%);
  overflow: hidden;
  border: 1px solid var(--contact-line);
  border-radius: 3px;
  background: rgba(16, 16, 18, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.contact-intro {
  position: relative;
  top: auto;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.16), rgba(8, 8, 9, 0.88)),
    linear-gradient(90deg, transparent 58%, rgba(12, 12, 13, 0.56)),
    url("../Images/Gallery/Photos/Timeless 0011.PNG") center 42% / cover no-repeat;
}

.contact-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0, rgba(255, 255, 255, 0.016) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.contact-intro > * {
  position: relative;
  z-index: 1;
}

.contact-intro-logo {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 38px;
  width: min(190px, 42%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.contact-kicker {
  color: var(--contact-chrome);
  font-size: 11px;
  letter-spacing: 0.23em;
  text-shadow: none;
}

.contact-intro h1 {
  max-width: 520px;
  color: var(--contact-cream);
  font-size: clamp(4rem, 6vw, 6.3rem);
  letter-spacing: 0.035em;
  -webkit-text-fill-color: var(--contact-cream);
}

.contact-lead {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: var(--contact-cream-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-details {
  gap: 10px;
  margin-top: 28px;
}

.contact-detail {
  border-color: rgba(241, 234, 216, 0.24);
  border-radius: 2px;
  background: rgba(12, 12, 13, 0.62);
  color: var(--contact-cream);
  padding: 13px 15px;
  backdrop-filter: blur(8px);
}

.contact-detail i {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 234, 216, 0.32);
  border-radius: 2px;
  background: var(--contact-cream);
  color: var(--contact-charcoal);
}

.contact-detail small {
  color: var(--contact-chrome);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail strong {
  margin-top: 3px;
  color: var(--contact-cream);
  font-size: 13px;
}

a.contact-detail:hover,
a.contact-detail:focus-visible {
  border-color: rgba(241, 234, 216, 0.72);
}

.contact-card {
  position: relative;
  overflow: visible;
  border: 0;
  border-left: 1px solid var(--contact-line);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 38%),
    var(--contact-cream);
  box-shadow: none;
  color: var(--contact-charcoal);
  backdrop-filter: none;
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #121214;
}

.contact-card::before { top: -12px; }
.contact-card::after { bottom: -12px; }

.contact-card-heading {
  padding: 38px 38px 0;
}

.contact-form-serial {
  display: block;
  margin-bottom: 34px;
  color: rgba(18, 18, 20, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-card .contact-kicker {
  margin-bottom: 5px;
  color: rgba(18, 18, 20, 0.62);
}

.contact-card-heading h2 {
  color: var(--contact-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: 0.035em;
}

.contact-card-heading > p:last-child {
  max-width: 48ch;
  margin-top: 6px;
  color: rgba(18, 18, 20, 0.68);
  font-size: 14px;
}

.contact-form {
  gap: 15px;
  padding: 27px 38px 38px;
}

.contact-form label:not(.contact-honeypot label) {
  gap: 7px;
  color: var(--contact-charcoal);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form label span small {
  color: rgba(18, 18, 20, 0.58);
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(18, 18, 20, 0.42);
  border-radius: 2px;
  background: #18181b;
  color: var(--contact-cream);
  padding: 13px 14px;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form select option {
  background: #18181b;
  color: var(--contact-cream);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--contact-charcoal);
  box-shadow: 0 0 0 2px rgba(18, 18, 20, 0.15);
}

.contact-submit {
  min-height: 50px;
  border: 1px solid var(--contact-charcoal);
  border-radius: 2px;
  background: var(--contact-charcoal);
  color: var(--contact-cream);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-1px);
  background: #2b2a29;
}

.contact-form-note {
  color: rgba(18, 18, 20, 0.58);
  font-size: 11px;
}

.contact-assurance {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin: 18px auto 0;
  border-top: 1px solid var(--contact-line);
  border-bottom: 1px solid var(--contact-line);
  background: rgba(13, 13, 15, 0.6);
  backdrop-filter: blur(8px);
}

.contact-assurance > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 14px;
  color: var(--contact-cream-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-assurance > div + div {
  border-left: 1px solid var(--contact-line);
}

.contact-assurance i {
  color: var(--contact-chrome);
  font-size: 13px;
}

.contact-success-main {
  min-height: calc(100vh - 86px);
}

.contact-success-card {
  position: relative;
  overflow: hidden;
  width: min(680px, 100%);
  border-color: rgba(241, 234, 216, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 42%),
    var(--contact-cream);
  color: var(--contact-charcoal);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
}

.contact-success-card::after {
  content: "004";
  position: absolute;
  right: 24px;
  bottom: -42px;
  color: rgba(18, 18, 20, 0.05);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 190px;
  line-height: 1;
  pointer-events: none;
}

.contact-success-card > * {
  position: relative;
  z-index: 1;
}

.contact-success-card .contact-form-serial {
  margin-bottom: 28px;
  text-align: left;
}

.contact-success-card > i {
  margin-bottom: 14px;
  color: var(--contact-charcoal);
  font-size: 2.5rem;
  filter: none;
}

.contact-success-card .contact-kicker {
  color: rgba(18, 18, 20, 0.62);
}

.contact-success-card h1 {
  color: var(--contact-charcoal);
  font-size: clamp(3.5rem, 8vw, 5.8rem);
  -webkit-text-fill-color: var(--contact-charcoal);
}

.contact-success-card > p:not(.contact-kicker) {
  color: rgba(18, 18, 20, 0.72);
}

.contact-success-actions a {
  border-color: rgba(18, 18, 20, 0.42);
  border-radius: 2px;
  background: transparent;
  color: var(--contact-charcoal);
}

.contact-success-actions a:first-child {
  border-color: var(--contact-charcoal);
  background: var(--contact-charcoal);
  color: var(--contact-cream);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .contact-intro {
    min-height: 620px;
  }

  .contact-card {
    border-top: 1px solid var(--contact-line);
    border-left: 0;
  }

  .contact-card::before,
  .contact-card::after {
    display: none;
  }

  .contact-assurance {
    width: min(680px, 100%);
  }
}

@media (max-width: 580px) {
  .contact-main {
    padding: 22px 0.75rem 48px;
  }

  .contact-intro {
    min-height: 560px;
    padding: 30px 24px;
  }

  .contact-intro-logo {
    top: 26px;
    left: 24px;
    width: min(160px, 46%);
  }

  .contact-intro h1 {
    font-size: 4rem;
  }

  .contact-card-heading {
    padding: 30px 24px 0;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-name-grid,
  .contact-assurance {
    grid-template-columns: 1fr;
  }

  .contact-assurance > div + div {
    border-top: 1px solid var(--contact-line);
    border-left: 0;
  }
}

/* =====================
   ABOUT TIMELESS — PHASE 9
===================== */

.about-body {
  --about-accent: #f1ead8;
  --about-accent-soft: #ff6868;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(155, 24, 35, 0.22), transparent 34rem),
    #0b0b0f;
  color: #f7f7f8;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.about-main {
  position: relative;
  z-index: 2;
  padding: 0 1rem 5rem;
}

.about-hero,
.about-experience,
.about-story,
.about-cities,
.about-cta {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 83px);
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.about-fade-text,
.about-fade-panel {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.about-fade-text {
  transform: translateY(-20px);
  animation-delay: 0.4s;
}

.about-fade-panel {
  transform: translateY(-10px);
  animation-delay: 0.65s;
}

.about-kicker {
  margin: 0 0 0.75rem;
  color: var(--about-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.6);
}

.about-hero-copy h1,
.about-section-heading h2,
.about-story-copy h2,
.about-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.025em;
  text-align: left;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0;
}

.about-hero-copy h1 {
  font-size: clamp(4.5rem, 9vw, 8rem);
}

.about-section-heading h2,
.about-story-copy h2,
.about-cta h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.about-lead {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: #d7d7dc;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.about-tagline {
  margin: 1.25rem 0 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-style: italic;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-actions a {
  min-width: 10rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.85rem;
  padding: 0.85rem 1.15rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.about-actions .about-primary-action {
  border-color: var(--about-accent);
  background: var(--about-accent);
}

.about-actions .about-primary-action:hover,
.about-actions .about-primary-action:focus-visible {
  background: var(--about-accent-soft);
}

.about-actions .about-secondary-action {
  background: rgba(255, 255, 255, 0.055);
}

.about-actions .about-secondary-action:hover,
.about-actions .about-secondary-action:focus-visible {
  border-color: rgba(255, 59, 59, 0.75);
  background: rgba(255, 59, 59, 0.1);
}

.about-hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: #15151a;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.45);
}

.about-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 11, 0.82), transparent 42%);
  content: "";
  pointer-events: none;
}

.about-hero-image img {
  display: block;
  width: 100%;
  min-height: 34rem;
  max-height: 43rem;
  object-fit: cover;
  object-position: center;
}

.about-hero-image figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  z-index: 1;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-experience,
.about-cities {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-section-heading {
  max-width: 48rem;
}

.about-section-heading > p:last-child {
  margin: 1rem 0 0;
  color: #aaaab3;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-value-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.about-value-card i {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--about-accent);
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.28);
}

.about-value-card h3,
.about-city-grid h3 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.about-value-card p,
.about-city-grid p,
.about-story-copy p,
.about-cta > p:not(.about-kicker) {
  color: #bdbdc5;
  line-height: 1.65;
}

.about-value-card p {
  margin: 0.55rem 0 0;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.about-story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.about-story-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.about-story-gallery img:last-child {
  margin-top: 3rem;
}

.about-story-copy p {
  margin: 1.1rem 0 0;
  font-size: 1.03rem;
}

.about-city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-city-grid article {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 59, 59, 0.13), rgba(255, 255, 255, 0.035));
  padding: clamp(1.4rem, 3vw, 2rem);
}

.about-city-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--about-accent);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-city-grid p {
  max-width: 30rem;
  margin: 0.6rem 0 0;
}

.about-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(115deg, rgba(13, 13, 17, 0.96), rgba(59, 53, 45, 0.84)),
    url("../Images/Gallery/Photos/Timeless 0012.PNG") center 38% / cover no-repeat;
  padding: clamp(1.7rem, 5vw, 4rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.35);
}

.about-cta > p:not(.about-kicker) {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }

  .about-hero {
    min-height: auto;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-story-gallery {
    order: 2;
  }
}

@media (max-width: 580px) {
  .about-main {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .about-hero {
    padding-top: 2.5rem;
  }

  .about-hero-image img {
    min-height: 25rem;
  }

  .about-actions {
    display: grid;
  }

  .about-actions a {
    width: 100%;
  }

  .about-story-gallery {
    gap: 0.65rem;
  }

  .about-story-gallery img:last-child {
    margin-top: 1.5rem;
  }

  .about-city-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-fade-text,
  .about-fade-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================================
   TIMELESS ABOUT — ARCHIVE STORY
========================================================= */

.about-body {
  --about-cream: #f1ead8;
  --about-cream-soft: #d8cfbb;
  --about-charcoal: #121214;
  --about-panel: #19191b;
  --about-chrome: #aaa9a5;
  --about-line: rgba(241, 234, 216, 0.24);
  --about-accent: var(--about-cream);
  --about-accent-soft: #fff9e9;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--about-charcoal);
  color: var(--about-cream);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.about-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(22, 18, 15, 0.84), rgba(8, 8, 10, 0.94)),
    radial-gradient(circle at 18% 10%, rgba(241, 234, 216, 0.12), transparent 30%),
    url("../Images/Gallery/Photos/Timeless 0012.PNG") center 42% / cover no-repeat;
  pointer-events: none;
}

.about-background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.42));
}

.about-main {
  position: relative;
  z-index: 2;
  padding: 34px 1rem 70px;
}

.about-hero,
.about-experience,
.about-story,
.about-timeline,
.about-cta {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 3px;
  padding: 0;
  background: rgba(16, 16, 18, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.about-fade-text,
.about-fade-panel {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.about-fade-panel {
  transform: translateY(10px);
  animation-delay: 0.08s;
}

.about-fade-text {
  transform: translateY(8px);
  animation-delay: 0.24s;
}

.about-hero-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #101012;
  box-shadow: none;
}

.about-hero-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.18), transparent 42%, rgba(8, 8, 9, 0.9)),
    linear-gradient(90deg, transparent 64%, rgba(10, 10, 12, 0.5));
  pointer-events: none;
}

.about-hero-image > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.about-hero-image .about-hero-logo {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 38px;
  display: block;
  width: min(190px, 42%);
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.about-hero-image figcaption {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 36px;
  left: 38px;
  display: grid;
  gap: 5px;
  color: var(--about-cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero-image figcaption span {
  color: var(--about-chrome);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.about-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--about-line);
  padding: 48px 46px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.46), transparent 38%),
    var(--about-cream);
  color: var(--about-charcoal);
}

.about-hero-copy::before,
.about-hero-copy::after,
.about-cta::before,
.about-cta::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--about-charcoal);
}

.about-hero-copy::before,
.about-cta::before { top: -12px; }

.about-hero-copy::after,
.about-cta::after { bottom: -12px; }

.about-serial {
  display: block;
  margin-bottom: 34px;
  color: rgba(18, 18, 20, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-kicker {
  margin: 0 0 7px;
  color: var(--about-chrome);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: none;
  text-transform: uppercase;
}

.about-hero-copy .about-kicker,
.about-story-copy .about-kicker,
.about-cta .about-kicker {
  color: rgba(18, 18, 20, 0.62);
}

.about-hero-copy h1,
.about-section-heading h2,
.about-story-copy h2,
.about-cta h2 {
  margin: 0;
  color: var(--about-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.96;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
}

.about-hero-copy h1 {
  color: var(--about-charcoal);
  font-size: clamp(4.2rem, 6.4vw, 6.2rem);
}

.about-section-heading h2,
.about-story-copy h2,
.about-cta h2 {
  font-size: clamp(3rem, 5vw, 4.7rem);
}

.about-story-copy h2,
.about-cta h2 {
  color: var(--about-charcoal);
}

.about-lead {
  max-width: 42ch;
  margin: 22px 0 0;
  color: rgba(18, 18, 20, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.about-tagline {
  margin: 20px 0 0;
  color: var(--about-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.about-location-stamp {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid rgba(18, 18, 20, 0.28);
  border-bottom: 1px solid rgba(18, 18, 20, 0.28);
  padding: 13px 0;
  text-transform: uppercase;
}

.about-location-stamp span,
.about-location-stamp small {
  color: rgba(18, 18, 20, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-location-stamp strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-actions a {
  min-width: 150px;
  border: 1px solid var(--about-charcoal);
  border-radius: 2px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.about-actions .about-primary-action {
  border-color: var(--about-charcoal);
  background: var(--about-charcoal);
  color: var(--about-cream);
}

.about-actions .about-secondary-action {
  background: transparent;
  color: var(--about-charcoal);
}

.about-actions a:hover,
.about-actions a:focus-visible {
  transform: translateY(-1px);
}

.about-actions .about-primary-action:hover,
.about-actions .about-primary-action:focus-visible {
  background: #2b2a29;
}

.about-actions .about-secondary-action:hover,
.about-actions .about-secondary-action:focus-visible {
  border-color: var(--about-charcoal);
  background: rgba(18, 18, 20, 0.09);
}

.about-experience,
.about-timeline {
  padding: 74px 0 0;
}

.about-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 36px;
  align-items: end;
  max-width: none;
}

.about-section-heading > p:last-child {
  margin: 0;
  color: var(--about-cream-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  border: 1px solid var(--about-line);
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(8px);
}

.about-value-card {
  position: relative;
  min-height: 250px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(241, 234, 216, 0.06), transparent 58%);
  padding: 30px;
}

.about-value-card + .about-value-card {
  border-left: 1px solid var(--about-line);
}

.about-card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--about-chrome);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.about-value-card i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(241, 234, 216, 0.44);
  border-radius: 2px;
  background: var(--about-cream);
  color: var(--about-charcoal);
  box-shadow: none;
}

.about-value-card h3,
.about-timeline-grid h3 {
  margin: 0;
  color: var(--about-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-value-card p,
.about-timeline-grid p,
.about-story-copy p,
.about-cta > div > p:not(.about-kicker) {
  color: var(--about-cream-soft);
  line-height: 1.65;
}

.about-value-card p {
  margin: 8px 0 0;
  font-size: 14px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin-top: 74px;
  border: 1px solid var(--about-line);
  border-radius: 3px;
  padding: 0;
  background: rgba(15, 15, 17, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.about-story-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  order: 0;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(241, 234, 216, 0.05), transparent 54%),
    rgba(10, 10, 12, 0.68);
}

.about-archive-photo {
  margin: 0;
  border: 1px solid rgba(241, 234, 216, 0.25);
  background: var(--about-cream);
  padding: 8px 8px 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.about-archive-photo--crowd {
  margin-top: 48px;
}

.about-story-gallery .about-archive-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.about-archive-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 4px 0;
  color: rgba(18, 18, 20, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-archive-photo figcaption strong {
  color: var(--about-charcoal);
  font-weight: 800;
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--about-line);
  padding: 46px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 38%),
    var(--about-cream);
  color: var(--about-charcoal);
}

.about-story-copy p {
  margin: 16px 0 0;
  color: rgba(18, 18, 20, 0.72);
  font-size: 1rem;
}

.about-story-copy blockquote {
  margin: 30px 0 0;
  border-top: 1px solid rgba(18, 18, 20, 0.3);
  border-bottom: 1px solid rgba(18, 18, 20, 0.3);
  padding: 17px 0;
  color: var(--about-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.about-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
  background: rgba(14, 14, 16, 0.65);
  backdrop-filter: blur(8px);
}

.about-timeline-grid article {
  min-height: 210px;
  padding: 27px 24px;
}

.about-timeline-grid article + article {
  border-left: 1px solid var(--about-line);
}

.about-timeline-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--about-chrome);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.about-timeline-grid p {
  margin: 8px 0 0;
  font-size: 13px;
}

.about-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
  overflow: visible;
  margin-top: 74px;
  border: 1px solid rgba(241, 234, 216, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 42%),
    var(--about-cream);
  padding: 38px 42px;
  color: var(--about-charcoal);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.about-cta::before,
.about-cta::after {
  left: auto;
  right: -12px;
}

.about-cta > .about-serial {
  position: absolute;
  top: 18px;
  right: 22px;
  margin: 0;
}

.about-cta > div > p:not(.about-kicker) {
  max-width: 48rem;
  margin: 12px 0 0;
  color: rgba(18, 18, 20, 0.7);
  font-size: 14px;
}

.about-cta .about-actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

@media (max-width: 980px) {
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .about-hero-copy,
  .about-story-copy {
    border-top: 1px solid var(--about-line);
    border-left: 0;
  }

  .about-hero-copy::before,
  .about-hero-copy::after {
    display: none;
  }

  .about-story-copy {
    order: 1;
  }

  .about-story-gallery {
    order: 2;
  }

  .about-experience,
  .about-timeline,
  .about-cta {
    width: min(720px, 100%);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: 0;
  }

  .about-value-card + .about-value-card {
    border-top: 1px solid var(--about-line);
    border-left: 0;
  }

  .about-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline-grid article:nth-child(3) {
    border-top: 1px solid var(--about-line);
    border-left: 0;
  }

  .about-timeline-grid article:nth-child(4) {
    border-top: 1px solid var(--about-line);
  }

  .about-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-cta .about-actions {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .about-main {
    padding: 22px 0.75rem 48px;
  }

  .about-hero-image {
    min-height: 540px;
  }

  .about-hero-image > img:first-child {
    min-height: 540px;
  }

  .about-hero-image .about-hero-logo {
    top: 26px;
    left: 24px;
    width: min(160px, 48%);
  }

  .about-hero-image figcaption {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .about-hero-copy,
  .about-story-copy {
    padding: 34px 25px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.8rem, 19vw, 5rem);
  }

  .about-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-experience,
  .about-timeline {
    padding-top: 54px;
  }

  .about-story,
  .about-cta {
    margin-top: 54px;
  }

  .about-story-gallery {
    gap: 10px;
    padding: 15px;
  }

  .about-archive-photo {
    padding: 5px 5px 10px;
  }

  .about-archive-photo--crowd {
    margin-top: 30px;
  }

  .about-archive-photo figcaption {
    display: grid;
    padding-top: 8px;
    font-size: 7px;
  }

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

  .about-timeline-grid article,
  .about-timeline-grid article:nth-child(3) {
    min-height: 0;
    border-top: 1px solid var(--about-line);
    border-left: 0;
  }

  .about-timeline-grid article:first-child {
    border-top: 0;
  }

  .about-cta {
    gap: 28px;
    padding: 48px 25px 30px;
  }

  .about-cta > .about-serial {
    top: 16px;
    right: 18px;
  }

  .about-actions,
  .about-cta .about-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-fade-text,
  .about-fade-panel {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =====================
   TIMELESS GALLERY — PHASE 10
===================== */

.gallery-body {
  --gallery-accent: #f1ead8;
  --gallery-accent-soft: #ff6868;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(154, 19, 32, 0.26), transparent 34rem),
    radial-gradient(circle at 12% 48%, rgba(87, 10, 19, 0.16), transparent 28rem),
    #08080b;
  color: #f7f7f8;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.gallery-main {
  position: relative;
  z-index: 2;
  padding: 0 1rem 5rem;
}

.gallery-hero,
.gallery-content,
.gallery-cta {
  width: min(1160px, 100%);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 83px);
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.gallery-intro-fade,
.gallery-panel-fade {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.gallery-intro-fade {
  transform: translateY(-20px);
  animation-delay: 0.35s;
}

.gallery-panel-fade {
  transform: translateY(-10px);
  animation-delay: 0.6s;
}

.gallery-kicker {
  margin: 0 0 0.75rem;
  color: var(--gallery-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(255, 59, 59, 0.6);
}

.gallery-hero h1,
.gallery-heading h2,
.gallery-subheading h3,
.gallery-video-card h4,
.gallery-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.025em;
  text-align: left;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0;
}

.gallery-hero h1 {
  font-size: clamp(4.7rem, 10vw, 8.5rem);
}

.gallery-heading h2,
.gallery-cta h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.gallery-subheading h3 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.gallery-lead {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: #c9c9d0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.gallery-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0 0 0.35rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.gallery-scroll-link:hover,
.gallery-scroll-link:focus-visible {
  border-color: var(--gallery-accent);
  color: var(--gallery-accent-soft);
}

.gallery-hero-visual {
  position: relative;
  min-height: 37rem;
}

.gallery-hero-visual::before {
  position: absolute;
  inset: 8% 10% 12% 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.035);
  content: "";
}

.gallery-hero-main,
.gallery-hero-accent {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.52);
}

.gallery-hero-main {
  inset: 0 12% 8% 0;
  width: 78%;
  height: 90%;
  border-radius: 1.5rem;
}

.gallery-hero-accent {
  right: 0;
  bottom: 0;
  width: 37%;
  height: 60%;
  border-radius: 1.2rem;
}

.gallery-content {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.gallery-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.gallery-filter {
  min-width: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.7rem 1rem;
  color: #d8d8dd;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  border-color: var(--gallery-accent);
  background: var(--gallery-accent);
  color: #fff;
}

.gallery-videos {
  margin-bottom: clamp(5rem, 10vw, 8rem);
}

.gallery-subheading {
  margin-bottom: 1.6rem;
}

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

.gallery-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  background: #121216;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.32);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  max-height: 36rem;
  aspect-ratio: 9 / 16;
  background: #050507;
  object-fit: cover;
}

.gallery-video-card > div {
  padding: 1.1rem 1.2rem 1.25rem;
}

.gallery-video-card span {
  color: var(--gallery-accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-video-card h4 {
  margin-top: 0.35rem;
  font-size: 1.65rem;
}

.gallery-photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 12rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-photo-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: #131318;
  padding: 0;
  color: #fff;
  cursor: zoom-in;
  grid-row: span 1;
}

.gallery-photo-card--wide {
  grid-column: span 2;
}

.gallery-photo-card--tall {
  grid-row: span 2;
}

.gallery-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 9, 0.9), transparent 48%);
  content: "";
  opacity: 0.75;
  transition: opacity 220ms ease;
}

.gallery-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-photo-card span {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
}

.gallery-photo-card:hover img,
.gallery-photo-card:focus-visible img {
  transform: scale(1.045);
}

.gallery-photo-card:hover::after,
.gallery-photo-card:focus-visible::after {
  opacity: 1;
}

.gallery-photo-card:focus-visible,
.gallery-filter:focus-visible,
.gallery-lightbox button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.gallery-cta {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(115deg, rgba(10, 10, 14, 0.96), rgba(63, 56, 46, 0.84)),
    url("../Images/Gallery/Photos/Timeless 0017.JPG") center 43% / cover no-repeat;
  padding: clamp(1.8rem, 5vw, 4rem);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.38);
}

.gallery-cta > p:not(.gallery-kicker) {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: #c5c5cc;
  font-size: 1.05rem;
  line-height: 1.65;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.gallery-actions a {
  min-width: 10rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.85rem;
  padding: 0.85rem 1.15rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.gallery-primary-action {
  border-color: var(--gallery-accent) !important;
  background: var(--gallery-accent);
}

.gallery-primary-action:hover,
.gallery-primary-action:focus-visible {
  background: var(--gallery-accent-soft);
}

.gallery-secondary-action {
  background: rgba(255, 255, 255, 0.055);
}

.gallery-secondary-action:hover,
.gallery-secondary-action:focus-visible {
  border-color: rgba(255, 59, 59, 0.75);
  background: rgba(255, 59, 59, 0.1);
}

.gallery-body.gallery-animations-ready .gallery-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.gallery-body.gallery-animations-ready .gallery-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  box-sizing: border-box;
  border: 0;
  background: rgba(3, 3, 5, 0.96);
  padding: clamp(3.8rem, 7vw, 5.5rem) clamp(3rem, 8vw, 7rem) 2rem;
  color: #fff;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.94);
}

.gallery-lightbox figure {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  border-radius: 0.65rem;
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.55);
}

.gallery-lightbox figcaption {
  margin-top: 0.8rem;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox button {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  place-items: center;
}

.gallery-lightbox button:hover {
  background: var(--gallery-accent);
}

.gallery-lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-previous {
  left: 1.2rem;
}

.gallery-lightbox-next {
  right: 1.2rem;
}

@media (max-width: 900px) {
  .gallery-hero {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    min-height: auto;
  }

  .gallery-hero-visual {
    min-height: 34rem;
  }

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

  .gallery-video-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.5rem);
    justify-self: center;
  }

  .gallery-photo-grid {
    grid-auto-rows: 13rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .gallery-main {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .gallery-hero {
    padding-top: 2.5rem;
  }

  .gallery-hero-visual {
    min-height: 29rem;
  }

  .gallery-hero-main {
    right: 9%;
    width: 84%;
  }

  .gallery-hero-accent {
    width: 43%;
    height: 56%;
  }

  .gallery-heading {
    align-items: start;
    flex-direction: column;
  }

  .gallery-filters {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-filter {
    flex: 1;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .gallery-video-card video {
    max-height: 70vh;
  }

  .gallery-photo-grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .gallery-photo-card,
  .gallery-photo-card--wide,
  .gallery-photo-card--tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-photo-card--tall {
    aspect-ratio: 4 / 5;
  }

  .gallery-actions {
    display: grid;
  }

  .gallery-actions a {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 4.5rem 0.75rem 5rem;
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 11rem);
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: 0.8rem;
    transform: none;
  }

  .gallery-lightbox-previous {
    left: calc(50% - 3.5rem);
  }

  .gallery-lightbox-next {
    right: calc(50% - 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-intro-fade,
  .gallery-panel-fade,
  .gallery-body.gallery-animations-ready .gallery-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .gallery-photo-card img {
    transition: none;
  }
}

/* Timeless homepage menu logo */
.brand.timeless-menu-brand {
  top: 50%;
  left: 50%;
  width: 148px;
  height: 58px;
  transform: translate(-50%, -50%);
}

.timeless-menu-logo-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.timeless-menu-logo {
  position: absolute;
  top: -121px;
  left: -8px;
  display: block;
  width: 165px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .brand.timeless-menu-brand {
    left: 56%;
    width: 112px;
    height: 46px;
  }

  .timeless-menu-logo {
    top: -90px;
    left: -6px;
    width: 123px;
  }
}

@media screen and (max-width: 360px) {
  .brand.timeless-menu-brand {
    left: 60%;
    width: 90px;
    height: 42px;
  }

  .timeless-menu-logo {
    top: -74px;
    left: -5px;
    width: 100px;
  }
}

/* Timeless Archive dropdown */
.nav.timeless-archive-nav {
  top: 78px;
  right: max(24px, 4vw);
  width: min(440px, calc(100vw - 48px));
  height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 214, 208, 0.55);
  border-top: 2px solid #d8d8d3;
  border-radius: 2px 2px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(20, 20, 20, 0.97);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.58), inset 0 1px rgba(255, 255, 255, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px) scale(0.985);
  transform-origin: top right;
  animation: none;
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 220ms ease;
}

.menu-icon:checked ~ .nav.timeless-archive-nav {
  top: 78px;
  right: max(24px, 4vw);
  width: min(440px, calc(100vw - 48px));
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms;
}

.timeless-archive-panel {
  position: relative;
  padding: 22px 24px 18px;
  isolation: isolate;
}

.timeless-archive-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  pointer-events: none;
  opacity: 0.11;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.055) 3px 4px),
    radial-gradient(circle at 28% 18%, rgba(255, 244, 222, 0.22), transparent 34%);
}

.timeless-archive-heading,
.timeless-archive-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #d9d7d0;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.timeless-archive-heading {
  padding: 0 2px 16px;
  border-bottom: 1px solid rgba(216, 216, 211, 0.34);
}

.timeless-archive-heading small {
  color: #f2e8d6;
  font: inherit;
}

.nav.timeless-archive-nav ul {
  position: static;
  width: 100%;
  padding: 8px 0;
  transform: none;
  text-align: left;
}

.nav.timeless-archive-nav ul li {
  margin: 0;
  border-bottom: 1px solid rgba(216, 216, 211, 0.18);
  text-align: left;
  transform: translateX(16px);
}

.nav.timeless-archive-nav ul li:last-child {
  border-bottom: 0;
}

.nav.timeless-archive-nav ul li a {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr 22px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 3px;
  overflow: hidden;
  color: #f3ead9;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.nav.timeless-archive-nav ul li a::before {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(232, 232, 228, 0.18) 47%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.nav.timeless-archive-nav ul li a:hover,
.nav.timeless-archive-nav ul li a:focus-visible {
  color: #ffffff;
  outline: none;
}

.nav.timeless-archive-nav ul li a:hover::before,
.nav.timeless-archive-nav ul li a:focus-visible::before {
  transform: translateX(130%);
}

.archive-number {
  color: #aaa9a5;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.archive-arrow {
  color: #c8c8c4;
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-align: right;
  transition: color 180ms ease, transform 180ms ease;
}

.nav.timeless-archive-nav ul li a:hover .archive-arrow,
.nav.timeless-archive-nav ul li a:focus-visible .archive-arrow {
  color: #f3ead9;
  transform: translate(2px, -2px);
}

.menu-icon:checked ~ .nav.timeless-archive-nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-icon:checked ~ .nav.timeless-archive-nav ul li:nth-child(1) { transition-delay: 80ms; }
.menu-icon:checked ~ .nav.timeless-archive-nav ul li:nth-child(2) { transition-delay: 120ms; }
.menu-icon:checked ~ .nav.timeless-archive-nav ul li:nth-child(3) { transition-delay: 160ms; }
.menu-icon:checked ~ .nav.timeless-archive-nav ul li:nth-child(4) { transition-delay: 200ms; }
.menu-icon:checked ~ .nav.timeless-archive-nav ul li:nth-child(5) { transition-delay: 240ms; }

.timeless-archive-footer {
  padding: 15px 2px 1px;
  border-top: 1px solid rgba(216, 216, 211, 0.34);
  color: #9f9e99;
  font-size: 8px;
}

@media screen and (max-width: 600px) {
  .nav.timeless-archive-nav,
  .menu-icon:checked ~ .nav.timeless-archive-nav {
    top: 72px;
    right: 16px;
    width: calc(100vw - 32px);
  }

  .timeless-archive-panel {
    padding: 19px 18px 15px;
  }

  .nav.timeless-archive-nav ul li a {
    grid-template-columns: 28px 1fr 20px;
    padding: 12px 2px;
    font-size: 25px;
  }

  .timeless-archive-footer span:last-child {
    display: none;
  }
}

/* Timeless homepage warm cream typography */
.noscroll-page .banner-text {
  color: #f3ead9;
}

.noscroll-page .fade-in-text {
  color: #f3ead9;
}

.noscroll-page .banner-btn a {
  color: #f3ead9;
  border-color: rgba(243, 234, 217, 0.82);
}

.noscroll-page .banner-btn a span {
  background: #f3ead9;
}

.noscroll-page .banner-btn a:hover,
.noscroll-page .banner-btn a:focus-visible,
.noscroll-page .banner-btn a:active {
  color: #000000;
}

.noscroll-page .banner-btn a:focus-visible span,
.noscroll-page .banner-btn a:active span {
  width: 100%;
}

/* Timeless homepage cinematic review treatment */
.noscroll-page #bg-video {
  opacity: 0.3;
  filter: saturate(0.78) contrast(1.08) brightness(0.92) sepia(0.06);
}

.noscroll-page #banner {
  position: relative;
  overflow: hidden;
}

.noscroll-page #banner::before,
.noscroll-page #banner::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
}

.noscroll-page #banner::before {
  z-index: 0;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(7, 7, 7, 0.42) 100%),
    linear-gradient(180deg, rgba(243, 234, 217, 0.035), rgba(14, 14, 14, 0.14));
}

.noscroll-page #banner::after {
  z-index: 0;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.3) 0.55px, transparent 0.7px),
    radial-gradient(rgba(0, 0, 0, 0.28) 0.5px, transparent 0.75px);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px, 5px 5px;
}

.noscroll-page .banner-text {
  z-index: 1;
}

.noscroll-page .fade-in-text {
  opacity: 1;
  transform: none;
  animation: none;
}

.noscroll-page .fade-in-text h2 {
  margin: 0;
  color: #f3ead9;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translateY(14px);
  animation: timeless-title-reveal 850ms cubic-bezier(0.22, 1, 0.36, 1) 280ms forwards;
}

.noscroll-page .fade-in-text p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  max-width: min(80vw, 60rem);
  margin: 1.05rem auto 0;
  color: #f3ead9;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.68rem, 1.05vw, 0.9rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(10px);
  animation: timeless-tagline-reveal 720ms ease-out 720ms forwards;
}

.noscroll-page .fade-in-text p::before,
.noscroll-page .fade-in-text p::after {
  width: clamp(36px, 6vw, 96px);
  height: 1px;
  flex: 0 0 auto;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(216, 216, 211, 0.9));
}

.noscroll-page .fade-in-text p::after {
  transform: scaleX(-1);
}

@keyframes timeless-title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timeless-tagline-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 600px) {
  .noscroll-page .fade-in-text h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    letter-spacing: 0.08em;
  }

  .noscroll-page .fade-in-text p {
    max-width: 90vw;
    font-size: 0.65rem;
    letter-spacing: 0.13em;
  }

  .noscroll-page .fade-in-text p::before,
  .noscroll-page .fade-in-text p::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .noscroll-page .fade-in-text h2,
  .noscroll-page .fade-in-text p {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Timeless first-event review treatment */
.hero-slider .carousel-cell.timeless-event-preview {
  position: relative;
  isolation: isolate;
}

.hero-slider .carousel-cell.slide-1.timeless-event-preview {
  background-image: url("../Images/Gallery/Photos/Timeless 0005.jpg");
  background-position: center 46%;
}

.hero-slider .carousel-cell.slide-2.timeless-event-preview {
  background-image: url("../Images/Gallery/Photos/Timeless 0004.jpg");
  background-position: center 42%;
}

.hero-slider .carousel-cell.slide-3.timeless-event-preview {
  background-image: url("../Images/Gallery/Photos/Timeless 0001.jpg");
  background-position: center 38%;
}

.hero-slider .timeless-event-preview .overlay {
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(14, 14, 14, 0.08) 18%, rgba(8, 8, 8, 0.68) 100%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.16), rgba(18, 18, 18, 0.5));
}

.hero-slider .timeless-event-preview::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.32) 0.55px, transparent 0.7px),
    radial-gradient(rgba(0, 0, 0, 0.3) 0.5px, transparent 0.75px);
  background-position: 0 0, 2px 2px;
  background-size: 4px 4px, 5px 5px;
}

.hero-slider .timeless-event-preview .inner {
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.timeless-event-frame {
  position: relative;
  padding: clamp(24px, 4vw, 42px) clamp(20px, 5vw, 58px) clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(216, 216, 211, 0.62);
  border-bottom: 1px solid rgba(216, 216, 211, 0.42);
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.6), rgba(18, 18, 18, 0.28));
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
}

.timeless-event-kicker {
  display: grid;
  grid-template-columns: 1fr 122px 1fr;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(216, 216, 211, 0.28);
  color: #d8d8d3;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.58rem, 0.9vw, 0.72rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.timeless-event-kicker > span:first-child {
  text-align: left;
}

.timeless-event-kicker > span:last-child {
  text-align: right;
}

.timeless-event-kicker-logo {
  position: relative;
  display: block;
  width: 122px;
  height: 49px;
  overflow: hidden;
}

.timeless-event-kicker-logo img {
  position: absolute;
  top: -101px;
  left: -6px;
  display: block;
  width: 138px;
  max-width: none;
  height: auto;
}

.timeless-event-date {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 24px;
  padding: 8px 14px 7px;
  border: 1px solid rgba(243, 234, 217, 0.76);
  background: #f3ead9;
  color: #171717;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 rgba(195, 195, 190, 0.2);
}

.timeless-event-date span {
  font-size: 0.62rem;
  font-weight: 700;
}

.timeless-event-date strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.timeless-event-date sup {
  align-self: flex-start;
  margin: 3px 0 0 -5px;
  font-size: 0.58rem;
  font-weight: 700;
}

.hero-slider .timeless-event-preview .title {
  max-width: 800px;
  margin: 22px auto 0;
  color: #f3ead9;
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.055em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.timeless-event-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px auto 0;
  color: #d8d8d3;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.6rem, 0.9vw, 0.74rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.timeless-event-meta span + span::before {
  margin-right: 18px;
  color: #aaa9a5;
  content: '•';
}

.hero-slider .timeless-event-preview .banner-btn {
  margin: 30px auto 0;
}

.hero-slider .flickity-page-dots {
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
  counter-reset: timeless-event-number;
}

.hero-slider .flickity-page-dots .dot {
  position: relative;
  width: 42px;
  height: 25px;
  margin: 0;
  border-bottom: 1px solid rgba(216, 216, 211, 0.42);
  border-radius: 0;
  background: transparent;
  color: rgba(243, 234, 217, 0.58);
  opacity: 1;
  counter-increment: timeless-event-number;
}

.hero-slider .flickity-page-dots .dot::before {
  content: '0' counter(timeless-event-number);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hero-slider .flickity-page-dots .dot.is-selected {
  border-color: #f3ead9;
  background: transparent;
  color: #f3ead9;
}

.timeless-event-preview.is-selected .timeless-event-kicker,
.timeless-event-preview.is-selected .timeless-event-date,
.timeless-event-preview.is-selected .title,
.timeless-event-preview.is-selected .timeless-event-meta {
  opacity: 0;
  transform: translateY(12px);
  animation: timeless-event-reveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.timeless-event-preview.is-selected .timeless-event-date { animation-delay: 100ms; }
.timeless-event-preview.is-selected .title { animation-delay: 180ms; }
.timeless-event-preview.is-selected .timeless-event-meta { animation-delay: 280ms; }

@keyframes timeless-event-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 600px) {
  .hero-slider .timeless-event-preview .inner {
    width: calc(100% - 28px);
  }

  .timeless-event-frame {
    padding: 20px 16px 24px;
  }

  .timeless-event-kicker {
    grid-template-columns: 1fr 90px 1fr;
    gap: 10px;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
  }

  .timeless-event-kicker-logo {
    width: 90px;
    height: 36px;
  }

  .timeless-event-kicker-logo img {
    top: -75px;
    left: -5px;
    width: 102px;
  }

  .hero-slider .timeless-event-preview .title {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .timeless-event-meta {
    gap: 6px 10px;
    letter-spacing: 0.12em;
  }

  .timeless-event-meta span + span::before {
    margin-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeless-event-preview.is-selected .timeless-event-kicker,
  .timeless-event-preview.is-selected .timeless-event-date,
  .timeless-event-preview.is-selected .title,
  .timeless-event-preview.is-selected .timeless-event-meta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================================
   TIMELESS GALLERY — VISUAL ARCHIVE
========================================================= */

.gallery-body {
  --gallery-cream: #f1ead8;
  --gallery-cream-soft: #d8cfbb;
  --gallery-charcoal: #121214;
  --gallery-panel: #19191b;
  --gallery-chrome: #aaa9a5;
  --gallery-line: rgba(241, 234, 216, 0.24);
  --gallery-accent: var(--gallery-cream);
  --gallery-accent-soft: #fff9e9;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--gallery-charcoal);
  color: var(--gallery-cream);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.gallery-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(241, 234, 216, 0.09), transparent 27rem),
    radial-gradient(circle at 82% 48%, rgba(112, 82, 54, 0.13), transparent 32rem),
    linear-gradient(145deg, #171411, #09090b 60%);
  pointer-events: none;
}

.gallery-background::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.016) 0, rgba(255, 255, 255, 0.016) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.46));
}

.gallery-main {
  position: relative;
  z-index: 2;
  padding: 34px 1rem 70px;
}

.gallery-hero,
.gallery-content,
.gallery-cta {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--gallery-line);
  border-radius: 3px;
  padding: 0;
  background: rgba(15, 15, 17, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gallery-intro-fade,
.gallery-panel-fade {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.gallery-panel-fade {
  transform: translateY(10px);
  animation-delay: 0.08s;
}

.gallery-intro-fade {
  transform: translateY(8px);
  animation-delay: 0.24s;
}

.gallery-hero-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  margin: 0;
  background: #0d0d0f;
}

.gallery-hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.16), transparent 40%, rgba(7, 7, 8, 0.92)),
    linear-gradient(90deg, transparent 64%, rgba(10, 10, 12, 0.46));
  pointer-events: none;
}

.gallery-hero-visual > .gallery-hero-main {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.gallery-hero-visual > .gallery-hero-accent {
  position: absolute;
  z-index: 3;
  top: auto;
  right: 28px;
  bottom: 30px;
  width: min(190px, 36%);
  height: auto;
  margin: 0;
  border: 1px solid rgba(241, 234, 216, 0.72);
  border-radius: 0;
  background: var(--gallery-cream);
  padding: 6px 6px 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36);
  transform: rotate(1.7deg);
}

.gallery-hero-accent img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.gallery-hero-accent figcaption {
  padding: 9px 3px 0;
  color: var(--gallery-charcoal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-hero-caption {
  position: absolute;
  z-index: 3;
  right: 230px;
  bottom: 38px;
  left: 38px;
  display: grid;
  gap: 5px;
  color: var(--gallery-cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-hero-caption span {
  color: var(--gallery-chrome);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.gallery-hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gallery-line);
  padding: 48px 44px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.46), transparent 38%),
    var(--gallery-cream);
  color: var(--gallery-charcoal);
}

.gallery-hero-copy::before,
.gallery-hero-copy::after,
.gallery-cta::before,
.gallery-cta::after {
  content: "";
  position: absolute;
  z-index: 4;
  left: -12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gallery-charcoal);
}

.gallery-hero-copy::before,
.gallery-cta::before { top: -12px; }

.gallery-hero-copy::after,
.gallery-cta::after { bottom: -12px; }

.gallery-serial {
  display: block;
  margin-bottom: 34px;
  color: rgba(18, 18, 20, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-kicker {
  margin: 0 0 7px;
  color: var(--gallery-chrome);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: none;
  text-transform: uppercase;
}

.gallery-hero-copy .gallery-kicker,
.gallery-cta .gallery-kicker {
  color: rgba(18, 18, 20, 0.62);
}

.gallery-hero h1,
.gallery-heading h2,
.gallery-subheading h3,
.gallery-video-card h4,
.gallery-cta h2 {
  margin: 0;
  color: var(--gallery-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.97;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
}

.gallery-hero h1 {
  color: var(--gallery-charcoal);
  font-size: clamp(4.1rem, 6.2vw, 6rem);
}

.gallery-heading h2,
.gallery-cta h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.gallery-subheading h3 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
}

.gallery-cta h2 {
  color: var(--gallery-charcoal);
}

.gallery-lead {
  max-width: 41ch;
  margin: 22px 0 0;
  color: rgba(18, 18, 20, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-archive-stats {
  display: grid;
  grid-template-columns: 0.8fr 0.6fr 1.4fr;
  margin: 30px 0 0;
  border-top: 1px solid rgba(18, 18, 20, 0.28);
  border-bottom: 1px solid rgba(18, 18, 20, 0.28);
}

.gallery-archive-stats > div {
  padding: 13px 10px;
}

.gallery-archive-stats > div:first-child { padding-left: 0; }

.gallery-archive-stats > div + div {
  border-left: 1px solid rgba(18, 18, 20, 0.2);
}

.gallery-archive-stats dt {
  color: rgba(18, 18, 20, 0.54);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-archive-stats dd {
  margin: 5px 0 0;
  color: var(--gallery-charcoal);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-scroll-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  border: 1px solid var(--gallery-charcoal);
  border-radius: 2px;
  background: var(--gallery-charcoal);
  color: var(--gallery-cream);
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-scroll-link:hover,
.gallery-scroll-link:focus-visible {
  transform: translateY(-1px);
  background: #2b2a29;
  color: var(--gallery-cream);
}

.gallery-content {
  padding: 76px 0 0;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 58px;
}

.gallery-heading > div:first-child > p:last-child {
  margin: 10px 0 0;
  color: var(--gallery-cream-soft);
  line-height: 1.6;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-end;
  border: 1px solid var(--gallery-line);
}

.gallery-filter {
  display: inline-flex;
  min-width: 104px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: rgba(12, 12, 14, 0.72);
  color: var(--gallery-cream-soft);
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.gallery-filter + .gallery-filter {
  border-left: 1px solid var(--gallery-line);
}

.gallery-filter span {
  color: var(--gallery-chrome);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  border-color: transparent;
  background: var(--gallery-cream);
  color: var(--gallery-charcoal);
}

.gallery-filter.is-active span,
.gallery-filter:hover span,
.gallery-filter:focus-visible span {
  color: rgba(18, 18, 20, 0.58);
}

.gallery-videos {
  margin-bottom: 76px;
}

.gallery-subheading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.gallery-subheading > span {
  color: var(--gallery-chrome);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 16px;
  align-items: stretch;
}

.gallery-video-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gallery-line);
  border-radius: 3px;
  background:
    linear-gradient(145deg, rgba(241, 234, 216, 0.055), transparent 48%),
    rgba(13, 13, 15, 0.86);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.26);
}

.gallery-video-frame {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gallery-line);
  background: #050506;
}

.gallery-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 530px;
  background: #050506;
  object-fit: contain;
}

.gallery-video-card:not(.gallery-video-card--featured) video {
  min-height: 360px;
}

.gallery-video-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border: 1px solid rgba(18, 18, 20, 0.3);
  background: var(--gallery-cream);
  color: var(--gallery-charcoal);
  padding: 7px 9px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-video-card > .gallery-video-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 23px;
}

.gallery-video-details > span {
  color: var(--gallery-chrome);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-video-card h4 {
  margin-top: 7px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.gallery-video-details p {
  margin: 8px 0 0;
  color: var(--gallery-cream-soft);
  font-size: 13px;
  line-height: 1.6;
}

.gallery-photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 90px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-photo-card,
.gallery-photo-card--tall,
.gallery-photo-card--portrait,
.gallery-photo-card--wide,
.gallery-photo-card--square {
  position: relative;
  overflow: hidden;
  min-width: 0;
  grid-column: span 1;
  grid-row: span 5;
  box-sizing: border-box;
  border: 1px solid rgba(241, 234, 216, 0.74);
  border-radius: 0;
  background: var(--gallery-cream);
  padding: 7px 7px 40px;
  text-align: left;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-photo-card--portrait {
  grid-row: span 6;
}

.gallery-photo-card--wide {
  grid-column: span 2;
  grid-row: span 4;
}

.gallery-photo-card--square {
  grid-row: span 3;
}

.gallery-photo-card::after {
  display: none;
}

.gallery-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  transition: filter 350ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-photo-card .gallery-photo-index,
.gallery-photo-card .gallery-photo-caption {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 13px;
  left: 12px;
  color: rgba(18, 18, 20, 0.58);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-photo-card .gallery-photo-caption {
  right: 12px;
  left: auto;
  max-width: 58%;
  color: var(--gallery-charcoal);
  text-align: right;
}

.gallery-photo-card:hover,
.gallery-photo-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.gallery-photo-card:hover img,
.gallery-photo-card:focus-visible img {
  filter: contrast(1.03) saturate(1.03);
  transform: scale(1.025);
}

.gallery-photo-card:focus-visible,
.gallery-filter:focus-visible,
.gallery-lightbox button:focus-visible {
  outline: 3px solid var(--gallery-cream);
  outline-offset: 3px;
}

.gallery-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
  overflow: visible;
  margin-top: 76px;
  border: 1px solid rgba(241, 234, 216, 0.78);
  border-radius: 3px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.46), transparent 42%),
    var(--gallery-cream);
  padding: 48px 42px 38px;
  color: var(--gallery-charcoal);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.gallery-cta::before,
.gallery-cta::after {
  left: auto;
  right: -12px;
}

.gallery-cta > .gallery-serial {
  position: absolute;
  top: 17px;
  right: 22px;
  margin: 0;
}

.gallery-cta > div > p:not(.gallery-kicker) {
  max-width: 47rem;
  margin: 12px 0 0;
  color: rgba(18, 18, 20, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.gallery-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 0;
}

.gallery-actions a {
  min-width: 148px;
  border: 1px solid var(--gallery-charcoal);
  border-radius: 2px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.gallery-actions .gallery-primary-action {
  background: var(--gallery-charcoal);
  color: var(--gallery-cream);
}

.gallery-actions .gallery-secondary-action {
  background: transparent;
  color: var(--gallery-charcoal);
}

.gallery-actions a:hover,
.gallery-actions a:focus-visible {
  transform: translateY(-1px);
}

.gallery-actions .gallery-primary-action:hover,
.gallery-actions .gallery-primary-action:focus-visible {
  background: #2b2a29;
}

.gallery-actions .gallery-secondary-action:hover,
.gallery-actions .gallery-secondary-action:focus-visible {
  background: rgba(18, 18, 20, 0.09);
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  box-sizing: border-box;
  border: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 4px),
    rgba(8, 8, 10, 0.98);
  color: var(--gallery-cream);
  padding: 62px 84px 54px;
}

.gallery-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.96);
}

.gallery-lightbox-label {
  position: fixed;
  z-index: 2;
  top: 23px;
  left: 28px;
  color: var(--gallery-chrome);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  place-items: center;
}

.gallery-lightbox-counter {
  position: absolute;
  top: 23px;
  left: 50%;
  color: var(--gallery-cream);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.gallery-lightbox img {
  display: block;
  max-width: min(100%, 1120px);
  max-height: calc(100vh - 145px);
  border: 7px solid var(--gallery-cream);
  background: var(--gallery-cream);
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.58);
}

.gallery-lightbox figcaption {
  position: fixed;
  right: 90px;
  bottom: 21px;
  left: 90px;
  margin: 0;
  color: var(--gallery-cream);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-lightbox button {
  position: fixed;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gallery-line);
  border-radius: 2px;
  background: rgba(18, 18, 20, 0.86);
  color: var(--gallery-cream);
  place-items: center;
}

.gallery-lightbox button:hover {
  background: var(--gallery-cream);
  color: var(--gallery-charcoal);
}

.gallery-lightbox-close {
  top: 15px;
  right: 19px;
}

.gallery-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-previous { left: 20px; }
.gallery-lightbox-next { right: 20px; }

@media (max-width: 980px) {
  .gallery-hero {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .gallery-hero-copy {
    border-top: 1px solid var(--gallery-line);
    border-left: 0;
  }

  .gallery-hero-copy::before,
  .gallery-hero-copy::after {
    display: none;
  }

  .gallery-content,
  .gallery-cta {
    width: min(720px, 100%);
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-filters {
    width: fit-content;
    justify-content: flex-start;
  }

  .gallery-video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .gallery-video-card video,
  .gallery-video-card:not(.gallery-video-card--featured) video {
    min-height: 0;
    max-height: 640px;
    aspect-ratio: 16 / 9;
  }

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

  .gallery-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-actions {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .gallery-main {
    padding: 22px 0.75rem 48px;
  }

  .gallery-hero-visual {
    min-height: 570px;
  }

  .gallery-hero-visual > .gallery-hero-accent {
    right: 18px;
    bottom: 22px;
    width: 34%;
  }

  .gallery-hero-caption {
    right: 42%;
    bottom: 28px;
    left: 24px;
  }

  .gallery-hero-copy {
    padding: 34px 25px;
  }

  .gallery-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5rem);
  }

  .gallery-archive-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-archive-stats dd {
    font-size: 1.05rem;
  }

  .gallery-content {
    padding-top: 54px;
  }

  .gallery-heading {
    gap: 24px;
    margin-bottom: 44px;
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .gallery-filter {
    min-width: 0;
    padding: 12px 8px;
  }

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

  .gallery-subheading > span {
    order: 2;
  }

  .gallery-video-card video,
  .gallery-video-card:not(.gallery-video-card--featured) video {
    aspect-ratio: 9 / 16;
  }

  .gallery-videos {
    margin-bottom: 54px;
  }

  .gallery-photo-grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-photo-card,
  .gallery-photo-card--tall,
  .gallery-photo-card--portrait,
  .gallery-photo-card--wide,
  .gallery-photo-card--square {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .gallery-photo-card--wide {
    aspect-ratio: 3 / 2;
  }

  .gallery-photo-card--portrait {
    aspect-ratio: 9 / 16;
  }

  .gallery-photo-card--square {
    aspect-ratio: 1;
  }

  .gallery-cta {
    gap: 28px;
    margin-top: 54px;
    padding: 48px 25px 30px;
  }

  .gallery-cta > .gallery-serial {
    top: 16px;
    right: 18px;
  }

  .gallery-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gallery-actions a {
    width: 100%;
    box-sizing: border-box;
  }

  .gallery-lightbox {
    padding: 62px 16px 80px;
  }

  .gallery-lightbox-label {
    display: none;
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 170px);
    border-width: 4px;
  }

  .gallery-lightbox figcaption {
    right: 72px;
    bottom: 24px;
    left: 72px;
    font-size: 1rem;
  }

  .gallery-lightbox-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .gallery-lightbox-previous { left: 16px; }
  .gallery-lightbox-next { right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-intro-fade,
  .gallery-panel-fade,
  .gallery-reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .gallery-photo-card,
  .gallery-photo-card img {
    transition: none;
  }
}
