/* ==========================================================================
   Hit the Town — shared site stylesheet
   Design system: midnight navy + burnt copper + soft ivory.
   Used by the feature pages (bar-games, events, group-night, itineraries).
   No build step — plain CSS, linked directly. Keep tokens in sync with
   the inline styles in index.html and blog/*.html.
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --midnight-navy: #0f1a2e;
    --deep-blue-steel: #1a2a42;
    --burnt-copper: #c9956b;
    --soft-ivory: #f5f0e8;
    --muted-slate: #8a9bb5;

    --card-border: rgba(201, 149, 107, 0.12);
    --hairline: rgba(245, 240, 232, 0.08);
    --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--midnight-navy);
    color: var(--soft-ivory);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

a { color: inherit; }

/* ---- Navigation ---------------------------------------------------------- */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-decoration: none;
}
.logo .white { color: var(--soft-ivory); }
.logo span { color: var(--burnt-copper); }

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--muted-slate);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--soft-ivory); }

.nav-cta {
    background: var(--burnt-copper);
    color: var(--midnight-navy) !important;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
}
.nav-cta:hover { opacity: 0.9; }

/* ---- Buttons ------------------------------------------------------------- */

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-group.center { justify-content: center; }

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s, border-color 0.2s;
}
.cta-primary {
    background: var(--burnt-copper);
    color: var(--midnight-navy);
}
.cta-primary:hover { transform: translateY(-2px); opacity: 0.9; }

.cta-secondary {
    background: transparent;
    color: var(--soft-ivory);
    border: 1px solid rgba(245, 240, 232, 0.2);
}
.cta-secondary:hover { border-color: var(--burnt-copper); }

/* ---- Feature hero (two-column: copy + phone mockup) ---------------------- */

.feature-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

.eyebrow {
    display: inline-block;
    color: var(--burnt-copper);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
.feature-hero h1 .accent { color: var(--burnt-copper); }

.feature-hero .lede {
    font-size: 1.15rem;
    color: var(--muted-slate);
    line-height: 1.65;
    max-width: 32rem;
    margin-bottom: 2rem;
}

/* ---- Section scaffolding ------------------------------------------------- */

.section {
    max-width: var(--max-width);
    margin: 5rem auto;
    padding: 0 2rem;
}
.section.narrow { max-width: 760px; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.section-head p {
    color: var(--muted-slate);
    font-size: 1.05rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* ---- Cards --------------------------------------------------------------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--deep-blue-steel);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--card-border);
    transition: border-color 0.2s, transform 0.2s;
}
a.feature-card { text-decoration: none; display: block; }
a.feature-card:hover { border-color: var(--burnt-copper); transform: translateY(-2px); }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.85rem; }
.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--soft-ivory);
}
.feature-card p { color: var(--muted-slate); font-size: 0.95rem; line-height: 1.55; }

/* ---- Steps --------------------------------------------------------------- */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.step { text-align: center; }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--burnt-copper);
    color: var(--midnight-navy);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.step h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted-slate); font-size: 0.92rem; line-height: 1.5; }

/* ---- FAQ ----------------------------------------------------------------- */

.faq-item {
    border-bottom: 1px solid var(--hairline);
    padding: 1.5rem 0;
}
.faq-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-item p { color: var(--muted-slate); line-height: 1.6; }

/* ---- CTA band ------------------------------------------------------------ */

.cta-band {
    background: var(--deep-blue-steel);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 5rem;
}
.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.cta-band p { color: var(--muted-slate); font-size: 1.05rem; margin-bottom: 2rem; }

/* ==========================================================================
   Phone-frame app mockup
   Recreates an iOS app screen in pure HTML/CSS — no screenshots needed.
   Structure:
   .phone > .phone-screen > [.app-statusbar .app-header .app-body]
   ========================================================================== */

.phone {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    background: #05080f;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 149, 107, 0.15);
    position: relative;
}
.phone::before { /* notch */
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 26px;
    background: #05080f;
    border-radius: 0 0 16px 16px;
    z-index: 3;
}
.phone-screen {
    background: var(--midnight-navy);
    border-radius: 33px;
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.app-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1.5rem 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--soft-ivory);
}
.app-statusbar .dots { letter-spacing: 1px; opacity: 0.8; }

.app-header {
    padding: 0.4rem 1.25rem 0.9rem;
}
.app-header .kicker {
    color: var(--burnt-copper);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.app-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0.2rem;
}

.app-body {
    flex: 1;
    overflow: hidden;
    padding: 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* Filter pills */
.app-pills { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.app-pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(245, 240, 232, 0.06);
    color: var(--muted-slate);
    border: 1px solid var(--hairline);
    white-space: nowrap;
}
.app-pill.active {
    background: var(--burnt-copper);
    color: var(--midnight-navy);
    border-color: var(--burnt-copper);
}

/* Venue / list rows inside the app */
.app-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: var(--deep-blue-steel);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 0.7rem 0.8rem;
}
.app-row .thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--burnt-copper), #7a5536);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.app-row .meta { flex: 1; min-width: 0; }
.app-row .meta .name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--soft-ivory);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.app-row .meta .sub {
    font-size: 0.68rem;
    color: var(--muted-slate);
    margin-top: 0.15rem;
}
.app-row .tag {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--burnt-copper);
    background: rgba(201, 149, 107, 0.12);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Numbered itinerary stop */
