@charset "UTF-8";
/*
 * Estrel Tower — Contact Intro Section
 * Figma 682:432  (1851 × 512 inside 1920 frame, x-off 159, y rel 1147)
 *
 * Layout:
 *   - Section padding-left  159
 *   - Section padding-right 0 (right-picture overflows by 90)
 *   - Left text column ≈ 700 width
 *   - Right picture 1125 × 512, masked
 */

.estrel-contact-intro {
    container-type: inline-size;
    width: 100%;
    background: #14172D;
    color: #FEF5EC;
    overflow: hidden;
}

.estrel-contact-intro__inner {
    --u: calc(100cqi / 1920);
    max-width: 1920px;
    margin: 0 auto;
    padding: calc(120 * var(--u)) 0 calc(120 * var(--u)) calc(159 * var(--u));
    display: grid;
    grid-template-columns: 1fr calc(1125 * var(--u));
    gap: calc(60 * var(--u));
    align-items: start;
}

.estrel-contact-intro__text {
    padding-top: calc(59 * var(--u));
    max-width: calc(700 * var(--u));
}

.estrel-contact-intro__title {
    font-family: 'Söhne', sans-serif;
    font-weight: 400;
    font-size: calc(40 * var(--u));
    line-height: calc(50 * var(--u));
    letter-spacing: 0;
    color: #FEF5EC;
    margin: 0 0 calc(40 * var(--u));
}

.estrel-contact-intro__title-line {
    display: block;
}

/* First title line uses GT Alpina italic accent (Figma 682:438) */
.estrel-contact-intro__title-line:first-child {
    font-family: 'GT Alpina', serif;
    font-style: italic;
    font-weight: 250;
}

.estrel-contact-intro__body {
    font-family: 'Söhne', sans-serif;
    font-weight: 400;
    font-size: calc(18 * var(--u));
    line-height: calc(27 * var(--u));
    color: #FEF5EC;
    max-width: calc(562 * var(--u));
    margin-bottom: calc(24 * var(--u));
}

.estrel-contact-intro__body p {
    margin: 0 0 calc(8 * var(--u));
    color: inherit;
}

.estrel-contact-intro__address {
    font-family: 'Söhne', sans-serif;
    font-weight: 500;
    font-size: calc(18 * var(--u));
    line-height: calc(27 * var(--u));
    color: #FEF5EC;
    margin: 0 0 calc(34 * var(--u));
}

.estrel-contact-intro__buttons {
    display: flex;
    gap: calc(35 * var(--u));
    flex-wrap: wrap;
}

.estrel-contact-intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(30 * var(--u));
    padding: 0 calc(28 * var(--u));
    border-radius: calc(41.5 * var(--u));
    font-size: calc(19 * var(--u));
    line-height: calc(22 * var(--u));
    letter-spacing: 0.11em;
    text-decoration: none;
    transition: opacity .15s ease, background .15s ease, color .15s ease;
}

.estrel-contact-intro__btn.is-filled {
    background: #FED3CD;
    color: #14172D;
}

.estrel-contact-intro__btn.is-outline {
    background: transparent;
    color: #FEF5EC;
    border: 1px solid #FED3CD;
}

.estrel-contact-intro__btn:hover { opacity: .85; }

.estrel-contact-intro__picture {
    width: 100%;
    aspect-ratio: 1125 / 512;
    border-radius: calc(3 * var(--u));
    overflow: hidden;
    background: #d9d9d9;
}

.estrel-contact-intro__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================
   TABLET ≤1024
   ============================ */
@media (max-width: 1024px) {
    .estrel-contact-intro__inner {
        padding: 80px 32px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .estrel-contact-intro__text { padding-top: 0; max-width: none; }
    .estrel-contact-intro__title { font-size: 36px; line-height: 42px; margin-bottom: 24px; }
    .estrel-contact-intro__body,
    .estrel-contact-intro__address { font-size: 17px; line-height: 26px; max-width: none; }
    .estrel-contact-intro__btn { font-size: 18px; height: 44px; padding: 0 24px; }
    .estrel-contact-intro__picture { aspect-ratio: 16/9; }
}

/* ============================
   MOBILE ≤767
   ============================ */
@media (max-width: 767px) {
    .estrel-contact-intro__inner {
        padding: 56px 20px;
        gap: 32px;
    }
    .estrel-contact-intro__title { font-size: 28px; line-height: 34px; }
    .estrel-contact-intro__body,
    .estrel-contact-intro__address { font-size: 16px; line-height: 24px; }
    .estrel-contact-intro__buttons { gap: 12px; }
    .estrel-contact-intro__btn {
        font-size: 16px;
        height: 44px;
        padding: 0 20px;
        letter-spacing: 0.08em;
        flex: 1 0 auto;
        min-width: 140px;
    }
}
