:root {
    /* Colors */
    --midnight-blue: #0A1628;
    --gold: #C9A961;
    --gold-dark: #A08344;
    --cream: #FAF8F3;
    --warm-gray: #8B8680;
    --light-gray: #E8E6E1;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Pro', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--midnight-blue);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--midnight-blue);
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-smooth);
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
}

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

.logo-wrapper {
    height: 65px;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    color: var(--midnight-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

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

.nav-link.contact-btn {
    background: var(--gold);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.nav-link.contact-btn::after {
    display: none;
}

.nav-link.contact-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--midnight-blue);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, #F5F3ED 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-accent {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line-small {
    display: block;
    font-size: 0.5em;
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

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

.btn-secondary:hover {
    background: var(--midnight-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
    animation-delay: 0.4s;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--midnight-blue) 100%);
    z-index: -1;
    border-radius: 4px;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(10, 22, 40, 0.1) 100%);
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--warm-gray);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards, float 3s ease-in-out infinite;
    animation-delay: 1.5s, 1.5s;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.quote-decoration {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--gold);
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--midnight-blue);
}

.section-title.light {
    color: var(--white);
}

.golden-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
}

.about-text p.lead-text {
    color: var(--midnight-blue);
}

.credentials {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.credential-icon {
    flex-shrink: 0;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.credential-text strong {
    color: var(--midnight-blue);
    font-size: 1.1rem;
}

.credential-text span {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, #F5F3ED 0%, var(--cream) 100%);
}

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

.expertise-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--warm-gray);
    margin-top: 1.5rem;
    line-height: 1.7;
}

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

.expertise-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
    border-color: var(--gold);
}

.expertise-card:hover::before {
    height: 100%;
}

.expertise-card.featured {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #152338 100%);
    color: var(--white);
    border: none;
}

.expertise-card.featured::before {
    background: var(--gold);
}

.expertise-card.featured .card-number {
    color: var(--gold);
}

.expertise-card.featured .card-title,
.expertise-card.featured .card-description {
    color: var(--white);
}

.expertise-card.featured .card-divider {
    background: rgba(201, 169, 97, 0.3);
}

.expertise-card.featured .card-list li {
    color: rgba(255, 255, 255, 0.9);
}

.expertise-card.featured .card-list li::before {
    background: var(--gold);
}

.card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--midnight-blue);
}

.card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.card-description {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-list li {
    color: var(--warm-gray);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Approach Section */
.approach {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #152338 100%);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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='%23C9A961' fill-opacity='0.05'%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.4;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.approach-content {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.approach-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-smooth);
}

.approach-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
}

.approach-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.approach-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-intro {
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-text strong {
    color: var(--midnight-blue);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-text span {
    color: var(--warm-gray);
}

.contact-text a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-cta {
    margin-top: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #F5F3ED 0%, var(--cream) 100%);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--midnight-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    color: var(--midnight-blue);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.form-privacy {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .approach-steps,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

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

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}