/* --- FONTS IMPORTIEREN --- */
/* Wir erlauben hier die volle Bandbreite von 100 bis 900 für maximale Flexibilität */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('cormorant.ttf') format('truetype-variations'),
         url('cormorant.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: normal;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('cormorant-italic.ttf') format('truetype-variations'),
         url('cormorant-italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}
@font-face {
    font-family: 'Inter';
    src: url('inter.ttf') format('truetype-variations'),
         url('inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

/* --- VARIABLEN --- */
:root {
    --background: hsl(40, 33%, 97%);
    --foreground: hsl(160, 25%, 15%);
    
    --primary: hsl(160, 35%, 25%);
    --primary-foreground: hsl(40, 33%, 97%);
    
    --muted-foreground: hsl(160, 15%, 45%);
    --border: hsl(35, 25%, 85%);
    --card: hsl(40, 30%, 95%);
    
    /* Der Verlauf */
    --text-gradient: linear-gradient(135deg, hsl(160, 35%, 25%) 0%, hsl(38, 70%, 45%) 100%);
    --gold-accent: hsl(38, 70%, 45%);
    
    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;
    
    --radius: 0.75rem;
    --container: 1200px;
}

/* --- RESET & GLOBAL --- */
* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* KORREKTUR: Allgemeine Überschriften deutlich fetter (700) */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700; /* Bold als Standard für alle Überschriften */
    color: var(--foreground);
    margin-bottom: 1rem;
    letter-spacing: -0.03em; /* Enger */
    line-height: 1.1;
}

p { margin-bottom: 1.5rem; color: var(--muted-foreground); }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 800px; }
.text-center { text-align: center; }

/* Gradient Text: Muss fett bleiben */
.gradient-text {
    background-image: var(--text-gradient);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
    font-style: italic;
    font-weight: 700; /* Sicherstellen, dass auch der Verlauf fett ist */
    padding-right: 0.15em;
}

.accent-text { color: var(--gold-accent); }

.divider-line {
    border: 0;
    height: 1px;
    background: var(--border);
    margin: 3rem 0;
    width: 120px;
    display: inline-block;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600; /* Buttons auch etwas kräftiger */
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 4px 14px -4px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    box-shadow: 0 6px 20px -4px rgba(0,0,0,0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--border);
}
.btn-secondary:hover {
    background-color: rgba(0,0,0,0.03);
    border-color: var(--primary);
}

.btn-white {
    background-color: #fff;
    color: var(--primary);
    border: 1px solid #fff;
}
.btn-white:hover {
    background-color: #fcfcfc;
}

/* --- HERO SECTION (KORRIGIERT) --- */
.hero-section {
    min-height: 100vh; /* Volle Höhe */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--background);
    padding: 20px;
}

.overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700; /* Overline auch fetter */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* HIER IST DIE WICHTIGSTE ÄNDERUNG FÜR DEN FETTEN LOOK */
.hero-section h1 {
    font-size: 5.5rem;   /* Noch größer */
    line-height: 1.0;    /* Extrem kompakt */
    margin-bottom: 1.5rem;
    font-weight: 750;    /* Extra Bold (nutzt Variable Font Power) */
    letter-spacing: -0.04em; /* Sehr eng zusammengezogen */
    color: var(--primary);
}

.hero-subtext {
    font-size: 1.25rem;
    max-width: 620px;
    margin: 0 auto 3.5rem;
    color: var(--muted-foreground);
    font-weight: 400; /* Regular statt Light für bessere Lesbarkeit */
    line-height: 1.6;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- SECTIONS --- */
.section-text-only { padding: 120px 0; }
.section-text-only p { font-size: 1.15rem; font-weight: 300; }
.section-text-only strong { color: var(--primary); font-weight: 700; }

.bg-beige {
    background-color: var(--card); 
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
/* Headlines in Sections ebenfalls fett */
.section-header h2 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.section-header p { font-size: 1.15rem; }

/* --- GRID & CARDS --- */
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--background);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--border);
    background-color: #fff;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.icon-box svg { width: 1.75rem; height: 1.75rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }

/* --- TARGET --- */
.section-target { padding: 120px 0; }
.flex-row { display: flex; gap: 4rem; align-items: flex-start; }
.col-text { flex: 1; }
.col-text h2 { font-size: 3.2rem; line-height: 1.1; font-weight: 700; }
.col-list { flex: 1; background: var(--card); padding: 3rem; border-radius: var(--radius); }

.check-list li {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem; font-size: 1.05rem;
}
.check-icon {
    min-width: 1.5rem; height: 1.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 3px;
}

/* --- PHILOSOPHY --- */
.section-philosophy { padding: 120px 0; }
.quote-headline {
    font-size: 2.8rem;
    font-weight: 600; /* Hier auch etwas fetter als vorher */
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 5rem;
}
.values-grid {
    display: flex; justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
    max-width: 900px; margin: 0 auto;
}
.value-item h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 700; }

/* --- STEPS --- */
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 5rem; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute; top: 2.5rem; left: 15%; right: 15%; height: 1px; background: var(--border); z-index: 0; display: none;
}
@media(min-width: 900px) { .steps-grid::before { display: block; } }

.step-card { position: relative; z-index: 1; text-align: center; }
.step-icon {
    width: 5rem; height: 5rem;
    background: var(--primary); color: var(--primary-foreground);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.step-number {
    display: block; font-size: 0.8rem; font-weight: 800; /* Extra Fett */
    letter-spacing: 0.1em;
    color: var(--gold-accent); margin-bottom: 0.5rem; text-transform: uppercase;
}

.cta-box {
    background: var(--background); border: 1px solid var(--border);
    padding: 4rem; border-radius: var(--radius); text-align: center; max-width: 800px; margin: 0 auto;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 120px 0 40px;
}
.footer-quote {
    font-size: 2.5rem; font-weight: 600; margin-bottom: 2rem; color: var(--primary-foreground);
}
.main-footer p { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 5rem; padding-top: 2rem; }
.footer-nav a { color: rgba(255,255,255,0.6); margin-left: 2rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em;}
.footer-nav a:hover { color: #fff; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 100px 20px 60px; }
    .hero-section h1 { font-size: 2.8rem; line-height: 1.1; }
    
    .grid-2x2, .flex-row, .steps-grid, .values-grid, .flex-between { flex-direction: column; }
    .flex-row { gap: 3rem; }
    
    .section-header h2 { font-size: 2.2rem; }
    .quote-headline { font-size: 2rem; }
    
    .steps-grid::before { display: none; }
    .footer-nav a { margin: 10px 10px 0; display: inline-block; }
}