html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, rgba(184, 115, 51, 0.10), transparent 28%),
        linear-gradient(180deg, #090b0e 0%, #0b0d10 50%, #0b0d10 100%);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.glass-panel {
    background: rgba(17, 22, 28, 0.74);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.08);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b87333, #e07a5f);
    transition: width 0.28s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-scrolled .glass-panel {
    background: rgba(11, 13, 16, 0.9);
    border-color: rgba(255,255,255,0.12);
}

video {
    filter: saturate(1.05) contrast(1.02) brightness(0.72);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #13171c;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #704538, #b87333);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #8b4b2d, #e07a5f);
}

.section-shell {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    max-width: 80rem;
    padding: 6rem 1rem;
}

.section-heading {
    margin-bottom: 3rem;
    max-width: 52rem;
}

.section-kicker {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(184, 115, 51, 0.35);
    background: rgba(184, 115, 51, 0.1);
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #f0c1a0;
}

.section-title {
    margin-top: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
    color: #fff;
}

.section-copy {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #b9c0c8;
}

.stat-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 1.25rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
}

.stat-label {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #c5ccd3;
}

.experience-tile {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    padding: 1.2rem;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.experience-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 115, 51, 0.4);
    background: rgba(255,255,255,0.05);
}

.experience-icon {
    display: inline-flex;
    height: 3rem;
    width: 3rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(184,115,51,0.18), rgba(224,122,95,0.2));
    color: #f1c2a2;
}

.experience-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.experience-copy {
    margin-top: 0.35rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #aeb7c0;
}

.feature-card {
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #11161c;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

.feature-image {
    height: 21rem;
    width: 100%;
    object-fit: cover;
}

.feature-body {
    padding: 1.6rem;
}

.feature-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d9a884;
}

.feature-title {
    margin-top: 0.9rem;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
}

.feature-copy {
    margin-top: 0.85rem;
    line-height: 1.85;
    color: #aeb7c0;
}

.feature-link,
.footer-link {
    color: #d6dde5;
    transition: color 0.25s ease;
}

.feature-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #f0c1a0;
}

.feature-link:hover,
.footer-link:hover,
.social-chip:hover {
    color: #fff;
}

.detail-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.1rem;
    color: #d3dae1;
}

.detail-chip i,
.insight-icon,
.social-chip {
    color: #f0c1a0;
}

.insight-card {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    padding: 2rem;
}

.insight-icon {
    display: inline-flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(184,115,51,0.12);
    font-size: 1.1rem;
}

.insight-title {
    margin-top: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
}

.insight-copy {
    margin-top: 0.75rem;
    line-height: 1.8;
    color: #aeb7c0;
}

.social-chip {
    display: inline-flex;
    height: 2.8rem;
    width: 2.8rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}

img[loading="lazy"] {
    background: linear-gradient(90deg, #151a20 0%, #1e252d 50%, #151a20 100%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .section-shell {
        padding: 4rem 1rem;
    }

    .feature-image {
        height: 16rem;
    }
}
