:root {
    --toh-green: #1b2a0e;
    --toh-green-dark: #0b3f35;
    --toh-coral: #ff6846;
    --toh-coral-soft: #ff896f;
    --toh-pink: #f58faf;
    --toh-pink-soft: #f4c9d6;
    --toh-cream: #fff8ea;
    --toh-cream-soft: #fbf0df;
    --toh-blue: #2585cf;
    --toh-wine: #5c2e32;
    --toh-text: #173f36;
    --toh-muted: #5d756f;
    --toh-line: rgba(92, 46, 50, 0.26);
    --toh-shadow: 0 22px 60px rgba(49, 35, 30, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--toh-text);
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.24), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
}

img,
video {
    max-width: 100%;
}

a {
    color: inherit;
}

::selection {
    background: var(--toh-coral);
    color: #fff;
}

/* HEADER */

.toh-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(255, 248, 234, 0.42);
    background: rgba(18, 42, 35, 0.12);
    backdrop-filter: blur(10px);
}

.toh-header-inner {
    width: min(1380px, calc(100% - 48px));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toh-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 0.92;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.toh-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.toh-logo small {
    font-size: 13px;
    letter-spacing: 2.8px;
}

.toh-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.toh-nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.toh-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.22s ease;
}

.toh-nav a:hover::after {
    width: 100%;
}

.toh-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 248, 234, 0.52);
    background: rgba(255, 248, 234, 0.10);
    border-radius: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.toh-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* HERO */

.toh-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--toh-green);
}

.toh-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: none;
}

.toh-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
}

.toh-hero-content {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100% - 42px));
    margin: 0 auto;
    padding-top: 76px;
    text-align: center;
    color: var(--toh-cream);
}

.toh-hero-kicker {
    margin: 0 0 20px;
    color: rgba(255, 248, 234, 0.88);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.toh-hero h1 {
    margin: 0 auto;
    max-width: 820px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--toh-cream);
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.toh-hero-subline {
    margin: 26px auto 0;
    max-width: 620px;
    color: rgba(255, 248, 234, 0.88);
    font-size: 18px;
    line-height: 1.7;
}

.toh-hero-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.toh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: 0.22s ease;
}

.toh-btn-green {
    background: var(--toh-green);
    color: #fff;
    border-color: var(--toh-green);
}

.toh-btn-green:hover {
    background: var(--toh-green-dark);
}

.toh-btn-light {
    background: rgba(255, 248, 234, 0.88);
    color: var(--toh-green);
    border-color: rgba(92, 46, 50, 0.35);
}

.toh-btn-light:hover {
    background: #fff;
    transform: translateY(-1px);
}

.toh-btn-coral {
    background: var(--toh-coral);
    color: #fff;
    border-color: var(--toh-coral);
}

.toh-btn-coral:hover {
    background: #e95737;
}

/* GLOBAL TEXT */

.toh-eyebrow {
     
    color: var(--toh-coral);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--toh-green);
}

p {
    line-height: 1.75;
}

/* EDITORIAL INTRO */

.toh-editorial-intro {
	 
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.55fr;
    border-top: 1px solid var(--toh-line);
    border-bottom: 1px solid var(--toh-line);
    background: var(--toh-cream);
}

.toh-intro-card {
     
     height: 580px;
    border-right: 1px solid var(--toh-line);
    overflow: hidden;
}

.toh-intro-card:last-child {
    border-right: 0;
}

 

.toh-intro-image img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    filter: sepia(0.08) saturate(0.95);
}

.toh-intro-text {
    padding: 58px 54px;
}

.toh-intro-text h2 {
    margin: 0 0 24px;
    max-width: 700px;
    font-size: 38px;
    line-height: 1.04;
}

.toh-intro-text p {
    max-width: 430px;
    margin: 0 0 18px;
     
}

.toh-intro-abstract img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
}

 

/* COLLAGE */
.toh-collage {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr 1.45fr;
    grid-template-rows: 850px 850px;
    height: 1700px;
    border-bottom: 1px solid var(--toh-line);
    background: var(--toh-cream);
}

.toh-collage-panel {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--toh-line);
    border-bottom: 1px solid var(--toh-line);
}

.toh-collage-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.06) saturate(1.02);
}
/* #97 Collage: jede Fläche sauber auf 850px */
.toh-collage-panel {
    min-height: 850px;
}

.toh-collage-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.toh-collage-text {
    padding: 22px 52px;
    background: rgba(255, 248, 234, 0.92);
}

.toh-collage-text h2,
.toh-pink-note h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.08;
}

.toh-collage-photo-large {
    grid-column: span 2;
}

.toh-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 34px;
    color: #fff;
    background: rgba(15, 75, 63, 0.18);
}

.toh-photo-overlay p {
    margin: 0;
    max-width: 300px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.toh-overlay-circles {
    margin: 22px 0;
    display: flex;
    gap: 18px;
}

.toh-overlay-circles span {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 234, 0.74);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    color: #fff;
}

.toh-pattern-panel {
    background:#ecb0c1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px;
}

.toh-pattern-box {
    width: min(360px, 100%);
    padding: 52px 42px;
    background: rgba(255, 248, 234, 0.92);
    text-align: center;
    box-shadow: var(--toh-shadow);
}

.toh-pattern-box h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.12;
}

.toh-pink-note {
    padding: 22px 46px;
    background:  #ecb0c1;
}

.toh-pink-note h2 {
    color: var(--toh-green);
}

.toh-small-photo {
    grid-column: span 1;
}

.toh-pillars-preview {
    grid-column: span 2;
    padding: 22px 48px;
    background: linear-gradient(135deg, #ead1ed, var(--toh-pink-soft));
    text-align: center;
}

.toh-mini-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 26px;
}

.toh-mini-pillars img {
    width: 112px;
    height: 112px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
}

.toh-mini-pillars h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.toh-mini-pillars p {
    margin: 0;
    line-height: 1.55;
    font-size: 14px;
}

/* OFFERS */

.toh-offers {
    padding: 78px min(6vw, 90px) 86px;
    background: var(--toh-cream);
    border-bottom: 1px solid var(--toh-line);
}

.toh-section-head {
    text-align: center;
    margin-bottom: 44px;
}

.toh-section-head h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.06;
}

.toh-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.toh-offer-card {
    background: rgba(255, 248, 234, 0.72);
    border: 1px solid var(--toh-line);
    box-shadow: 0 12px 32px rgba(49, 35, 30, 0.08);
}

.toh-offer-card img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
}

.toh-offer-card div {
    padding: 28px 26px 30px;
}

.toh-offer-card h3 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.08;
}

.toh-offer-card p {
    margin: 0 0 16px;
    color: var(--toh-text);
}

.toh-offer-card ul {
    margin: 0 0 20px;
    padding-left: 18px;
}

.toh-offer-card li {
    margin-bottom: 7px;
    line-height: 1.5;
}

.toh-card-link {
    display: inline-block;
    color: var(--toh-coral);
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.toh-card-link:hover {
    color: var(--toh-green);
}

/* ABOUT */

.toh-about {
	height:900px;
    display: grid;
    grid-template-columns: 1fr   1fr;
    background: var(--toh-cream);
    border-bottom: 1px solid var(--toh-line);
}

.toh-about > div {
    min-height: 800px;
    border-right: 1px solid var(--toh-line);
}

.toh-about > div:last-child {
    border-right: 0;
}

.toh-about-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
    filter: sepia(0.05) saturate(0.98);
}

.toh-about-text {
    padding: 64px 58px;
}

.toh-about-text h2 {
    margin: 0 0 22px;
    font-size: 48px;
}

.toh-about-text p {
    max-width: 520px;
}

.toh-about-quote {
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at bottom right, rgba(255, 104, 70, 0.28), transparent 32%),
        var(--toh-green);
    color: var(--toh-cream);
}

.toh-about-quote p {
    max-width: 380px;
    margin: 0 0 30px;
    text-align: center;
    color: var(--toh-cream);
    font-size: 20px;
    line-height: 1.7;
}

/* CTA */

.toh-final-cta {
    padding: 90px 24px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.36), transparent 36%),
        linear-gradient(135deg, var(--toh-cream), #fff);
}

.toh-final-cta h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
}

.toh-final-cta p {
    max-width: 620px;
    margin: 24px auto 30px;
     
}

/* FOOTER */

.toh-footer {
    background: var(--toh-green);
    color: rgba(255, 248, 234, 0.90);
}

.toh-footer-grid {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0;
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 38px;
}

.toh-footer .toh-logo {
    color: var(--toh-cream);
}

.toh-footer p {
    color: rgba(255, 248, 234, 0.76);
}

.toh-footer h3 {
    margin: 0 0 16px;
    color: var(--toh-cream);
    font-size: 18px;
}

.toh-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 248, 234, 0.80);
    text-decoration: none;
}

.toh-footer a:hover {
    color: #fff;
}

.toh-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.toh-footer-bottom {
    border-top: 1px solid rgba(255, 248, 234, 0.20);
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.toh-footer-bottom p {
    margin: 0;
}

.toh-footer-bottom a {
    display: inline;
    text-decoration: underline;
}

/* ANCHOR OFFSET */

#trinity,
#angebote,
#ueber-mich {
    scroll-margin-top: 90px;
}

/* MOBILE */

