/**
 * 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;
}

/* ── 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);
}
.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-amber) 0%, #e07b00 100%);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: #000; 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;
}
.lc-fp-nav-items a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.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); font-size: 16px;
    transition: background 0.15s; cursor: pointer;
}
.lc-fp-nav-icon:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lc-fp-nav-badge {
    position: relative; display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.8); 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; }
.lc-fp-nav-badge-dot {
    background: var(--lc-fp-amber); color: #000; 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);
    padding: 5px 9px; border-radius: 20px; transition: background 0.15s;
    white-space: nowrap;
}
.lc-fp-nav-signin:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lc-fp-nav-cta {
    background: var(--lc-fp-amber); color: #000;
    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-amber2); transform: scale(1.03); color: #000; }

/* Hamburger (mobile) */
.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.open { display: block; }
.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-amber); color: #000 !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: 100vh; min-height: 600px;
    overflow: hidden; margin-top: var(--lc-fp-nav-h);
}
.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;
    background-size: cover; background-position: center;
    transition: transform 8s ease;
}
.lc-fp-slide.is-active .lc-fp-slide-bg { transform: scale(1.04); }
.lc-fp-slide-overlay {
    position: absolute; inset: 0;
    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;
    display: flex; align-items: flex-end; padding: 0 80px 100px;
}
.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-amber); margin-bottom: 14px; display: block;
}
.lc-fp-slide-title {
    font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; line-height: 1.05;
    letter-spacing: -1.5px; margin-bottom: 16px;
}
.lc-fp-slide-sub {
    font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.5;
    margin-bottom: 32px; max-width: 460px;
}
.lc-fp-slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.lc-fp-cta-primary {
    background: #fff; color: #000; font-size: 15px; font-weight: 600;
    padding: 13px 24px; 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; }
.lc-fp-cta-secondary {
    background: rgba(255,255,255,0.15); color: #fff; font-size: 15px; font-weight: 500;
    padding: 13px 24px; 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; }
.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;
}

