/* Hero Section */

.hero_section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(140px, 18vh, 220px) 0 clamp(80px, 12vh, 140px);
    overflow: hidden;
    isolation: isolate;
}

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

.hero_section .background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: heroDriftIn var(--transition-slow) ease-out forwards;
}

.hero_section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #082e473a 0%, #082E4770 70%, #082e47dc 100%), linear-gradient(90deg, #082E47B3 0%, #082E4766 70%);
}

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

.hero_section .lead {
    width: 50%;
    font-size: var(--fs-lead);
    margin-bottom: var(--space-lg);
    color: var(--text-strong);
    opacity: 0.92;
}

.hero_section .actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero_section .scroll_cue {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 64px;
    background: var(--line);
    overflow: hidden;
}

.hero_section .scroll_cue span {
    position: absolute;
    top: -64px;
    left: 0;
    width: 100%;
    height: 64px;
    background: var(--champagne);
    animation: scrollCue 2.6s ease-in-out infinite;
}

@keyframes heroDriftIn {
    to { transform: scale(1); }
}

@keyframes scrollCue {
    0% { top: -64px; }
    100% { top: 100%; }
}

@media (max-width: 768px) {
    .hero_section {
        min-height: 92vh;
        padding-top: clamp(120px, 16vh, 180px);
    }

    .hero_section .background video {
        object-position: 75%;
    }

    .hero_section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero_section .lead {
        width: 100%;
    }

    .hero_section .actions {
        justify-content: center;
    }

    .hero_section .actions .btn {
        justify-content: center;
    }

    .hero_section .scroll_cue {
        display: none;
    }
}



/* Positioning Section */
.positioning_section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "lead image"
        "body image";
    column-gap: clamp(40px, 6vw, 110px);
    align-items: start;
}

.positioning_section .lead_column {
    grid-area: lead;
}

.positioning_section .body_column {
    grid-area: body;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.positioning_section .image_column {
    grid-area: image;
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

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

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

.positioning_section .locations {
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: var(--fs-eyebrow);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.positioning_section .locations .places {
    color: var(--text-strong);
    letter-spacing: 0.16em;
    font-weight: 400;
}

@media (max-width: 880px) {
    .positioning_section .grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "lead"
            "image"
            "body";
        gap: var(--space-lg);
    }

    .positioning_section .lead_column {
        text-align: center;
    }

    .positioning_section .body_column {
        align-items: center;
        text-align: center;
    }

    .positioning_section .locations {
        align-items: center;
        text-align: center;
    }

    .positioning_section .locations span {
        font-size: var(--fs-h3);
    }

    .positioning_section .locations .places {
        font-size: var(--fs-lead);
    }

    .positioning_section .image_column {
        min-height: 380px;
    }
}



/* Experience Section */

.experience_section {
    position: relative;
}

.experience_section .grid_lines {
    position: absolute;
    inset: 0;
    opacity: .08;
}

.experience_section .container {
    position: relative;
    z-index: 1;
}

.experience_section .section_header {
    max-width: 860px;
    margin-bottom: clamp(34px, 4vw, 70px);
}

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

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

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

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

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

@media (max-width: 880px) {
    .experience_section .section_header {
        text-align: center;
    }
    .experience_section .cards {
        grid-template-columns: 1fr;
    }
    .experience_section .card {
        align-items: center;
        text-align: center;
    }
}



/* Process Section */

.process_section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.process_section .title {
    font-size: var(--fs-h2);
    color: var(--ink);
}

.process_section p {
    color: #0B3A57BF;
}

.process_section .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.process_section .step {
    padding: clamp(20px, 2vw, 32px);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-right: 1px solid #104C6D50;
}

.process_section .step:last-child {
    border-right: 0;
}

.process_section .number {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: clamp(28px, 2.6vw, 40px);
    color: var(--champagne);
    margin-bottom: var(--space-sm);
}

.process_section .step_title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
    color: var(--ink);
}

.process_section .cta_row {
    margin-top: clamp(40px, 5vw, 72px);
}

.process_section .link-arrow {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

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

    .process_section .step {
        border-right: 0;
        border-bottom: 1px solid #104C6D50;
    }

    .process_section .step:last-child {
        border-bottom: 0;
    }
}



/* Service Levels Section */

.levels_section {
    position: relative;
    overflow: hidden;
}

.levels_section .grid_lines {
    position: absolute;
    inset: 0;
    opacity: .08;
}

.levels_section .container {
    position: relative;
    z-index: 1;
}

.levels_section .section_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(48px, 6vw, 96px);
}

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

.levels_section .tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
}

.levels_section .tier {
    padding: clamp(28px, 3vw, 44px);
    background: linear-gradient(160deg, #C6A77B14 0%, #C6A77B05 60%, #00000000 100%), #FFFFFF0A;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.levels_section .tier:hover {
    border-color: var(--champagne);
    transform: translateY(-3px);
}

.levels_section .tier_label {
    color: var(--champagne);
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 2.2vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
}

.levels_section .tier_label em {
    color: var(--champagne);
    font-style: italic;
}

.levels_section .cta_row {
    margin-top: clamp(40px, 5vw, 72px);
    text-align: center;
}

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

    .levels_section .tier {
        min-height: 0;
    }
}



/* Areas Section */

.areas_section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 110px);
    align-items: start;
}

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

.areas_section iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    filter: invert(90%) hue-rotate(180deg) saturate(0.45) brightness(0.82) grayscale(1);
}

.areas_section .body_column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.areas_section .places_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md) var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line-soft);
}

.areas_section .places_grid li {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.3vw, 22px);
    color: var(--text-strong);
    letter-spacing: 0.01em;
}

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

    .areas_section .lead_column {
        text-align: center;
    }

    .areas_section .body_column {
        align-items: center;
        text-align: center;
    }

    .areas_section .places_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Final 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;
    }
}
