@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-light-gray: #F8F8F8;
    --color-gray: #E0E0E0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --spacing-xl: 100px;
    --spacing-lg: 60px;
    --spacing-md: 40px;
    --spacing-sm: 20px;
    --transition-smooth: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.t-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
.t-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.t-loader-brand {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 2.5rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    animation: t-fade-pulse 2s infinite;
}

.t-loader-bar {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.t-loader-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    left: -100%;
    animation: t-load 1.5s infinite;
}

@keyframes t-fade-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes t-load {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* Ad Header */
.t-ad-header {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.t-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray);
}

.t-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 8px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
}

.t-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.t-menu-link {
    text-decoration: none;
    color: var(--color-black);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.t-menu-link:hover {
    opacity: 0.5;
}

.t-nav-cta {
    background: var(--color-black);
    color: var(--color-white);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.t-nav-cta:hover {
    background: #333;
}

/* Hero Section */
.t-hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--color-light-gray);
    overflow: hidden;
}

.t-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.t-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.t-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    margin: 0 0 30px;
    letter-spacing: 4px;
    font-weight: 500;
    line-height: 1;
}

.t-btn-primary {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.t-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sections */
.t-section {
    padding: var(--spacing-xl) 5%;
}

.t-section-alt {
    background-color: var(--color-light-gray);
}

.t-section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.t-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.t-grid-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.t-img-box {
    position: relative;
    background: var(--color-light-gray);
}

.t-img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.t-img:hover {
    filter: grayscale(0%);
}

.t-text-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.t-text-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

/* Feature Cards */
.t-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.t-feature-card {
    border: 1px solid var(--color-gray);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.t-feature-card:hover {
    border-color: var(--color-black);
}

.t-feature-icon {
    font-size: 2rem;
    margin-bottom: 25px;
}

/* FAQ */
.t-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.t-faq-item {
    border-bottom: 1px solid var(--color-gray);
}

.t-faq-trigger {
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.t-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.t-faq-content p {
    padding-bottom: 30px;
    margin: 0;
    color: #666;
}

/* Footer */
.t-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 80px 5% 40px;
}

.t-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.t-footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 8px;
    margin-bottom: 25px;
    display: block;
}

.t-footer-h {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-weight: 600;
}

.t-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t-footer-item {
    margin-bottom: 15px;
}

.t-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.t-footer-link:hover {
    color: var(--color-white);
}

.t-footer-ad-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.t-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.t-cookie {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 400px;
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    border: 1px solid var(--color-black);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.t-cookie.active {
    transform: translateY(0);
}

/* Burger Menu */
.t-burger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-black);
    padding: 10px;
}

.t-mobile-overlay {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100%;
    background: var(--color-white);
    z-index: 3000;
    padding: 80px 40px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

.t-mobile-overlay.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.t-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {

    .t-menu,
    .t-nav-cta {
        display: none;
    }

    .t-burger {
        display: block !important;
        z-index: 1001;
    }

    .t-logo {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .t-grid-editorial {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .t-grid-3 {
        grid-template-columns: 1fr;
    }

    .t-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .t-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .t-footer-grid {
        grid-template-columns: 1fr;
    }

    .t-section-title {
        font-size: 2.2rem;
    }
}

/* Modal */
.t-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    align-items: center;
    justify-content: center;
}

.t-modal-box {
    background: var(--color-white);
    padding: 60px 40px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}