/* ── 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: 12px; display: block;
}
.lc-fp-eyebrow--amber { color: var(--lc-fp-amber); }
.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: 12px;
}
.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-amber); 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-card:nth-child(2) .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-amber); }
.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-amber); 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: 40px; 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;
}
.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-amber); }
.lc-fp-gear-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.lc-fp-gear-card {
    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-amber); }
.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-amber) 0%, #e07b00 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 {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lc-fp-text); color: #fff; font-size: 14px; font-weight: 600;
    padding: 12px 22px; border-radius: 980px; transition: transform 0.15s, background 0.2s;
}
.lc-fp-galleries-cta:hover { background: #333; transform: scale(1.02); color: #fff; }
.lc-fp-gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 140px); gap: 10px; }
.lc-fp-gallery-tile { border-radius: 12px; overflow: hidden; }
.lc-fp-gallery-tile:first-child { grid-row: span 2; }
.lc-fp-gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.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;
}
.lc-fp-gallery-more-text { color: #fff; font-size: 13px; font-weight: 600; text-align: center; }

/* ── 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-amber); }
.lc-fp-exp-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; }
.lc-fp-exp-card {
    border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; background: var(--lc-fp-dark2);
}
.lc-fp-exp-card:first-child { aspect-ratio: 4/5; }
.lc-fp-exp-card:not(:first-child) { aspect-ratio: 3/4; }
.lc-fp-exp-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lc-fp-exp-card:hover .lc-fp-exp-img { transform: scale(1.05); }
.lc-fp-exp-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.lc-fp-exp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px 26px; color: #fff; }
.lc-fp-exp-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,149,0,0.2); border: 1px solid rgba(255,149,0,0.4);
    color: var(--lc-fp-amber); font-size: 11px; font-weight: 600;
    padding: 4px 11px; border-radius: 20px; margin-bottom: 10px;
}
.lc-fp-exp-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; line-height: 1.2; }
.lc-fp-exp-card:not(:first-child) .lc-fp-exp-title { font-size: 17px; }
.lc-fp-exp-date { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.lc-fp-exp-meta { display: flex; align-items: center; justify-content: space-between; }
.lc-fp-spots {
    font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 600;
}
.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: 600; color: #000;
    background: var(--lc-fp-amber); padding: 8px 18px; border-radius: 20px;
    transition: background 0.2s; display: inline-block;
}
.lc-fp-book-btn:hover { background: var(--lc-fp-amber2); color: #000; }

/* ── 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: 0; opacity: 0.85; pointer-events: none;
}

/* ── 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;
}
.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;
}
.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-amber); width: 0; }
.lc-fp-hero-ind.is-active .lc-fp-hero-ind-bar::after { animation: lc-fp-ind-prog 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; }
.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; }
.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-amber); }
.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;
    background-image: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(255,149,0,0.07) 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-amber); margin-bottom: 24px;
}
.lc-fp-uni2-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lc-fp-amber); 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-bottom: 44px; }
.lc-fp-uni2-cta-primary {
    background: #fff; color: #000; font-size: 14px; font-weight: 600;
    padding: 12px 22px; 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; transform: scale(1.02); }
.lc-fp-uni2-cta-secondary {
    background: transparent; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
    padding: 12px 0; transition: color 0.2s;
}
.lc-fp-uni2-cta-secondary:hover { color: #fff; }
.lc-fp-uni2-stats { display: flex; align-items: center; }
.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;
}
.lc-fp-uni2-list-mask::before, .lc-fp-uni2-list-mask::after {
    content: ''; position: absolute; left: 0; right: 0; z-index: 2; height: 96px; pointer-events: none;
}
.lc-fp-uni2-list-mask::before { top: 0; background: linear-gradient(to bottom, #111 0%, transparent 100%); }
.lc-fp-uni2-list-mask::after  { bottom: 0; background: linear-gradient(to top, #111 0%, transparent 100%); }
.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 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.lc-fp-uni2-item.is-active { background: rgba(255,255,255,0.04); }
.lc-fp-uni2-item-arrow { font-size: 11px; color: transparent; flex-shrink: 0; transition: color 0.3s; }
.lc-fp-uni2-item.is-active .lc-fp-uni2-item-arrow { color: var(--lc-fp-amber); }
.lc-fp-uni2-item-level {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; padding: 3px 9px; border-radius: 20px; flex-shrink: 0;
}
.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; }
.lc-fp-uni2-item-level.course    { background: rgba(100,100,100,0.2);  color: rgba(255,255,255,0.6); }
.lc-fp-uni2-item-text { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.lc-fp-uni2-item.is-active .lc-fp-uni2-item-text { color: #fff; font-weight: 600; }
.lc-fp-uni2-levels { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.lc-fp-uni2-lvl { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; }
.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; }

/* ── 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%, rgba(255,149,0,0.07) 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: rgba(255,149,0,0.12); border: 1px solid rgba(255,149,0,0.3);
    border-radius: 20px; padding: 6px 14px;
    font-size: 12px; font-weight: 600; color: var(--lc-fp-amber);
    margin-bottom: 24px;
}
.lc-fp-access-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lc-fp-amber); 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-bottom: 20px; }
.lc-fp-access-cta-primary {
    background: var(--lc-fp-amber); color: #000;
    font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 980px;
    transition: background 0.2s, transform 0.15s; display: inline-block;
}
.lc-fp-access-cta-primary:hover { background: var(--lc-fp-amber2); transform: scale(1.02); color: #000; }
.lc-fp-access-cta-secondary {
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
    font-size: 15px; font-weight: 500; padding: 14px 24px; 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; }
.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);
}
.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-amber); 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: 220px; left: 120px; }
.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-amber); 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); }
    .lc-fp-exp-grid   { grid-template-columns: 1fr 1fr; }
    .lc-fp-exp-card:first-child { grid-column: span 2; aspect-ratio: 16/9; }
    .lc-fp-galleries-inner { grid-template-columns: 1fr; gap: 48px; }
    .lc-fp-wn-grid { grid-template-columns: 1fr 1fr; }
    .lc-fp-wn-card:nth-child(3) { display: none; }
    .lc-fp-foot-cols { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .lc-fp-nav-items  { display: none; }
    .lc-fp-nav-utils  { display: none; }
    .lc-fp-hamburger  { display: flex; }
    .lc-fp-slide-content { padding: 0 28px 80px; }
    .lc-fp-hero-arrows { padding: 0 8px; }
    .lc-fp-section { padding: 60px 0; }
    .lc-fp-wn-grid { grid-template-columns: 1fr; }
    .lc-fp-wn-card:nth-child(1), .lc-fp-wn-card:nth-child(3) { display: none; }
    .lc-fp-wn-card:nth-child(2) { aspect-ratio: 16/10; }
    .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; }
    .lc-fp-exp-grid   { grid-template-columns: 1fr; }
    .lc-fp-exp-card:first-child { grid-column: auto; aspect-ratio: 4/3; }
    .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; }
}
