@charset "UTF-8";
/*
 * Estrel Tower — Contact Section
 * Pixel-perfect Figma implementation (1920 design frame).
 *
 * Layout (1920 × 789, bg #FED3CD):
 *   Top row      pad-top ~34
 *     Download   56px circle #14172D + text Söhne 400 19/22 #14172D   left @(-1246)
 *     Kontakt    Alpina 250  64/70  #14172D                           right @(43)
 *     Phone      Alpina 250  64/70  #14172D
 *   Line         1851 × 2  #14172D  @(-1276, y)
 *   Nav grid     Logo 207×107 left + 6 columns
 *     Headings   Söhne 400  19/22  #14172D
 *     Links      Söhne 400  14/25  #14172D
 *   Bottom       "Sonnenallee 228"  Alpina 250  203/125  #14172D
 */

.estrel-contact {
    container-type: inline-size;
    width: 100%;
    max-width: none !important;
    background: #FED3CD !important;
    padding: 0 !important;
}

body.sunrise .estrel-contact {
    background: #FED3CD !important;
}

.estrel-contact__inner {
    --u: calc(100cqw / 1920);
    max-width: 1920px;
    margin: 0 auto;
    padding: calc(34 * var(--u)) calc(160 * var(--u)) calc(61 * var(--u));
}


/* ============================
   TOP: Download left, Kontakt+Phone right
   ============================ */

.estrel-contact__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: calc(36 * var(--u));
}

/* Download: circle icon + text */
.estrel-contact__download {
    display: flex;
    align-items: center;
    gap: calc(22 * var(--u));
}

.estrel-contact__download-btn {
    width: calc(56 * var(--u));
    height: calc(56 * var(--u));
    border-radius: 50%;
    background: #14172D;
    color: #FED3CD;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
}

.estrel-contact__download-btn:hover {
    opacity: 0.85;
}

.estrel-contact__download-btn svg {
    width: calc(24 * var(--u));
    height: calc(24 * var(--u));
}

.estrel-contact__download-text {
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: calc(19 * var(--u));
    line-height: calc(22 * var(--u));
    letter-spacing: 0;
    color: #14172D;
}

/* Phone: "Kontakt" label + large number */
.estrel-contact__phone-block {
    text-align: right;
}

.estrel-contact__label {
    display: block;
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: calc(64 * var(--u));
    line-height: calc(70 * var(--u));
    letter-spacing: 0;
    color: #14172D;
}

.estrel-contact__phone {
    display: block;
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: calc(64 * var(--u));
    line-height: calc(70 * var(--u));
    letter-spacing: 0;
    color: #14172D;
    text-decoration: none;
}

.estrel-contact__phone:hover {
    text-decoration: underline;
}


/* ============================
   DIVIDER LINE
   ============================ */

.estrel-contact__divider {
    width: 100%;
    height: calc(2 * var(--u));
    background: #14172D;
    margin-bottom: calc(71 * var(--u));
}


/* ============================
   NAV GRID: Logo + columns
   ============================ */

.estrel-contact__nav {
    display: flex;
    gap: calc(48 * var(--u));
    margin-bottom: calc(195 * var(--u));
    /* Figma Node 75:18 "Middle" group endet 347u vom Section-Rand entfernt
       (Section 1980, Middle 1567 mit 66u left + 347u right margins). Inner
       hat 160u right-padding → +187u zusaetzliches padding-right auf nav,
       damit die Spalten an Figma-Position enden statt flush zum Inner. */
    padding-right: calc(187 * var(--u));
}

/* Brand: logo + TOWER */
.estrel-contact__brand {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(4 * var(--u));
}

.estrel-contact__logo-mark {
    display: block;
    width: calc(207 * var(--u));
    height: calc(70 * var(--u));
    -webkit-mask: url('/theme/estrel/img/logo.svg') no-repeat left center / contain;
    mask: url('/theme/estrel/img/logo.svg') no-repeat left center / contain;
    background-color: #14172D;
}