@media (max-width: 1100px) {
    .toh-nav {
        gap: 20px;
    }

    .toh-hero h1 {
        font-size: 48px;
    }

    .toh-editorial-intro {
        grid-template-columns: 1fr;
    }

    .toh-intro-card {
        border-right: 0;
        border-bottom: 1px solid var(--toh-line);
    }

    .toh-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .toh-collage-panel,
    .toh-collage-photo-large,
    .toh-pattern-panel,
    .toh-small-photo,
    .toh-pillars-preview {
        grid-column: span 1;
        min-height: 340px;
    }

    .toh-pillars-preview {
        grid-column: span 2;
    }

    .toh-offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .toh-about {
        grid-template-columns: 1fr;
    }

    .toh-about > div {
        border-right: 0;
        border-bottom: 1px solid var(--toh-line);
    }

    .toh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .toh-site-header {
        background: rgba(15, 75, 63, 0.86);
    }

    .toh-header-inner {
        width: calc(100% - 28px);
        height: 72px;
    }

    .toh-logo {
        font-size: 18px;
    }

    .toh-logo img {
        width: 42px;
        height: 42px;
    }

    .toh-menu-btn {
        display: flex;
    }

    .toh-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 24px 24px;
        background: rgba(15, 75, 63, 0.96);
        border-bottom: 1px solid rgba(255, 248, 234, 0.24);
    }

    .toh-nav.is-open {
        display: flex;
    }

    .toh-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 248, 234, 0.16);
    }

    .toh-hero {
        min-height: 88vh;
    }

    .toh-hero-content {
        width: calc(100% - 32px);
    }

    .toh-hero h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .toh-hero-subline {
        font-size: 16px;
    }

    .toh-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .toh-btn {
        width: min(320px, 100%);
    }

    .toh-intro-image,
    .toh-intro-text,
    .toh-collage-text,
    .toh-pink-note,
    .toh-pillars-preview,
    .toh-about-text,
    .toh-about-quote {
        padding: 34px 24px;
    }

    .toh-intro-text h2,
    .toh-collage-text h2,
    .toh-pattern-box h2,
    .toh-section-head h2,
    .toh-about-text h2,
    .toh-final-cta h2 {
        font-size: 34px;
    }

    .toh-collage {
        grid-template-columns: 1fr;
    }

    .toh-collage-panel,
    .toh-collage-photo-large,
    .toh-pattern-panel,
    .toh-small-photo,
    .toh-pillars-preview {
        grid-column: span 1;
    }

    .toh-overlay-circles {
        gap: 10px;
    }

    .toh-overlay-circles span {
        width: 76px;
        height: 76px;
        font-size: 13px;
    }

    .toh-mini-pillars {
        grid-template-columns: 1fr;
    }

    .toh-offers {
        padding: 54px 20px 62px;
    }

    .toh-offer-grid {
        grid-template-columns: 1fr;
    }

    .toh-about > div {
        min-height: auto;
    }

    .toh-about-image {
        height: 360px;
    }

    .toh-footer-grid {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        padding: 42px 0;
    }

    .toh-footer-bottom {
        width: calc(100% - 32px);
        flex-direction: column;
    }
}

/* =========================================================
   FINAL FIXES INDEX
========================================================= */

/* #84 Angebote: kompakt, gleiche Link-Höhe, keine unnötige Leere */
.toh-offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 248, 234, 0.72);
    border: 1px solid var(--toh-line);
    box-shadow: 0 12px 32px rgba(49, 35, 30, 0.08);
}

.toh-offer-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center 42%;
}

.toh-offer-card > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 28px 26px;
}

.toh-offer-card h3 {
    min-height: 58px;
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.08;
}

.toh-offer-card p {
    margin: 0 0 16px;
    color: var(--toh-text);
}

.toh-offer-card ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.toh-offer-card li {
    margin-bottom: 7px;
    line-height: 1.5;
}

.toh-offer-card .toh-card-link {
    margin-top: auto;
    padding-top: 14px;
    display: inline-block;
     
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.toh-offer-card .toh-card-link:hover {
    color: var(--toh-green);
}

/* #85 Über mich: rechte Bildfläche ohne grünen Filter */
.toh-about-photo {
    position: relative;
    height: 550px !important;
    max-height: 550px !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: var(--toh-green);
    overflow: hidden;
}

.toh-about-photo img {
    width: 100%;
    height: 550px !important;
    min-height: 0 !important;
    max-height: 550px !important;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
}

.toh-about-photo::after {
    display: none !important;
}

.toh-about-photo-overlay {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 42px;
    z-index: 2;
    color: var(--toh-cream);
}

.toh-about-photo-overlay p {
    max-width: 420px;
    margin: 0 0 26px;
    color: var(--toh-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.35;
}

.toh-about-photo-overlay .toh-btn-light {
    background: rgba(255, 248, 234, 0.92);
    color: var(--toh-green);
}

/* #86 Linkes Über-mich-Bild gleiche Höhe */
.toh-about-image {
    height: 550px;
}

.toh-about-image img {
    width: 100%;
    height: 550px !important;
    min-height: 0 !important;
    max-height: 550px !important;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
}

/* #87 Trinity Intro Desktop sauber */
.toh-intro-card {
    height: 580px;
    min-height: 0;
}

.toh-intro-image,
.toh-intro-abstract {
    padding: 0;
}

.toh-intro-image img,
.toh-intro-abstract img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    display: block;
    object-fit: cover;
    filter: none;
}

.toh-intro-image img {
    object-position: center center;
}

.toh-intro-abstract img {
    object-position: center center;
}

/* #88 Große Monitore: Intro begrenzen ohne leere Flächen */
@media (min-width: 1400px) {
    .toh-editorial-intro {
        width: min(1420px, calc(100% - 80px));
        margin: 0 auto;
        grid-template-columns: 1fr 1fr 1fr;
        border-left: 1px solid var(--toh-line);
        border-right: 1px solid var(--toh-line);
        background: var(--toh-cream);
    }

    .toh-intro-card {
        height: 520px;
        min-height: 0;
        max-height: 520px;
    }

    .toh-intro-text {
        padding: 70px 58px;
    }

    .toh-intro-image img,
    .toh-intro-abstract img {
        object-fit: cover;
        max-width: none;
        max-height: none;
    }
}

/* #89 Tablet */
@media (max-width: 1100px) {
    .toh-intro-card {
        height: auto;
        min-height: 420px;
    }

    .toh-intro-image,
    .toh-intro-abstract {
        height: 420px;
    }

    .toh-about-image,
    .toh-about-photo,
    .toh-about-image img,
    .toh-about-photo img {
        height: 460px !important;
        max-height: 460px !important;
    }
}

/* #90 Mobile */
@media (max-width: 760px) {
    .toh-offer-card img {
        height: 230px;
    }

    .toh-offer-card h3 {
        min-height: 0;
    }

    .toh-intro-card {
        min-height: auto;
        height: auto;
    }

    .toh-intro-image,
    .toh-intro-abstract {
        height: 360px;
    }

    .toh-intro-text {
        padding: 34px 24px;
    }

    .toh-about-image,
    .toh-about-photo,
    .toh-about-image img,
    .toh-about-photo img {
        height: 400px !important;
        max-height: 400px !important;
    }

    .toh-about-photo-overlay {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }

    .toh-about-photo-overlay p {
        font-size: 21px;
    }
}


/* #93 Trinity Intro groß: ohne leere Flächen */
@media (min-width: 1400px) {
    .toh-editorial-intro {
        width: min(1420px, calc(100% - 80px));
        margin: 0 auto;
        grid-template-columns: 1fr 1fr 1fr;
        border-left: 1px solid var(--toh-line);
        border-right: 1px solid var(--toh-line);
        background: var(--toh-cream);
    }

    .toh-intro-card {
        min-height: 520px;
        max-height: 520px;
    }

    .toh-intro-image,
    .toh-intro-abstract {
        padding: 0;
        background: transparent;
    }

    .toh-intro-image img,
    .toh-intro-abstract img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-width: none;
        max-height: none;
        border-radius: 0;
        object-fit: cover;
        display: block;
    }

    .toh-intro-image img {
        object-position: center center;
    }

    .toh-intro-abstract img {
        object-position: center center;
    }

    .toh-intro-text {
        padding: 70px 58px;
    }
}

/* #91 Über mich Laptop/Desktop: keine leeren Flächen unter Bildern */
.toh-about {
    align-items: stretch;
}

.toh-about > div {
    min-height: 0 !important;
}

.toh-about-image,
.toh-about-photo,
.toh-about-text {
    height: 520px !important;
}

.toh-about-image img,
.toh-about-photo img {
    width: 100%;
    height: 520px !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
    display: block;
}
/* #92 Über mich auf Laptop kompakter */
@media (max-width: 1400px) {
    .toh-about-image,
    .toh-about-photo,
    .toh-about-text {
        height: 460px !important;
    }

    .toh-about-image img,
    .toh-about-photo img {
        height: 460px !important;
    }

    .toh-about-text {
        padding: 46px 52px !important;
    }
}
/* #93 Über mich mobil */
@media (max-width: 760px) {
    .toh-about-image,
    .toh-about-photo,
    .toh-about-text {
        height: auto !important;
    }

    .toh-about-image,
    .toh-about-photo {
        height: 400px !important;
    }

    .toh-about-image img,
    .toh-about-photo img {
        height: 400px !important;
    }
}

/* =========================================================
   FAQ Bereich
========================================================= */

.toh-faq-section {
    padding: 84px min(6vw, 90px) 92px;
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.20), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
    border-bottom: 1px solid var(--toh-line);
}

.toh-faq-section .toh-section-head {
    margin-bottom: 22px;
}

.toh-faq-intro {
    width: min(760px, 100%);
    margin: 0 auto 44px;
    text-align: center;
    color: var(--toh-muted);
}

.toh-faq-intro p {
    margin: 0;
}