.app-stop {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.app-stop .num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--burnt-copper);
    color: var(--midnight-navy);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.app-stop .line {
    flex: 1;
    background: var(--deep-blue-steel);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
}
.app-stop .line .name { font-size: 0.8rem; font-weight: 700; }
.app-stop .line .sub { font-size: 0.66rem; color: var(--muted-slate); margin-top: 0.1rem; }
.app-walk {
    font-size: 0.64rem;
    color: var(--muted-slate);
    padding-left: 2.4rem;
}

/* Vote / avatar row for group night */
.app-avatars { display: flex; }
.app-avatars .av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--midnight-navy);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--midnight-navy);
}
.app-avatars .av:first-child { margin-left: 0; }

.app-progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(245, 240, 232, 0.08);
    overflow: hidden;
}
.app-progress > span {
    display: block;
    height: 100%;
    background: var(--burnt-copper);
    border-radius: 999px;
}

/* Big primary button inside the app screen */
.app-cta {
    margin-top: auto;
    background: var(--burnt-copper);
    color: var(--midnight-navy);
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem;
    border-radius: 14px;
}

/* Taste score ring */
.app-score {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--deep-blue-steel);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 0.8rem;
}
.app-score .ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    background: conic-gradient(var(--burnt-copper) 0% 84%, rgba(245,240,232,0.1) 84% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.app-score .ring span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--deep-blue-steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

/* ---- Footer -------------------------------------------------------------- */

footer {
    border-top: 1px solid var(--hairline);
    padding: 2.5rem 2rem;
    text-align: center;
}
.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.footer-links a {
    color: var(--muted-slate);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--soft-ivory); }
.footer-copy { color: rgba(138, 155, 181, 0.5); font-size: 0.8rem; }

/* ---- Responsive ---------------------------------------------------------- */

@media (max-width: 820px) {
    .feature-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .feature-hero .lede { margin-left: auto; margin-right: auto; }
    .feature-hero .cta-group { justify-content: center; }
    .phone-mock-col { order: -1; }
}

@media (max-width: 600px) {
    nav { padding: 1rem; }
    .nav-links { gap: 1rem; }
    .feature-hero { padding: 0 1.25rem; margin-top: 1rem; }
    .section { margin: 3.5rem auto; padding: 0 1.25rem; }
}

/* ==========================================================================
   PREMIUM HOMEPAGE COMPONENTS
   Cinematic hero · stat counters · venue carousels · social proof.
   Namespaced (cine-, stat-, rail/vcard, proof-) to avoid clashing with the
   base components above.
   ========================================================================== */

/* ---- Sticky, condensing nav --------------------------------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    background: rgba(15, 26, 46, 0.82);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom-color: var(--hairline);
}

/* ---- Cinematic hero ------------------------------------------------------ */
.cine-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -82px; /* pull under the transparent sticky nav */
    padding-top: 82px;
}
.cine-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to   { transform: scale(1.2) translate3d(-1.5%, -2%, 0); }
}
.cine-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 80% 0%, rgba(201,149,107,0.18), transparent 55%),
        linear-gradient(180deg, rgba(15,26,46,0.55) 0%, rgba(15,26,46,0.72) 45%, var(--midnight-navy) 100%);
}
.cine-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}
.cine-hero__content { max-width: 660px; }
.cine-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
}
.cine-hero h1 .accent { color: var(--burnt-copper); }
.cine-hero .lede {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: rgba(245, 240, 232, 0.82);
    line-height: 1.6;
    max-width: 38rem;
    margin-bottom: 2.25rem;
}
.cine-hero .sub {
    margin-top: 1.4rem;
    font-size: 0.9rem;
    color: var(--muted-slate);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6ee7a8;
    box-shadow: 0 0 0 0 rgba(110,231,168,0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(110,231,168,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(110,231,168,0); }
    100% { box-shadow: 0 0 0 0 rgba(110,231,168,0); }
}
.cine-hero .cta-primary { box-shadow: 0 12px 32px rgba(201,149,107,0.35); }

/* Staggered entrance */
.reveal-up { opacity: 0; transform: translateY(22px); animation: revealUp 0.8s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.reveal-up.d1 { animation-delay: 0.10s; }
.reveal-up.d2 { animation-delay: 0.22s; }
.reveal-up.d3 { animation-delay: 0.34s; }
.reveal-up.d4 { animation-delay: 0.46s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
    .cine-hero__media { animation: none; }
    .reveal-up { animation: none; opacity: 1; transform: none; }
}

/* ---- Stat counters ------------------------------------------------------- */
.stat-bar {
    max-width: var(--max-width);
    margin: -3.5rem auto 0;
    position: relative;
    z-index: 5;
    padding: 0 2rem;
}
.stat-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--card-border);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.stat {
    background: var(--deep-blue-steel);
    padding: 1.6rem 1rem;
    text-align: center;
}
.stat .num {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--burnt-copper);
    font-variant-numeric: tabular-nums;
}
.stat .label { color: var(--muted-slate); font-size: 0.82rem; margin-top: 0.3rem; }
@media (max-width: 700px) {
    .stat-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Section heading w/ "see all" --------------------------------------- */
.rail-head {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.rail-head .eyebrow { margin-bottom: 0.35rem; }
.rail-head h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 800; letter-spacing: -0.02em; }
.rail-head .rail-actions { display: flex; gap: 0.5rem; align-items: center; }
.rail-head .see-all { color: var(--burnt-copper); font-size: 0.9rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.rail-head .see-all:hover { text-decoration: underline; }
.rail-arrow {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--deep-blue-steel);
    color: var(--soft-ivory);
    cursor: pointer; font-size: 1rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}
.rail-arrow:hover { border-color: var(--burnt-copper); }
.rail-arrow:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 700px) { .rail-arrow { display: none; } }

