/* =============================================
   KINGDOM BUSINESS LUNCH — STYLESHEET
   Rise Up Kings · riseupkings.com/kingdom-business-lunch
   ============================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0A0A0A;
    color: #F5F0E8;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
}

/* --- CSS VARIABLES ------------------------------ */
:root {
    --gold:          #C9A84C;
    --gold-light:    #E8C96A;
    --gold-dark:     #A8862E;
    --gold-subtle:   rgba(201, 168, 76, 0.10);
    --gold-border:   rgba(201, 168, 76, 0.25);

    --black:         #0A0A0A;
    --dark:          #111111;
    --dark-alt:      #191919;
    --dark-card:     #141414;

    --text-primary:  #F5F0E8;
    --text-secondary:#9A8E82;
    --text-muted:    #5E554D;

    --border-gold:   rgba(201, 168, 76, 0.20);
    --border-subtle: rgba(255, 255, 255, 0.07);

    --container:     1100px;
    --radius:        4px;
    --radius-lg:     8px;
    --transition:    0.22s ease;
}

/* --- TYPOGRAPHY ---------------------------------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

em {
    font-style: italic;
    color: var(--gold-light);
}

/* --- LAYOUT ------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* --- BUTTONS ------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--radius);
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0A0A0A;
    box-shadow:
        0 0 18px rgba(201, 168, 76, 0.55),
        0 4px 24px rgba(201, 168, 76, 0.35);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow:
        0 0 32px rgba(201, 168, 76, 0.75),
        0 8px 40px rgba(201, 168, 76, 0.45);
}

.btn--gold:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.2);
}

.btn--sm  { padding: 0.55rem 1.2rem; font-size: 0.72rem; }
.btn--lg  { padding: 1.2rem 3.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* --- SECTION HEADERS ---------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1rem;
}

.headline-gold {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
}

/* Required asterisk */
.req { color: var(--gold); }

/* ==============================================
   NAV
   ============================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color var(--transition);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.75rem;
}

.nav__logo-img {
    height: 38px;
    width: auto;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
    padding-top: 0;
}

/* Grayscale hero background image */
.hero__bg-img {
    position: absolute;
    inset: 0;
    background: url('../assets/Hero BG.jpg') center center / cover no-repeat;
    filter: grayscale(100%) brightness(1.15);
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay + gold glow over hero BG photo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.82) 50%, rgba(10,10,10,0.95) 100%),
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 1.75rem 6rem;
    width: 100%;
}

.hero__eyebrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero__eyebrow-main {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero__eyebrow-dots {
    display: flex;
    align-items: center;
    gap: 0;
    width: 160px;
}

.ey-sub-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.55));
}

.ey-sub-line--r {
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.55));
}

.ey-glow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C9A84C;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(201,168,76,0.95), 0 0 20px rgba(201,168,76,0.55);
}

.eyebrow-line {
    flex: 1;
    max-width: 65px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.75));
}
.eyebrow-line:last-child {
    background: linear-gradient(to left, transparent, rgba(201,168,76,0.75));
}

.eyebrow-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}

.hero__headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    margin-bottom: 0;
}

/* Frame corners */
.hero__frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(820px, 88vw);
    height: min(80vh, 720px);
    z-index: 2;
    pointer-events: none;
}

.hero__frame-tl,
.hero__frame-tr,
.hero__frame-bl,
.hero__frame-br {
    position: absolute;
    width: 52px;
    height: 52px;
    border-color: rgba(201,168,76,0.9);
    border-style: solid;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.75)) drop-shadow(0 0 18px rgba(201,168,76,0.4));
}

.hero__frame-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hero__frame-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hero__frame-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.hero__frame-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* Headline / subhead hairline separator */
.hero__sep-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.65) 30%, rgba(201,168,76,0.65) 70%, transparent);
    margin: 1.35rem auto;
}

/* CTA pulse rings */
.hero__cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    inset: -10px;
    border-radius: 6px;
    border: 1px solid rgba(201,168,76,0.55);
    animation: ring-pulse 2.4s ease-out infinite;
    pointer-events: none;
}

