:root {
    --navy: #2c3e50;
    --navy-dark: #1a252f;
    --navy-light: #34495e;
    --cream: #f5f1e8;
    --cream-dark: #e8e1d3;
    --red: #c1392b;
    --red-dark: #a02d22;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #5a5a5a;
    --border: #d4cfc4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    line-height: 1.2;
    color: var(--navy);
}

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

/* Navigation */
.main-nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    line-height: 1.1;
}

.logo-flag {
    height: 60px;
    width: auto;
    display: block;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo-village {
    height: 60px;
    width: auto;
    display: block;
}

.logo-name {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    border-bottom-color: var(--red);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-photo-section {
    margin-bottom: 2rem;
}

.hero-photo-container {
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--cream);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
}

.hero-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 3px solid var(--red);
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-sign-container {
    max-width: 500px;
    margin: 0 auto;
}

.hero-sign {
    width: 100%;
    height: auto;
    display: block;
}

.hero-title-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-name {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hero-office {
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-tagline {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 57, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--red);
    margin: 1rem auto 0;
}

/* Intro Section */
.intro-section {
    background: var(--white);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-video {
    width: 100%;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.quote {
    background: var(--cream);
    padding: 2rem 3rem;
    border-left: 5px solid var(--red);
    margin: 3rem 0;
    font-style: italic;
}

.quote p {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote cite {
    font-weight: 700;
    color: var(--red);
    font-style: normal;
}

/* Platform Preview */
.platform-preview {
    background: var(--cream);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid var(--red);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.platform-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--red);
}

.experience-item ul {
    list-style: none;
}

.experience-item li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.experience-item li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--red);
}

.cta-center {
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--navy-dark);
    color: var(--cream);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--cream);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--navy-light);
    padding-top: 2rem;
    text-align: center;
    color: var(--cream);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: none;
        border-left: 4px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
        border-left-color: var(--red);
        border-bottom-color: transparent;
    }

    .logo-flag {
        height: 50px;
    }

    .logo-image {
        height: 50px;
    }

    .logo-village {
        height: 50px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-photo-container {
        width: 220px;
        height: 220px;
    }

    .hero-sign-container {
        max-width: 350px;
    }

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

    .platform-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-flag {
        height: 45px;
    }

    .logo-image {
        height: 45px;
    }

    .logo-village {
        height: 45px;
    }

    .hero-photo-container {
        width: 200px;
        height: 200px;
    }

    .hero-sign-container {
        max-width: 280px;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}