/* ---- Venue carousel ------------------------------------------------------ */
.rail-wrap { max-width: var(--max-width); margin: 1.1rem auto 0; padding: 0 2rem; }
.rail {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1.5rem;
    scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.vcard {
    scroll-snap-align: start;
    flex: 0 0 290px;
    height: 360px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--deep-blue-steel);
    border: 1px solid var(--card-border);
    text-decoration: none;
    isolation: isolate;
    transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.3s;
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.vcard__photo {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    /* gradient fallback shows if the photo fails to load */
    background-color: var(--deep-blue-steel);
    background-image: linear-gradient(135deg, #2a3a55, #16243b);
    transform: scale(1.01);
    transition: transform 0.5s ease;
    z-index: -2;
}
.vcard:hover .vcard__photo { transform: scale(1.07); }
.vcard__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(15,26,46,0.05) 0%, rgba(15,26,46,0.35) 45%, rgba(15,26,46,0.92) 100%);
}
.vcard__top { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; align-items: flex-start; }
.vcard__badge {
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--midnight-navy); background: var(--burnt-copper);
    padding: 0.3rem 0.6rem; border-radius: 999px;
}
.vcard__price { color: var(--soft-ivory); font-weight: 700; font-size: 0.9rem; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.vcard__body { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; }
.vcard__name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; color: var(--soft-ivory); line-height: 1.2; }
.vcard__sub { color: rgba(245,240,232,0.7); font-size: 0.82rem; margin-top: 0.3rem; }
.vcard__chips { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.7rem; }
.vcard__chip {
    font-size: 0.66rem; font-weight: 600; padding: 0.22rem 0.5rem; border-radius: 6px;
    background: rgba(245,240,232,0.14); color: var(--soft-ivory);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* ---- Social proof / trust ------------------------------------------------ */
.trust-strip {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    margin: 5rem 0 0;
    padding: 1.5rem 2rem;
}
.trust-strip__inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.55rem; color: var(--muted-slate); font-size: 0.92rem; font-weight: 500; }
.trust-item .ic { color: var(--burnt-copper); font-size: 1rem; }

.proof {
    max-width: var(--max-width); margin: 5rem auto; padding: 0 2rem;
}
.proof__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.proof__card {
    background: var(--deep-blue-steel);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.75rem;
}
.proof__card .quote { font-size: 1.05rem; line-height: 1.6; color: var(--soft-ivory); }
.proof__card .by { margin-top: 1rem; color: var(--muted-slate); font-size: 0.85rem; }
.proof__stars { color: var(--burnt-copper); letter-spacing: 2px; margin-bottom: 0.75rem; }

@media (max-width: 600px) {
    .cine-hero { min-height: 84vh; }
    .stat-bar { margin-top: -2.5rem; }
    .vcard { flex-basis: 78vw; }
}

/* ---- Reusable photo hero band (feature pages) ---------------------------
   Wrap an existing hero (.feature-hero or .dir-header) in:
   <section class="hero-band">
     <div class="hero-bg" style="background-image:url(...)"></div>
     <div class="hero-scrim"></div>
     ...existing hero content...
   </section>
   ------------------------------------------------------------------------- */
.hero-band { position: relative; isolation: isolate; overflow: hidden; }
.hero-band > .hero-bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    animation: kenburns 26s ease-in-out infinite alternate;
}
.hero-band > .hero-scrim {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(120% 90% at 82% 0%, rgba(201,149,107,0.16), transparent 55%),
        linear-gradient(180deg, rgba(15,26,46,0.62) 0%, rgba(15,26,46,0.82) 55%, var(--midnight-navy) 100%);
}
/* Over a photo, lift the hero copy contrast a touch */
.hero-band .feature-hero .lede,
.hero-band .dir-header p { color: rgba(245, 240, 232, 0.82); }
@media (prefers-reduced-motion: reduce) {
    .hero-band > .hero-bg { animation: none; }
}