.pulse-ring:nth-child(2) { animation-delay: 0.8s; }
.pulse-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes ring-pulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

.hero__headline--gold {
    color: #C9A84C;
    -webkit-text-fill-color: #C9A84C;
    display: block;
}

.hero__subhead {
    font-size: 1.1rem;
    color: #FFFFFF;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.85;
}

.hero__date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.8);
    border-radius: 100px;
    padding: 0.65rem 1.75rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 14px rgba(201,168,76,0.4), 0 0 30px rgba(201,168,76,0.18), inset 0 0 12px rgba(201,168,76,0.06);
}

.date-pill__sep {
    color: rgba(201,168,76,0.4);
    font-weight: 300;
}

.date-pill__date {
    font-size: 0.9rem;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.date-pill__location {
    font-size: 0.9rem;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.date-pill__location--short {
    display: none;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    margin-top: 2rem;
}

.hero__cta {
    display: inline-flex;
}

.hero__capacity {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
    margin: 0;
}

/* Scroll mouse indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.hero__scroll-indicator:hover { opacity: 0.7; }

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(201,168,76,0.8);
    border-radius: 11px;
    position: relative;
    box-shadow: 0 0 12px rgba(201,168,76,0.4), 0 0 24px rgba(201,168,76,0.15);
}

.scroll-mouse-dot {
    width: 3px;
    height: 7px;
    background: #C9A84C;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    animation: scroll-dot 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(201,168,76,0.95);
}

@keyframes scroll-dot {
    0%,100% { transform: translateX(-50%) translateY(0);    opacity: 1; }
    70%      { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

.scroll-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
}

.scroll-chevron {
    display: none;
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(201,168,76,0.8);
    border-bottom: 2px solid rgba(201,168,76,0.8);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 4px rgba(201,168,76,0.6));
}

.scroll-chevron--2 {
    opacity: 0.45;
    margin-top: -6px;
}

/* ==============================================
   QUALIFIER — WHO THIS IS FOR
   ============================================== */
.qualifier {
    padding: 6rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border-subtle);
}

.qualifier__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.qualifier__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.75rem;
}

.qualifier__rule {
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.qualifier__note {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.85;
}

.qualifier__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.qualifier__item:first-child {
    padding-top: 0;
}

.qualifier__bar {
    width: 3px;
    height: 34px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(201,168,76,0.45);
}

.qualifier__item p {
    margin: 0;
    font-size: 0.96rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
}

/* ==============================================
   EXPERIENCE — WHAT HAPPENS
   ============================================== */
.experience {
    padding: 6rem 0;
    background: #0d0d0d;
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.experience__card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 18px rgba(201,168,76,0.06), inset 0 0 0 1px rgba(201,168,76,0.06);
}

.experience__card:hover {
    border-color: rgba(201,168,76,0.55);
    box-shadow: 0 0 28px rgba(201,168,76,0.14), inset 0 0 0 1px rgba(201,168,76,0.1);
}

.experience__card-feature {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 10px;
    padding: 2.75rem 3.5rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 32px rgba(201,168,76,0.18), inset 0 0 0 1px rgba(201,168,76,0.1);
}

.experience__card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.75), transparent);
}

.experience__card-feature:hover {
    border-color: rgba(201,168,76,0.65);
    box-shadow: 0 0 52px rgba(201,168,76,0.28), inset 0 0 0 1px rgba(201,168,76,0.15);
}

.feature-ghost {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 14rem;
    line-height: 1;
    color: rgba(201,168,76,0.22);
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 60px rgba(201,168,76,0.45);
}

.feature-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.feature-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.feature-content p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}

.experience__photo {
    height: 200px;
    background: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.experience__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience__photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
}

.exp-photo-icon {
    font-size: 1.4rem;
    opacity: 0.12;
    position: relative;
    z-index: 1;
}

.exp-photo-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    position: relative;
    z-index: 1;
}

.experience__card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid rgba(201,168,76,0.3);
}

.experience__num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    text-transform: uppercase;
}

.experience__card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

.experience__card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* ==============================================
   UPCOMING DATES
   ============================================== */
