/* cache-bust 1778533337 */
/**
 * LC Dashboard — Plugin-driven Front Page
 * All classes prefixed with lc-fp-* to avoid theme conflicts.
 * @since 2.4.7
 */

html { scroll-behavior: smooth; }

/* ── TOKENS ───────────────────────────────────────────────────────────────── */
:root {
    --lc-fp-black:   #000000;
    --lc-fp-dark:    #111111;
    --lc-fp-dark2:   #1a1a1a;
    --lc-fp-dark3:   #222222;
    --lc-fp-white:   #ffffff;
    --lc-fp-grey:    #f5f5f7;
    --lc-fp-grey2:   #e8e8ed;
    --lc-fp-border:  #d2d2d7;
    --lc-fp-text:    #1d1d1f;
    --lc-fp-muted:   #6e6e73;
    --lc-fp-light:   #86868b;
    --lc-fp-amber:   #ff9500;
    --lc-fp-amber2:  #ffb340;
    --lc-fp-blue:    #0071e3;
    --lc-fp-gold:    #d4a017;
    --lc-fp-green:   #34c759;
    --lc-fp-purple:  #6f42c1;
    --lc-fp-teal:    #17a2b8;
    --lc-fp-nav-h:   52px;
    --lc-fp-font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    /* ── THEME ACCENT (Microsoft blue default; orange via .lc-fp-theme-orange) ── */
    --lc-fp-accent:      #0078d4;
    --lc-fp-accent2:     #106ebe;
    --lc-fp-accent-dark: #005a9e;
    --lc-fp-accent-text: #ffffff;
}

/* ── ORANGE THEME OVERRIDE ────────────────────────────────────────────────── */
body.lc-fp-theme-orange {
    --lc-fp-accent:      #ff9500;
    --lc-fp-accent2:     #ffb340;
    --lc-fp-accent-dark: #e07b00;
    --lc-fp-accent-text: #000000;
}

/* ── RESET (scoped) ───────────────────────────────────────────────────────── */
.lc-fp-page {
    font-family: var(--lc-fp-font);
    color: var(--lc-fp-text);
    background: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.lc-fp-page *, .lc-fp-page *::before, .lc-fp-page *::after { box-sizing: border-box; }
.lc-fp-page a { text-decoration: none; color: inherit; }
.lc-fp-page img { display: block; max-width: 100%; }
.lc-fp-page ul { list-style: none; margin: 0; padding: 0; }
.lc-fp-page h1, .lc-fp-page h2, .lc-fp-page h3, .lc-fp-page h4 { margin: 0; }
.lc-fp-page p { margin: 0; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.lc-fp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
    height: var(--lc-fp-nav-h);
    background: rgba(0,0,0,0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center;
    padding: 0 24px;
    transition: background 0.3s, box-shadow 0.3s;
}
.lc-fp-nav.scrolled {
    background: rgba(0,0,0,0.96);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

/* ── v2.5.1.1: INSTA360-STYLE TRANSPARENT-AT-TOP (mirror of lc-nav.css) ──
 * lc-nav.css is intentionally NOT enqueued on front-page-template routes
 * (front-page.css already covers every other nav rule, so loading both
 * would double the cascade). That meant the v2.5.1 transparent rule
 * defined only in lc-nav.css never applied on the front page itself —
 * even though the cascade in is_transparent_at_top() makes the front
 * page transparent-at-top by default. Mirror the rule here so the front
 * page actually goes transparent at scroll position 0 and fades to the
 * solid bar after 20px scroll (matches the rest of the site visually). */
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) .lc-fp-nav-items a,
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) .lc-fp-nav-dd-trigger,
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) .lc-fp-nav-firstname,
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) .lc-fp-nav-signin,
body.lc-nav-trans-top .lc-fp-nav:not(.scrolled) .lc-fp-nav-badge {
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
/* ── v2.5.2.1: fill the hero behind the transparent nav ──────────────────
 * The default `.lc-fp-hero` has `margin-top: var(--lc-fp-nav-h)` (52px)
 * which is correct when the nav is solid (so the bar doesn't cover the
 * photo). But when transparent-at-top is active, that margin leaves a
 * 52px-tall empty body strip above the hero — and the theme's white
 * body background shows through the now-transparent nav, producing the
 * "white band on top of the hero" look reported in v2.5.2.1.
 *
 * Insta360-style is hero edge-to-top with the nav floating over it, so
 * drop the margin and recover the 52px in the height calc. The .scrolled
 * branch keeps the original margin so the design stays unchanged for
 * any future page using the FP template without transparent-at-top. */
body.lc-nav-trans-top .lc-fp-hero {
    margin-top: 0;
    height: calc(100vh - 180px);
}
body.lc-nav-trans-top.admin-bar .lc-fp-hero {
    height: calc(100vh - 32px - 180px);
}
/* WP Admin bar offsets */
body.admin-bar .lc-fp-nav { top: 32px; }
body.admin-bar .lc-fp-mobile-menu { top: calc(32px + var(--lc-fp-nav-h)); }
.lc-fp-nav-logo {
    display: flex; align-items: center; gap: 9px;
    flex-shrink: 0; margin-right: 24px;
    color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -0.3px;
}
.lc-fp-nav-monogram {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--lc-fp-accent) 0%, var(--lc-fp-accent-dark) 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: var(--lc-fp-accent-text); letter-spacing: -0.5px;
    flex-shrink: 0;
}
.lc-fp-nav-name { white-space: nowrap; }
.lc-fp-nav-items {
    display: flex; align-items: center; gap: 2px; flex: 1;
}
.lc-fp-nav-items a {
    display: block; padding: 6px 10px;
    font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 400;
    border-radius: 6px; transition: color 0.15s, background 0.15s;
    white-space: nowrap; text-decoration: none;
}
.lc-fp-nav-items a:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.lc-fp-nav-utils {
    display: flex; align-items: center; gap: 6px; flex-shrink: 0; margin-left: 12px;
}
.lc-fp-nav-icon {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: rgba(255,255,255,0.8) !important; font-size: 16px;
    transition: background 0.15s; cursor: pointer;
    background: none !important; border: none; padding: 0; appearance: none;
}
.lc-fp-nav-icon:hover { background: rgba(255,255,255,0.1); color: #fff !important; }
.lc-fp-nav-badge {
    position: relative; display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8) !important; font-size: 13px; cursor: pointer;
    padding: 5px 9px; border-radius: 20px; transition: background 0.15s;
}
.lc-fp-nav-badge:hover { background: rgba(255,255,255,0.08); color: #fff !important; }
.lc-fp-nav-badge-dot {
    background: var(--lc-fp-accent); color: var(--lc-fp-accent-text); font-size: 10px; font-weight: 700;
    min-width: 17px; height: 17px; border-radius: 9px; padding: 0 4px;
    display: flex; align-items: center; justify-content: center;
}
.lc-fp-nav-signin {
    font-size: 13px; color: rgba(255,255,255,0.8) !important;
    padding: 5px 9px; border-radius: 20px; transition: background 0.15s;
    white-space: nowrap; text-decoration: none;
}
.lc-fp-nav-signin:hover { background: rgba(255,255,255,0.08); color: #fff !important; text-decoration: none; }
.lc-fp-nav-cta {
    background: var(--lc-fp-accent); color: var(--lc-fp-accent-text);
    font-size: 13px; font-weight: 600;
    padding: 7px 15px; border-radius: 20px;
    white-space: nowrap; transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.lc-fp-nav-cta:hover { background: var(--lc-fp-accent2); transform: scale(1.03); color: var(--lc-fp-accent-text); }

/* ── CART ICON ────────────────────────────────────────────────────────── */
.lc-fp-nav-cart {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    color: rgba(255,255,255,0.8) !important; text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.lc-fp-nav-cart:hover { background: rgba(255,255,255,0.1); color: #fff !important; }
.lc-fp-cart-badge {
    position: absolute; top: -2px; right: -2px;
    background: var(--lc-fp-accent); color: var(--lc-fp-accent-text);
    font-size: 10px; font-weight: 700; line-height: 1;
    min-width: 16px; height: 16px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 3px; pointer-events: none;
}

/* Hamburger (mobile) */
/* Hamburger → X animation on front page (lc-nav.css is not loaded here). */
.lc-fp-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lc-fp-hamburger.active span:nth-child(2) { opacity: 0; }
.lc-fp-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.lc-fp-hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 32px; height: 32px; cursor: pointer; margin-left: auto;
}
.lc-fp-hamburger span {
    display: block; height: 2px; border-radius: 2px; background: #fff;
    transition: all 0.3s;
}
.lc-fp-mobile-menu {
    display: none;
    position: fixed; top: var(--lc-fp-nav-h); left: 0; right: 0;
    background: rgba(0,0,0,0.97); z-index: 8999;
    padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.1);
}
.lc-fp-mobile-menu.active { display: flex; flex-direction: column; }
/* Belt-and-suspenders: keep .open in case any external code uses it. */
.lc-fp-mobile-menu.open { display: flex; flex-direction: column; }
.lc-fp-mobile-menu a {
    display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.85); font-size: 15px;
}
.lc-fp-mobile-menu a:last-child { border-bottom: none; }
.lc-fp-mobile-cta {
    display: block; margin-top: 16px;
    background: var(--lc-fp-accent); color: var(--lc-fp-accent-text) !important; font-weight: 600; font-size: 15px;
    padding: 12px 20px; border-radius: 20px; text-align: center;
    border-bottom: none !important;
}

/* ── HERO CAROUSEL ────────────────────────────────────────────────────────── */
.lc-fp-hero {
    position: relative; width: 100%;
    height: calc(100vh - var(--lc-fp-nav-h) - 180px); min-height: 460px;
    overflow: hidden; margin-top: var(--lc-fp-nav-h);
}
body.admin-bar .lc-fp-hero {
    height: calc(100vh - var(--lc-fp-nav-h) - 32px - 180px);
}
.lc-fp-slides-wrap {
    display: flex; height: 100%;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lc-fp-slide {
    position: relative; flex: none; width: 100%; height: 100%;
    background: #000;
}
.lc-fp-slide-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transition: transform 8s ease, opacity 0.5s ease;
}
.lc-fp-slide.is-active .lc-fp-slide-bg { transform: scale(1.04); }
/* v2.5.2.28: when a video has loaded and is actually playing, fade the
 * still bg image to 0. Without this fade, the bg image renders BEHIND the
 * 0.85-opacity video and bleeds 15% through, causing visible double-exposure
 * (user-reported issue: "background image is overlapping with transparency
 * on top of the WebM video"). The image stays as a poster while the video
 * loads, then yields once `playing` fires. If the video fails to load (no
 * supported source, network error), the class is never added and the image
 * remains visible — which is the desired fallback behaviour. */
.lc-fp-slide.lc-fp-video-playing .lc-fp-slide-bg { opacity: 0; }
.lc-fp-slide-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.lc-fp-slide-content {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: flex-end; padding: 0 80px 140px;
}
.lc-fp-slide-text { max-width: 600px; color: #fff; }
.lc-fp-slide-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--lc-fp-accent); margin-bottom: 20px; display: block;
}
.lc-fp-slide-title {
    font-size: clamp(30px, 3.8vw, 52px); font-weight: 700; line-height: 1.08;
    letter-spacing: -1.2px; margin-bottom: 22px;
}
.lc-fp-slide-sub {
    font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.5;
    margin-bottom: 28px; max-width: 460px;
}
.lc-fp-slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.lc-fp-cta-primary {
    background: #fff; color: #000 !important; font-size: 15px; font-weight: 600;
    padding: 16px 28px; border-radius: 980px;
    transition: background 0.2s, transform 0.15s; display: inline-block;
}
.lc-fp-cta-primary:hover { background: rgba(255,255,255,0.88); transform: scale(1.02); color: #000 !important; }
.lc-fp-cta-secondary {
    background: rgba(255,255,255,0.15); color: #fff !important; font-size: 15px; font-weight: 500;
    padding: 16px 28px; border-radius: 980px;
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s; display: inline-block;
}
.lc-fp-cta-secondary:hover { background: rgba(255,255,255,0.22); color: #fff !important; }
.lc-fp-hero-arrows {
    position: absolute; top: 50%; transform: translateY(-50%);
    left: 0; right: 0; display: flex; justify-content: space-between;
    padding: 0 24px; pointer-events: none; z-index: 10;
}
.lc-fp-hero-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; cursor: pointer; pointer-events: all;
    transition: background 0.2s;
}
.lc-fp-hero-arrow:hover { background: rgba(255,255,255,0.28); }

/* ── STATS BAND ───────────────────────────────────────────────────────────── */
.lc-fp-stats {
    background: var(--lc-fp-dark); padding: 0;
    display: flex; justify-content: center; align-items: stretch; overflow: hidden;
}
.lc-fp-stats-inner {
    display: flex; align-items: stretch; justify-content: center;
    flex-wrap: wrap; gap: 0; width: 100%;
}
.lc-fp-stat-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 22px 36px; flex: 1; min-width: 130px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.lc-fp-stat-item:last-child { border-right: none; }
.lc-fp-stat-item:hover { background: rgba(255,255,255,0.04); }
.lc-fp-stat-num {
    font-size: 28px; font-weight: 700; color: #fff; line-height: 1;
    font-variant-numeric: tabular-nums; white-space: nowrap;
}
.lc-fp-stat-label {
    font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 5px;
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
    text-align: center;
}

/* ── SHARED SECTION ───────────────────────────────────────────────────────── */
.lc-fp-section { padding: 90px 0; }
.lc-fp-container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.lc-fp-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 18px; display: block;
}
.lc-fp-eyebrow--amber { color: var(--lc-fp-accent); }
.lc-fp-eyebrow--muted { color: var(--lc-fp-muted); }
.lc-fp-heading {
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.1;
    letter-spacing: -0.8px; margin-bottom: 22px;
}
.lc-fp-sub { font-size: 17px; color: var(--lc-fp-muted); line-height: 1.5; max-width: 560px; }
.lc-fp-section-hd {
    margin-bottom: 52px; display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 16px;
}
.lc-fp-view-all { font-size: 14px; color: var(--lc-fp-blue); font-weight: 500; white-space: nowrap; }
.lc-fp-view-all:hover { text-decoration: underline; }

/* ── WHAT'S NEW ───────────────────────────────────────────────────────────── */
.lc-fp-wn { background: #fff; padding: 72px 0; }
.lc-fp-wn-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 12px; }
.lc-fp-wn-card {
    border-radius: 18px; overflow: hidden; position: relative; cursor: pointer;
}
.lc-fp-wn-card:nth-child(2) { aspect-ratio: 16/9; }
.lc-fp-wn-card:nth-child(1),
.lc-fp-wn-card:nth-child(3) { aspect-ratio: 9/14; }
.lc-fp-wn-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lc-fp-wn-card:hover .lc-fp-wn-img { transform: scale(1.04); }
.lc-fp-wn-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.lc-fp-wn-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 24px; color: #fff; }
.lc-fp-wn-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--lc-fp-accent); margin-bottom: 8px; display: block;
}
.lc-fp-wn-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.lc-fp-wn-center .lc-fp-wn-card .lc-fp-wn-title { font-size: 22px; }
.lc-fp-wn-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.4; }

