/* ============================================
   FONT FACES
============================================ */
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_28pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter_24pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/assets/fonts/Cinzel-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('/assets/fonts/Cinzel-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --color-primary: #662222;
    --color-secondary: #842A3B;
    --color-accent: #A3485A;
    --color-highlight: #F5DAA7;
    --color-overlay-dark: rgba(102, 34, 34, 0.85);
    --color-overlay-light: rgba(245, 218, 167, 0.90);
    --color-dark: #1a1a1a;
    --color-light: #ffffff;
    --color-gray: #6b6b6b;

    --color-bg-top: #0B1020;
    --color-bg-bottom: #020812;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-dark);
    background: var(--color-bg-bottom);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}
html {
    scroll-behavior: smooth;
}
/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3 {
    font-family: 'Cinzel', 'Times New Roman', serif;
}
h1, .ls-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    color: var(--color-light);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

h2, .ls-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: var(--weight-semibold);
    color: var(--color-light);
    line-height: 1.3;
    margin-bottom: 0.875rem;
    letter-spacing: 0.01em;
}

h3, .ls-h3 {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

p, .ls-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--weight-normal);
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 0.875rem;
}

.ls-text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ============================================
   LAYOUT
============================================ */
.ls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================
   BUTTONS
============================================ */
.ls-btn {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: var(--weight-medium);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: visible;
}

.ls-btn-small {
    font-size: 1rem;
    padding: 0.625rem 1.5rem;
}

.ls-btn-large {
    font-size: 1.25rem;
    padding: 1.125rem 2.5rem;
}

.ls-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-light);
}

.ls-btn-primary:hover {
    transform: translateY(-3px);
    animation: buttonBounce 0.4s ease;
}

@keyframes buttonBounce {
    0%, 100% { transform: translateY(-3px); }
    50% { transform: translateY(-5px); }
}

.ls-btn-secondary {
    background: transparent;
    color: var(--color-highlight);
    border: 2px solid var(--color-highlight);
}

.ls-btn-secondary:hover {
    background: rgba(245, 218, 167, 0.1);
    transform: scale(0.96);
}

.ls-btn-accent {
    background: var(--color-highlight);
    color: var(--color-primary);
}

.ls-btn-accent:hover {
    background: linear-gradient(135deg, var(--color-highlight) 0%, #ffebd4 100%);
    transform: translateY(-2px);
}

.ls-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* ============================================
   HEADER
============================================ */
.ls-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 16, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(163, 72, 90, 0.2);
}

.ls-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 2rem;
}

.ls-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.ls-logo:hover {
    transform: scale(1.05);
}

.ls-logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ls-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: var(--color-light);
}

.ls-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ls-nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.ls-nav-link:hover {
    color: var(--color-highlight);
    transform: translateY(-2px);
}

/* ============================================
   BURGER MENU
============================================ */
.ls-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 5px;
    padding: 8px;
}

.ls-burger:hover {
    background: rgba(163, 72, 90, 0.1);
    border-color: var(--color-highlight);
}

.ls-burger-line {
    width: 22px;
    height: 2px;
    background: var(--color-highlight);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.ls-burger.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.ls-burger.active .ls-burger-line {
    background: var(--color-light);
}

.ls-burger.active .ls-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ls-burger.active .ls-burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.ls-burger.active .ls-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   DISCLAIMER BAR
============================================ */
.ls-disclaimer-bar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(245, 218, 167, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(163, 72, 90, 0.2);
    padding: 0.75rem 0;
    margin-top: 77px;
}

.ls-disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.ls-disclaimer-content .ls-icon {
    filter: none;
}

.ls-disclaimer-content p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

/* ============================================
   HERO SECTION
============================================ */
.ls-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg-top) 0%, var(--color-bg-bottom) 100%);
}

.ls-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse at 20% 50%, rgba(102, 34, 34, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 30%, rgba(132, 42, 59, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.ls-hero-particles {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
            radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.2), transparent),
            radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.25), transparent),
            radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
            radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particlesMove 60s ease-in-out infinite;
    z-index: 1;
}