.dates {
    padding: 6rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.dates__scenes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.dates__banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.32);
    background: #0f0d08;
    box-shadow: 0 0 60px rgba(201,168,76,0.09);
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    margin-bottom: 3rem;
}

.dates__banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.8), transparent);
}

.dates__banner-left {
    position: relative;
    overflow: hidden;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dates__banner-divider {
    background: rgba(201,168,76,0.18);
    align-self: stretch;
}

.dates__banner-right {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    text-align: left;
}


.dates__banner-day {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 8rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--gold);
    filter: drop-shadow(0 0 30px rgba(201,168,76,0.45));
    position: relative;
}

.dates__banner-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.dates__banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: var(--white);
}

.dates__banner-details {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

.dates__banner-details strong {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

@media (max-width: 640px) {
    .dates__banner {
        grid-template-columns: 1fr;
    }
    .dates__banner-divider {
        width: auto;
        height: 1px;
        align-self: auto;
    }
    .dates__banner-left,
    .dates__banner-right {
        padding: 2.5rem 2rem;
        text-align: center;
        align-items: center;
    }
    .dates__banner-day {
        font-size: 7rem;
    }
    .dates__banner-right {
        align-items: center;
    }
}

.date-scene {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: #0c0c0c;
    padding: 2.25rem 3rem;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 3rem;
    min-height: 110px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.date-scene:hover {
    border-color: rgba(201,168,76,0.22);
}

.date-scene--next {
    border-color: rgba(201,168,76,0.32);
    background: #0f0d08;
    box-shadow: 0 0 40px rgba(201,168,76,0.09);
}

.date-scene--next::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.8), transparent);
}

.date-scene--next::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 120% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.date-scene--past {
    opacity: 0.3;
    pointer-events: none;
}

.scene-ghost {
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 8rem;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255,255,255,0.03);
    letter-spacing: -0.03em;
    pointer-events: none;
    white-space: nowrap;
}

.date-scene--next .scene-ghost {
    color: rgba(201,168,76,0.06);
}

.scene-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.15);
    text-align: center;
    position: relative;
}

.date-scene--next .scene-num {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201,168,76,0.4);
}

.scene-info {
    position: relative;
}

.scene-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
}

.scene-month-day {
    display: none;
}

.scene-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    margin-top: 0.35rem;
    letter-spacing: 0.03em;
}

.date-scene--next .scene-meta {
    color: rgba(255,255,255,0.55);
}

.scene-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem;
    border-radius: 3px;
    position: relative;
}

.scene-badge--hidden {
    opacity: 0;
    pointer-events: none;
}

.dates__cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}



/* ==============================================
   ABOUT SKYLAR
   ============================================== */
.skylar {
    padding: 6rem 0;
    background: #0d0d0d;
}

.skylar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 60px rgba(201,168,76,0.08), inset 0 0 0 1px rgba(201,168,76,0.06);
    padding: 4rem 4.5rem;
}

.skylar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.65), transparent);
}

.skylar-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.skylar-tl { top: 16px; left: 16px; border-top: 1.5px solid rgba(201,168,76,0.5); border-left: 1.5px solid rgba(201,168,76,0.5); }
.skylar-tr { top: 16px; right: 16px; border-top: 1.5px solid rgba(201,168,76,0.5); border-right: 1.5px solid rgba(201,168,76,0.5); }
.skylar-bl { bottom: 16px; left: 16px; border-bottom: 1.5px solid rgba(201,168,76,0.5); border-left: 1.5px solid rgba(201,168,76,0.5); }
.skylar-br { bottom: 16px; right: 16px; border-bottom: 1.5px solid rgba(201,168,76,0.5); border-right: 1.5px solid rgba(201,168,76,0.5); }

.skylar-spotlight {
    position: absolute;
    top: -100px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 62%);
    pointer-events: none;
}

.skylar__inner {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: center;
}

.skylar__photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.skylar__photo {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.75),
        0 0 0 1px rgba(201,168,76,0.3);
}

.skylar__photo-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0A0A0A;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.skylar__bio .section-label {
    display: block;
    margin-bottom: 0.5rem;
}

.skylar__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.3rem;
    margin-top: 0.25rem;
}