.estrel-contact__logo-sub {
    font-family: var(--font-soehne);
    font-size: calc(11 * var(--u));
    letter-spacing: 0.45em;
    color: #14172D;
    padding-left: calc(2 * var(--u));
}

/* Link columns — Figma Node 75:18 zeigt alle Columns flush right.
   Logo links, Spalten drueckt's nach rechts via justify-content: flex-end. */
.estrel-contact__columns {
    display: flex;
    gap: calc(52 * var(--u));
    flex: 1;
    justify-content: flex-end;
}

.estrel-contact__col {
    min-width: 0;
}

.estrel-contact__heading {
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: calc(19 * var(--u));
    line-height: calc(22 * var(--u));
    letter-spacing: 0;
    margin: 0 0 calc(12 * var(--u));
    color: #14172D;
}

.estrel-contact__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.estrel-contact__links li {
    margin-bottom: calc(8 * var(--u));
}

.estrel-contact__links a {
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: calc(14 * var(--u));
    line-height: calc(25 * var(--u));
    letter-spacing: 0;
    color: #14172D;
    text-decoration: none;
    transition: opacity 0.3s;
}

.estrel-contact__links a:hover {
    text-decoration: underline;
}


/* ============================
   DISPLAY TEXT: "SONNENALLEE 228"
   ============================ */

.estrel-contact__display {
    /* Break out of parent's 160u horizontal padding so the 1844u-wide
       text is centered within the full 1920u section, not the 1600u
       inner content area. Figma: 68u margin each side at 1920 viewport. */
    margin-left: calc(-160 * var(--u));
    margin-right: calc(-160 * var(--u));
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: calc(203 * var(--u));
    line-height: calc(125 * var(--u));
    letter-spacing: 0;
    color: #14172D;
    white-space: nowrap;
    text-align: center;
}


/* ============================
   RESPONSIVE — Tablet (<1024)
   ============================ */

@media (max-width: 1024px) {
    .estrel-contact__inner {
        padding: 40px var(--container-padding);
    }

    .estrel-contact__label {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .estrel-contact__phone {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .estrel-contact__download-btn {
        width: 48px;
        height: 48px;
    }

    .estrel-contact__download-btn svg {
        width: 20px;
        height: 20px;
    }

    .estrel-contact__download-text {
        font-size: 1rem;
        line-height: 1.3;
    }

    .estrel-contact__divider {
        height: 2px;
        margin-bottom: 32px;
    }

    .estrel-contact__nav {
        flex-wrap: wrap;
        gap: 32px;
    }

    .estrel-contact__logo-mark {
        width: 140px;
        height: 48px;
    }

    .estrel-contact__logo-sub {
        font-size: 0.6rem;
    }

    .estrel-contact__columns {
        flex-wrap: wrap;
        gap: 24px 40px;
    }

    .estrel-contact__heading {
        font-size: 1rem;
        line-height: 1.3;
    }

    .estrel-contact__links a {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .estrel-contact__display {
        font-size: clamp(4rem, 10vw, 10rem);
        line-height: 0.85;
        overflow: visible;
    }
}


/* ============================
   RESPONSIVE — Mobile (<768)
   ============================ */

@media (max-width: 767px) {
    .estrel-contact__inner {
        padding: 32px 20px;
    }

    .estrel-contact__top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

    .estrel-contact__phone-block {
        text-align: left;
    }

    .estrel-contact__label {
        font-size: 2rem;
        line-height: 1.1;
    }

    .estrel-contact__phone {
        font-size: 2rem;
        line-height: 1.1;
    }

    .estrel-contact__nav {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }

    .estrel-contact__columns {
        flex-wrap: wrap;
        gap: 20px 32px;
    }

    .estrel-contact__col {
        min-width: calc(50% - 16px);
    }

    .estrel-contact__display {
        font-size: clamp(2.5rem, 11vw, 5rem);
        line-height: 0.85;
        white-space: normal;
        overflow: visible;
        text-align: center;
    }
}
