* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030303;
    color: #dbd8d3;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(191, 165, 132, 0.1);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #030303;
    border-radius: 8px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #dbd8d3;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 6px;
    color: #dbd8d3;
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #bfa584;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: #bfa584;
}

.nav-link.social {
    font-size: 1.2rem;
    padding: 8px 12px;
    color: #bfa584;
}

.nav-link.social:hover {
    color: #951313;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(149, 19, 19, 0.08) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23bfa584' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149, 19, 19, 0.15);
    border: 1px solid rgba(149, 19, 19, 0.3);
    color: #bfa584;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #dbd8d3;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #bfa584;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #951313;
    color: #dbd8d3;
    box-shadow: 0 4px 20px rgba(149, 19, 19, 0.3);
}

.btn-primary:hover {
    background: #bfa584;
    color: #030303;
    box-shadow: 0 6px 30px rgba(191, 165, 132, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #dbd8d3;
    border: 2px solid rgba(191, 165, 132, 0.4);
}

.btn-outline:hover {
    border-color: #bfa584;
    color: #bfa584;
    box-shadow: 0 0 20px rgba(191, 165, 132, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #bfa584;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: rgba(149, 19, 19, 0.15);
    border: 1px solid rgba(149, 19, 19, 0.25);
    color: #bfa584;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #dbd8d3;
    max-width: 700px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid.reverse {
    direction: rtl;
}

.grid.reverse>* {
    direction: ltr;
}

.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
    background: #111111;
    border: 1px solid rgba(191, 165, 132, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    border-color: rgba(191, 165, 132, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.text-card {
    padding: 48px;
}

.image-card {
    padding: 0;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.6s ease;
    filter: brightness(0.85) saturate(0.9);
}

.card:hover .card-image {
    transform: scale(1.05);
    filter: brightness(0.95) saturate(1);
}

.lead {
    font-size: 1.15rem;
    color: #bfa584;
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-card p {
    margin-bottom: 16px;
    color: #a8a5a0;
}

.text-card strong {
    color: #dbd8d3;
}

.highlight {
    background: rgba(149, 19, 19, 0.1);
    border-left: 3px solid #951313;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #dbd8d3 !important;
    margin-top: 24px;
}

.topic-card {
    position: relative;
}

.topic-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(149, 19, 19, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dbd8d3;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(149, 19, 19, 0.4);
}

.topic-card .card-image {
    height: 220px;
    min-height: 220px;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    color: #dbd8d3;
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body h3 i {
    color: #bfa584;
    font-size: 1.1rem;
}

.card-body p {
    color: #a8a5a0;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.commitment-list {
    list-style: none;
    margin: 24px 0;
}

.commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #a8a5a0;
    border-bottom: 1px solid rgba(191, 165, 132, 0.05);
}

.commitment-list li i {
    color: #bfa584;
    margin-top: 4px;
    font-size: 1.1rem;
}

.special-card .card-image {
    height: 200px;
    min-height: 200px;
}

.special-card.text-only {
    background: linear-gradient(135deg, rgba(149, 19, 19, 0.1) 0%, rgba(191, 165, 132, 0.05) 100%);
    border: 1px solid rgba(149, 19, 19, 0.15);
}

.connect-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.footer {
    background: #050505;
    border-top: 1px solid rgba(191, 165, 132, 0.08);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: #dbd8d3;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #bfa584;
    font-size: 1rem;
}

.footer-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: #030303;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
    color: #dbd8d3;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a,
.footer-contact a {
    color: #a8a5a0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #bfa584;
}

.footer-contact i {
    color: #951313;
    width: 20px;
}

.footer-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(191, 165, 132, 0.08);
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #951313;
    color: #dbd8d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(149, 19, 19, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #bfa584;
    color: #030303;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .grid.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .footer-links a,
    .footer-contact a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .text-card {
        padding: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .connect-cta,
    .footer-cta {
        flex-direction: column;
        align-items: center;
    }
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 165, 132, 0.1), transparent);
}

.welcome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0a0a0a);
    pointer-events: none;
}

.coverage .topic-card .card-image {
    position: relative;
}

.coverage .topic-card .card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, #111111 100%);
}

.memory {
    background: linear-gradient(180deg, #0a0a0a 0%, #030303 100%);
}

.memory .section-header {
    margin-bottom: 80px;
}