.skylar__title {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    display: block;
    margin-bottom: 0;
}

.skylar__rule {
    width: 40px;
    height: 2px;
    background: rgba(201,168,76,0.5);
    border-radius: 2px;
    margin: 1.5rem 0;
}

.skylar__bio p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
}

.skylar__bio p:last-child { margin-bottom: 0; }
.skylar__bio em { color: rgba(255,255,255,0.9); font-style: italic; }

/* ==============================================
   TESTIMONIALS
   ============================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border-subtle);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial__card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 50px rgba(201,168,76,0.07), inset 0 0 0 1px rgba(201,168,76,0.05);
    padding: 3rem 3rem 2.75rem;
}

.testimonial__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.65), transparent);
}

.testimonial__spot {
    position: absolute;
    top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.testimonial__tl {
    position: absolute;
    top: 12px; left: 12px;
    width: 16px; height: 16px;
    border-top: 1.5px solid rgba(201,168,76,0.45);
    border-left: 1.5px solid rgba(201,168,76,0.45);
}

.testimonial__br {
    position: absolute;
    bottom: 12px; right: 12px;
    width: 16px; height: 16px;
    border-bottom: 1.5px solid rgba(201,168,76,0.45);
    border-right: 1.5px solid rgba(201,168,76,0.45);
}

.testimonial__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    position: relative;
}

.testimonial__badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.28);
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
}

.testimonial__stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
}

.testimonial__text {
    font-size: 0.93rem;
    line-height: 1.88;
    color: rgba(255,255,255,0.78);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial__author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testimonial__dash {
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.testimonial__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
}

/* ==============================================
   RSVP FORM
   ============================================== */
.rsvp {
    padding: 6rem 0;
    background: var(--black);
    border-top: 1px solid var(--border-subtle);
}

.rsvp__wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Prestige card */
.rsvp-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 60px rgba(201,168,76,0.08), inset 0 0 0 1px rgba(201,168,76,0.05);
    padding: 3.5rem 3.5rem 3rem;
}

.rsvp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.7), transparent);
}

.rsvp-corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.rsvp-tl { top: 14px; left: 14px; border-top: 1.5px solid rgba(201,168,76,0.5); border-left: 1.5px solid rgba(201,168,76,0.5); }
.rsvp-tr { top: 14px; right: 14px; border-top: 1.5px solid rgba(201,168,76,0.5); border-right: 1.5px solid rgba(201,168,76,0.5); }
.rsvp-bl { bottom: 14px; left: 14px; border-bottom: 1.5px solid rgba(201,168,76,0.5); border-left: 1.5px solid rgba(201,168,76,0.5); }
.rsvp-br { bottom: 14px; right: 14px; border-bottom: 1.5px solid rgba(201,168,76,0.5); border-right: 1.5px solid rgba(201,168,76,0.5); }

