/* ==========================================================================
   TheColdCoffee – Landingpage Styles (v2)
   Mobile-first, namespaced with .tcc- prefix
   ========================================================================== */

/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
    font-family: 'Kross Neue Grotesk';
    src: url('../fonts/KrossNeueGrotesk-Light.woff2') format('woff2'),
         url('../fonts/KrossNeueGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kross Neue Grotesk';
    src: url('../fonts/KrossNeueGrotesk-Book.woff2') format('woff2'),
         url('../fonts/KrossNeueGrotesk-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kross Neue Grotesk';
    src: url('../fonts/KrossNeueGrotesk-BookItalic.woff2') format('woff2'),
         url('../fonts/KrossNeueGrotesk-BookItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Kross Neue Grotesk';
    src: url('../fonts/KrossNeueGrotesk-Regular.woff2') format('woff2'),
         url('../fonts/KrossNeueGrotesk-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kross Neue Grotesk';
    src: url('../fonts/KrossNeueGrotesk-Bold.woff2') format('woff2'),
         url('../fonts/KrossNeueGrotesk-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fabinache';
    src: url('../fonts/Fabinache-Regular.woff2') format('woff2'),
         url('../fonts/Fabinache-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

.tcc-landing-body {
    background: #F5F3F4;
}

.tcc-landing {
    --tcc-bg:           #F5F3F4;
    --tcc-button:       #BDA7AA;
    --tcc-button-hover: #a78f93;
    --tcc-border:       #000000;
    --tcc-text:         #1a1a1a;
    --tcc-text-soft:    #2a2a2a;

    --tcc-testi-1:      rgba(239, 235, 235, 1);
    --tcc-testi-2:      rgba(232, 227, 227, 1);
    --tcc-testi-3:      rgba(225, 219, 219, 1);

    --tcc-font-heading: 'freight-big-pro', 'Freight Big Pro', Georgia, serif;
    --tcc-font-body:    'Kross Neue Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --tcc-font-script:  'Fabinache', cursive;

    --tcc-container-max: 380px;
}

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

.tcc-landing {
    font-family: var(--tcc-font-body);
    font-weight: 400;
    color: var(--tcc-text);
    line-height: 1.55;
    background: var(--tcc-bg);
    overflow-x: hidden;
    font-size: 14px;
}

.tcc-landing * {
    box-sizing: border-box;
}

.tcc-landing img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tcc-container {
    max-width: var(--tcc-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tcc-section {
    padding: 2.5rem 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.tcc-heading {
    font-family: var(--tcc-font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.15;
    text-align: center;
    margin: 0 0 1.25rem;
    color: var(--tcc-text);
    letter-spacing: -0.01em;
}

.tcc-text {
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0 0 0.85rem;
    color: var(--tcc-text);
    font-weight: 400;
}

.tcc-text--center {
    text-align: center;
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.tcc-button {
    display: inline-block;
    background: var(--tcc-button);
    color: #fff;
    text-decoration: none;
    font-family: var(--tcc-font-body);
    font-weight: 400;
    font-size: 0.85rem;
    padding: 0.7rem 1.75rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.tcc-button:hover,
.tcc-button:focus {
    background: var(--tcc-button-hover);
    color: #fff;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.tcc-cta {
    text-align: center;
    margin: 1.75rem 0 0.5rem;
}

.tcc-cta-info {
    text-align: center;
    margin: 1.25rem 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.tcc-cta-info p {
    margin: 0.15rem 0;
}

.tcc-cta--with-arrow {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.tcc-cta--with-arrow .tcc-button {
    position: relative;
    z-index: 1;
}

.tcc-cta__arrow {
    position: absolute;
    top: -28px;
    left: -8px;
    width: 40px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* ==========================================================================
   HERO
   Bild vollbreit, weiße Karte sitzt oben links überlappend
   ========================================================================== */

.tcc-hero {
    padding: 1.5rem 0 1rem;
}

.tcc-hero__inner {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tcc-hero__image {
    width: 100%;
    display: block;
}

.tcc-hero__card {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    width: 60%;
    max-width: 220px;
    background: #fff;
    padding: 1rem 0.85rem;
    z-index: 2;
    text-align: center;
}

.tcc-hero__title {
    font-family: var(--tcc-font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    color: var(--tcc-text);
    letter-spacing: -0.01em;
    text-align: center;
}

.tcc-hero__text {
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0;
    color: var(--tcc-text);
    text-align: center;
}

/* ==========================================================================
   POINTS (1, 2, 3)
   ========================================================================== */

.tcc-points {
    border: 1px solid var(--tcc-border);
    padding: 1.25rem 1rem;
    margin: 1.75rem 0;
    background: transparent;
}

.tcc-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
}

.tcc-point + .tcc-point {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.tcc-point__number {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid var(--tcc-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tcc-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 1px;
}

.tcc-point__content {
    flex: 1;
}

.tcc-point__title {
    font-family: var(--tcc-font-body);
    font-weight: 700;
    font-size: 0.78rem;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.tcc-point__content p {
    font-size: 0.72rem;
    line-height: 1.45;
    margin: 0;
    color: var(--tcc-text);
}

/* ==========================================================================
   IMAGE SECTION (Wir sind keine Life Coaches / Ganz wichtig)
   Bild vollbreit, Karte sitzt oben links überlappend - texte zentriert
   ========================================================================== */

.tcc-image-section {
    position: relative;
    margin: 2rem auto;
    padding: 0 1.5rem;
    max-width: 380px;
}

.tcc-image-section__image {
    width: 100%;
    display: block;
}

.tcc-image-section__card {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    width: 60%;
    max-width: 240px;
    background: #fff;
    padding: 1rem 0.9rem;
    z-index: 2;
    text-align: center;
}

.tcc-image-section__title {
    font-family: var(--tcc-font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    color: var(--tcc-text);
    letter-spacing: -0.01em;
    text-align: center;
}

.tcc-image-section__text {
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0 0 0.45rem;
    text-align: center;
}

.tcc-image-section__text:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   COMPARE (Happy / Sad)
   Zwei separate Boxen mit dünnem Rahmen, Icons innerhalb oben mittig
   Titel über jeweiliger Box
   ========================================================================== */

.tcc-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.75rem 0;
}

.tcc-compare__col {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.tcc-compare__title {
    font-family: var(--tcc-font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0 0 0.85rem;
    text-align: center;
    min-height: 2.5em;
}

.tcc-compare__box {
    border: 1px solid var(--tcc-border);
    padding: 1rem 0.6rem;
    flex: 1;
}

.tcc-compare__icon {
    width: 28px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.tcc-compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.tcc-compare__list li {
    font-size: 0.72rem;
    line-height: 1.4;
    padding: 0.5rem 0;
    text-align: center;
}

/* ==========================================================================
   TESTIMONIALS
   Foto mit Arch-Shape (oben rund) zentriert oben, leicht überlappend
   Box hat dünnen Rahmen, Signatur rechts unten in Script-Font
   ========================================================================== */

.tcc-testimonial {
    border: 1px solid var(--tcc-border);
    padding: 0 1.25rem 1.25rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    text-align: center;
}

.tcc-testimonial--1 { background: var(--tcc-testi-1); }
.tcc-testimonial--2 { background: var(--tcc-testi-2); }
.tcc-testimonial--3 { background: var(--tcc-testi-3); }

.tcc-testimonial__photo {
    width: 90px;
    height: 110px;
    margin: -2.25rem auto 1rem;
    overflow: hidden;
    /* Arch-Shape: oben halbrund, unten gerade */
    border-radius: 90px 90px 0 0;
    background: #fff;
}

.tcc-testimonial__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tcc-testimonial__quote {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--tcc-text);
    text-align: center;
}

.tcc-testimonial__quote p {
    margin: 0 0 0.85rem;
}

.tcc-testimonial__quote p:last-of-type {
    margin-bottom: 0;
}

.tcc-testimonial__signature {
    font-family: var(--tcc-font-script);
    font-size: 1.6rem;
    text-align: right;
    margin: 1rem 0 0;
    color: var(--tcc-text);
    line-height: 1;
}

/* ==========================================================================
   WORKBOOK LIST
   ========================================================================== */

.tcc-workbook-list {
    border: 1px solid var(--tcc-border);
    padding: 1.25rem 1rem;
    margin: 1.75rem 0;
    background: transparent;
    text-align: center;
}

.tcc-workbook-list__heading {
    font-family: var(--tcc-font-body);
    font-weight: 400;
    font-style: italic;
    font-size: 0.82rem;
    margin: 0.85rem 0 0.2rem;
    color: var(--tcc-text);
    line-height: 1.3;
}

.tcc-workbook-list__heading:first-child {
    margin-top: 0;
}

.tcc-workbook-list p {
    font-size: 0.72rem;
    margin: 0 0 0.3rem;
    color: var(--tcc-text);
    line-height: 1.4;
}

/* ==========================================================================
   PRICE BLOCK
   ========================================================================== */

.tcc-price-block {
    text-align: center;
    margin: 2rem 0 0.5rem;
}

.tcc-price {
    font-family: var(--tcc-font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    margin: 0 0 1.25rem;
    color: var(--tcc-text);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.tcc-price__suffix {
    display: block;
    font-size: 0.55rem;
    font-family: var(--tcc-font-body);
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
    color: var(--tcc-text);
    text-align: right;
}

/* ==========================================================================
   RESPONSIVE – TABLET (ab 600px)
   ========================================================================== */

@media (min-width: 600px) {
    .tcc-landing {
        --tcc-container-max: 540px;
        font-size: 15px;
    }

    .tcc-section {
        padding: 3.5rem 0;
    }

    .tcc-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tcc-hero {
        padding: 2.5rem 0 3rem;
    }

    .tcc-hero__inner {
        max-width: 540px;
    }

    .tcc-hero__card {
        top: 2rem;
        left: 1.5rem;
        width: 50%;
        max-width: 260px;
        padding: 1.25rem 1.25rem;
    }

    .tcc-hero__title {
        font-size: 1.4rem;
    }

    .tcc-hero__text {
        font-size: 0.8rem;
    }

    .tcc-image-section__card {
        max-width: 320px;
        padding: 1.25rem 1.5rem;
    }

    .tcc-image-section__title {
        font-size: 1.4rem;
    }

    .tcc-image-section__text {
        font-size: 0.8rem;
    }

    .tcc-points {
        padding: 1.5rem 1.25rem;
    }

    .tcc-point__title {
        font-size: 0.85rem;
    }

    .tcc-point__content p {
        font-size: 0.78rem;
    }

    .tcc-compare__title {
        font-size: 1.1rem;
    }

    .tcc-testimonial {
        padding: 1.5rem 1.75rem 2rem;
    }

    .tcc-testimonial__photo {
        width: 100px;
        margin-top: -3rem;
    }

    .tcc-testimonial__quote {
        font-size: 0.85rem;
    }

    .tcc-testimonial__signature {
        font-size: 1.75rem;
    }

    .tcc-workbook-list__heading {
        font-size: 0.9rem;
    }

    .tcc-workbook-list p {
        font-size: 0.78rem;
    }

    .tcc-price {
        font-size: 3.25rem;
    }
}

/* ==========================================================================
   RESPONSIVE – DESKTOP (ab 900px)
   ========================================================================== */

@media (min-width: 900px) {
    .tcc-landing {
        --tcc-container-max: 720px;
        font-size: 16px;
    }

    .tcc-section {
        padding: 5rem 0;
    }

    .tcc-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .tcc-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .tcc-hero {
        padding: 4rem 0 4rem;
    }

    .tcc-hero__inner {
        max-width: 720px;
        padding: 0 2rem;
    }

    .tcc-hero__image {
        width: 70%;
    }

    .tcc-hero__card {
        top: 3rem;
        left: 2rem;
        width: 45%;
        max-width: 320px;
        padding: 1.75rem 1.75rem;
    }

    .tcc-hero__title {
        font-size: 1.75rem;
    }

    .tcc-hero__text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .tcc-image-section {
        margin: 3rem 0;
    }

    .tcc-image-section__card {
        max-width: 380px;
        padding: 1.75rem 2rem;
    }

    .tcc-image-section__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .tcc-image-section__text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .tcc-points {
        padding: 2rem 1.75rem;
    }

    .tcc-point {
        gap: 1.25rem;
        padding: 1rem 0;
    }

    .tcc-point__number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .tcc-point__title {
        font-size: 1rem;
    }

    .tcc-point__content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .tcc-compare__col {
        padding: 1.5rem 1.25rem;
    }

    .tcc-compare__title {
        font-size: 1.3rem;
    }

    .tcc-compare__icon {
        width: 36px;
        margin-bottom: 1rem;
    }

    .tcc-compare__list li {
        font-size: 0.85rem;
        padding: 0.55rem 0;
    }

    .tcc-testimonial {
        padding: 2rem 2.5rem 2.5rem;
        margin-bottom: 2rem;
    }

    .tcc-testimonial__photo {
        width: 130px;
        margin-top: -3.5rem;
        margin-bottom: 1.25rem;
    }

    .tcc-testimonial__quote {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .tcc-testimonial__quote p {
        margin-bottom: 0.85rem;
    }

    .tcc-testimonial__signature {
        font-size: 2.25rem;
        margin-top: 1rem;
    }

    .tcc-workbook-list {
        padding: 2rem 1.75rem;
    }

    .tcc-workbook-list__heading {
        font-size: 1.05rem;
        margin-top: 1.25rem;
    }

    .tcc-workbook-list p {
        font-size: 0.9rem;
    }

    .tcc-price {
        font-size: 4rem;
    }

    .tcc-price__suffix {
        font-size: 0.65rem;
    }

    .tcc-cta__arrow {
        width: 70px;
    }

    .tcc-button {
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
    }
}

/* ==========================================================================
   RESPONSIVE – LARGE DESKTOP (ab 1200px)
   ========================================================================== */

@media (min-width: 1200px) {
    .tcc-landing {
        --tcc-container-max: 820px;
    }

    .tcc-hero__inner {
        max-width: 820px;
    }
}