/* Hero Section */

.hero_section {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: clamp(160px, 20vh, 240px) 0 clamp(80px, 10vh, 120px);
}

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

.hero_section .content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
    gap: var(--space-md);
}

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

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

.hero_section .lead {
    font-size: var(--fs-lead);
    color: var(--text-strong);
    opacity: 0.9;
    max-width: 42ch;
    margin: 0;
}

.hero_section .note {
    font-size: var(--fs-eyebrow);
    letter-spacing: 0.06em;
    color: var(--text-mute);
    max-width: 44ch;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero_section {
        min-height: 52vh;
        padding-bottom: clamp(60px, 8vh, 100px);
    }

    .hero_section .inner {
        grid-template-columns: 1fr;
    }

    .hero_section .lead,
    .hero_section .note {
        max-width: none;
    }
}



/* Intro Section */

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

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

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

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

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



/* Details Section */

.details_section .section_header {
    max-width: 680px;
    margin-bottom: clamp(48px, 6vw, 80px);
}

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

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

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

.details_section .block_label {
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: var(--space-sm);
}

.details_section .block_value {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: italic;
    color: var(--text-strong);
    text-decoration: none;
    line-height: 1.3;
    transition: color var(--transition);
}

a.details_section .block_value:hover,
.details_section .block a.block_value:hover {
    color: var(--champagne);
}

.details_section .block_value--text {
    font-family: "Playfair Display", serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-style: italic;
    color: var(--text-strong);
    line-height: 1.3;
    max-width: none;
    margin: 0;
}

.details_section .block_note {
    font-size: var(--fs-eyebrow);
    color: var(--text-mute);
    letter-spacing: 0.05em;
    line-height: 1.7;
    max-width: 26ch;
    margin: 0;
}

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

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

    .details_section .block_note {
        max-width: none;
    }
}



/* Form Section */

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

.form_section .grid_lines {
    position: absolute;
    inset: 0;
    opacity: .06;
}

.form_section .container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.form_section .form_header {
    margin-bottom: clamp(48px, 6vw, 72px);
}

.form_section .form_header .eyebrow {
    margin-bottom: 0;
}

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

.form_section .form_lead {
    color: var(--text-body);
    max-width: 52ch;
}

.form_section .form_link {
    color: var(--champagne);
    text-decoration: none;
    border-bottom: 1px solid #C6A77B55;
    transition: border-color var(--transition);
}

.form_section .form_link:hover {
    border-bottom-color: var(--champagne);
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 36px);
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form_field--full {
    grid-column: 1 / -1;
}

.form_field label {
    font-size: var(--fs-eyebrow);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    line-height: 1;
}

.form_field .req {
    color: var(--champagne);
    font-style: normal;
}

.form_field input,
.form_field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--text-strong);
    font-family: "Montserrat", sans-serif;
    font-size: var(--fs-body);
    padding: 0.7em 0;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form_field input::placeholder,
.form_field textarea::placeholder {
    color: var(--text-mute);
    opacity: 0.5;
}

.form_field input:focus,
.form_field textarea:focus {
    border-bottom-color: var(--champagne);
}

.form_field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.form_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding-top: var(--space-sm);
}

.form_note {
    font-size: var(--fs-eyebrow);
    color: var(--text-mute);
    letter-spacing: 0.06em;
    opacity: 0.65;
    max-width: 32ch;
    margin: 0;
}

.form_note .req {
    color: var(--champagne);
}

.form_status {
    font-size: var(--fs-eyebrow);
    letter-spacing: 0.06em;
    min-height: 1.4em;
    padding-top: var(--space-xs);
}

.form_status--success {
    color: #7BBFA0;
}

.form_status--error {
    color: #C67B7B;
}

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

    .form_footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form_footer .btn {
        width: 100%;
        justify-content: center;
    }
}



/* 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: 720px;
    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;
    max-width: 48ch;
}

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

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