.rsvp-spotlight {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.rsvp-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form-row {
    display: grid;
    gap: 1.35rem;
}

.form-row--2 {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    background: var(--dark-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
}

.form-group input:focus {
    border-color: var(--gold);
    background: var(--dark-card);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input.input-error {
    border-color: #C0392B;
}

.form-error-inline {
    color: #E74C3C;
    font-size: 0.74rem;
    margin-top: 0.2rem;
    display: block;
}

.form-group select.rsvp-select {
    background: var(--dark-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 0.9rem 2.5rem 0.9rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select.rsvp-select:focus {
    border-color: var(--gold);
    background-color: var(--dark-card);
}

.form-group select.rsvp-select option {
    background: var(--dark-alt);
    color: var(--text-primary);
}

/* DATE CONFIRMATION */
.date-confirm {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: var(--radius);
    margin-top: 0.35rem;
}

.date-confirm__check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1.5px solid rgba(201,168,76,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.date-confirm__label {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.date-confirm__date {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
}

.date-confirm__meta {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.42);
    margin-top: 0.25rem;
}

.form-error-dates {
    color: #E74C3C;
    font-size: 0.76rem;
    margin-top: 0.35rem;
}

/* GUEST TOGGLE */
.guest-question {
    align-items: center;
    text-align: center;
}

.guest-question > label {
    text-align: center;
}

.guest-toggle {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.1rem;
    justify-content: center;
}

.guest-toggle__opt {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--dark-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
    user-select: none;
    white-space: nowrap;
    min-width: 90px;
}

.guest-toggle__opt:hover {
    border-color: var(--border-gold);
    color: var(--text-primary);
}

.guest-toggle__opt:has(input:checked) {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
    color: var(--gold);
}

.guest-toggle__opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.guest-toggle__hint {
    font-size: 0.74rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    text-align: center;
}

/* SUBMIT BUTTON */
#submit-btn {
    margin-top: 0.5rem;
    padding: 1.15rem 2.75rem;
    font-size: 0.85rem;
}

.form__disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* CONFIRMATION SCREEN */
.rsvp__confirmation {
    text-align: center;
    padding: 4.5rem 2rem;
    background: var(--dark-alt);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
}

.confirmation__icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0A0A0A;
    margin: 0 auto 1.75rem;
    box-shadow: 0 0 0 8px rgba(201,168,76,0.12);
}

.rsvp__confirmation h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.rsvp__confirmation p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 0.75rem;
    line-height: 1.75;
}

.confirmation__sub a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==============================================
   FAQ
   ============================================== */
.faq {
    padding: 6rem 0;
    background: #111111;
    border-top: 1px solid var(--border-subtle);
}

.faq__list {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    padding-left: 1.5rem;
}

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

.faq__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: transparent;
    border-radius: 2px;
    transition: background var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"])::before {
    background: var(--gold);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 1.65rem 0;
    color: var(--text-primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color var(--transition);
}

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

.faq__question[aria-expanded="true"] {
    color: var(--gold);
}

.faq__icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__answer.open {
    max-height: 320px;
}

.faq__answer p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--text-secondary);
    padding-bottom: 1.75rem;
    margin: 0;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.5rem;
}

.footer__logo {
    height: 52px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.85;
    display: block;
}

.footer__tagline {
    font-size: 0.84rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.65;
    margin: 0;
}

.footer__col-head {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer__links a {
    font-size: 0.84rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color var(--transition);
}

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

.footer__cta-text {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer__cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer__cta-btn:hover {
    opacity: 0.82;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==============================================
   RESPONSIVE — TABLET
   ============================================== */
@media (max-width: 900px) {
    .date-scene {
        padding: 1.75rem 2rem;
        gap: 2rem;
        grid-template-columns: 80px 1fr auto;
    }

    .scene-num { font-size: 3.75rem; }
    .scene-ghost { font-size: 6rem; }

    .skylar-card {
        padding: 2.5rem 2rem;
    }

    .skylar__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .skylar__photo-col {
        align-items: center;
    }

    .skylar__photo {
        width: 200px;
    }

    .skylar__bio .section-label {
        text-align: center;
    }
}

/* ==============================================
   RESPONSIVE — MOBILE
   ============================================== */
@media (max-width: 680px) {
    .rsvp {
        padding: 2.5rem 0;
    }

    .rsvp-card {
        padding: 1.35rem 1.1rem 1.25rem;
    }

    .rsvp-form {
        gap: 0.85rem;
    }

    .form-group {
        gap: 0.3rem;
    }

    .form-group label {
        font-size: 0.68rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
        padding: 0.68rem 0.8rem;
        font-size: 0.85rem;
    }

    .form-group select.rsvp-select {
        padding: 0.68rem 2.25rem 0.68rem 0.8rem;
        font-size: 0.85rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .form-row--2 {
        grid-template-columns: 1fr;
    }


    #submit-btn {
        padding: 0.9rem 2rem;
        font-size: 0.83rem;
    }

    .qualifier {
        padding: 2.75rem 0;
    }

    .qualifier__split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qualifier__title {
        font-size: 2.6rem;
        margin-bottom: 1rem;
    }

    .qualifier__rule {
        margin-bottom: 0.9rem;
    }

    .qualifier__note {
        font-size: 0.88rem;
        margin-bottom: 0;
    }

    .qualifier__item {
        padding: 0.85rem 0;
        gap: 1rem;
    }

    .qualifier__bar {
        height: 28px;
    }

    .qualifier__item p {
        font-size: 0.86rem;
    }

    .skylar {
        padding: 2.75rem 0;
    }

    .skylar-card {
        padding: 0;
    }

    .skylar__inner {
        display: block;
    }

    .skylar__photo-col {
        position: relative;
        width: 100%;
        height: 260px;
        overflow: hidden;
        flex-direction: row;
        gap: 0;
    }

    .skylar__photo-col::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 90px;
        background: linear-gradient(to bottom, transparent, #0d0d0d);
        pointer-events: none;
    }

    .skylar__photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 0;
        box-shadow: none;
    }

    .skylar__photo-badge {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .skylar__bio {
        padding: 1.5rem 1.5rem 1.75rem;
    }

    .skylar__name {
        font-size: 2.25rem;
    }

    .skylar__title {
        font-size: 0.8rem;
    }

    .skylar__rule {
        margin: 0.9rem 0;
    }

    .skylar__bio p {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .dates {
        padding: 3rem 0;
    }

    .date-scene {
        grid-template-columns: 1fr auto;
        padding: 0.9rem 1.1rem;
        gap: 0.75rem;
        min-height: unset;
        align-items: center;
    }

    .scene-num {
        display: none;
    }

    .scene-ghost {
        display: none;
    }

    .scene-month-day {
        display: inline;
    }

    .date-scene--next .scene-month {
        color: #C9A84C;
    }

    .scene-month {
        font-size: 1.35rem;
    }

    .scene-meta {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .testimonials {
        padding: 3rem 0;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial__card {
        padding: 1.5rem 1.35rem;
    }


    .testimonial__text {
        font-size: 0.83rem;
        line-height: 1.75;
        margin-bottom: 1.1rem;
    }

    .experience {
        padding: 3rem 0;
    }

    .experience__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .experience__card {
        display: flex;
        flex-direction: row;
    }

    .experience__photo {
        width: 105px;
        height: auto;
        flex-shrink: 0;
    }

    .experience__card-body {
        padding: 0.85rem 1rem;
        gap: 0.3rem;
        border-top: none;
        border-left: 1px solid rgba(201,168,76,0.25);
    }

    .experience__card h3 {
        font-size: 1.05rem;
    }

    .experience__card p {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .experience__card-feature {
        padding: 1.35rem 1.25rem;
    }

    .feature-ghost {
        display: none;
    }

    .experience__grid .experience__card:first-child .experience__photo img {
        object-position: 42% center;
    }

    .hero__frame {
        display: none;
    }

    .hero__date-pill {
        padding: 0.5rem 1.1rem;
        gap: 0.45rem;
        white-space: nowrap;
    }

    .date-pill__date,
    .date-pill__location {
        font-size: 0.74rem;
    }

    .date-pill__location:not(.date-pill__location--short) {
        display: none;
    }

    .date-pill__location--short {
        display: inline;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__tagline {
        margin: 0 auto;
    }

    .footer__links {
        align-items: center;
    }

    .faq {
        padding: 2.75rem 0;
    }

    .faq__question {
        padding: 1.1rem 0;
        font-size: 1rem;
    }

    .faq__answer p {
        font-size: 0.84rem;
        line-height: 1.78;
        padding-bottom: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav__cta { display: none; }

    .hero__content {
        padding: 3.25rem 1.5rem 4.25rem;
    }

    .hero__headline {
        font-size: 3rem;
    }

    .hero__subhead {
        font-size: 0.9rem;
    }

    .hero__cta.btn--lg {
        padding: 0.9rem 2rem;
        font-size: 0.82rem;
    }

    .scroll-mouse {
        display: none;
    }

    .scroll-chevron {
        display: block;
        animation: chevron-bob 1.5s ease-in-out infinite;
    }

    @keyframes chevron-bob {
        0%, 100% { transform: rotate(45deg) translate(0, 0);      opacity: 0.65; }
        50%       { transform: rotate(45deg) translate(3px, 3px);  opacity: 1; }
    }

    .date-scene {
        padding: 0.85rem 1rem;
    }

    .scene-month { font-size: 1.2rem; }
}