@keyframes particlesMove {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.ls-hero-silhouettes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    z-index: 2;
}

.ls-hero .ls-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.ls-hero-left {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ls-hero-sign {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d2817 0%, #5a3d2a 100%);
    border: 3px solid #8b6f47;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    max-width: fit-content;
}

.ls-hero-sign::before,
.ls-hero-sign::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4a4a4a;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ls-hero-sign::before {
    top: 8px;
    left: 8px;
}

.ls-hero-sign::after {
    top: 8px;
    right: 8px;
}

.ls-hero-sign span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: #f5daa7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
}

.ls-hero-left h1 {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.75rem;
}

.ls-hero-left h3 {
    margin-bottom: 2rem;
    max-width: 90%;
}

.ls-hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ls-hero-cta .ls-btn {
    box-shadow:
            0 4px 16px rgba(102, 34, 34, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.ls-hero-cta .ls-btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border: 2px solid rgba(163, 72, 90, 0.5);
}

.ls-hero-cta .ls-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
            0 0 24px rgba(163, 72, 90, 0.6),
            0 6px 20px rgba(102, 34, 34, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ls-hero-cta .ls-btn-secondary {
    background: transparent;
    border: 2px solid var(--color-highlight);
    color: var(--color-highlight);
}

.ls-hero-cta .ls-btn-secondary:hover {
    background: rgba(245, 218, 167, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(245, 218, 167, 0.3);
}

.ls-hero-trust {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.ls-hero-right {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ls-hero-portal {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
}

.ls-hero-portal-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    border-radius: 50%;
    padding: 12px;
    box-shadow:
            0 0 40px rgba(163, 72, 90, 0.4),
            inset 0 2px 8px rgba(0, 0, 0, 0.6);
    animation: portalPulse 4s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(163, 72, 90, 0.4), inset 0 2px 8px rgba(0, 0, 0, 0.6); }
    50% { box-shadow: 0 0 60px rgba(163, 72, 90, 0.6), inset 0 2px 8px rgba(0, 0, 0, 0.6); }
}

.ls-hero-portal-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #8b6f47;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.7);
}

.ls-hero-portal-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-hero-artifact {
    position: absolute;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.ls-hero-artifact-1 {
    top: 5%;
    left: -5%;
    width: 120px;
    animation: floatArtifact1 8s ease-in-out infinite;
}

.ls-hero-artifact-2 {
    top: 50%;
    right: -8%;
    width: 120px;
    animation: floatArtifact2 7s ease-in-out infinite;
}

.ls-hero-artifact-3 {
    bottom: 10%;
    left: -10%;
    width: 120px;
    animation: floatArtifact3 9s ease-in-out infinite;
}

@keyframes floatArtifact1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes floatArtifact2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes floatArtifact3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

/* ============================================
   CTA SECTIONS
============================================ */
.ls-cta-section {
    position: relative;
    padding: 6rem 0;
    background:
            linear-gradient(180deg, var(--color-bg-bottom) 0%, var(--color-bg-top) 50%, var(--color-bg-bottom) 100%);
    background-blend-mode: overlay;
    background-size: cover, 100%;
    overflow: hidden;
}

.ls-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 15% 25%, rgba(245, 218, 167, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 85% 75%, rgba(78, 195, 200, 0.06) 0%, transparent 40%),
            radial-gradient(1px 1px at 20% 80%, rgba(255, 255, 255, 0.2), transparent),
            radial-gradient(1px 1px at 70% 30%, rgba(255, 255, 255, 0.15), transparent),
            radial-gradient(2px 2px at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 100% 100%, 100% 100%, 300px 300px, 250px 250px, 400px 400px;
    pointer-events: none;
    z-index: 1;
}

.ls-cta-section .ls-container {
    position: relative;
    z-index: 2;
}

.ls-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ls-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(11, 16, 32, 0.4);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(139, 111, 71, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ls-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 218, 167, 0.15);
}

.ls-cta-plaque {
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.95) 0%, rgba(90, 61, 42, 0.95) 100%);
    border: 3px solid #8b6f47;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow:
            0 8px 24px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.ls-cta-plaque::before,
.ls-cta-plaque::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4a4a4a;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ls-cta-plaque::before {
    top: 12px;
    left: 12px;
}

.ls-cta-plaque::after {
    top: 12px;
    right: 12px;
}

.ls-cta-plaque h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #f5daa7;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ls-cta-plaque h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #f5daa7;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.ls-cta-plaque p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ls-cta-visual {
    position: relative;
}

