@font-face {
    font-family: 'Linear Grotesk';
    src: url('fonts/TTF/LinearGrotesk-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}
/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.nav-toggle {
  display: none;
    margin-right: 0;
    position: static;
}
.logo {
    font-family: 'Linear Grotesk', 'LinearGrotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.02em;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: #666666;
}
/* Footer CTA */
.footer-cta {
    background: #6f1aca;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}
.footer-cta h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.footer-cta p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}
.cta-primary {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cta-primary:hover {
    background: #f5f5f5;
}
.cta-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 1px solid white;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.cta-secondary:hover {
    background: white;
    color: #000000;
}
/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
}
.office-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.office-card:hover {
    border-color: #1a1a1a;
}
.office-flag {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.office-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}
.office-card p {
    color: #666666;
    font-size: 0.85rem;
    font-weight: 300;
}
/* Section styles (for footer and offices area) */
.section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}
.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.section-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}
/* Mobile responsiveness for nav, footer, offices */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-cta {
        padding: 4rem 1rem;
    }
    .section {
        padding: 6rem 1rem;
    }
}
/* Hamburger styles */

.hamburger {
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
}
.hamburger span,
.hamburger::before,
.hamburger::after {
    display: block;
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger span {
    top: 8.5px;
}
.hamburger::before {
    content: '';
    top: 0;
}
.hamburger::after {
    content: '';
    top: 17px;
}
