/* Hero Section */

.hero_section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    overflow: hidden;
}

.hero_section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(100px, 12vh, 140px);
    padding-bottom: var(--section-y);
    padding-right: clamp(40px, 5vw, 80px);
    padding-left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

.hero_section .title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-md);
    line-height: 1.05;
}

.hero_section .lead {
    font-size: var(--fs-lead);
    color: var(--text-body);
}

.hero_section .image_wrap {
    position: relative;
    overflow: hidden;
}

.hero_section .image_wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80%;
    opacity: .8;
}

@media (max-width: 880px) {
    .hero_section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero_section .content {
        padding: clamp(120px, 16vh, 160px) var(--container-pad) var(--space-xl);
        justify-content: flex-start;
    }

    .hero_section .image_wrap {
        height: 58vw;
        min-height: 260px;
        position: relative;
    }
}



/* Philosophy Section */

.philosophy_section .grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: clamp(48px, 7vw, 120px);
    align-items: start;
}

.philosophy_section .heading {
    font-size: var(--fs-h2);
    margin-top: var(--space-sm);
}

.philosophy_section .body_col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: clamp(36px, 4.5vw, 60px);
}

@media (max-width: 800px) {
    .philosophy_section .grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .philosophy_section .body_col {
        padding-top: 0;
    }
}



/* Difference Section */

.difference_section .section_header {
    max-width: 720px;
    margin-bottom: clamp(48px, 6vw, 96px);
}

.difference_section .title {
    font-size: var(--fs-h2);
    margin-top: var(--space-sm);
}

.difference_section .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(36px, 4vw, 72px);
}

.difference_section .block {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.difference_section .block svg {
    width: 48px;
    height: 48px;
    color: var(--champagne);
}

.difference_section .block_title {
    font-size: var(--fs-h3);
    line-height: 1.2;
}

@media (max-width: 880px) {
    .difference_section .blocks {
        grid-template-columns: 1fr;
    }
}



/* Vision Section */

.vision_section .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
}

.vision_section .image_wrap {
    overflow: hidden;
    height: clamp(380px, 50vw, 600px);
}

.vision_section .image_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vision_section .content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vision_section .content .eyebrow {
    margin-bottom: 0;
}

.vision_section .title {
    font-size: var(--fs-h2);
}

@media (max-width: 880px) {
    .vision_section .inner {
        grid-template-columns: 1fr;
    }

    .vision_section .image_wrap {
        height: 60vw;
    }
}



/* Serve Section */

.serve_section .inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.serve_section .inner .eyebrow {
    margin-bottom: 0;
}

.serve_section .title {
    font-size: var(--fs-h2);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.serve_section .lead {
    text-align: center;
}

.serve_section .cities {
    width: 100%;
    max-width: none;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line-soft);
    font-family: "Playfair Display", serif;
    font-size: clamp(15px, 1.15vw, 19px);
    font-style: italic;
    color: var(--text-mute);
    letter-spacing: 0.03em;
    line-height: 2.2;
    text-align: center;
}



/* CTA Section */

.cta_section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(120px, 16vw, 220px) 0;
    text-align: center;
}

.cta_section .background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta_section .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta_section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #082E47E0 0%, #082E47F0 100%);
}

.cta_section .content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_section .title {
    font-size: var(--fs-h1);
    margin-bottom: var(--space-md);
}

.cta_section .lead {
    font-size: var(--fs-lead);
    color: var(--text-strong);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.cta_section .actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta_section .actions .btn {
        width: 100%;
        justify-content: center;
    }
}
