:root {
    --bg-deep: #022c22;
    --bg-surface: #053f33;
    --accent-gold: #d4af37;
    --accent-emerald: #10b981;
    --text-gold: #f3e0b5;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-lg: 24px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: none !important; 
}

html {
    font-size: 62.5%; 
    scroll-behavior: auto;
}

body {
    background-color: var(--bg-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.6rem;
    line-height: 1.8;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-gold);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 6.4rem; letter-spacing: -1px; margin-bottom: 2rem; }
h2 { font-size: 4.8rem; margin-bottom: 3rem; }
h3 { font-size: 2.8rem; margin-bottom: 1.5rem; }

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

section {
    padding: 10rem 0;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-deep);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.desktop-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    color: var(--accent-gold);
}

.hero-new {
    padding: 12rem 0;
    background: linear-gradient(to bottom, #053f33, #022c22);
}

.hero-text { max-width: 750px; }

.hero-text p {
    font-size: 2.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4rem;
}

.btn-main {
    display: inline-block;
    padding: 2rem 4.5rem;
    background: var(--accent-gold);
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 800;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    text-align: center;
}

.btn-main:hover {
    filter: brightness(1.1);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.program-card {
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.program-card h3 { color: var(--accent-gold); }

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.analysis-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-surface);
    display: block;
}

.contact-box {
    background: var(--bg-surface);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-side {
    background: var(--accent-gold);
    color: var(--bg-deep);
    padding: 5rem;
}

.form-side { padding: 5rem; }

input, select, textarea {
    width: 100%;
    background: #022c22;
    border: 1px solid #064e3b;
    padding: 1.8rem;
    color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-family: inherit;
}

.animate-element {
    opacity: 1 !important;
    transform: none !important;
}

.footer-dark {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-gold);
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 2.2rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

.btn-submit:hover {
    background-color: #f3e0b5;
    filter: brightness(1.1);
}

.btn-submit:active {
    background-color: var(--accent-gold);
    transform: translateY(2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.visual-gallery {
    background-color: var(--bg-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.quad-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.gallery-frame {
    height: 350px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--bg-surface);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    h1 { font-size: 5.2rem; }
    h2 { font-size: 4rem; }
    .container { padding: 0 3rem; }
}

@media (max-width: 768px) {
    section { padding: 6rem 0; }
    h1 { font-size: 3.8rem; }
    h2 { font-size: 3.2rem; }
    h3 { font-size: 2.4rem; }
    
    .desktop-nav { display: none; }
    
    .hero-new { padding: 8rem 0; text-align: center; }
    .hero-text p { font-size: 1.8rem; }
    .btn-main { width: 100%; padding: 1.8rem 2rem; }

    .analysis-grid, .contact-box {
        grid-template-columns: 1fr;
    }
    
    .info-side, .form-side { padding: 3.5rem 2.5rem; }
    
    .quad-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-frame { height: 280px; }

    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 3.2rem; }
    .container { padding: 0 2rem; }
    .program-card { padding: 2.5rem; }
    .logo-text { font-size: 1.8rem; }
}