/* Global */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 24px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 1600px;
}

.header__logo {
    display: block;
    height: 30px;
}

.header__logo img {
    height: 100%;
    width: auto;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav-list {
    display: flex;
    gap: 40px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.header__nav-item a {
    color: #1B1A1A;
    transition: opacity 0.3s;
}

.header__nav-item a:hover {
    opacity: 0.7;
}

.header__cta {
    display: block;
    transition: opacity 0.3s;
}

.header__cta:hover {
    opacity: 0.8;
}

.header__cta img {
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 600px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
}

.hero__content {
    background-color: #f8f5f0;
    padding: 80px 111px 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #645C55;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 64px;
    font-weight: 400;
    line-height: 70.4px;
    letter-spacing: 0%;
    margin-bottom: 30px;
    color: #1B1A1A;
}

.hero__text {
    font-size: 16px;
    line-height: 24px;
    color: #1B1A1A;
    margin-bottom: 30px;
    max-width: 509px;
}

.hero__link {
    color: #1B1A1A;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    margin-left: 35px;
    transition: opacity 0.3s;
}

.hero__link:hover {
    opacity: 0.7;
}

.hero__image {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Firm Section */
.our-firm {
    padding: 100px 0 0;
}

.our-firm__container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.our-firm__title {
    font-size: 32px;
    font-weight: 400;
    color: #403E3B;
}

.our-firm__content {
    max-width: 582px;
}

.our-firm__text {
    font-size: 18px;
    line-height: 24px;
    color: #403E3B;
    margin-bottom: 30px;
}

.our-firm__author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.our-firm__author-photo {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
}

.our-firm__author-name {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.our-firm__author-title {
    font-size: 14px;
    color: #666;
}

.our-firm__image {
    width: 100%;
    height: 600px;
}

.our-firm__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process {
    padding: 100px 0;
}

.process__container {
    text-align: center;
    margin-bottom: 80px;
}

.process__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #645C55;
    margin-bottom: 20px;
}

.process__title {
    font-size: 42px;
    font-weight: 400;
    color: #1B1A1A;
    margin-bottom: 80px;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.process__step-icon {
    width: 117px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.process__step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process__step {
    width: 294px;
    height: 96px;
}

.process__step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.process__step-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.process__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.process__image-left,
.process__image-right {
    width: 100%;
    height: 600px;
    position: relative;
}

.process__image-left img,
.process__image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process__image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 400px;
}

.process__caption-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process__caption-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Customers Section */
.customers {
    background-color: #1a1a1a;
    color: #fff;
}

.customers__header {
    padding: 100px 0;
}

.customers__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.customers__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.customers__text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 60px;
}

.customers__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
}

.customers__logo {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.customers__image-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.customers__caption {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customers__caption-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.customers__caption-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.customers__image {
    width: 100%;
    height: 600px;
}

.customers__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.projects__header {
    margin-bottom: 60px;
}

.projects__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.projects__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 60px;
}

.projects__item {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.projects__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.projects__item:hover img {
    transform: scale(1.05);
}

.projects__item--featured {
    position: relative;
}

.projects__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: #fff;
}

.projects__item-location {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projects__item-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.projects__item-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
}

.projects__footer {
    text-align: right;
}

.projects__link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.projects__link:hover {
    opacity: 0.7;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: #f8f5f0;
}

.team__container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
}

.team__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.team__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.team__link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    transition: opacity 0.3s;
}

.team__link:hover {
    opacity: 0.7;
}

.team__members {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team__member {
    display: flex;
    align-items: center;
    gap: 30px;
}

.team__member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.team__member-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.team__member-title {
    font-size: 16px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f5f0;
}

.contact__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.contact__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.contact__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    max-width: 600px;
}

.contact__link {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    font-size: 18px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.contact__link:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: #fff;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.footer__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.footer__copyright {
    font-size: 14px;
    color: #666;
}

.footer__social {
    display: flex;
    gap: 20px;
}

.footer__social-link {
    width: 24px;
    height: 24px;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__social-link svg {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
    }
    
    .hero__image {
        order: -1;
        min-height: 400px;
    }
    
    .hero__content {
        padding: 60px 40px;
    }
    
    .our-firm__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process__images {
        grid-template-columns: 1fr;
    }
    
    .customers__image-section {
        grid-template-columns: 1fr;
    }
    
    .customers__caption {
        order: 2;
    }
    
    .projects__grid {
        grid-template-columns: 1fr;
    }
    
    .team__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact__container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .header__nav-list {
        gap: 20px;
        font-size: 14px;
    }
    
    
    .hero__title {
        font-size: 48px;
    }
    
    .hero__content {
        padding: 40px 20px;
    }
    
    .our-firm,
    .process,
    .customers__header,
    .projects,
    .team,
    .contact {
        padding: 60px 0;
    }
}
