/* ============================================
   Spirit Sessions — Music For The Seekers
   Night Sky / Starfield Aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-deep: #080c18;
    --bg-section: #0b0f1f;
    --bg-section-alt: #0e1225;
    --bg-card: #12172e;
    --bg-card-hover: #181f3a;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dim: #7a6a30;
    --white: #f0ece2;
    --white-bright: #ffffff;
    --text-body: #c8c4b8;
    --text-muted: #7a7670;
    --nav-bg: rgba(8, 12, 24, 0.92);
    --border: rgba(201, 168, 76, 0.12);
    --border-light: rgba(201, 168, 76, 0.25);
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1100px;
    --nav-height: 64px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-light);
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Starfield --- */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 20% 80%, #131a3e 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, #0f1535 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, #0a0e1a 0%, #060914 100%);
}

.starfield .star {
    position: absolute;
    border-radius: 50%;
    background: var(--white);
    animation: twinkle ease-in-out infinite alternate;
    opacity: 0;
}

@keyframes twinkle {
    0% { opacity: 0.15; transform: scale(0.8); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(240, 236, 226, 0.7), transparent);
    opacity: 0;
    pointer-events: none;
    transform: rotate(-35deg);
    animation: shoot ease-in infinite;
}

.shooting-star::before {
    content: '';
    position: absolute;
    right: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(240, 236, 226, 0.9);
    box-shadow: 0 0 6px 2px rgba(201, 168, 76, 0.4);
}

@keyframes shoot {
    0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
    5% { opacity: 1; }
    15% { opacity: 1; transform: rotate(-35deg) translateX(300px); }
    16% { opacity: 0; transform: rotate(-35deg) translateX(320px); }
    100% { opacity: 0; transform: rotate(-35deg) translateX(320px); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.3s ease;
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    color: var(--white);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--gold);
    color: var(--bg-deep) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--bg-deep) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-light);
    padding: 13px 31px;
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
    border-color: var(--gold);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero-content {
    max-width: 700px;
}

.hero-series {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--gold-light);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-details {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-date {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-date-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
}

.hero-date-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.hero-date-time {
    font-size: 0.95rem;
    color: var(--text-body);
}

.hero-countdown {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}

.countdown {
    display: inline-flex;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.hero-venue {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.3s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Styling --- */
.section {
    position: relative;
    z-index: 1;
    padding: 96px 0;
    background: var(--bg-section);
}

.section-alt {
    background: var(--bg-section-alt);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 56px;
    line-height: 1.6;
}

/* --- About Section --- */
.about-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-content h3,
.about-kendall h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    margin-top: 32px;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 16px;
}

.about-kendall {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-kendall:hover {
    border-color: var(--border-light);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.about-kendall h3 {
    margin-top: 16px;
}

.about-kendall-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-light);
}

.about-kendall-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-kendall-role {
    font-size: 0.9rem;
    color: var(--gold-dim);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-kendall p {
    text-align: left;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-kendall-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.about-kendall-links a {
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Shows Section --- */
.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.show-card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.show-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.show-card-date {
    text-align: center;
    min-width: 80px;
    padding-right: 24px;
    border-right: 1px solid var(--border);
}

.show-card-day {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.show-card-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.show-card-month {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.show-card-info {
    flex: 1;
}

.show-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.show-card-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.show-card-pricing {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

.show-card .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.show-card-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* --- Musicians Section --- */
.musicians-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.musician-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.musician-card:hover {
    border-color: var(--border-light);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.musician-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
}

.musician-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musician-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.musician-instrument {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.musician-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-body);
    text-align: left;
    margin-bottom: 16px;
}

.musician-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.musician-links a {
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- Music / Listen Section --- */
.music-player {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.music-player iframe {
    display: block;
}

.music-player-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}

.music-player-hint svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.music-cta {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border);
}

/* --- Calendar Links --- */
.show-card-calendar {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 0;
}

.calendar-link:hover {
    color: var(--gold-light);
}

.calendar-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* --- Venue Section --- */
.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.venue-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.venue-address {
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.venue-phone {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.venue-detail-group {
    margin-bottom: 24px;
}

.venue-detail-group h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.venue-detail-group ul {
    padding-left: 0;
}

.venue-detail-group li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.venue-detail-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-dim);
}

.venue-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.venue-links .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.venue-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.venue-map iframe {
    display: block;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--gold-dim);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--text-body);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Sticky CTA --- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(8, 12, 24, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.btn-sticky {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 24px;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .musicians-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--bg-deep);
        border-left: 1px solid var(--border);
        padding: calc(var(--nav-height) + 20px) 28px 28px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
        display: block;
    }

    .section {
        padding: 64px 0;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .hero {
        padding-top: calc(var(--nav-height) + 20px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .show-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .show-card-date {
        padding-right: 0;
        padding-bottom: 16px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .show-card-calendar {
        justify-content: center;
    }

    .music-player iframe {
        height: 400px;
    }

    .musicians-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

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

    .sticky-cta {
        display: block;
    }

    .countdown {
        gap: 16px;
        padding: 12px 20px;
    }

    .countdown-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .about-kendall {
        padding: 24px 16px;
    }

    .venue-links {
        flex-direction: column;
    }

    .venue-links .btn {
        text-align: center;
    }
}

/* --- Scroll animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays set by JS via transition-delay */
