html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1A1A1A;
    background-color: #FAFAF5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    background: #6B1D2B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 24px;
    z-index: 1040;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand {
    padding: 0 12px;
    width: 100%;
    text-align: center;
}

.nav-logo {
    width: 52px;
    height: auto;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1.35rem;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #D4A373;
    border-radius: 0 4px 4px 0;
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.55);
    font-size: 1.15rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1060;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #6B1D2B;
    color: #fff;
    font-size: 1.4rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #8B2D42;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1035;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.main-content {
    margin-left: 80px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0 60px;
    position: relative;
    background: #FAFAF5;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: #F0EDE4;
    border-radius: 0 0 0 40%;
    z-index: 0;
}

.hero-text-col {
    position: relative;
    z-index: 1;
    padding-left: 5vw;
    padding-right: 3vw;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #BC6C25;
}

.label-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #BC6C25;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    color: #6B1D2B;
    margin-bottom: 14px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 400;
    color: #BC6C25;
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4a1520;
    margin-bottom: 22px;
    font-weight: 400;
    max-width: 560px;
}

.hero-lead strong {
    font-weight: 600;
    color: #6B1D2B;
}

.hero-body {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 18px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #6B1D2B;
    color: #fff;
}

.btn-primary:hover {
    background: #8B2D42;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107,29,43,0.25);
}

.btn-outline {
    background: transparent;
    color: #6B1D2B;
    border: 1.5px solid #6B1D2B;
}

.btn-outline:hover {
    background: #6B1D2B;
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #6B1D2B;
    border: 1.5px solid rgba(107,29,43,0.3);
}

.btn-outline-light:hover {
    background: #6B1D2B;
    color: #fff;
    border-color: #6B1D2B;
}

.hero-image-col {
    position: relative;
    z-index: 1;
    padding-right: 0;
    padding-left: 2vw;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 0 0 0 80px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 88vh;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #444;
    backdrop-filter: blur(8px);
}

.image-caption i {
    color: #BC6C25;
    margin-right: 6px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}

.scroll-hint i {
    font-size: 1.1rem;
    color: #BC6C25;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.content-section {
    padding: 120px 0;
    position: relative;
}

.politics-section {
    background: #fff;
}

.economy-section {
    background: #F5F3ED;
}

.society-section {
    background: #fff;
}

.section-header {
    margin-bottom: 70px;
    padding-left: 4vw;
    padding-right: 4vw;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.section-label.justify-content-end {
    justify-content: flex-end;
}

.accent-terracota {
    background: #BC6C25;
}

.accent-gold {
    background: #D4A373;
}

.accent-green {
    background: #8B2D42;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #6B1D2B;
    margin-bottom: 14px;
    line-height: 1.08;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: #666;
    font-weight: 400;
    max-width: 600px;
}

.content-row {
    align-items: center;
    padding-left: 2vw;
    padding-right: 2vw;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.tilt-left {
    transform: rotate(-1.5deg);
    margin-left: -2vw;
}

.tilt-right {
    transform: rotate(1.5deg);
    margin-right: -2vw;
}

.content-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-wrapper:hover .content-image {
    transform: scale(1.03);
}

.text-block {
    padding: 20px 3vw;
}

.text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 3vw;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(107,29,43,0.04);
    border-radius: 12px;
    border-left: 3px solid #BC6C25;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(107,29,43,0.08);
    transform: translateX(6px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #6B1D2B;
}

.stats-row {
    display: flex;
    gap: 20px;
    padding: 0 3vw;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 1.6rem;
    color: #D4A373;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 3vw;
    margin-top: 30px;
}

.content-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(107,29,43,0.06);
    border-radius: 100px;
    font-size: 0.88rem;
    color: #6B1D2B;
    font-weight: 500;
    transition: all 0.3s ease;
}

.content-tag:hover {
    background: #6B1D2B;
    color: #fff;
    transform: translateY(-2px);
}

.content-tag i {
    font-size: 1rem;
}

.image-col-left {
    padding-left: 4vw;
}

.image-col-right {
    padding-right: 4vw;
}

.image-col-left-narrow {
    padding-left: 4vw;
}

.text-col-wide {
    padding-right: 4vw;
}

.site-footer {
    background: #6B1D2B;
    color: #fff;
    padding: 80px 0 0;
    margin-left: 0;
}

.footer-main {
    padding: 0 4vw 60px;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4A373;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '—';
    color: #D4A373;
    font-weight: 300;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-actions .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
}

.footer-actions .btn-primary {
    background: #D4A373;
    color: #6B1D2B;
}

.footer-actions .btn-primary:hover {
    background: #fff;
    color: #6B1D2B;
}

.footer-actions .btn-outline-light {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.3);
}

.footer-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 4vw;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .side-nav {
        transform: translateX(-100%);
        width: 280px;
        padding: 80px 32px 32px;
        align-items: flex-start;
    }

    .side-nav.open {
        transform: translateX(0);
    }

    .nav-brand {
        margin-bottom: 32px;
    }

    .nav-logo {
        width: 70px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 4px;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
        height: auto;
        padding: 14px 18px;
        justify-content: flex-start;
        gap: 14px;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        border-radius: 10px;
    }

    .nav-link::after {
        content: attr(data-label);
    }

    .nav-link i {
        font-size: 1.2rem;
    }

    .nav-social {
        flex-direction: row;
        margin-top: auto;
    }

    .menu-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-text-col {
        padding: 0 6vw 40px;
        order: 2;
    }

    .hero-image-col {
        padding: 0;
        order: 1;
        margin-bottom: 40px;
    }

    .hero-image-wrapper {
        border-radius: 0 0 0 40px;
    }

    .hero-image {
        height: 50vh;
    }

    .content-section {
        padding: 80px 0;
    }

    .section-header {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    .content-row {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .text-block {
        padding: 30px 0 0;
    }

    .tilt-left,
    .tilt-right {
        transform: none;
        margin-left: 0;
        margin-right: 0;
    }

    .content-image {
        height: 380px;
    }

    .image-col-left,
    .image-col-right {
        padding-left: 4vw;
        padding-right: 4vw;
        margin-bottom: 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-list,
    .stats-row,
    .tag-row {
        padding: 0;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-main {
        padding: 0 6vw 40px;
    }

    .footer-brand-col,
    .footer-links-col,
    .footer-contact-col {
        margin-bottom: 40px;
    }

    .footer-actions {
        width: 100%;
    }

    .footer-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-image {
        height: 300px;
    }

    .stats-row {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .scroll-hint {
        display: none;
    }
}

@media (min-width: 992px) {
    .reverse-row .text-col-left {
        padding-left: 4vw;
    }

    .reverse-row .image-col-right {
        padding-right: 4vw;
    }

    .text-col-right {
        padding-right: 4vw;
    }
}