.toh-faq-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.toh-faq-card {
    padding: 32px 34px;
    background: rgba(255, 248, 234, 0.78);
    border: 1px solid var(--toh-line);
    box-shadow: 0 12px 32px rgba(49, 35, 30, 0.08);
}

.toh-faq-card h3 {
    margin: 0 0 14px;
    color: var(--toh-green);
    font-size: 24px;
    line-height: 1.15;
}

.toh-faq-card p {
    margin: 0;
    color: var(--toh-text);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .toh-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .toh-faq-section {
        padding: 58px 20px 64px;
    }

    .toh-faq-card {
        padding: 26px 24px;
    }

    .toh-faq-card h3 {
        font-size: 22px;
    }
}

/* =========================================================
   Yoga Bereich
========================================================= */

.toh-yoga-section {
    padding: 86px min(6vw, 90px) 92px;
    background:
        radial-gradient(circle at top right, rgba(255, 104, 70, 0.16), transparent 34%),
        linear-gradient(180deg, var(--toh-cream-soft), var(--toh-cream));
    border-bottom: 1px solid var(--toh-line);
}

.toh-yoga-grid {
    width: min(1240px, 100%);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 26px;
    align-items: stretch;
}

.toh-yoga-card {
    position: relative;
    padding: 38px 36px;
    background: rgba(255, 248, 234, 0.78);
    border: 1px solid var(--toh-line);
    box-shadow: 0 14px 36px rgba(49, 35, 30, 0.08);
}

.toh-yoga-card-large {
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.22), transparent 38%),
        rgba(255, 248, 234, 0.84);
}

.toh-yoga-card span {
    display: block;
    margin-bottom: 22px;
    color: var(--toh-coral);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.toh-yoga-card h3 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.08;
}

.toh-yoga-card p {
    margin: 0 0 16px;
    color: var(--toh-text);
    line-height: 1.75;
}

.toh-yoga-card p:last-child {
    margin-bottom: 0;
}

.toh-yoga-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.toh-yoga-card li {
    margin-bottom: 8px;
    color: var(--toh-text);
    line-height: 1.55;
}

.toh-yoga-action {
    margin-top: 38px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .toh-yoga-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .toh-yoga-section {
        padding: 58px 20px 64px;
    }

    .toh-yoga-grid {
        margin-top: 34px;
        gap: 20px;
    }

    .toh-yoga-card {
        padding: 28px 24px;
    }

    .toh-yoga-card h3 {
        font-size: 26px;
    }
}


/* #94 Editorial Intro volle Browserbreite + 900px Höhe */
.toh-editorial-intro {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 900px;
    min-height: 900px;
    max-height: 900px;

    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 1px solid var(--toh-line);
    border-bottom: 1px solid var(--toh-line);
    background: var(--toh-cream);
}

.toh-editorial-intro .toh-intro-card {
    height: 900px !important;
    min-height: 900px !important;
    max-height: 900px !important;
    overflow: hidden;
}

.toh-editorial-intro .toh-intro-image,
.toh-editorial-intro .toh-intro-abstract {
    padding: 0 !important;
}

.toh-editorial-intro .toh-intro-image img,
.toh-editorial-intro .toh-intro-abstract img {
    width: 100%;
    height: 100%;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
    border-radius: 0 !important;
    display: block;
}