/* ── THE AWARD ────────────────────────────────────────────────────────────── */
.lc-fp-award { background: var(--lc-fp-dark); }
.lc-fp-award .lc-fp-heading { color: #fff; }
.lc-fp-award .lc-fp-sub { color: rgba(255,255,255,0.55); }
.lc-fp-award .lc-fp-view-all { color: var(--lc-fp-accent); }
.lc-fp-since-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 6px 14px; color: rgba(255,255,255,0.6);
    font-size: 12px; font-weight: 500; margin-bottom: 20px;
}
.lc-fp-since-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lc-fp-accent); flex-shrink: 0; }
.lc-fp-award-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.lc-fp-award-card {
    border-radius: 16px; overflow: hidden; position: relative;
    aspect-ratio: 3/4; cursor: pointer; background: var(--lc-fp-dark2);
}
.lc-fp-award-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lc-fp-award-card:hover .lc-fp-award-img { transform: scale(1.06); }
.lc-fp-award-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.lc-fp-award-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px 20px; color: #fff; }
.lc-fp-award-level {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--lc-fp-gold); color: #000; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px;
    margin-bottom: 8px;
}
.lc-fp-award-title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.lc-fp-award-author { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ── AWARD SHOWCASE ───────────────────────────────────────────────────────── */
.lc-fp-showcase { background: var(--lc-fp-grey); }
.lc-fp-showcase-strip {
    display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.lc-fp-showcase-strip::-webkit-scrollbar { display: none; }
.lc-fp-showcase-item {
    flex: none; width: 200px; border-radius: 14px; overflow: hidden;
    position: relative; aspect-ratio: 2/3; cursor: pointer; scroll-snap-align: start;
    background: var(--lc-fp-dark2);
}
.lc-fp-showcase-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lc-fp-showcase-item:hover .lc-fp-showcase-img { transform: scale(1.05); }
.lc-fp-showcase-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.lc-fp-showcase-badge {
    position: absolute; top: 10px; left: 10px;
    background: #fff; color: var(--lc-fp-text); font-size: 10px; font-weight: 700;
    letter-spacing: 0.5px; padding: 3px 9px; border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.lc-fp-showcase-sub { font-size: 13px; color: rgba(255,255,255,0.75); position: absolute; bottom: 10px; left: 12px; right: 12px; font-weight: 500; }
.lc-fp-top5 { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.lc-fp-top5-item {
    display: flex; align-items: center; gap: 9px;
    background: #fff; border-radius: 8px; padding: 7px 14px 7px 7px;
    border: 1px solid var(--lc-fp-border); font-size: 13px; font-weight: 500;
    transition: box-shadow 0.2s; cursor: pointer; text-decoration: none; color: inherit;
}
.lc-fp-top5-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.lc-fp-top5-avatar {
    width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
    background: var(--lc-fp-grey2);
}
.lc-fp-top5-name { font-size: 12px; font-weight: 600; }
.lc-fp-top5-rank { font-size: 10px; color: var(--lc-fp-muted); }

/* ── GEAR ─────────────────────────────────────────────────────────────────── */
.lc-fp-gear { background: var(--lc-fp-dark); }
.lc-fp-gear .lc-fp-heading { color: #fff; }
.lc-fp-gear .lc-fp-sub { color: rgba(255,255,255,0.55); }
.lc-fp-gear .lc-fp-view-all { color: var(--lc-fp-accent); }
/* v2.5.2.43: was a 4-col grid; now a horizontal scroll filmstrip
 * matching `.lc-fp-showcase-strip` so visitors can swipe through all
 * 8 random gear items, mirroring the POTM section above. */
.lc-fp-gear-grid {
    display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.lc-fp-gear-grid::-webkit-scrollbar { display: none; }
.lc-fp-gear-card {
    flex: none; width: 260px; scroll-snap-align: start;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; overflow: hidden; cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
}
.lc-fp-gear-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.5); }
.lc-fp-gear-img-wrap {
    position: relative; aspect-ratio: 4/3;
    background: var(--lc-fp-dark2); overflow: hidden;
}
.lc-fp-gear-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lc-fp-gear-card:hover .lc-fp-gear-img { transform: scale(1.05); }
.lc-fp-gear-type {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 3px 9px; border-radius: 20px;
}
.lc-fp-gear-type--camera { background: rgba(111,66,193,0.85); color: #fff; }
.lc-fp-gear-type--lens   { background: rgba(23,162,184,0.85); color: #fff; }
.lc-fp-gear-type--mobile { background: rgba(232,62,140,0.85); color: #fff; }
.lc-fp-score-ring {
    position: absolute; bottom: 10px; right: 10px;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.75); border: 2px solid;
}
.lc-fp-score-ring--high { border-color: var(--lc-fp-green); }
.lc-fp-score-ring--mid  { border-color: var(--lc-fp-amber); }
.lc-fp-score-ring--low  { border-color: #ff3b30; }
.lc-fp-score-num { font-size: 13px; font-weight: 700; color: #fff; line-height: 1; }
.lc-fp-score-lbl { font-size: 7px; color: rgba(255,255,255,0.55); text-transform: uppercase; }
.lc-fp-gear-body { padding: 14px 16px 18px; }
.lc-fp-gear-brand { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.lc-fp-gear-name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.lc-fp-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.lc-fp-bar-label { font-size: 11px; color: rgba(255,255,255,0.4); width: 76px; flex-shrink: 0; }
.lc-fp-bar-track { flex: 1; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.lc-fp-bar-fill { height: 100%; border-radius: 2px; background: var(--lc-fp-accent); }
.lc-fp-bar-val { font-size: 11px; color: rgba(255,255,255,0.55); width: 24px; text-align: right; }

/* ── GALLERIES ────────────────────────────────────────────────────────────── */
.lc-fp-galleries { background: #fff; padding: 90px 0; }
.lc-fp-galleries-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lc-fp-galleries-text .lc-fp-heading { margin-bottom: 20px; }
.lc-fp-galleries-num {
    font-size: 64px; font-weight: 800; letter-spacing: -2px;
    line-height: 1; margin-bottom: 8px;
    background: linear-gradient(135deg, var(--lc-fp-accent) 0%, var(--lc-fp-accent-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lc-fp-galleries-sub { font-size: 17px; color: var(--lc-fp-muted); line-height: 1.6; margin-bottom: 28px; }
.lc-fp-galleries-cta { margin-top: 10px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lc-fp-text); color: #fff !important; font-size: 14px; font-weight: 600;
    padding: 16px 28px; border-radius: 980px; transition: transform 0.15s, background 0.2s;
}
.lc-fp-galleries-cta:hover { background: #333; transform: scale(1.02); color: #fff !important; }
/* v2.5.2.37 — clean 2 × 3 landscape mosaic (5 art photos + 1 stats tile).
 * Previously col-1 row-1 spanned 2 rows for a tall portrait tile, which
 * looked off because most uploaded photographs are landscape. */
.lc-fp-gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
    gap: 12px;
}
.lc-fp-gallery-tile { border-radius: 12px; overflow: hidden; display: block; }
.lc-fp-gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.lc-fp-gallery-tile:hover img { transform: scale(1.06); }
.lc-fp-gallery-more {
    background: var(--lc-fp-dark);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}
.lc-fp-gallery-more:hover { background: #1a1a1a; }
.lc-fp-gallery-more-text { color: #fff; text-align: center; padding: 0 16px; }
.lc-fp-gallery-more-num {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    color: #fff;
}
.lc-fp-gallery-more-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* ── EXPEDITIONS ──────────────────────────────────────────────────────────── */
.lc-fp-expeditions { background: var(--lc-fp-dark); }
.lc-fp-expeditions .lc-fp-heading { color: #fff; }
.lc-fp-expeditions .lc-fp-sub { color: rgba(255,255,255,0.55); }
.lc-fp-expeditions .lc-fp-view-all { color: var(--lc-fp-accent); }
/* v2.5.2.46 EXPEDITIONS — horizontal swipe-strip matching POTM/Gear pattern.
 * Layout: each card has fixed total HEIGHT (image area + footer bar). The
 * first ("featured") card is horizontally WIDER but the same height as the
 * rest, so cards align flush along their top and bottom edges as you swipe.
 * Spots + Book Now moved out of the image overlay into a clean footer bar
 * below the image so the photo stays unobstructed by chrome. */
.lc-fp-exp-grid {
    display: flex; gap: 18px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--lc-fp-accent) 40%, transparent) transparent;
}
.lc-fp-exp-grid::-webkit-scrollbar { height: 8px; }
.lc-fp-exp-grid::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--lc-fp-accent) 40%, transparent); border-radius: 4px; }
.lc-fp-exp-grid::-webkit-scrollbar-track { background: transparent; }
.lc-fp-exp-card {
    flex: none; scroll-snap-align: start;
    width: 320px;
    display: flex; flex-direction: column;
    border-radius: 20px; overflow: hidden;
    background: var(--lc-fp-dark2);
    text-decoration: none; color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.lc-fp-exp-card--featured { width: 520px; }
.lc-fp-exp-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.5); color: inherit; }
/* v2.5.2.96: Use CSS Grid stacking instead of position:absolute for the
 * image/overlay/content stack. position:absolute + overflow:hidden on an
 * aspect-ratio sized container has a browser quirk where the content can
 * overflow past the image bottom on small cards. Grid stacking + align-self:end
 * is reliable across all card widths. */
.lc-fp-exp-media {
    display: grid;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--lc-fp-dark2);
}
/* Stack image, overlay, and content in the same grid cell */
.lc-fp-exp-img,
.lc-fp-exp-overlay,
.lc-fp-exp-content { grid-area: 1 / 1; }
.lc-fp-exp-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.6s ease; display: block; min-width: 0; min-height: 0; }
.lc-fp-exp-card:hover .lc-fp-exp-img { transform: scale(1.05); }
.lc-fp-exp-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 45%, transparent 75%);
    pointer-events: none;
}
/* Non-featured cards are narrower/shorter — stronger gradient so the content
 * block sits against a properly dark overlay, matching the featured card. */
.lc-fp-exp-card:not(.lc-fp-exp-card--featured) .lc-fp-exp-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.10) 80%);
}
.lc-fp-exp-content {
    align-self: end;
    position: relative; z-index: 1;
    padding: 18px 20px; color: #fff;
}
.lc-fp-exp-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: color-mix(in srgb, var(--lc-fp-accent) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--lc-fp-accent) 40%, transparent);
    color: var(--lc-fp-accent); font-size: 11px; font-weight: 600;
    padding: 4px 11px; border-radius: 20px; margin-bottom: 10px;
}
.lc-fp-exp-title { font-size: 17px; font-weight: 700; margin-bottom: 4px; line-height: 1.25; color: #fff; }
.lc-fp-exp-card--featured .lc-fp-exp-title { font-size: 22px; }
.lc-fp-exp-date { font-size: 12px; color: rgba(255,255,255,0.7); }
.lc-fp-exp-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(255,255,255,0.05);
    min-height: 60px; box-sizing: border-box;
}
.lc-fp-spots {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; padding: 5px 11px; border-radius: 20px; font-weight: 600;
    line-height: 1; white-space: nowrap;
}
.lc-fp-spots-spacer { display: inline-block; }
.lc-fp-spots--few { background: rgba(255,59,48,0.2); border: 1px solid rgba(255,59,48,0.4); color: #ff3b30; }
.lc-fp-spots--ok  { background: rgba(52,199,89,0.2); border: 1px solid rgba(52,199,89,0.4); color: var(--lc-fp-green); }
.lc-fp-book-btn {
    font-size: 13px; font-weight: 700; color: var(--lc-fp-accent-text);
    background: var(--lc-fp-accent); padding: 8px 18px; border-radius: 20px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block; white-space: nowrap; line-height: 1;
}
.lc-fp-exp-card:hover .lc-fp-book-btn { background: var(--lc-fp-accent2); transform: translateX(2px); }
.lc-fp-book-btn:hover { background: var(--lc-fp-accent2); color: var(--lc-fp-accent-text); }

/* ── UNIVERSITY ───────────────────────────────────────────────────────────── */
.lc-fp-university { background: var(--lc-fp-grey); }
.lc-fp-uni-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.lc-fp-uni-card {
    background: #fff; border-radius: 18px; padding: 28px 22px; cursor: pointer;
    border: 1px solid var(--lc-fp-border);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.lc-fp-uni-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); color: inherit; }
.lc-fp-uni-badge {
    display: inline-flex; align-items: center;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; margin-bottom: 18px; width: fit-content;
}
.lc-fp-uni-badge--diploma  { background: #e8f4ff; color: #0056b3; }
.lc-fp-uni-badge--bachelor { background: #e8ffe8; color: #1a7a1a; }
.lc-fp-uni-badge--master   { background: #fff3e0; color: #c25d00; }
.lc-fp-uni-badge--phd      { background: #f3e8ff; color: #6d28d9; }
.lc-fp-uni-icon { font-size: 32px; margin-bottom: 12px; }
.lc-fp-uni-degree { font-size: 16px; font-weight: 700; color: var(--lc-fp-text); line-height: 1.3; margin-bottom: 8px; }
.lc-fp-uni-spec { font-size: 13px; color: var(--lc-fp-muted); line-height: 1.4; margin-bottom: 20px; flex: 1; }
.lc-fp-uni-meta { display: flex; align-items: center; justify-content: space-between; }
.lc-fp-uni-modules { font-size: 12px; color: var(--lc-fp-muted); }
.lc-fp-uni-enroll { font-size: 13px; font-weight: 600; color: var(--lc-fp-blue); display: flex; align-items: center; gap: 4px; }
.lc-fp-uni-card:hover .lc-fp-uni-enroll { text-decoration: underline; }

/* ── PAGE-LEVEL FOOTER (within the template) ──────────────────────────────── */
.lc-fp-foot { background: var(--lc-fp-grey); border-top: 1px solid var(--lc-fp-border); padding: 64px 0 32px; }
.lc-fp-foot-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 48px; margin-bottom: 48px; }
.lc-fp-foot-col-title { font-size: 13px; font-weight: 700; color: var(--lc-fp-text); margin-bottom: 14px; }
.lc-fp-foot-links { display: flex; flex-direction: column; gap: 8px; }
.lc-fp-foot-links a { font-size: 13px; color: var(--lc-fp-muted); transition: color 0.15s; }
.lc-fp-foot-links a:hover { color: var(--lc-fp-text); }
.lc-fp-foot-bottom {
    border-top: 1px solid var(--lc-fp-border); padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.lc-fp-foot-copy { font-size: 12px; color: var(--lc-fp-light); }
.lc-fp-foot-legal { display: flex; gap: 20px; }
.lc-fp-foot-legal a { font-size: 12px; color: var(--lc-fp-light); }
.lc-fp-foot-legal a:hover { text-decoration: underline; }

/* ── EMPTY / FALLBACK STATES ──────────────────────────────────────────────── */
.lc-fp-placeholder { background: var(--lc-fp-dark2); }
.lc-fp-no-img { background: var(--lc-fp-dark3); }

/* ── HERO VIDEO ───────────────────────────────────────────────────────────── */
.lc-fp-slide-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; opacity: 1; pointer-events: none;
}
/* v2.5.2.28: video sits at z-index:1 (above bg image at 0, below overlay
 * gradient and text content). Was z-index:0 + opacity:0.85 — that put it in
 * the same stacking layer as the un-z-indexed bg image and dimmed the video
 * 15%, both of which contributed to the double-exposure bug. Darkening for
 * text legibility is now handled solely by .lc-fp-slide-overlay. */

/* ── NAV DISCOVER DROPDOWN ───────────────────────────────────────────────── */
.lc-fp-nav-has-dd { position: relative; }
.lc-fp-nav-dd-trigger {
    cursor: pointer; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
    padding: 8px 0; transition: color 0.2s; user-select: none; white-space: nowrap;
}
.lc-fp-nav-dd-trigger:hover { color: #fff; }
.lc-fp-nav-dd {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    background: rgba(20,20,20,0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
    min-width: 220px; padding: 8px; display: flex; flex-direction: column; gap: 2px;
    opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1000;
}
/* hover bridge — invisible 12px strip closes the gap between trigger and dropdown
   so the mouse can travel from one to the other without losing :hover state.
   Same pattern as the user dropdown fix in v2.4.26 / the global nav in lc-nav.css. */
.lc-fp-nav-dd::before {
    content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.lc-fp-nav-has-dd:hover .lc-fp-nav-dd {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.lc-fp-nav-dd a {
    display: block; padding: 9px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
    transition: background 0.15s, color 0.15s;
}
.lc-fp-nav-dd a:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ── NAV USER AVATAR + DROPDOWN ──────────────────────────────────────────── */
.lc-fp-nav-user {
    position: relative; display: flex; align-items: center; gap: 8px;
    cursor: pointer; padding: 4px 0;
}
.lc-fp-nav-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    object-fit: cover; border: 2px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.lc-fp-nav-firstname {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
    max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lc-fp-nav-user-caret { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.lc-fp-nav-user-dd {
    position: absolute; top: calc(100% + 12px); right: 0;
    background: rgba(20,20,20,0.95); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    min-width: 160px; padding: 6px; display: flex; flex-direction: column; gap: 2px;
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1000;
}
/* v2.4.26: Invisible bridge across the 12px gap between the avatar and the
 * dropdown. Without this, moving the cursor from the avatar toward "My
 * Dashboard" crosses dead space outside `.lc-fp-nav-user`, ending the
 * `:hover` state and closing the dropdown before the cursor can reach the
 * links — making the items effectively unclickable. The ::before extends
 * the dropdown's hit area upward by 12px so the hover path stays
 * continuous from the avatar all the way into the dropdown. */
.lc-fp-nav-user-dd::before {
    content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.lc-fp-nav-user:hover .lc-fp-nav-user-dd {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}
.lc-fp-nav-user-dd a {
    display: block; padding: 8px 12px; border-radius: 8px;
    font-size: 13px; color: rgba(255,255,255,0.75); transition: background 0.15s, color 0.15s;
}
.lc-fp-nav-user-dd a:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ── INSTA360-STYLE HERO INDICATORS ──────────────────────────────────────── */
.lc-fp-hero-inds {
    position: absolute; bottom: 36px; left: 80px;
    display: flex; gap: 10px; z-index: 10;
}
.lc-fp-hero-ind {
    position: relative; overflow: hidden;
    display: flex; align-items: center;
    height: 36px; border-radius: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer; padding: 0 5px; max-width: 40px;
    transition: max-width 0.45s cubic-bezier(0.25,0.46,0.45,0.94), background 0.3s, border-color 0.3s;
    white-space: nowrap;
}
.lc-fp-hero-ind:hover { max-width: 240px; background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }
.lc-fp-hero-ind.is-active { max-width: 240px; background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.lc-fp-hero-ind-num {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6);
    transition: background 0.3s, color 0.3s;
}
.lc-fp-hero-ind.is-active .lc-fp-hero-ind-num { background: #fff; color: #000; }
.lc-fp-hero-ind:hover:not(.is-active) .lc-fp-hero-ind-num { background: rgba(255,255,255,0.2); color: #fff; }
.lc-fp-hero-ind-text {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9);
    padding: 0 12px 0 6px; overflow: hidden;
    opacity: 0; max-width: 0;
    transition: opacity 0.25s 0.1s, max-width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.lc-fp-hero-ind:hover .lc-fp-hero-ind-text,
.lc-fp-hero-ind.is-active .lc-fp-hero-ind-text { opacity: 1; max-width: 200px; }
.lc-fp-hero-ind-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.15); }
.lc-fp-hero-ind-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; background: var(--lc-fp-accent); width: 0; }
/* v2.5.2.28: indicator progress-bar duration is now per-slide, driven by
 * the --lc-fp-ind-dur CSS custom property set by JS from each slide's
 * data-duration attribute. Falls back to 5.5s if the var is unset. */
.lc-fp-hero-ind.is-active .lc-fp-hero-ind-bar::after { animation: lc-fp-ind-prog var(--lc-fp-ind-dur, 5.5s) linear; }
@keyframes lc-fp-ind-prog { from { width: 0; } to { width: 100%; } }

/* ── WN FIXED-HEIGHT GRID + CENTER + MINI CARDS ──────────────────────────── */
.lc-fp-wn-grid { height: 460px; }
.lc-fp-wn-center { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.lc-fp-wn-center .lc-fp-wn-card { flex: 1; min-height: 0; aspect-ratio: unset; }
/* v2.5.2.29: right column = 2 stacked horizontal art-photography rectangles
 * (was a single 9:14 portrait). Each card flexes to half the column height
 * so they render as landscape rectangles matching the column width. */
.lc-fp-wn-art-stack { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.lc-fp-wn-art-stack .lc-fp-wn-art-card { flex: 1; min-height: 0; aspect-ratio: unset; }
.lc-fp-wn-mini-row { display: flex; gap: 10px; height: 112px; flex-shrink: 0; }
.lc-fp-wn-mini {
    flex: 1; border-radius: 14px; overflow: hidden; cursor: pointer;
    display: flex; background: var(--lc-fp-dark2);
    transition: transform 0.25s, box-shadow 0.25s; text-decoration: none;
}
.lc-fp-wn-mini:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.lc-fp-wn-mini-img { width: 80px; flex-shrink: 0; background-size: cover; background-position: center; background-color: #1a1a1a; }
/* v2.5.2.30: empty mini-img (e.g. University when no thumbnail uploaded)
 * gets the same amber-gradient as the old Galleries placeholder so it
 * doesn't render as a flat dark void next to its sibling cards. */
.lc-fp-wn-mini-img:empty { background-image: linear-gradient(135deg,#1a1a1a 0%,#2a2a2a 60%,color-mix(in srgb, var(--lc-fp-accent) 18%, transparent) 100%); }
.lc-fp-wn-mini-body {
    padding: 12px 14px; display: flex; flex-direction: column;
    justify-content: center; gap: 5px; overflow: hidden;
}
.lc-fp-wn-mini-tag { font-size: 9px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--lc-fp-accent); }
.lc-fp-wn-mini-title {
    font-size: 12px; font-weight: 700; color: #fff; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── UNIVERSITY V2 SCROLLING LIST ─────────────────────────────────────────── */
.lc-fp-uni2 {
    background: #111;
    /* v2.5.2.56: gradient re-centred to 40% 50% (left column) — was 60% 50%
     * which placed the amber glow directly behind the scroller column, making
     * the right column visibly lighter than the left and creating a two-tone
     * box effect around the list. Centre-left placement tints only the text
     * side and leaves the scroller on a uniform #111. */
    background-image: radial-gradient(ellipse 80% 60% at 40% 50%, color-mix(in srgb, var(--lc-fp-accent) 7%, transparent) 0%, transparent 70%);
    padding: 100px 0;
}
.lc-fp-uni2-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lc-fp-uni2-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--lc-fp-accent); margin-bottom: 24px;
}
.lc-fp-uni2-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lc-fp-accent); flex-shrink: 0; }
.lc-fp-uni2-heading {
    font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #fff;
    line-height: 1.08; letter-spacing: -1.2px; margin-bottom: 18px;
}
.lc-fp-uni2-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 36px; max-width: 440px; }
.lc-fp-uni2-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; margin-bottom: 44px; }
.lc-fp-uni2-cta-primary {
    background: #fff; color: #000 !important; font-size: 14px; font-weight: 600;
    padding: 16px 28px; border-radius: 980px; transition: background 0.2s, transform 0.15s;
}
.lc-fp-uni2-cta-primary:hover { background: rgba(255,255,255,0.88); color: #000 !important; transform: scale(1.02); }
.lc-fp-uni2-cta-secondary {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8) !important; font-size: 14px; font-weight: 500;
    padding: 16px 28px; border-radius: 980px; border: 1px solid rgba(255,255,255,0.2);
    transition: color 0.2s, background 0.2s;
}
.lc-fp-uni2-cta-secondary:hover { color: #fff !important; background: rgba(255,255,255,0.18); }
.lc-fp-uni2-stats { display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.lc-fp-uni2-stat { display: flex; flex-direction: column; }
.lc-fp-uni2-stat strong { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.lc-fp-uni2-stat span { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.lc-fp-uni2-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); margin: 0 28px; }
.lc-fp-uni2-list-mask {
    height: calc(7 * 64px); overflow: hidden; position: relative;
}
/* v2.5.2.56: fades removed — the solid-to-transparent overlays created
 * visible dark bands at the top and bottom of the scroller that clashed
 * with the section background. overflow:hidden on the mask container
 * already clips items cleanly; no gradient overlay is needed. */
.lc-fp-uni2-list-mask::before,
.lc-fp-uni2-list-mask::after { display: none; }
.lc-fp-uni2-list { display: flex; flex-direction: column; }
.lc-fp-uni2-item {
    height: 64px; display: flex; align-items: center; gap: 14px;
    padding: 0 20px 0 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
    opacity: 0.45; transition: opacity 0.4s, background 0.3s, border-left-color 0.3s;
    text-decoration: none; border-left: 3px solid transparent;
}
.lc-fp-uni2-item.is-active {
    background: rgba(255,255,255,0.09); opacity: 1;
    border-left-color: var(--lc-fp-accent);
}
.lc-fp-uni2-item-arrow { font-size: 11px; color: var(--lc-fp-accent); flex-shrink: 0; opacity: 0; transform: translateX(-6px); transition: opacity 0.35s, transform 0.35s; }
.lc-fp-uni2-item.is-active .lc-fp-uni2-item-arrow { opacity: 1; transform: translateX(0); }
.lc-fp-uni2-item-level {
    display: inline-flex !important; align-items: center; justify-content: center;
    font-size: 10px !important; font-weight: 700; letter-spacing: 1.2px;
    line-height: 1 !important;
    text-transform: uppercase; white-space: nowrap;
    padding: 5px 11px !important; border-radius: 20px !important;
    width: auto !important; min-width: max-content !important; max-width: none !important;
    height: auto !important; min-height: 0 !important; max-height: none !important;
    flex: 0 0 auto;
    margin: 0 !important; border: 0 !important; list-style: none !important;
    box-sizing: border-box; overflow: visible;
    opacity: 0.55; transition: opacity 0.35s;
}
.lc-fp-uni2-item.is-active .lc-fp-uni2-item-level { opacity: 1; }
.lc-fp-uni2-item-level.diploma   { background: rgba(0,113,227,0.15);  color: #4da3ff; }
.lc-fp-uni2-item-level.bachelor  { background: rgba(52,199,89,0.15);   color: #5fd47a; }
.lc-fp-uni2-item-level.master    { background: rgba(255,149,0,0.15);   color: var(--lc-fp-amber); }
.lc-fp-uni2-item-level.phd       { background: rgba(175,82,222,0.15);  color: #c084fc; }
/* v2.5.2.44: Course pill — teal, distinct from the 4 degree-tier colours.
 * Replaces the prior grey fallback (rgba(100,100,100,0.2)) that left
 * Course-tagged items looking inert next to the coloured tier pills. */
.lc-fp-uni2-item-level.lc-course { background: rgba(20,184,166,0.18);  color: #2dd4bf; }
.lc-fp-uni2-item-text { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.85); transition: color 0.3s, font-size 0.35s; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-transform: none; letter-spacing: 0; }
.lc-fp-uni2-item.is-active .lc-fp-uni2-item-text { color: #fff; font-weight: 700; font-size: 22px; }
/* v2.5.2.4: legend pills harmonised with in-list pills (.lc-fp-uni2-item-level)
 * — same font-size/padding/letter-spacing so the bottom legend reads as a
 * smaller echo of the row pills instead of a second mismatched component.
 * Was padding:6px 13px / letter-spacing:1px → now 5px 11px / 1.2px to match
 * .lc-fp-uni2-item-level exactly. */
.lc-fp-uni2-levels { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.lc-fp-uni2-lvl {
    display: inline-flex !important; align-items: center; justify-content: center;
    font-size: 10px !important; font-weight: 700; letter-spacing: 1.2px;
    line-height: 1 !important; text-transform: uppercase; white-space: nowrap;
    padding: 5px 11px !important; border-radius: 20px !important;
    width: auto !important; min-width: max-content !important; max-width: none !important;
    height: auto !important; min-height: 0 !important; max-height: none !important;
    margin: 0 !important; border: 0 !important; list-style: none !important;
    box-sizing: border-box;
}
.lc-fp-uni2-lvl.diploma   { background: rgba(0,113,227,0.15);  color: #4da3ff; }
.lc-fp-uni2-lvl.bachelor  { background: rgba(52,199,89,0.15);   color: #5fd47a; }
.lc-fp-uni2-lvl.master    { background: rgba(255,149,0,0.15);   color: var(--lc-fp-amber); }
.lc-fp-uni2-lvl.phd       { background: rgba(175,82,222,0.15);  color: #c084fc; }
/* v2.5.2.44 */
.lc-fp-uni2-lvl.lc-course { background: rgba(20,184,166,0.18);  color: #2dd4bf; }

/* v2.5.2.4: University section ("Shape Your Future") had ZERO responsive rules
 * before this release — at all viewports below 1024px the 2-column grid kept
 * its 80px gap and the right-column scrolling list (64px rows, 22px active
 * text) crushed everything. Tablet/mobile/small-mobile rules below are
 * additive (no base styles changed) so desktop layout is unchanged. */
@media (max-width: 1024px) {
    .lc-fp-uni2 { padding: 80px 0; }
    .lc-fp-uni2-inner { gap: 48px; }
    .lc-fp-uni2-stat-sep { margin: 0 20px; }
}
@media (max-width: 768px) {
    .lc-fp-uni2 { padding: 56px 0; }
    .lc-fp-uni2-inner { grid-template-columns: 1fr; gap: 36px; }
    .lc-fp-uni2-eyebrow { margin-bottom: 18px; font-size: 10px; letter-spacing: 2.4px; }
    .lc-fp-uni2-heading { font-size: clamp(28px, 8vw, 38px); letter-spacing: -0.8px; margin-bottom: 14px; }
    .lc-fp-uni2-sub { font-size: 14px; margin-bottom: 26px; max-width: none; }
    .lc-fp-uni2-ctas { gap: 10px; margin-bottom: 30px; }
    .lc-fp-uni2-cta-primary,
    .lc-fp-uni2-cta-secondary { font-size: 13px; padding: 12px 20px; }
    .lc-fp-uni2-stats { padding-top: 22px; flex-wrap: wrap; row-gap: 16px; }
    .lc-fp-uni2-stat-sep { height: 30px; margin: 0 16px; }
    .lc-fp-uni2-stat strong { font-size: 22px; }
    .lc-fp-uni2-stat span { font-size: 10px; letter-spacing: 0.8px; }
    .lc-fp-uni2-list-mask { height: calc(7 * 52px); }
    .lc-fp-uni2-item { height: 52px; padding: 0 14px 0 12px; gap: 10px; border-left-width: 2px; }
    .lc-fp-uni2-item-text { font-size: 14px; }
    .lc-fp-uni2-item.is-active .lc-fp-uni2-item-text { font-size: 16px; }
    .lc-fp-uni2-item-level {
        font-size: 9px !important; padding: 4px 9px !important; letter-spacing: 0.8px;
    }
    .lc-fp-uni2-levels { gap: 6px; margin-top: 14px; }
    .lc-fp-uni2-lvl { font-size: 9px !important; padding: 4px 9px !important; letter-spacing: 0.9px; }
}
@media (max-width: 480px) {
    .lc-fp-uni2 { padding: 48px 0; }
    .lc-fp-uni2-heading { font-size: clamp(26px, 9vw, 32px); }
    .lc-fp-uni2-stats { row-gap: 14px; }
    .lc-fp-uni2-stat-sep { display: none; }
    .lc-fp-uni2-stat { flex: 1 1 30%; min-width: 80px; }
    .lc-fp-uni2-stat strong { font-size: 20px; }
    .lc-fp-uni2-list-mask { height: calc(7 * 48px); }
    .lc-fp-uni2-item { height: 48px; gap: 8px; padding: 0 10px; }
    .lc-fp-uni2-item-text { font-size: 13px; }
    .lc-fp-uni2-item.is-active .lc-fp-uni2-item-text { font-size: 15px; }
}

/* ── SECTION BACKGROUND VIDEO ─────────────────────────────────────────────── */
.lc-fp-award, .lc-fp-gear, .lc-fp-expeditions { position: relative; overflow: hidden; }
.lc-fp-section-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none; z-index: 0; opacity: 0.18;
}
.lc-fp-award .lc-fp-container,
.lc-fp-gear  .lc-fp-container,
.lc-fp-expeditions .lc-fp-container { position: relative; z-index: 1; }

/* ── STATS FEATURE ────────────────────────────────────────────────────────── */
.lc-fp-stats-feature {
    background: var(--lc-fp-black);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 380px;
}
.lc-fp-sf-left {
    background: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=900&q=80') center/cover no-repeat;
    position: relative; min-height: 320px;
}
.lc-fp-sf-right {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 64px 72px;
}
.lc-fp-sf-num {
    font-size: 72px; font-weight: 800; color: #fff; line-height: 0.9;
    letter-spacing: -3px; margin-bottom: 4px;
}
.lc-fp-sf-label { font-size: 14px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px; }
.lc-fp-sf-body { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 420px; }

/* ── PRESTIGIOUS ACCESS ───────────────────────────────────────────────────── */
.lc-fp-access {
    background: var(--lc-fp-black);
    padding: 100px 0;
    position: relative; overflow: hidden;
}
.lc-fp-access::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 65% 50%, color-mix(in srgb, var(--lc-fp-accent) 7%, transparent) 0%, transparent 70%);
    pointer-events: none;
}
.lc-fp-access-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.lc-fp-access-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: color-mix(in srgb, var(--lc-fp-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--lc-fp-accent) 30%, transparent);
    border-radius: 20px; padding: 6px 14px;
    font-size: 12px; font-weight: 600; color: var(--lc-fp-accent);
    margin-bottom: 24px;
}
.lc-fp-access-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lc-fp-accent); flex-shrink: 0;
    animation: lc-fp-access-pulse 2s ease-in-out infinite;
}
@keyframes lc-fp-access-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.7); }
}
.lc-fp-access-heading {
    font-size: clamp(28px, 3.4vw, 46px); font-weight: 800; color: #fff;
    line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.lc-fp-access-sub {
    font-size: 17px; color: rgba(255,255,255,0.6);
    line-height: 1.65; margin-bottom: 36px; max-width: 500px;
}
.lc-fp-access-benefits { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.lc-fp-access-benefits li { display: flex; align-items: flex-start; gap: 16px; }
.lc-fp-access-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.lc-fp-access-benefits li div { display: flex; flex-direction: column; gap: 3px; }
.lc-fp-access-benefits li strong { font-size: 15px; font-weight: 700; color: #fff; }
.lc-fp-access-benefits li span { font-size: 13px; color: rgba(255,255,255,0.5); }
.lc-fp-access-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; margin-bottom: 20px; }
.lc-fp-access-cta-primary {
    background: var(--lc-fp-accent); color: var(--lc-fp-accent-text) !important;
    font-size: 15px; font-weight: 700; padding: 16px 28px; border-radius: 980px;
    transition: background 0.2s, transform 0.15s; display: inline-block;
}
.lc-fp-access-cta-primary:hover { background: var(--lc-fp-accent2); transform: scale(1.02); color: var(--lc-fp-accent-text) !important; }
.lc-fp-access-cta-secondary {
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8) !important;
    font-size: 15px; font-weight: 500; padding: 16px 28px; border-radius: 980px;
    border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; display: inline-block;
}
.lc-fp-access-cta-secondary:hover { background: rgba(255,255,255,0.14); color: #fff !important; }
.lc-fp-access-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.lc-fp-access-visual { position: relative; height: 500px; }
.lc-fp-access-card {
    position: absolute; border-radius: 20px; overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.6); background: var(--lc-fp-dark2);
    display: block; text-decoration: none; color: inherit;
}
.lc-fp-access-card--top { width: 300px; top: 0; right: 0; transform: rotate(3deg); }
.lc-fp-access-card--mid { width: 280px; bottom: 20px; left: 0; transform: rotate(-2.5deg); }
.lc-fp-access-card-img { height: 200px; background-size: cover; background-position: center; }
.lc-fp-access-card-body { padding: 14px 16px 18px; background: var(--lc-fp-dark2); }
.lc-fp-access-tag {
    display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--lc-fp-accent); margin-bottom: 6px;
}
.lc-fp-access-card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lc-fp-access-card-author { font-size: 12px; color: rgba(255,255,255,0.5); }
.lc-fp-access-chip {
    position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 12px 18px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lc-fp-access-chip--members { top: 287px; left: 252px; }
.lc-fp-access-chip--free    { top: 120px; left: 30px; }
.lc-fp-access-chip-num  { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.lc-fp-access-chip-free { font-size: 18px; font-weight: 900; color: var(--lc-fp-accent); line-height: 1; letter-spacing: -0.5px; }
.lc-fp-access-chip-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .lc-fp-container { padding: 0 28px; }
    .lc-fp-award-grid { grid-template-columns: repeat(2,1fr); }
    .lc-fp-gear-grid  { grid-template-columns: repeat(2,1fr); }
    .lc-fp-uni-grid   { grid-template-columns: repeat(2,1fr); }
    /* v2.5.2.46: swipe-strip mode → grid-template-columns is a no-op (display:flex). Trim card widths so two fit on tablet. */
    .lc-fp-exp-card { width: 280px; }
    .lc-fp-exp-card--featured { width: 380px; }
    .lc-fp-galleries-inner { grid-template-columns: 1fr; gap: 48px; }
    .lc-fp-wn-grid { grid-template-columns: 1fr 1fr; }
    /* v2.5.2.29: 3rd grid child is now `.lc-fp-wn-art-stack` (div), not a
     * card. Use a structural selector so both old and new layouts collapse. */
    .lc-fp-wn-grid > *:nth-child(3) { display: none; }
    .lc-fp-foot-cols { grid-template-columns: repeat(2,1fr); }
}
/* WP Admin bar is 46px tall on mobile (≤782px) */
@media (max-width: 782px) {
    body.admin-bar .lc-fp-nav { top: 46px; }
    body.admin-bar .lc-fp-mobile-menu { top: calc(46px + var(--lc-fp-nav-h)); }
    body.admin-bar .lc-fp-hero { height: calc(100vh - var(--lc-fp-nav-h) - 46px - 60px); margin-top: calc(var(--lc-fp-nav-h) + 46px); }
}
@media (max-width: 768px) {
    .lc-fp-nav-items  { display: none; }
    /* Hide only wide/verbose elements — sign-in/avatar and cart stay visible.
     * Search icon is hidden here because the mobile menu already has a search
     * input; showing it twice would be redundant on the front page. */
    .lc-fp-nav-utils > .lc-fp-nav-cta   { display: none; }
    .lc-fp-nav-utils > .lc-fp-nav-badge { display: none; }
    .lc-fp-nav-utils > .lc-fp-nav-icon  { display: none; }
    /* Avatar: show the image only — no name, caret, or dropdown */
    .lc-fp-nav-user .lc-fp-nav-firstname  { display: none; }
    .lc-fp-nav-user .lc-fp-nav-user-caret { display: none; }
    .lc-fp-nav-user .lc-fp-nav-user-dd    { display: none !important; }
    .lc-fp-nav-cart, .lc-fp-nav-avatar { width: 30px; height: 30px; }
    .lc-fp-nav-signin { padding: 5px 10px; font-size: 12px; }
    .lc-fp-hamburger  { display: flex; }
    .lc-fp-slide-content { padding: 0 28px 140px; }
    /* v2.5.2.17 — hide hero prev/next arrows on mobile; native swipe handles
       slide changes and the arrow tap-targets sat on top of the CTA buttons. */
    .lc-fp-hero-arrows { display: none; }
    /* v2.5.2.31 — per-slide MOBILE focal-point. The slide root carries
     * `--lc-fp-mob-pos` (e.g. "70% 30%") set inline by PHP from the admin
     * setting. Apply it to BOTH the still bg image (background-position)
     * and the video (object-position) so admins set it once and both
     * layers crop to the same anchor. Default is "center center" — i.e.
     * the previous behaviour — when the var is unset. */
    .lc-fp-slide-bg    { background-position: var(--lc-fp-mob-pos, center center) !important; }
    .lc-fp-slide-video { object-position:    var(--lc-fp-mob-pos, center center); }
    .lc-fp-section { padding: 60px 0; }
    .lc-fp-wn-grid { grid-template-columns: 1fr; height: auto; }
    /* v2.5.2.56 — Mobile redesign of "See What We've Been Up To":
     * Award card (child 1) stays hidden — too portrait for mobile.
     * Art Photography stack (child 3) is now SHOWN and reordered above
     * Expedition via order:-1 so it leads the section. Previously it was
     * entirely invisible on mobile (hidden by v2.5.2.29 along with Award).
     * Layout: Art Photography (2 × 3:2 cards) → Expedition (16:10) → Minis */
    .lc-fp-wn-grid > *:nth-child(1) { display: none; }
    /* v2.5.2.56: must match the ≤1024px selector exactly (.lc-fp-wn-grid > *:nth-child(3),
     * specificity 0,2,0) to win the cascade — a bare class (0,1,0) loses even though
     * it appears later in the file. Coming after with equal specificity, this wins. */
    .lc-fp-wn-grid > *:nth-child(3) { display: flex; }
    .lc-fp-wn-art-stack {
        order: -1;
        flex-direction: column; gap: 10px;
    }
    .lc-fp-wn-art-stack .lc-fp-wn-art-card {
        flex: none; aspect-ratio: 3/2;
    }
    .lc-fp-wn-art-stack .lc-fp-wn-title { font-size: 18px; }
    .lc-fp-wn-center .lc-fp-wn-card { flex: none; aspect-ratio: 16/10; }
    .lc-fp-wn-mini-row { flex-direction: column; height: auto; gap: 8px; }
    /* v2.5.2.30: on mobile the minis are full-width rows, so an 80px image
     * strip looks like a tiny thumbnail next to a vast text block. Widen
     * the image to 35% of the row (still leaves comfortable room for the
     * 2-line clamped title) and grow the row a touch so the image area is
     * tall enough to read. */
    .lc-fp-wn-mini { height: 88px; }
    .lc-fp-wn-mini-img { width: 35%; max-width: 140px; }
    .lc-fp-award-grid { grid-template-columns: repeat(2,1fr); }
    .lc-fp-gear-grid  { grid-template-columns: 1fr 1fr; }
    .lc-fp-uni-grid   { grid-template-columns: 1fr 1fr; }
    /* v2.5.2.46: phone — keep swipe-strip; cards narrower so 1.5 fit on screen, hinting at swipe. */
    .lc-fp-exp-card { width: 260px; }
    .lc-fp-exp-card--featured { width: 300px; }
    .lc-fp-exp-card--featured .lc-fp-exp-title { font-size: 18px; }
    .lc-fp-exp-title { font-size: 15px; }
    .lc-fp-galleries-num { font-size: 48px; }
    .lc-fp-foot-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .lc-fp-stat-item { padding: 16px 20px; }
    .lc-fp-stat-num { font-size: 22px; }
}
@media (max-width: 480px) {
    .lc-fp-award-grid { grid-template-columns: 1fr; }
    .lc-fp-gear-grid  { grid-template-columns: 1fr; }
    .lc-fp-uni-grid   { grid-template-columns: 1fr; }
    .lc-fp-foot-cols  { grid-template-columns: 1fr; }
}

/* ── FOOTER RESTORATION ──────────────────────────────────────────────────────
 * Our scoped resets (.lc-fp-page ul / h1-h4 / p / a / img { margin:0; ... })
 * cascade into the Avia/Insha theme footer because the theme footer is a
 * descendant of <body class="lc-fp-page">. That strips bullet padding,
 * heading margins, paragraph spacing, link colours and image display from
 * footer widgets — items collapse onto each other and headings/links lose
 * their proper rhythm. Revert those resets inside #footer and #socket so
 * the theme's own footer CSS can take over (matches every other page on
 * the site). Uses CSS `revert` (Chrome 84+, Safari 9.1+, Firefox 67+).
 *
 * NOTE: box-sizing is intentionally set to `border-box` (not `revert`).
 * `revert` would strip ALL author stylesheets including Enfold's own global
 * `* { box-sizing: border-box }`, falling back to the UA default of
 * `content-box`. Enfold's padded `.container` elements are built assuming
 * border-box; with content-box forced back their total width becomes
 * `100% + padding`, overflowing the viewport and getting clipped by the
 * body's `overflow-x: hidden` — which is why the footer top widget text
 * appears cut off on the right on the front page. Keeping border-box here
 * matches what Enfold already sets globally and prevents that overflow. */
.lc-fp-page #footer, .lc-fp-page #socket,
.lc-fp-page #footer *, .lc-fp-page #socket * {
    box-sizing: border-box;
}
.lc-fp-page #footer ul, .lc-fp-page #socket ul,
.lc-fp-page #footer ol, .lc-fp-page #socket ol {
    list-style: revert; margin: revert; padding: revert;
}
.lc-fp-page #footer li, .lc-fp-page #socket li {
    margin: revert; padding: revert; list-style: revert;
}
.lc-fp-page #footer h1, .lc-fp-page #footer h2, .lc-fp-page #footer h3,
.lc-fp-page #footer h4, .lc-fp-page #footer h5, .lc-fp-page #footer h6,
.lc-fp-page #socket h1, .lc-fp-page #socket h2, .lc-fp-page #socket h3,
.lc-fp-page #socket h4, .lc-fp-page #socket h5, .lc-fp-page #socket h6 {
    margin: revert; padding: revert; font-weight: revert;
}
.lc-fp-page #footer p, .lc-fp-page #socket p {
    margin: revert; padding: revert;
}
/* Intentionally do NOT revert `a { color, text-decoration }` here. CSS
 * `revert` would expose the browser's default `:link` blue + `:visited`
 * purple + underline because the theme footer doesn't define its own
 * link colour rules — it relies on inherited body text colour. Keep our
 * `.lc-fp-page a { color: inherit; text-decoration: none }` reset
 * applying to footer links (matches every other page on the site). */
.lc-fp-page #footer img, .lc-fp-page #socket img {
    display: revert; max-width: revert;
}

/* ── SEARCH WIDGET — v2.5.2.60 ──────────────────────────────────────────
 * Behaviour spec (matches design mockup):
 *   1. Initial    : just a magnifying-glass button on the right of the nav
 *   2. Expanded   : input bar slides LEFT from the icon, ~480 px wide, overlays
 *                   the nav links (z-index above them); contains placeholder
 *                   text, an X clear-button, and the magnifier (now a submit)
 *   3. Live results: dark glass / light glass dropdown opens directly below the
 *                   expanded bar, right-aligned with the magnifier
 *   4. Themes     : default = DARK glass (front page + scrolled white nav with
 *                   any dark backdrop); body.lc-nav-light → LIGHT glass for the
 *                   inner pages where the top menu is white
 * ───────────────────────────────────────────────────────────────────────── */

/* Wrapper — anchors the absolutely-positioned bar + dropdown.
 * row-reverse so the search button stays on the right and the bar grows left. */
.lc-fp-nav-search {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    z-index: 200;                    /* over nav links so the bar can overlay */
}

.lc-fp-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Expanding bar — absolute, anchored to the RIGHT of the icon so it grows LEFT.
 * width animates from 0 → 480px. Padding inside holds input + X. */
.lc-fp-search-bar {
    position: absolute;
    right: calc(100% + 6px);         /* just to the left of the icon */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(20, 20, 20, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0 4px 0 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: max-width 0.42s cubic-bezier(0.32, 0.72, 0.18, 1),
                width     0.42s cubic-bezier(0.32, 0.72, 0.18, 1),
                opacity   0.24s ease,
                padding   0.32s ease;
}
.lc-fp-nav-search.active .lc-fp-search-bar {
    width: 480px;
    max-width: 60vw;
    opacity: 1;
    pointer-events: auto;
}

/* Scope under #top to beat Enfold's "#top input[type=text]" (specificity 1,0,1).
 * front-page.css is loaded on the homepage instead of lc-nav.css, so it needs
 * the same !important guards that lc-nav-search.css carries. */
#top .lc-fp-search-input,
.lc-fp-search-input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 14px !important;
    font-family: var(--lc-nav-font, inherit) !important;
    line-height: 1.4 !important;
    padding: 9px 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    width: auto !important;
    max-width: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
#top .lc-fp-search-input::placeholder,
.lc-fp-search-input::placeholder { color: rgba(255, 255, 255, 0.45); }

/* X clear button — hidden until input has content */
.lc-fp-search-clear {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.15s;
}
.lc-fp-search-clear:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.lc-fp-nav-search.has-text .lc-fp-search-clear { display: inline-flex; }

/* Results dropdown — anchored to right (under magnifier), matches bar width */
.lc-fp-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 480px;
    max-width: 60vw;
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 6px;
    flex-direction: column;
    gap: 1px;
    z-index: 10000;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
    animation: lc-srp-in 0.16s ease;
}
.lc-fp-search-results.visible { display: flex; }
@keyframes lc-srp-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lc-fp-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.12s;
}
.lc-fp-search-result:hover { background: rgba(255, 255, 255, 0.07); text-decoration: none; }

.lc-fp-search-result-thumb,
.lc-fp-search-no-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    display: block;
    object-fit: cover;
}
.lc-fp-search-no-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
}

.lc-fp-search-result-body { display: flex; flex-direction: column; min-width: 0; }
.lc-fp-search-result-title {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lc-fp-search-result-type {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
    letter-spacing: 0.4px;
}

.lc-fp-search-status {
    padding: 16px 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* Footer "View all results for X" */
.lc-fp-search-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 4px;
    padding-top: 4px;
}
.lc-fp-search-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.lc-fp-search-footer a:hover {
    background: color-mix(in srgb, var(--lc-fp-accent) 10%, transparent);
    color: var(--lc-fp-accent) !important;
}

/* ── LIGHT THEME (inner pages, body.lc-nav-light) ─────────────────────── */
body.lc-nav-light .lc-fp-search-bar {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
body.lc-nav-light .lc-fp-search-input { color: #111; }
body.lc-nav-light .lc-fp-search-input::placeholder { color: rgba(0, 0, 0, 0.4); }
body.lc-nav-light .lc-fp-search-clear {
    background: rgba(0, 0, 0, 0.06); color: rgba(0, 0, 0, 0.55);
}
body.lc-nav-light .lc-fp-search-clear:hover { background: rgba(0, 0, 0, 0.12); color: #111; }
body.lc-nav-light .lc-fp-search-results {
    background: rgba(255, 255, 255, 0.99);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}
body.lc-nav-light .lc-fp-search-result:hover { background: rgba(0, 0, 0, 0.04); }
body.lc-nav-light .lc-fp-search-result-thumb,
body.lc-nav-light .lc-fp-search-no-thumb { background: rgba(0, 0, 0, 0.06); }
body.lc-nav-light .lc-fp-search-no-thumb { color: rgba(0, 0, 0, 0.3); }
body.lc-nav-light .lc-fp-search-result-title { color: rgba(0, 0, 0, 0.88); }
body.lc-nav-light .lc-fp-search-result-type  { color: rgba(0, 0, 0, 0.45); }
body.lc-nav-light .lc-fp-search-status { color: rgba(0, 0, 0, 0.5); }
body.lc-nav-light .lc-fp-search-footer { border-top-color: rgba(0, 0, 0, 0.08); }
body.lc-nav-light .lc-fp-search-footer a { color: rgba(0, 0, 0, 0.6) !important; }
body.lc-nav-light .lc-fp-search-footer a:hover {
    background: color-mix(in srgb, var(--lc-fp-accent) 8%, transparent); color: var(--lc-fp-accent) !important;
}

/* ── RESPONSIVE — narrow the bar on small screens, hide on mobile menu ── */
@media (max-width: 900px) {
    .lc-fp-nav-search.active .lc-fp-search-bar { width: 320px; max-width: 70vw; }
    .lc-fp-search-results { width: 320px; max-width: 70vw; }
}
@media (max-width: 768px) {
    /* Desktop search hides on mobile — mobile menu has its own search input. */
    .lc-fp-nav-utils .lc-fp-nav-search { display: none; }
}

/* ── MOBILE SEARCH (inside hamburger menu) ─────────────────────────────── */
.lc-fp-mobile-search {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 4px;
}
.lc-fp-mobile-search-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.lc-fp-mobile-search-input::placeholder { color: rgba(255, 255, 255, 0.32); }
.lc-fp-mobile-search-input:focus {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
}
body.lc-nav-light .lc-fp-mobile-search { border-bottom-color: rgba(0, 0, 0, 0.07); }
body.lc-nav-light .lc-fp-mobile-search-input {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}
body.lc-nav-light .lc-fp-mobile-search-input::placeholder { color: rgba(0, 0, 0, 0.32); }
body.lc-nav-light .lc-fp-mobile-search-input:focus {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}
