@charset "UTF-8";
/*
 * Estrel Tower — Typography
 * Soehne (sans-serif) + GT Alpina (serif italic)
 */

/* ============================
   BASE
   ============================ */

body {
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    font-synthesis: none;
}


/* ============================
   HEADINGS
   ============================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-soehne);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}


/* ============================
   SECTION TITLES
   Pattern: Line 1 = Soehne Bold, Line 2 = GT Alpina Italic
   ============================ */

.estrel-section-title {
    margin-bottom: 2rem;
}

.estrel-section-title__main {
    display: block;
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.estrel-section-title__sub {
    display: block;
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: clamp(1.5rem, 3.5vw, 3.5rem);
    line-height: 1.2;
    color: var(--text-primary);
}


/* ============================
   BODY TEXT
   ============================ */

p {
    margin: 0 0 1em;
    color: var(--text-secondary);
}

.text-large {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    line-height: 1.7;
}


/* ============================
   STATS / DISPLAY NUMBERS
   ============================ */

.estrel-stat-number {
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: clamp(3rem, 6vw, 6.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.estrel-stat-label {
    font-family: var(--font-soehne);
    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}


/* ============================
   FOOTER DISPLAY TEXT
   ============================ */

.estrel-display-text {
    font-family: var(--font-alpina);
    font-weight: 250;
    font-style: italic;
    font-size: clamp(2.5rem, 10.5vw, 12.6875rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}


/* ============================
   UTILITY CLASSES
   ============================ */

.font-soehne-bold {
    font-family: var(--font-soehne);
    font-weight: 700;
}

.font-alpina-italic {
    font-family: var(--font-alpina);
    font-weight: 300;
    font-style: italic;
}


/* ============================
   LINKS
   ============================ */

a {
    color: var(--text-accent);
    text-decoration: none;
    transition: text-decoration var(--hover-transition);
}

a:hover {
    text-decoration: underline;
}

/* Links inside checkbox/radio labels (e.g. Datenschutz-Consent) sollen
   sich in den Fließtext einfügen statt im Akzent-Pink zu leuchten. */
.checkbox_container label a,
.radio_container label a {
    color: var(--color-deep-sea, #14172D);
    text-decoration: underline;
}
