@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --ivory-white: #F9F9F6;
    --deep-black: #0A0A0C;
    --metallic-gold: #C4A24A;
    --champagne-gold: #D4AF37;
    --soft-gray: #E5E5E0;
    --dark-gray: #2A2A2C;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--ivory-white);
    color: var(--deep-black);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--champagne-gold));
    margin: 30px 0;
}

.gold-line-center {
    margin: 30px auto;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-bottom: 1px solid rgba(196, 162, 74, 0.2);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(10, 10, 12, 0.08);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--deep-black);
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--metallic-gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--deep-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--champagne-gold));
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--deep-black);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--ivory-white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--ivory-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 162, 74, 0.15), transparent);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 150px 20px 100px;
    animation: fadeInUp 1.2s ease;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--ivory-white);
    text-shadow: 2px 4px 12px rgba(10, 10, 12, 0.5), 0 2px 4px rgba(10, 10, 12, 0.3);
}

.hero .tagline {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--metallic-gold);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero p {
    font-size: 18px;
    color: var(--ivory-white);
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 1px 2px 8px rgba(10, 10, 12, 0.4);
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--metallic-gold), var(--champagne-gold));
    color: var(--ivory-white);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 162, 74, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--metallic-gold);
    color: var(--deep-black);
}

.btn-outline:hover {
    background: var(--metallic-gold);
    color: var(--ivory-white);
}

section {
    padding: 100px 0;
}

@media (min-width: 1200px) {
    section {
        padding: 120px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 25px;
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.about-preview {
    background: var(--deep-black);
    color: var(--ivory-white);
}

.about-preview .section-header h2 {
    background: linear-gradient(135deg, var(--ivory-white), var(--soft-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-preview p {
    color: var(--soft-gray);
}

.divisions-preview {
    background: var(--ivory-white);
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.division-card {
    background: white;
    padding: 50px 40px;
    border: 1px solid var(--soft-gray);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 10, 12, 0.05);
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--champagne-gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.division-card:hover::before {
    transform: scaleX(1);
}

.division-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 60px rgba(196, 162, 74, 0.2), 0 10px 30px rgba(10, 10, 12, 0.1);
}

.division-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--deep-black);
}

.division-card p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
}

.vision-section {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-gray));
    color: var(--ivory-white);
    text-align: center;
}

.vision-section h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 30px;
}

.vision-section p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--soft-gray);
}

.timeline {
    max-width: 900px;
    margin: 80px auto;
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--metallic-gold), var(--champagne-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    animation: fadeInLeft 0.8s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -67px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--metallic-gold);
    border: 3px solid var(--ivory-white);
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--metallic-gold);
}

.timeline-item p {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.team-card {
    background: white;
    border: 2px solid var(--metallic-gold);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(196, 162, 74, 0.15);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--champagne-gold));
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 70px rgba(196, 162, 74, 0.35), 0 15px 40px rgba(10, 10, 12, 0.1);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(196, 162, 74, 0.1), rgba(212, 175, 55, 0.15));
    border: 4px solid var(--metallic-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--metallic-gold);
    position: relative;
    overflow: hidden;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0.5;
}

.team-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--deep-black);
}

.team-card .role {
    font-size: 16px;
    color: var(--metallic-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-section {
    background: var(--ivory-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid var(--metallic-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--metallic-gold);
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--metallic-gold);
    color: var(--ivory-white);
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 50px;
    border: 1px solid var(--soft-gray);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--deep-black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--soft-gray);
    background: var(--ivory-white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--metallic-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background: var(--deep-black);
    color: var(--ivory-white);
    padding: 60px 0 30px;
    text-align: center;
}

footer p {
    color: var(--soft-gray);
    font-size: 14px;
}

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

.footer-links a {
    color: var(--soft-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a:hover {
    color: var(--metallic-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.fade-in-up {
    animation: fadeInUp 1s ease;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.division-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 80px;
}

.division-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.85), rgba(42, 42, 44, 0.85));
}

.division-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--ivory-white);
    max-width: 800px;
    padding: 0 20px;
}

.division-hero-content h2 {
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 25px;
    color: var(--ivory-white);
    text-shadow: 2px 4px 12px rgba(10, 10, 12, 0.5), 0 2px 4px rgba(10, 10, 12, 0.3);
}

.division-hero-content p {
    font-size: 20px;
    color: var(--soft-gray);
    line-height: 1.8;
}

.division-details {
    background: white;
    padding: 80px 60px;
    margin: -60px auto 80px;
    max-width: 1200px;
    position: relative;
    box-shadow: 0 20px 60px rgba(10, 10, 12, 0.1);
    border-top: 4px solid var(--metallic-gold);
}

.division-details h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--deep-black);
}

.division-details p {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    padding: 30px;
    background: var(--ivory-white);
    border-left: 3px solid var(--metallic-gold);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--deep-black);
}

.feature-item p {
    font-size: 15px;
    color: var(--dark-gray);
}