.ls-cta-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ls-btn-cta {
    background: linear-gradient(135deg, #F5DAA7 0%, #FF9A56 100%);
    color: var(--color-dark);
    font-weight: var(--weight-bold);
    border: 2px solid #D4A574;
    box-shadow: 0 4px 16px rgba(255, 154, 86, 0.3);
}

.ls-btn-cta:hover {
    background: linear-gradient(135deg, #ffebd4 0%, #ffb380 100%);
    box-shadow: 0 0 24px rgba(78, 195, 200, 0.5);
    transform: translateY(-2px);
}

.ls-btn-secondary-cta {
    background: transparent;
    border: 2px solid #F5DAA7;
    color: #F5DAA7;
}

.ls-btn-secondary-cta:hover {
    background: rgba(245, 218, 167, 0.15);
    box-shadow: 0 0 20px rgba(245, 218, 167, 0.4);
}

.ls-cta-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ls-cta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--weight-medium);
}

.ls-icon-check {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

.ls-cta-explore {
    grid-template-columns: 1fr 1fr;
}

.ls-cta-safe {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(61, 40, 23, 0.6) 0%, rgba(90, 61, 42, 0.6) 100%);
    border: 3px solid #8b6f47;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.ls-cta-safe::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(78, 195, 200, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ls-cta-safe-icon {
    flex: 0 0 200px;
}

.ls-cta-safe-icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    border-radius: 50%;
}

.ls-cta-safe-content {
    flex: 1;
}

.ls-cta-safe-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: var(--weight-bold);
    color: #f5daa7;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.ls-cta-safe-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   FOOTER
============================================ */
.ls-footer {
    background: linear-gradient(180deg, var(--color-bg-top) 0%, #000000 100%);
    color: rgba(255, 255, 255, 0.85);
}

.ls-footer-banner {
    background: linear-gradient(135deg, rgba(90, 61, 42, 0.8) 0%, rgba(61, 40, 23, 0.8) 100%);
    border-bottom: 2px solid rgba(139, 111, 71, 0.4);
    padding: 3rem 0;
    position: relative;
}

.ls-footer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(78, 195, 200, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ls-footer-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.ls-footer-banner-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ls-footer-banner-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(78, 195, 200, 0.4));
}

.ls-footer-banner-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--weight-bold);
    color: #f5daa7;
    margin-bottom: 0.5rem;
}

.ls-footer-banner-text p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.ls-footer-banner-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ls-footer-age-badge {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--weight-bold);
    color: #f5daa7;
    background: linear-gradient(135deg, #D4A574 0%, #8b6f47 100%);
    border: 3px solid #f5daa7;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.ls-footer-main {
    padding: 4rem 0;
}

.ls-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.ls-footer-about h4,
.ls-footer-nav-group h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--weight-bold);
    color: #f5daa7;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ls-footer-about h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: var(--weight-semibold);
    color: #f5daa7;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ls-footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ls-footer-disclaimer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ls-footer-disclaimer li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.ls-footer-disclaimer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4EC3C8;
    font-weight: bold;
}

.ls-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.ls-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ls-footer-links li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ls-footer-link-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    flex-shrink: 0;
}

.ls-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.ls-footer-links a:hover {
    color: #f5daa7;
}