.toh-editorial-intro .toh-intro-text {
    padding: 96px 70px;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.toh-editorial-intro .toh-intro-text h2 {
    font-size: 38px;
    line-height: 1.04;
}

/* #98 Collage Text bei 850px Höhe schöner zentrieren */
.toh-collage-text,
.toh-pink-note,
.toh-pillars-preview,
.toh-pattern-panel {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.toh-collage-text {
    padding: 70px 60px;
}

.toh-pink-note {
    padding: 70px 58px;
}

.toh-pillars-preview {
    padding: 70px 58px;
}

.toh-pattern-panel {
    padding: 70px;
}


/* #99 Collage Tablet/Mobile nicht 1700px erzwingen */
@media (max-width: 1100px) {
    .toh-collage {
        height: auto !important;
        grid-template-rows: auto !important;
    }

    .toh-collage-panel,
    .toh-collage-photo-large,
    .toh-pattern-panel,
    .toh-small-photo,
    .toh-pillars-preview {
        min-height: 520px !important;
    }

    .toh-collage-text,
    .toh-pink-note,
    .toh-pillars-preview,
    .toh-pattern-panel {
        padding: 52px 42px;
    }
}

@media (max-width: 760px) {
    .toh-collage-panel,
    .toh-collage-photo-large,
    .toh-pattern-panel,
    .toh-small-photo,
    .toh-pillars-preview {
        min-height: auto !important;
    }

    .toh-collage-photo-large,
    .toh-small-photo {
        height: 360px !important;
    }

    .toh-collage-text,
    .toh-pink-note,
    .toh-pillars-preview,
    .toh-pattern-panel {
        padding: 38px 24px;
    }
}
/* =========================================================
   #100 MOBILE FIX Editorial Intro
   Auf Handy nicht 3 Spalten, sondern sauber untereinander
========================================================= */

@media (max-width: 760px) {

    .toh-editorial-intro {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        overflow: hidden;
    }

    .toh-editorial-intro .toh-intro-card {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        grid-column: auto !important;
    }

    .toh-editorial-intro .toh-intro-image,
    .toh-editorial-intro .toh-intro-abstract {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }

    .toh-editorial-intro .toh-intro-image img,
    .toh-editorial-intro .toh-intro-abstract img {
        width: 100% !important;
        height: 420px !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .toh-editorial-intro .toh-intro-text {
        width: 100% !important;
        padding: 46px 26px !important;
        display: block !important;
        background: var(--toh-cream);
    }

    .toh-editorial-intro .toh-intro-text h2 {
        font-size: 36px !important;
        line-height: 1.08 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    .toh-editorial-intro .toh-intro-text p {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }
}

/* =========================================================
   #102 FIX NUR UNTEN: small-photo breiter + Pillar-Bilder größer
========================================================= */

@media (min-width: 1101px) {

    /* Nur unteres Bild breiter machen */
    .toh-small-photo {
        grid-column: span 2 !important;
    }

    /* Drei-Säulen-Bereich daneben lassen */
    .toh-pillars-preview {
        grid-column: span 2 !important;
    }

    /* Unteres Bild sauber füllen */
    .toh-small-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    /* Die drei kleinen runden Bilder ca. 2x größer */
    .toh-mini-pillars img {
        width: 190px !important;
        height: 190px !important;
        border-radius: 50%;
        object-fit: cover;
    }

    .toh-mini-pillars {
        gap: 72px !important;
        justify-content: center;
        align-items: flex-start;
    }

    .toh-mini-pillars h3 {
        margin-top: 22px;
        font-size: 32px !important;
    }

    .toh-mini-pillars p {
        font-size: 17px !important;
        line-height: 1.55;
    }
}

/* =========================================================
   #109 Drei Säulen ausführlich
========================================================= */

.toh-pillar-detail-grid {
    width: 100%;
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.toh-pillar-detail-card {
    padding: 0 0 28px;
    background: rgba(255, 248, 234, 0.78);
    border: 1px solid var(--toh-line);
    box-shadow: 0 12px 32px rgba(49, 35, 30, 0.08);
    overflow: hidden;
}

.toh-pillar-detail-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}

.toh-pillar-detail-card h3 {
    margin: 26px 26px 8px;
    font-size: 34px;
    line-height: 1.05;
    color: var(--toh-green);
}

.toh-pillar-detail-card h4 {
    margin: 0 26px 20px;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--toh-coral);
}

.toh-pillar-detail-card h5 {
    margin: 26px 26px 14px;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--toh-green);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.toh-pillar-detail-card p {
    margin: 0 26px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--toh-text);
}

.toh-pillar-detail-card ul {
    margin: 0 26px 18px;
    padding-left: 20px;
}

.toh-pillar-detail-card li {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--toh-text);
}

.toh-pillar-links {
    margin: 22px 26px 0;
    display: grid;
    gap: 10px;
}

.toh-pillar-links a {
    color: var(--toh-coral);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
    text-decoration: none;
}

.toh-pillar-links a::before {
    content: "→ ";
}

.toh-pillar-links a:hover {
    color: var(--toh-green);
}

/* Damit der Bereich mit langen Texten nicht gequetscht wird */
.toh-pillars-preview {
    overflow: visible !important;
}

/* Desktop: wenn Text lang ist, Section automatisch höher machen */
@media (min-width: 1101px) {
    .toh-collage {
        height: auto !important;
        min-height: 1700px !important;
        grid-template-rows: 850px auto !important;
    }

    .toh-pillars-preview {
        min-height: 850px !important;
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .toh-pillar-detail-grid {
        grid-template-columns: 1fr;
    }

    .toh-pillar-detail-card img {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .toh-pillar-detail-grid {
        margin-top: 28px;
        gap: 22px;
    }

    .toh-pillar-detail-card img {
        height: 240px;
    }

    .toh-pillar-detail-card h3 {
        font-size: 30px;
    }

    .toh-pillar-detail-card h3,
    .toh-pillar-detail-card h4,
    .toh-pillar-detail-card h5,
    .toh-pillar-detail-card p,
    .toh-pillar-detail-card ul,
    .toh-pillar-links {
        margin-left: 22px;
        margin-right: 22px;
    }
}

/* =========================================================
   Drei Säulen Detail Section
========================================================= */

.toh-pillars-detail-section {
    padding: 96px min(6vw, 90px);
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.18), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
    border-bottom: 1px solid var(--toh-line);
}

.toh-pillars-detail-list {
    width: min(1280px, 100%);
    margin: 54px auto 0;
    display: grid;
    gap: 42px;
}

.toh-pillar-wide-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 560px;
    background: rgba(255, 248, 234, 0.82);
    border: 1px solid var(--toh-line);
    box-shadow: 0 18px 46px rgba(49, 35, 30, 0.10);
    overflow: hidden;
}

.toh-pillar-wide-card-reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.toh-pillar-wide-card-reverse .toh-pillar-wide-image {
    order: 2;
}

.toh-pillar-wide-card-reverse .toh-pillar-wide-text {
    order: 1;
}

.toh-pillar-wide-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.toh-pillar-wide-text {
    padding: 64px 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toh-pillar-number {
    margin: 0 0 18px;
    color: var(--toh-coral);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.toh-pillar-wide-text h3 {
    margin: 0 0 10px;
    font-size: 54px;
    line-height: 1;
}

.toh-pillar-wide-text h4 {
    margin: 0 0 26px;
    color: var(--toh-coral);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
}

.toh-pillar-wide-text h5 {
    margin: 28px 0 14px;
    color: var(--toh-green);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.toh-pillar-wide-text p {
    margin: 0 0 16px;
    color: var(--toh-text);
    font-size: 16px;
    line-height: 1.75;
}

.toh-pillar-wide-text ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.toh-pillar-wide-text li {
    margin-bottom: 7px;
    color: var(--toh-text);
    line-height: 1.6;
}

.toh-pillar-link-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toh-pillar-link-row a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    background: rgba(255, 104, 70, 0.10);
    border: 1px solid rgba(255, 104, 70, 0.28);
    color: var(--toh-coral);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.toh-pillar-link-row a::before {
    content: "→";
    margin-right: 7px;
}

.toh-pillar-link-row a:hover {
    background: var(--toh-coral);
    color: #fff;
}

/* Tablet */
@media (max-width: 1100px) {
    .toh-pillar-wide-card,
    .toh-pillar-wide-card-reverse {
        grid-template-columns: 1fr;
    }

    .toh-pillar-wide-card-reverse .toh-pillar-wide-image,
    .toh-pillar-wide-card-reverse .toh-pillar-wide-text {
        order: initial;
    }

    .toh-pillar-wide-image img {
        height: 420px;
        min-height: 420px;
    }

    .toh-pillar-wide-text {
        padding: 54px 44px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .toh-pillars-detail-section {
        padding: 60px 20px;
    }

    .toh-pillars-detail-list {
        margin-top: 34px;
        gap: 30px;
    }

    .toh-pillar-wide-image img {
        height: 320px;
        min-height: 320px;
    }

    .toh-pillar-wide-text {
        padding: 36px 24px;
    }

    .toh-pillar-wide-text h3 {
        font-size: 38px;
    }

    .toh-pillar-wide-text h4 {
        font-size: 17px;
    }

    .toh-pillar-link-row {
        display: grid;
        gap: 10px;
    }

    .toh-pillar-link-row a {
        width: 100%;
        min-height: 44px;
    }
}

/* =========================================================
   COLLAGE FINAL: oben 3 Blöcke, unten 2 Blöcke
========================================================= */

@media (min-width: 1101px) {
    .toh-collage {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        grid-template-rows: 850px 850px !important;
        height: 1700px !important;
        background: var(--toh-cream);
        border-bottom: 1px solid var(--toh-line);
    }

    /* oben links */
    .toh-collage-text {
        grid-column: span 1 !important;
        grid-row: 1 !important;
    }

    /* oben mitte: Bild breit */
    .toh-collage-photo-large {
        grid-column: span 2 !important;
        grid-row: 1 !important;
    }

    /* oben rechts */
    .toh-pattern-panel {
        grid-column: span 1 !important;
        grid-row: 1 !important;
    }

    /* unten links: Textblock halb breit */
    .toh-pink-note {
        grid-column: span 2 !important;
        grid-row: 2 !important;
    }

    /* unten rechts: Foto halb breit */
    .toh-small-photo {
        grid-column: span 2 !important;
        grid-row: 2 !important;
    }

    .toh-collage-panel {
        min-height: 850px !important;
        overflow: hidden;
        border-right: 1px solid var(--toh-line);
        border-bottom: 1px solid var(--toh-line);
    }

    .toh-collage-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .toh-collage-text,
    .toh-pink-note,
    .toh-pattern-panel {
        display: flex !important;
        flex-direction: column;
        justify-content: start !important;
        padding: 80px 64px !important;
    }
}

/* =========================================================
   Trinity Overview Section
========================================================= */

.toh-trinity-overview {
    padding: 100px min(6vw, 90px);
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.22), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
    border-bottom: 1px solid var(--toh-line);
}

.toh-trinity-overview-intro {
    width: min(980px, 100%);
    margin: 0 auto 64px;
    text-align: center;
}

.toh-trinity-overview-intro h2 {
    margin: 0 auto 26px;
    max-width: 820px;
    font-size: 52px;
    line-height: 1.04;
}

.toh-trinity-overview-intro h3 {
    margin: 0 0 24px;
    font-family: "Quicksand", Arial, sans-serif;
    color: var(--toh-coral);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.toh-trinity-overview-intro p {
    max-width: 820px;
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.8;
}

.toh-overview-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.toh-trinity-overview-grid {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.toh-overview-card {
    padding: 40px 38px;
    background: rgba(255, 248, 234, 0.82);
    border: 1px solid var(--toh-line);
    box-shadow: 0 14px 36px rgba(49, 35, 30, 0.08);
}

.toh-overview-card-large {
    grid-column: span 2;
    background:
        radial-gradient(circle at top right, rgba(255, 104, 70, 0.13), transparent 32%),
        rgba(255, 248, 234, 0.88);
}

.toh-card-number {
    margin: 0 0 18px;
    color: var(--toh-coral);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.toh-overview-card h3 {
    margin: 0 0 22px;
    font-size: 34px;
    line-height: 1.08;
}

.toh-overview-card h4 {
    margin: 30px 0 14px;
    color: var(--toh-green);
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.toh-overview-card p {
    margin: 0 0 16px;
    color: var(--toh-text);
    font-size: 16px;
    line-height: 1.75;
}

.toh-overview-card blockquote {
    margin: 26px 0;
    padding: 24px 28px;
    color: var(--toh-green);
    background: rgba(245, 143, 175, 0.18);
    border-left: 4px solid var(--toh-coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.25;
}

.toh-text-links {
    margin-top: 26px;
    display: grid;
    gap: 11px;
}

.toh-text-links a {
    color: var(--toh-coral);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.4;
}

.toh-text-links a::before {
    content: "→ ";
}

.toh-text-links a:hover {
    color: var(--toh-green);
}

.toh-overview-quote {
    width: min(920px, 100%);
    margin: 72px auto 0;
    padding: 48px 44px;
    text-align: center;
    background: var(--toh-green);
    color: var(--toh-cream);
}

.toh-overview-quote p {
    margin: 0;
    color: var(--toh-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.25;
}

/* Tablet */
@media (max-width: 1100px) {
    .toh-trinity-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .toh-overview-card-large {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .toh-trinity-overview {
        padding: 62px 20px;
    }

    .toh-trinity-overview-intro {
        margin-bottom: 40px;
        text-align: left;
    }

    .toh-trinity-overview-intro h2 {
        font-size: 36px;
    }

    .toh-overview-actions {
        justify-content: flex-start;
    }

    .toh-trinity-overview-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .toh-overview-card,
    .toh-overview-card-large {
        grid-column: span 1;
        padding: 32px 24px;
    }

    .toh-overview-card h3 {
        font-size: 30px;
    }

    .toh-overview-card blockquote {
        font-size: 24px;
    }

    .toh-overview-quote {
        margin-top: 42px;
        padding: 36px 26px;
    }

    .toh-overview-quote p {
        font-size: 27px;
    }
}

/* =========================================================
   FINAL RESPONSIVE HEIGHT FIX
   Laptop kleiner, große Bildschirme 850px, Mobile unverändert
========================================================= */

/* Große Bildschirme ab 1600px */
@media (min-width: 1600px) {

    .toh-editorial-intro {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .toh-editorial-intro .toh-intro-card {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
    }

    .toh-collage {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        grid-template-rows: 850px 850px !important;
        height: 1700px !important;
        min-height: 1700px !important;
        max-height: 1700px !important;
    }

    .toh-collage-panel {
        min-height: 850px !important;
    }

    .toh-offers,
    .toh-about {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
    }

    .toh-about-image,
    .toh-about-text,
    .toh-about-image img {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
    }
}


/* Laptop / normale Desktop-Bildschirme 1101px bis 1599px */
@media (min-width: 1101px) and (max-width: 1599px) {

    .toh-editorial-intro {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        height: 720px !important;
        min-height: 720px !important;
        max-height: 720px !important;
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .toh-editorial-intro .toh-intro-card {
        height: 720px !important;
        min-height: 720px !important;
        max-height: 720px !important;
    }

    .toh-editorial-intro .toh-intro-text {
        padding: 76px 56px !important;
    }

    .toh-editorial-intro .toh-intro-text h2 {
        font-size: 42px !important;
    }

    .toh-collage {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
        grid-template-rows: 720px 720px !important;
        height: 1440px !important;
        min-height: 1440px !important;
        max-height: 1440px !important;
    }

    .toh-collage-panel {
        min-height: 720px !important;
    }

    .toh-collage-text,
    .toh-pink-note,
    .toh-pattern-panel {
        padding: 64px 52px !important;
    }

    .toh-offers {
        height: 720px !important;
        min-height: 720px !important;
        max-height: 720px !important;
        padding: 70px min(5vw, 70px) !important;
    }



    .toh-offer-card img {
        height: 220px !important;
    }

    .toh-about {
        height: 720px !important;
        min-height: 720px !important;
        max-height: 720px !important;
    }

    .toh-about-image,
    .toh-about-text,
    .toh-about-image img {
        height: 720px !important;
        min-height: 720px !important;
        max-height: 720px !important;
    }

    .toh-about-text {
        padding: 70px 58px !important;
    }
}

/* =========================================================
   TRINITY OVERVIEW volle Browserbreite
========================================================= */

.toh-trinity-overview {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    padding-left: min(6vw, 90px) !important;
    padding-right: min(6vw, 90px) !important;
}

.toh-trinity-overview-intro {
    width: min(1280px, 100%) !important;
    max-width: none !important;
}

.toh-trinity-overview-intro h2 {
    max-width: 1050px !important;
}

.toh-trinity-overview-intro p {
    max-width: 980px !important;
}

.toh-trinity-overview-grid {
    width: min(1480px, 100%) !important;
}

/* =========================================================
   #120 Trinity Overview Links als Buttons + gleiche Linie
========================================================= */

/* Karten als Flexbox, damit Links unten stehen */
.toh-overview-card {
    display: flex !important;
    flex-direction: column !important;
}

/* Textbereich darf wachsen */
.toh-overview-card p,
.toh-overview-card blockquote,
.toh-overview-card ul {
    flex-shrink: 0;
}

/* Linkbereich immer unten */
.toh-overview-card .toh-text-links {
    margin-top: auto !important;
    padding-top: 26px !important;

    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

/* Links wie Buttons */
.toh-overview-card .toh-text-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 46px !important;
    padding: 0 20px !important;

    background: var(--toh-coral) !important;
    color: #fff !important;

    border: 1px solid var(--toh-coral) !important;
    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;

    white-space: normal !important;
}

/* Pfeil sauber */
.toh-overview-card .toh-text-links a::before {
    content: "→";
    margin-right: 8px;
    color: #fff;
}

/* Hover */
.toh-overview-card .toh-text-links a:hover {
    background: var(--toh-green) !important;
    border-color: var(--toh-green) !important;
    color: #fff !important;
}

/* Große Omega-3 Karte: Buttons in einer Reihe */
.toh-overview-card-large .toh-text-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
}

/* Bei großen Karten Buttons nicht zu breit */
.toh-overview-card-large .toh-text-links a {
    width: auto !important;
}

/* Normale Karten: Button unten links */
.toh-overview-card:not(.toh-overview-card-large) .toh-text-links {
    justify-content: flex-start !important;
}


/* Angebotskarten */
.toh-offer-card {
    display: flex;
    flex-direction: column;
}

.toh-offer-card > div {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 30px 30px;
}

/* Text darf wachsen, damit der Button unten sitzt */
.toh-offer-card > div p {
    flex-grow: 1;
}

/* Link als Button */
.toh-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 48px;
    padding: 0 22px;
    margin-top: 24px;

    background: var(--toh-coral);
    color: #ffffff;
    border: 1px solid var(--toh-coral);
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.2;

    transition: all 0.25s ease;
}

/* Hover */
.toh-card-link:hover {
    background: var(--toh-green);
    border-color: var(--toh-green);
    color: #ffffff;
}

/* Pfeil weiß */
.toh-card-link::after {
    content: " →";
    color: #ffffff;
}

/* =========================================================
   #130 Angebote Laptop Fix
   Laptop: 2x2 Karten, große Bildschirme: 4 Karten
========================================================= */

/* Große Bildschirme: 4 Karten nebeneinander */
@media (min-width: 1600px) {
    .toh-offers {
        height: 850px !important;
        min-height: 850px !important;
        max-height: 850px !important;
        padding: 90px min(6vw, 90px) !important;
        overflow: hidden !important;
    }

    .toh-offer-grid {
        width: min(1380px, 100%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 28px !important;
    }

    .toh-offer-card {
        height: 560px !important;
        display: grid !important;
        grid-template-rows: 260px 300px !important;
        overflow: hidden !important;
    }

    .toh-offer-card img {
        height: 260px !important;
        object-fit: cover !important;
    }

    .toh-offer-card > div {
        height: 300px !important;
        padding: 28px 28px 26px !important;
        display: grid !important;
        grid-template-rows: 64px 1fr 48px !important;
    }
}

/* Laptop 15/17 Zoll: 2 Karten pro Reihe */
@media (min-width: 1101px) and (max-width: 1599px) {
    .toh-offers {
        height: auto !important;
        min-height: 720px !important;
        max-height: none !important;
        padding: 64px 56px 76px !important;
        overflow: visible !important;
    }

    .toh-offers .toh-section-head {
        margin-bottom: 34px !important;
    }

    .toh-offers .toh-section-head h2 {
        font-size: 42px !important;
    }

    .toh-offer-grid {
        width: min(980px, 100%) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 26px !important;
        align-items: stretch !important;
    }

    .toh-offer-card {
        height: 430px !important;
        min-height: 430px !important;
        max-height: 430px !important;
        display: grid !important;
        grid-template-rows: 180px 250px !important;
        overflow: hidden !important;
    }

    .toh-offer-card img {
        width: 100% !important;
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .toh-offer-card > div {
        height: 250px !important;
        padding: 24px 26px 24px !important;
        display: grid !important;
        grid-template-rows: 44px 1fr 44px !important;
    }

    .toh-offer-card h3 {
        margin: 0 !important;
        font-size: 25px !important;
        line-height: 1.08 !important;
        min-height: 0 !important;
    }

    .toh-offer-card p {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.58 !important;
        overflow: hidden !important;
    }

    .toh-card-link {
        align-self: end !important;
        justify-self: start !important;
        min-height: 42px !important;
        padding: 0 18px !important;
        margin: 0 !important;
        background: var(--toh-coral) !important;
        color: #fff !important;
        border: 1px solid var(--toh-coral) !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .toh-card-link:hover {
        background: var(--toh-green) !important;
        border-color: var(--toh-green) !important;
        color: #fff !important;
    }
}

/* =========================================================
   ANGEBOTE FINAL: 4 Karten über volle Browserbreite
========================================================= */

@media (min-width: 1101px) {

    .toh-offers {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;

        height: auto !important;
        min-height: 720px !important;
        max-height: none !important;

        padding: 72px 64px 86px !important;
        overflow: visible !important;
    }

    .toh-offer-grid {
        width: 100% !important;
        max-width: 1680px !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 32px !important;
        align-items: stretch !important;
    }

    .toh-offer-card {
        width: 100% !important;
        height: 620px !important;
        min-height: 620px !important;
        max-height: 620px !important;

        display: grid !important;
        grid-template-rows: 270px 350px !important;

        background: rgba(255, 248, 234, 0.72) !important;
        border: 1px solid var(--toh-line) !important;
        box-shadow: 0 12px 32px rgba(49, 35, 30, 0.08) !important;
        overflow: hidden !important;
    }

    .toh-offer-card img {
        width: 100% !important;
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .toh-offer-card > div {
        height: 350px !important;
        padding: 34px 34px 30px !important;

        display: grid !important;
        grid-template-rows: 72px 1fr 52px !important;
    }

    .toh-offer-card h3 {
        margin: 0 !important;
        font-size: 29px !important;
        line-height: 1.08 !important;
        min-height: 0 !important;
    }

    .toh-offer-card p {
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.7 !important;
        overflow: hidden !important;
    }

    .toh-card-link {
        align-self: end !important;
        justify-self: start !important;

        min-height: 48px !important;
        padding: 0 24px !important;
        margin: 0 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: var(--toh-coral) !important;
        color: #fff !important;
        border: 1px solid var(--toh-coral) !important;
        text-decoration: none !important;

        font-size: 13px !important;
        font-weight: 900 !important;
        letter-spacing: 0.4px !important;
        text-transform: uppercase !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .toh-card-link:hover {
        background: var(--toh-green) !important;
        border-color: var(--toh-green) !important;
        color: #fff !important;
    }
}

/* =========================================================
   ANGEBOTE RESPONSIVE FINAL
   Desktop groß = 4 Karten
   Laptop = 2x2
   Mobile = 1 Spalte
========================================================= */

/* Große Bildschirme: 4 Karten */
@media (min-width: 1500px) {
    .toh-offers {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        height: auto !important;
        min-height: 760px !important;
        padding: 76px 64px 86px !important;
        overflow: visible !important;
    }

    .toh-offer-grid {
        width: 100% !important;
        max-width: 1680px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .toh-offer-card {
        height: 590px !important;
        display: grid !important;
        grid-template-rows: 250px 340px !important;
        overflow: hidden !important;
    }

    .toh-offer-card img {
        height: 250px !important;
        object-fit: cover !important;
    }

    .toh-offer-card > div {
        height: 340px !important;
        padding: 30px 30px 28px !important;
        display: grid !important;
        grid-template-rows: 70px 1fr 48px !important;
    }

    .toh-offer-card h3 {
        font-size: 28px !important;
        line-height: 1.08 !important;
        margin: 0 !important;
        min-height: 0 !important;
    }

    .toh-offer-card p {
        font-size: 16px !important;
        line-height: 1.65 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}

/* Laptop 15/17 Zoll: 2x2 Karten */
@media (min-width: 901px) and (max-width: 1499px) {
    .toh-offers {
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        padding: 62px 54px 78px !important;
        overflow: visible !important;
    }

    .toh-offers .toh-section-head {
        margin-bottom: 36px !important;
    }

    .toh-offers .toh-section-head h2 {
        font-size: 42px !important;
        line-height: 1.05 !important;
    }

    .toh-offer-grid {
        width: 100% !important;
        max-width: 1050px !important;
        margin: 0 auto !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }

    .toh-offer-card {
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;

        display: grid !important;
        grid-template-rows: 210px 290px !important;

        overflow: hidden !important;
    }

    .toh-offer-card img {
        width: 100% !important;
        height: 210px !important;
        min-height: 210px !important;
        max-height: 210px !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .toh-offer-card > div {
        height: 290px !important;
        padding: 28px 32px 28px !important;

        display: grid !important;
        grid-template-rows: 58px 1fr 48px !important;
    }

    .toh-offer-card h3 {
        margin: 0 !important;
        font-size: 28px !important;
        line-height: 1.08 !important;
        min-height: 0 !important;
        white-space: normal !important;
        overflow: visible !important;
    }

    .toh-offer-card p {
        margin: 0 !important;
        font-size: 16px !important;
        line-height: 1.65 !important;
        overflow: visible !important;
    }

    .toh-card-link {
        align-self: end !important;
        justify-self: start !important;

        min-height: 46px !important;
        padding: 0 22px !important;
        margin: 0 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: var(--toh-coral) !important;
        color: #fff !important;
        border: 1px solid var(--toh-coral) !important;
        text-decoration: none !important;

        font-size: 13px !important;
        font-weight: 900 !important;
        letter-spacing: 0.4px !important;
        text-transform: uppercase !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }
}

/* Tablet / Mobile */
@media (max-width: 900px) {
    .toh-offers {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 58px 22px 68px !important;
        overflow: visible !important;
    }

    .toh-offer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .toh-offer-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: block !important;
    }

    .toh-offer-card img {
        height: 240px !important;
    }

    .toh-offer-card > div {
        height: auto !important;
        display: block !important;
        padding: 28px 24px 30px !important;
    }

    .toh-card-link {
        margin-top: 22px !important;
    }
}

/* =========================================================
   ANGEBOTE: Bilder Desktop/Laptop 400px hoch
   Mobile bleibt unverändert
========================================================= */

@media (min-width: 901px) {
    .toh-offer-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        display: grid !important;
        grid-template-rows: 400px auto !important;
        overflow: hidden !important;
    }

    .toh-offer-card img {
        width: 100% !important;
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;

        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .toh-offer-card > div {
        height: auto !important;
        min-height: 300px !important;
        max-height: none !important;

        padding: 34px 34px 30px !important;

        display: grid !important;
        grid-template-rows: auto 1fr 48px !important;
        gap: 22px !important;
    }

    .toh-offer-card h3 {
        margin: 0 !important;
        min-height: 0 !important;
    }

    .toh-offer-card p {
        margin: 0 !important;
        overflow: visible !important;
    }

    .toh-card-link {
        align-self: end !important;
        justify-self: start !important;
        margin: 0 !important;
    }
}

/* =========================================================
   COLLAGE RECHTER TEXTBLOCK FINAL
   Rechts gleiche Wirkung wie "Mein Ansatz"
========================================================= */

@media (min-width: 1101px) {

    .toh-pattern-panel {
        padding: 0 !important;
        background: rgba(255, 248, 234, 0.92) !important;
        display: block !important;
    }

    .toh-pattern-box {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;

        padding: 80px 64px !important;

        background: rgba(255, 248, 234, 0.92) !important;
        box-shadow: none !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;

        text-align: left !important;
    }

    .toh-pattern-box .toh-eyebrow {
        margin: 0 0 24px !important;
        text-align: left !important;
    }

    .toh-pattern-box h2 {
        margin: 0 0 32px !important;
        max-width: 420px !important;

        font-size: 32px !important;
        line-height: 1.05 !important;
        text-align: left !important;
    }

    .toh-pattern-box p {
        max-width: 430px !important;
        margin: 0 0 28px !important;

        
        font-size: 15px !important;
        line-height: 1.85 !important;
        text-align: left !important;
    }

    .toh-pattern-box p:last-child {
        margin-bottom: 0 !important;
    }
}

/* =========================================================
   TRINITY OVERVIEW HERO: Text links, Bild rechts
========================================================= */

.toh-trinity-overview {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    background:
        radial-gradient(circle at top left, rgba(245, 143, 175, 0.18), transparent 34%),
        linear-gradient(180deg, var(--toh-cream), var(--toh-cream-soft));
    border-bottom: 1px solid var(--toh-line);
}

.toh-trinity-overview-hero {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    border-bottom: 1px solid var(--toh-line);
}

.toh-trinity-overview-text {
    min-height: 600px;
    padding: 76px min(6vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toh-trinity-overview-text h2 {
    margin: 0 0 26px;
    max-width: 760px;
    font-size: 54px;
    line-height: 1.04;
    color: var(--toh-green);
}

.toh-trinity-overview-text h3 {
    margin: 0 0 24px;
    max-width: 720px;
    font-family: "Quicksand", Arial, sans-serif;
    color: var(--toh-coral);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    line-height: 1.35;
}

.toh-trinity-overview-text p {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--toh-text);
    font-size: 17px;
    line-height: 1.8;
}

.toh-overview-actions {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.toh-trinity-overview-image {
    min-height: 600px;
    overflow: hidden;
    border-left: 1px solid var(--toh-line);
}

.toh-trinity-overview-image img {
    width: 100%;
    height: 600px;
    min-height: 600px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Der Kartenbereich darunter bekommt wieder Abstand */
.toh-trinity-overview-grid {
    width: min(1480px, calc(100% - 96px)) !important;
    margin: 80px auto 0 !important;
}

/* Quote unten Abstand */
.toh-overview-quote {
    margin-bottom: 90px !important;
}

/* Laptop kompakter */
@media (min-width: 901px) and (max-width: 1499px) {
    .toh-trinity-overview-hero {
        min-height: 600px;
        grid-template-columns: 1.05fr 0.95fr;
    }

    .toh-trinity-overview-text {
        min-height: 600px;
        padding: 58px 56px;
    }

    .toh-trinity-overview-text h2 {
        font-size: 42px;
        max-width: 620px;
    }

    .toh-trinity-overview-text h3 {
        font-size: 15px;
        max-width: 620px;
    }

    .toh-trinity-overview-text p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 620px;
    }

    .toh-trinity-overview-image,
    .toh-trinity-overview-image img {
        height: 600px;
        min-height: 600px;
    }

    .toh-trinity-overview-grid {
        width: min(1180px, calc(100% - 64px)) !important;
        margin-top: 64px !important;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .toh-trinity-overview-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .toh-trinity-overview-text {
        min-height: 0;
        padding: 58px 24px;
    }

    .toh-trinity-overview-text h2 {
        font-size: 36px;
        max-width: none;
    }

    .toh-trinity-overview-text h3 {
        font-size: 15px;
    }

    .toh-trinity-overview-text p {
        font-size: 16px;
        max-width: none;
    }

    .toh-overview-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .toh-trinity-overview-image {
        min-height: 420px;
        border-left: 0;
        border-top: 1px solid var(--toh-line);
    }

    .toh-trinity-overview-image img {
        height: 420px;
        min-height: 420px;
    }

    .toh-trinity-overview-grid {
        width: calc(100% - 40px) !important;
        margin-top: 52px !important;
    }
}

@media (max-width: 600px) {
    .toh-trinity-overview-image,
    .toh-trinity-overview-image img {
        height: 360px;
        min-height: 360px;
    }
}

 

/* =========================================================
   Unteres rechtes Collage-Bild: weniger abgeschnitten, aber vollflächig
========================================================= */

@media (min-width: 901px) {
    .toh-small-photo {
        background: #ecb0c1 !important;
        overflow: hidden !important;
    }

    .toh-small-photo img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center 20% !important;

        display: block !important;
        background: transparent !important;
    }
}

/* =========================================================
   MOBILE FIX: FAQ nicht über Über-mich-Text legen
========================================================= */

@media (max-width: 760px) {

    .toh-about {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        display: block !important;
        overflow: visible !important;
    }

    .toh-about-image {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
        overflow: hidden !important;
    }

    .toh-about-image img {
        width: 100% !important;
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
        object-fit: cover !important;
        display: block !important;
    }

    .toh-about-text {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 42px 24px 48px !important;
        display: block !important;
    }

    .toh-about-text p {
        max-width: none !important;
        margin-bottom: 18px !important;
        font-size: 16px !important;
        line-height: 1.75 !important;
    }

    .toh-faq-section {
        position: relative !important;
        z-index: 1 !important;
        clear: both !important;
        padding-top: 62px !important;
        margin-top: 0 !important;
        overflow: visible !important;
    }

    .toh-faq-section .toh-section-head {
        margin-bottom: 28px !important;
    }

    .toh-faq-section .toh-section-head h2 {
        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .toh-faq-intro {
        margin-bottom: 32px !important;
        text-align: left !important;
    }

    .toh-faq-intro p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }
}
/* =========================================================
   INTRO-BEREICH: Laptop-Höhe automatisch nach Text
========================================================= */

@media (min-width: 1101px) and (max-width: 1400px) {

    /* Gesamter 3-Spalten-Bereich darf mit dem Text wachsen */
    .toh-editorial-intro {
        height: auto !important;
        min-height: 900px !important;
        max-height: none !important;

        align-items: stretch;
        grid-auto-rows: 1fr;

        overflow: visible !important;
    }

    /* Alle drei Spalten erhalten automatisch dieselbe Höhe */
    .toh-editorial-intro > .toh-intro-card {
        height: auto !important;
        min-height: 900px !important;
        max-height: none !important;

        align-self: stretch;
        overflow: hidden !important;
    }

    /* Text bestimmt die notwendige Gesamthöhe */
    .toh-editorial-intro > .toh-intro-text {
        height: auto !important;
        min-height: 900px !important;
        max-height: none !important;

        padding: 70px 46px !important;
        overflow: visible !important;
    }

    /* Bilder füllen die automatisch gewachsene Spaltenhöhe */
    .toh-editorial-intro > .toh-intro-image,
    .toh-editorial-intro > .toh-intro-abstract {
        position: relative;
        height: auto !important;
        min-height: 900px !important;
        max-height: none !important;
    }

    .toh-editorial-intro > .toh-intro-image img,
    .toh-editorial-intro > .toh-intro-abstract img {
        position: absolute;
        inset: 0;

        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-height: none !important;

        object-fit: cover !important;
        object-position: center center;
    }
}

/* =========================================================
   EQOLOGY PRODUKTEMPFEHLUNGEN
========================================================= */

.toh-eqology-section {
    width: min(1380px, calc(100% - 48px));
    margin: 90px auto 0;
    padding: 72px 0;
}

.toh-eqology-title {
    margin-bottom: 22px;
}

.toh-eqology-title h2 {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
}

.toh-eqology-intro {
    width: min(820px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.toh-eqology-intro p {
    margin: 0;
    color: var(--toh-green-soft);
    font-size: 17px;
    line-height: 1.8;
}

.toh-eqology-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.toh-eqology-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 248, 234, 0.90);
    border: 1px solid var(--toh-border);
    box-shadow: 0 16px 38px rgba(49, 35, 30, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.toh-eqology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(49, 35, 30, 0.15);
}

.toh-eqology-image {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--toh-border);
}

.toh-eqology-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.toh-eqology-card:hover .toh-eqology-image img {
    transform: scale(1.035);
    filter: brightness(1.02) contrast(1.02);
}

.toh-eqology-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px 24px 26px;
}

.toh-eqology-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--toh-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.toh-eqology-content h3 {
    min-height: 58px;
    margin: 0 0 15px;
    color: var(--toh-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.12;
}

.toh-eqology-content p {
    min-height: 116px;
    margin: 0 0 22px;
    color: var(--toh-text);
    font-size: 15px;
    line-height: 1.65;
}

.toh-eqology-button {
    color: var(--toh-coral);
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.toh-eqology-notice {
    width: min(920px, 100%);
    margin: 38px auto 0;
    padding: 24px 28px;
    background:
        linear-gradient(
            135deg,
            rgba(245, 143, 175, 0.14),
            rgba(251, 240, 223, 0.88)
        );
    border: 1px solid var(--toh-border);
}

.toh-eqology-notice strong {
    display: block;
    margin-bottom: 7px;
    color: var(--toh-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.toh-eqology-notice p {
    margin: 0;
    color: var(--toh-green-soft);
    font-size: 14px;
    line-height: 1.65;
}

/* Laptop */
@media (max-width: 1280px) {
    .toh-eqology-section {
        width: calc(100% - 36px);
    }

    .toh-eqology-grid {
        gap: 18px;
    }

    .toh-eqology-image {
        height: 245px;
    }

    .toh-eqology-content {
        padding: 22px 19px 24px;
    }

    .toh-eqology-content h3 {
        font-size: 22px;
    }

    .toh-eqology-content p {
        min-height: 128px;
        font-size: 14px;
    }
}

/* Tablet: 2 Produkte pro Reihe */
@media (max-width: 1024px) {
    .toh-eqology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .toh-eqology-image {
        height: 310px;
    }

    .toh-eqology-content h3,
    .toh-eqology-content p {
        min-height: 0;
    }
}

/* Mobil: 1 Produkt pro Reihe */
@media (max-width: 700px) {
    .toh-eqology-section {
        width: calc(100% - 28px);
        margin-top: 58px;
        padding: 48px 0;
    }

    .toh-eqology-title {
        margin-bottom: 18px;
    }

    .toh-eqology-intro {
        margin-bottom: 30px;
        text-align: left;
    }

    .toh-eqology-intro p {
        font-size: 16px;
        line-height: 1.7;
    }

    .toh-eqology-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .toh-eqology-image {
        height: 330px;
    }

    .toh-eqology-content {
        padding: 24px 22px 25px;
    }

    .toh-eqology-content h3 {
        min-height: 0;
        font-size: 25px;
    }

    .toh-eqology-content p {
        min-height: 0;
        font-size: 15px;
    }

    .toh-eqology-notice {
        margin-top: 30px;
        padding: 22px;
    }
}

@media (max-width: 430px) {
    .toh-eqology-image {
        height: 290px;
    }
}


/* =========================================================
   EQOLOGY PRODUKTBESCHREIBUNG AUFKLAPPBAR
========================================================= */

.toh-eqology-details {
    margin: 0 0 22px;
    border-top: 1px solid var(--toh-border);
    border-bottom: 1px solid var(--toh-border);
}

.toh-eqology-details summary {
    position: relative;
    padding: 16px 34px 16px 0;
    color: var(--toh-green);
    font-weight: 900;
    font-size: 15px;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.toh-eqology-details summary::-webkit-details-marker {
    display: none;
}

.toh-eqology-details summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: var(--toh-orange);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
}

.toh-eqology-details[open] summary::after {
    content: "−";
}

.toh-eqology-details summary:hover {
    color: var(--toh-orange-dark);
}

.toh-eqology-description {
    padding: 0 0 18px;
}

.toh-eqology-description p {
    min-height: 0 !important;
    margin: 0 !important;
    color: var(--toh-text);
    font-size: 14px;
    line-height: 1.7;
}

/* Button bleibt unten */
.toh-eqology-content {
    display: flex;
    flex-direction: column;
}

.toh-eqology-button {
    margin-top: auto;
}

/* Tastatur-Fokus */
.toh-eqology-details summary:focus-visible {
    outline: 2px solid var(--toh-orange);
    outline-offset: 4px;
}

/* =========================================================
   EQOLOGY TITLE WIE YOGA-BEREICH
========================================================= */

.toh-eqology-title {
    text-align: center;
    margin-bottom: 22px;
}

.toh-eqology-title p {
    margin: 0 0 14px;
    color: #ff6846 !important;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
}

.toh-eqology-title h2 {
    margin: 0;
    color: var(--toh-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -0.6px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.toh-eqology-intro {
    width: min(900px, 100%);
    margin: 28px auto 46px;
    text-align: center;
}

.toh-eqology-intro p {
    margin: 0;
    color: var(--toh-text);
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
}

/* Laptop */
@media (max-width: 1280px) {
    .toh-eqology-title h2 {
        font-size: 48px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .toh-eqology-title h2 {
        font-size: 42px;
    }

    .toh-eqology-intro {
        width: min(760px, 100%);
    }
}

/* Mobil */
@media (max-width: 700px) {
    .toh-eqology-title {
        margin-bottom: 18px;
    }

    .toh-eqology-title p {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .toh-eqology-title h2 {
        font-size: 34px;
        line-height: 1.14;
    }

    .toh-eqology-intro {
        margin: 20px auto 30px;
        text-align: center;
    }

    .toh-eqology-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =====================================================
   COLLAGE – OBERE REIHE
===================================================== */

.toh-collage {
    display: grid;
    grid-template-columns: 25% 48% 27%;
    width: 100%;
    background: #f8f0df;
}

.toh-collage-panel {
    min-width: 0;
}

/* LINKE TEXTSPALTE */
.toh-collage-text {
    padding: 90px 52px;
    background: #f8f0df;
}

/* MITTLERES BILD – ETWAS SCHMALER */
.toh-collage-photo-large {
    position: relative;
    min-height: 765px;
    overflow: hidden;
}

.toh-collage-photo-large img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* RECHTE SPALTE – GANZHEITLICH BREITER */
.toh-pattern-panel {
    background: #f8f0df;
    padding: 70px 60px;
    display: flex;
    align-items: flex-start;
}

.toh-pattern-box {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.toh-pattern-box h2 {
    max-width: 430px;
}

.toh-pattern-box p {
    max-width: 470px;
}

/* =========================================================
   COLLAGE OBERE REIHE – FINAL RESPONSIVE
   Bild schmaler, rechter Textbereich breiter
========================================================= */

/* Desktop und Laptop */
@media (min-width: 1101px) {

    .toh-collage {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;

        display: grid !important;

        /* links 24 %, Bild 43 %, rechts 33 % */
        grid-template-columns: 24% 43% 33% !important;
        grid-template-rows: 850px 850px !important;

        height: 1700px !important;
        min-height: 1700px !important;
        max-height: 1700px !important;

        background: var(--toh-cream) !important;
    }

    /* Oben links */
    .toh-collage-text {
        grid-column: 1 !important;
        grid-row: 1 !important;

        min-width: 0 !important;
        min-height: 850px !important;

        padding: 78px 52px !important;
        background: var(--toh-cream) !important;
    }

    /* Bild in der Mitte */
    .toh-collage-photo-large {
        grid-column: 2 !important;
        grid-row: 1 !important;

        min-width: 0 !important;
        min-height: 850px !important;

        position: relative !important;
        overflow: hidden !important;
    }

    .toh-collage-photo-large img {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    /* Rechts: Ganzheitlich */
    .toh-pattern-panel {
        grid-column: 3 !important;
        grid-row: 1 !important;

        min-width: 0 !important;
        min-height: 850px !important;

        padding: 0 !important;
        background: var(--toh-cream) !important;
        display: block !important;
    }

    .toh-pattern-box {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: 850px !important;

        margin: 0 !important;
        padding: 70px 56px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;

        background: var(--toh-cream) !important;
        box-shadow: none !important;
        text-align: left !important;
    }

    .toh-pattern-box .toh-eyebrow {
        margin: 0 0 22px !important;
        text-align: left !important;
    }

    .toh-pattern-box h2 {
        max-width: 480px !important;
        margin: 0 0 30px !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
        text-align: left !important;
    }

    .toh-pattern-box p {
        max-width: 520px !important;
        margin: 0 0 25px !important;

        font-size: 15px !important;
        line-height: 1.72 !important;
        text-align: left !important;
    }

    .toh-pattern-box p:last-child {
        margin-bottom: 0 !important;
    }

    /* Untere Reihe bleibt jeweils halb breit */
    .toh-pink-note {
        grid-column: 1 / span 2 !important;
        grid-row: 2 !important;
    }

    .toh-small-photo {
        grid-column: 3 / span 1 !important;
        grid-row: 2 !important;
    }
}

/* =========================================================
   EDITORIAL INTRO FINAL
   Text links + abstraktes Bild rechts
========================================================= */

.toh-editorial-intro {
    width: 100vw !important;
    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;

    height: auto !important;
    min-height: 850px !important;
    max-height: none !important;

    align-items: stretch !important;

    background: var(--toh-cream) !important;
    border-top: 1px solid var(--toh-line);
    border-bottom: 1px solid var(--toh-line);
    overflow: hidden !important;
}

.toh-editorial-intro .toh-intro-card {
    width: 100% !important;

    height: auto !important;
    min-height: 850px !important;
    max-height: none !important;

    border-right: 1px solid var(--toh-line);
    border-bottom: 0 !important;
    overflow: hidden !important;
}

.toh-editorial-intro .toh-intro-card:last-child {
    border-right: 0;
}

/* Linke Textspalte */
.toh-editorial-intro .toh-intro-text {
    padding: 80px 70px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    background: var(--toh-cream) !important;
    overflow: visible !important;
}

.toh-editorial-intro .toh-intro-text .toh-eyebrow {
    margin: 0 0 28px !important;
}

.toh-editorial-intro .toh-intro-text p {
    width: 100% !important;
    max-width: 680px !important;

    margin: 0 0 24px !important;

    font-size: 17px !important;
    line-height: 1.8 !important;
}

.toh-editorial-intro .toh-intro-text p:last-child {
    margin-bottom: 0 !important;
}

/* Rechtes Bild */
.toh-editorial-intro .toh-intro-abstract {
    position: relative !important;
    padding: 0 !important;
    background: transparent !important;
}

.toh-editorial-intro .toh-intro-abstract img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    min-height: 100% !important;
    max-height: none !important;

    display: block !important;
    object-fit: cover !important;
    object-position: start center !important;

    border-radius: 0 !important;
    filter: none !important;
}
/* =========================================================
   EDITORIAL INTRO – MOBILE
   Text oben, Bild unten
========================================================= */

@media (max-width: 760px) {

    .toh-editorial-intro {
        width: 100% !important;
        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        overflow: hidden !important;
    }

    .toh-editorial-intro .toh-intro-card {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        border-right: 0 !important;
        border-bottom: 1px solid var(--toh-line) !important;
    }

    /* Text oben */
    .toh-editorial-intro .toh-intro-text {
        padding: 46px 24px !important;

        display: block !important;

        background: var(--toh-cream) !important;
        overflow: visible !important;
    }

    .toh-editorial-intro .toh-intro-text .toh-eyebrow {
        margin: 0 0 22px !important;
    }

    .toh-editorial-intro .toh-intro-text p {
        width: 100% !important;
        max-width: none !important;

        margin: 0 0 20px !important;

        font-size: 16px !important;
        line-height: 1.72 !important;
    }

    .toh-editorial-intro .toh-intro-text p:last-child {
        margin-bottom: 0 !important;
    }

    /* Bild unten */
    .toh-editorial-intro .toh-intro-abstract {
        position: relative !important;

        width: 100% !important;
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;

        padding: 0 !important;
        background: var(--toh-cream) !important;
        overflow: hidden !important;
    }

    .toh-editorial-intro .toh-intro-abstract img {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        min-height: 0 !important;
        max-height: none !important;

        display: block !important;

        object-fit: cover !important;
        object-position: left center !important;

        border-radius: 0 !important;
        filter: none !important;
        transform: none !important;
    }
}

@media (max-width: 430px) {

    .toh-editorial-intro .toh-intro-text {
        padding: 40px 20px !important;
    }

    .toh-editorial-intro .toh-intro-abstract {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}

/* Mobile */
@media (max-width: 760px) {

    .toh-collage {
        width: 100% !important;
        margin: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .toh-collage-text {
        order: 1 !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 46px 24px !important;
    }

    .toh-collage-photo-large {
        order: 2 !important;
        width: 100% !important;
        height: 430px !important;
        min-height: 430px !important;
    }

    .toh-collage-photo-large img {
        width: 100% !important;
        height: 430px !important;

        object-fit: cover !important;
        object-position: 55% center !important;
        display: block !important;
    }

    .toh-pattern-panel {
        order: 3 !important;
        width: 100% !important;

        min-height: 0 !important;
        padding: 0 !important;
        background: var(--toh-cream) !important;
    }

    .toh-pattern-box {
        width: 100% !important;
        max-width: none !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 46px 24px !important;

        background: var(--toh-cream) !important;
        box-shadow: none !important;
        text-align: left !important;
    }

    .toh-pattern-box .toh-eyebrow {
        margin: 0 0 18px !important;
        text-align: left !important;
    }

    .toh-pattern-box h2 {
        max-width: none !important;
        margin: 0 0 26px !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
        text-align: left !important;
    }

    .toh-pattern-box p {
        max-width: none !important;
        margin: 0 0 22px !important;

        font-size: 16px !important;
        line-height: 1.72 !important;
        text-align: left !important;
    }

    .toh-pink-note {
        order: 4 !important;
    }

    .toh-small-photo {
        order: 5 !important;
    }
}

/* =========================================================
   COLLAGE UNTERE REIHE
   Stil wie Trinity Overview Hero
========================================================= */

@media (min-width: 1101px) {

    .toh-collage-overview-text {
        grid-column: 1 / span 2 !important;
        grid-row: 2 !important;

        width: 100% !important;
        height: 100% !important;
        min-height: 850px !important;

        padding: 76px min(6vw, 90px) !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;

        background: var(--toh-cream) !important;
        text-align: left !important;
        overflow: visible !important;
    }

    .toh-collage-overview-text .toh-eyebrow {
        margin: 0 0 24px !important;
    }

    .toh-collage-overview-text h2 {
        max-width: 760px !important;
        margin: 0 0 26px !important;

        color: var(--toh-green) !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: 44px !important;
        line-height: 1.04 !important;
        font-weight: 400 !important;
    }

    .toh-collage-overview-text h3 {
        max-width: 720px !important;
        margin: 0 0 24px !important;

        color: var(--toh-coral) !important;
        font-family: "Quicksand", Arial, sans-serif !important;
        font-size: 17px !important;
        font-weight: 900 !important;
        line-height: 1.35 !important;
        letter-spacing: 0.7px !important;
        text-transform: uppercase !important;
    }

    .toh-collage-overview-text > p:not(.toh-eyebrow) {
        max-width: 760px !important;
        margin: 0 0 18px !important;

        color: var(--toh-text) !important;
        font-size: 17px !important;
        line-height: 1.8 !important;
    }

    .toh-collage-overview-text .toh-pillar-link-row {
        margin-top: 34px !important;

        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .toh-collage-overview-image {
        grid-column: 3 / span 1 !important;
        grid-row: 2 !important;

        position: relative !important;

        width: 100% !important;
        height: 100% !important;
        min-height: 850px !important;

        padding: 0 !important;
        overflow: hidden !important;

        background: var(--toh-cream) !important;
        border-left: 1px solid var(--toh-line) !important;
    }

    .toh-collage-overview-image img {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        display: block !important;
        object-fit: cover !important;
        object-position: center center !important;

        filter: none !important;
        transform: none !important;
    }
}


/* Alle künstlich erzeugten Pfeile bei Links entfernen */
a::before,
a::after {
    content: none !important;
}


/* =========================================================
   OVERVIEW-KARTEN: Links unten auf gleicher Höhe
========================================================= */

.toh-trinity-overview-grid {
    align-items: stretch !important;
}

.toh-overview-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Text bleibt oben */
.toh-overview-card h3 {
    margin-bottom: 22px !important;
}

.toh-overview-card > p {
    margin-bottom: 18px !important;
}

/* Linkbereich wird nach unten geschoben */
.toh-overview-card .toh-pillar-link-row {
    margin-top: auto !important;
    padding-top: 28px !important;

    display: flex !important;
    align-items: flex-end !important;
}

/* Link/Button einheitlich */
.toh-overview-card .toh-pillar-link-row a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 46px !important;
    padding: 0 18px !important;

    border: 1px solid rgba(255, 104, 70, 0.45) !important;
    color: var(--toh-coral) !important;
    background: transparent !important;

    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
}

/* Pfeile entfernen */
.toh-overview-card .toh-pillar-link-row a::before,
.toh-overview-card .toh-pillar-link-row a::after {
    content: none !important;
    display: none !important;
}


