* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f4ef;
    color: #2d2d2d;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.section {
    padding: 120px 0;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 24px;
}
h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

p {
    color: #555;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #b18b59;
    margin-bottom: 16px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b18b59;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
    radial-gradient(circle at top right, rgba(177,139,89,0.12), transparent 25%),
    #f8f4ef;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.eyebrow {
    color: #b18b59;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #b18b59;
    color: white;
}

.btn-primary:hover {
    background: #967248;
}

.btn-secondary {
    border: 1px solid #b18b59;
    color: #b18b59;
}

.btn-secondary:hover {
    background: #b18b59;
    color: white;
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.competency-grid,
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.competency-card,
.philosophy-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.timeline-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.timeline-item {
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
    padding: 20px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
}

.timeline-item.active {
    background: white;
    border-left: 3px solid #b18b59;
    border-radius: 10px;
}

.timeline-item span {
    color: #b18b59;
    font-weight: 700;
}

.timeline-panel {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.timeline-panel.active {
    display: block;
}

.center {
    text-align: center;
}

.career-content {
    text-align: center;
}

.career-content p {
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.full-width {
    width: 100%;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: #555;
    text-decoration: none;
}

.fade-up,
.fade-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.fade-up-delay {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {

    h1 {
        font-size: 3.8rem;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .timeline-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section {
        padding: 80px 0;
    }

    .competency-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}