.ls-footer-copyright {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(139, 111, 71, 0.3);
    padding: 1.5rem 0;
}

.ls-footer-copyright-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ls-footer-logo {
    width: 32px;
    height: 32px;
}

.ls-footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}
/* ============================================
   AGE GATE MODAL (OPTIMIZED)
============================================ */
.ls-age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ls-age-gate.active {
    display: flex;
}

.ls-age-gate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ls-age-gate-card {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    background: linear-gradient(135deg, #f4e4c1 0%, #e8d4a8 100%);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 4px solid #8b6f47;
    animation: ageGateSlideIn 0.4s ease-out;
}

@keyframes ageGateSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ls-age-gate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4A574 0%, #8b6f47 100%);
    border: 3px solid #662222;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.ls-age-gate-badge-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: var(--weight-bold);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.ls-age-gate-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: var(--weight-bold);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.ls-age-gate-subtitle {
    text-align: center;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.ls-age-gate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.ls-age-gate-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.625rem 0.875rem;
    border-radius: 12px;
    border: 2px solid rgba(139, 111, 71, 0.3);
}

.ls-age-gate-features li:last-child {
    grid-column: 1 / -1;
}

.ls-age-gate-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ls-age-gate-icon-no {
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2500%) hue-rotate(345deg);
}

.ls-age-gate-icon-yes {
    filter: brightness(0) saturate(100%) invert(60%) sepia(85%) saturate(500%) hue-rotate(80deg);
}

.ls-age-gate-features span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: var(--weight-medium);
    color: var(--color-dark);
}

.ls-age-gate-legal {
    background: rgba(139, 111, 71, 0.15);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.ls-age-gate-legal p {
    font-size: 0.8rem;
    color: var(--color-dark);
    margin-bottom: 0.625rem;
    font-weight: var(--weight-medium);
}

.ls-age-gate-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ls-age-gate-legal li {
    display: inline-block;
}

.ls-age-gate-legal a {
    color: var(--color-secondary);
    font-weight: var(--weight-semibold);
    text-decoration: underline;
    transition: color 0.2s ease;
    font-size: 0.8rem;
}

.ls-age-gate-legal a:hover {
    color: var(--color-primary);
}

.ls-age-gate-buttons {
    display: flex;
    gap: 0.75rem;
}

.ls-btn-age-yes,
.ls-btn-age-no {
    flex: 1;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.ls-btn-age-yes {
    background: linear-gradient(135deg, #F5DAA7 0%, #FF9A56 100%);
    color: var(--color-dark);
    font-weight: var(--weight-bold);
    border: 3px solid #4EC3C8;
    box-shadow: 0 0 20px rgba(78, 195, 200, 0.4);
    width: auto;
}

.ls-btn-age-yes:hover {
    background: linear-gradient(135deg, #ffebd4 0%, #ffb380 100%);
    box-shadow: 0 0 30px rgba(78, 195, 200, 0.6);
    transform: translateY(-2px);
}

.ls-btn-age-no {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    font-weight: var(--weight-semibold);
    width: auto;
}

.ls-btn-age-no:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .ls-age-gate-card {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .ls-age-gate-badge {
        width: 60px;
        height: 60px;
    }

    .ls-age-gate-badge-number {
        font-size: 1.6rem;
    }

    .ls-age-gate-features {
        grid-template-columns: 1fr;
    }

    .ls-age-gate-features li:last-child {
        grid-column: 1;
    }

    .ls-age-gate-features li {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }

    .ls-age-gate-icon {
        width: 20px;
        height: 20px;
    }

    .ls-age-gate-legal {
        padding: 0.875rem;
    }

    .ls-age-gate-legal p {
        font-size: 0.75rem;
    }

    .ls-age-gate-legal ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .ls-age-gate-buttons {
        flex-direction: column;
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .ls-hero .ls-container {
        flex-direction: column;
        gap: 3rem;
        padding-top: 5rem;
    }

    .ls-hero-left,
    .ls-hero-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ls-hero-left {
        text-align: center;
        align-items: center;
    }

    .ls-hero-left h3 {
        max-width: 100%;
    }

    .ls-hero-cta {
        justify-content: center;
    }

    .ls-hero-portal {
        max-width: 420px;
    }

    .ls-cta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .ls-cta-explore {
        grid-template-columns: 1fr;
    }

    .ls-cta-explore .ls-cta-visual {
        order: -1;
    }

    .ls-cta-safe {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .ls-cta-safe-icon {
        flex: 0 0 180px;
    }

    .ls-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ls-footer-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .ls-footer-banner-text {
        flex-direction: column;
    }

    .ls-footer-nav {
        flex-direction: row;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .ls-nav {
        position: fixed;
        top: 77px;
        left: 0;
        right: 0;
        height: calc(100vh - 77px);
        background-color: #0B1020;
        background: linear-gradient(180deg, #0B1020 0%, #020812 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 90;
        overflow-y: auto;
    }

    .ls-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .ls-nav-link {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        color: var(--color-light);
    }

    .ls-nav .ls-btn {
        width: 100%;
        justify-content: center;
    }

    .ls-burger {
        display: flex;
        z-index: 100;
    }

    .ls-hero-portal {
        max-width: 360px;
    }

    .ls-hero-artifact {
        display: none;
    }

    .ls-hero-sign {
        margin: 0 auto;
    }

    .ls-cta-section {
        padding: 4rem 0;
    }

    .ls-cta-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .ls-cta-card {
        padding: 1.5rem;
    }

    .ls-cta-plaque {
        padding: 2rem;
    }

    .ls-cta-safe {
        padding: 2rem;
    }

    .ls-cta-safe-icon {
        flex: 0 0 150px;
    }

    .ls-footer-banner {
        padding: 2rem 0;
    }

    .ls-footer-banner-icon {
        width: 48px;
        height: 48px;
    }

    .ls-footer-main {
        padding: 3rem 0;
    }

    .ls-footer-nav {
        flex-direction: column;
        gap: 2rem;
    }

    .ls-age-gate-card {
        padding: 2rem 1.5rem;
    }

    .ls-age-gate-badge {
        width: 70px;
        height: 70px;
    }

    .ls-age-gate-badge-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .ls-logo-text {
        font-size: 1.25rem;
    }

    .ls-logo-icon {
        width: 40px;
        height: 40px;
    }

    .ls-disclaimer-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .ls-disclaimer-content p {
        font-size: 0.75rem;
    }

    .ls-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .ls-hero-cta .ls-btn {
        width: 100%;
    }

    .ls-hero-portal {
        max-width: 300px;
    }

    .ls-cta-plaque {
        padding: 1.5rem;
    }

    .ls-cta-plaque h2 {
        font-size: 1.5rem;
    }

    .ls-cta-safe-icon {
        flex: 0 0 120px;
    }

    .ls-cta-features {
        gap: 0.5rem;
    }

    .ls-cta-features li {
        font-size: 0.9rem;
    }

    .ls-footer-banner-text h3 {
        font-size: 1.25rem;
    }

    .ls-footer-banner-text p {
        font-size: 0.875rem;
    }

    .ls-footer-age-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .ls-footer-copyright-content {
        flex-direction: column;
        text-align: center;
    }

    .ls-age-gate-card {
        padding: 1.5rem 1.25rem;
    }

    .ls-age-gate-badge {
        width: 60px;
        height: 60px;
    }

    .ls-age-gate-badge-number {
        font-size: 1.5rem;
    }

    .ls-age-gate-features li {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }

    .ls-age-gate-icon {
        width: 20px;
        height: 20px;
    }

    .ls-age-gate-legal {
        padding: 1rem;
    }

    .ls-age-gate-legal p {
        font-size: 0.8rem;
    }

    .ls-age-gate-legal ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}