/* ============================================================
   INSPIRE YOUR SYSTEM · style.css  ·  Version 2.2
   ============================================================

   ✏️  ALLE EINSTELLUNGEN HIER
   ============================================================ */
:root {
    --bg:        #343a40;
    --bg-outer:  #2a2e32;
    --accent:    #b85c38;
    --wine:      #722f37;
    --beige:     #dcd5c9;
    --text:      #f8f9fa;
    --muted:     rgba(248,249,250,0.65);

    --shell-max:   1920px;  /* ✏️  Max-Breite Seiten-Box */
    --content-max: 1500px;  /* ✏️  Max-Breite Inhalt     */
    --pad-x:       2.5rem;
    --section-v:   6rem;
    --header-h:    72px;
    --ease: cubic-bezier(0.4,0,0.2,1);
    --dur:  0.28s;

    /* ✏️  BLOBS */
    --blob-w-top:     -1200px;
    --blob-w-left:    -850px;
    --blob-w-size:    1800px;
    --blob-w-opacity: 0.55;
    --blob-b-bottom:  -1200px;
    --blob-b-right:   -820px;
    --blob-b-size:    1800px;
    --blob-b-opacity: 0.55;

    /* ✏️  MINDEST-SCHRIFTGRÖSSE: 0.9rem – alle anderen skalieren proportional */
    --font-min: 0.9rem;
}

/* ============================================================
   SCHRIFTEN – selbst-gehostet · keine externe Verbindung
   ============================================================ */
@font-face {
    font-family: 'Alex Brush';
    src: url('/fonts/AlexBrush-Regular.woff2') format('woff2'),
         url('/fonts/AlexBrush-Regular.woff')  format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('/fonts/Lora-Regular.woff2') format('woff2'),
         url('/fonts/Lora-Regular.woff')  format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('/fonts/Lora-Regular_1.woff2') format('woff2'),
         url('/fonts/Lora-Regular_1.woff')  format('woff');
    font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('/fonts/Lora-Bold.woff2') format('woff2'),
         url('/fonts/Lora-Bold.woff')  format('woff');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2'),
         url('/fonts/Montserrat-Regular.woff')  format('woff');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Bold.woff2') format('woff2'),
         url('/fonts/Montserrat-Bold.woff')  format('woff');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ============================================================
   RESET & BASE
   Schriftgrössenhinweis: Alle Werte ×1.25 gegenüber v2.0
   Minimum überall: 0.9rem
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1.5rem);
    font-size: 16px;
}
body {
    font-family: 'Montserrat', system-ui, sans-serif;
    background: var(--bg-outer);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--beige); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: italic; }

/* ============================================================
   SEITEN-SHELL
   ============================================================ */
#site-shell {
    max-width: var(--shell-max);
    margin: 0 auto;
    background: var(--bg);
    position: relative;
    overflow: clip;
    min-height: 100vh;
    box-shadow: 0 0 80px rgba(0,0,0,0.55);
    transform: translate(0,0);
}

/* ============================================================
   BLOBS
   ============================================================ */
#site-shell::before,
#site-shell::after {
    content: ''; position: fixed;
    pointer-events: none; z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#site-shell::before {
    top:    var(--blob-w-top);
    left:   var(--blob-w-left);
    width:  var(--blob-w-size);
    height: var(--blob-w-size);
    background-image: url('/images/svg/blob-weinrot.svg');
    opacity: var(--blob-w-opacity);
}
#site-shell::after {
    bottom: var(--blob-b-bottom);
    right:  var(--blob-b-right);
    width:  var(--blob-b-size);
    height: var(--blob-b-size);
    background-image: url('/images/svg/blob-beige.svg');
    opacity: var(--blob-b-opacity);
}
header, main, footer, section { position: relative; z-index: 1; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
    position: fixed;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: var(--shell-max);
    height: var(--header-h); z-index: 900;
    display: flex; align-items: center;
    padding: 0 var(--pad-x);
    transition: background var(--dur) var(--ease);
}
#header.scrolled {
    background: rgba(42,46,50,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,92,56,0.15);
}
.header-inner {
    width: 100%; max-width: var(--content-max); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo als Bild */
.logo-link {
    display: flex; align-items: center;
    text-decoration: none; flex-shrink: 0;
}
.logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Nav-Pill */
#main-nav {
    display: flex; align-items: center; gap: 0.15rem;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(184,92,56,0.22);
    border-radius: 50px; padding: 0.35rem 0.5rem;
}
#main-nav > a,
#main-nav .nav-dropdown-trigger {
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--muted) !important;
    padding: 0.5rem 0.9rem; border-radius: 50px;
    text-decoration: none; white-space: nowrap;
    display: flex; align-items: center; gap: 0.25rem;
    transition: all var(--dur) var(--ease);
}
#main-nav > a:hover,
#main-nav > a.active,
#main-nav .nav-dropdown:hover .nav-dropdown-trigger {
    background: rgba(184,92,56,0.22);
    color: var(--text) !important;
}
#main-nav a.nav-cta { background: var(--accent); color: #fff !important; }
#main-nav a.nav-cta:hover { background: #8a3d20; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-arrow { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    background: rgba(42,46,50,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184,92,56,0.22);
    border-radius: 10px;
    padding: 0.4rem;
    min-width: 180px;
    flex-direction: column; gap: 0.1rem;
    z-index: 1100;
    box-shadow: 0 8px 30px rgba(0,0,0,0.40);
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
    font-size: 0.9rem !important; font-weight: 400 !important;
    padding: 0.65rem 1.1rem !important;
    border-radius: 7px;
    color: var(--muted) !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
    white-space: nowrap;
    transition: all var(--dur) var(--ease);
}
.nav-dropdown-menu a:hover {
    background: rgba(184,92,56,0.15) !important;
    color: var(--text) !important;
}

/* Hamburger */
#menu-toggle {
    display: none; background: none;
    border: 1px solid rgba(184,92,56,0.4); border-radius: 6px;
    padding: 0.5rem 0.7rem; cursor: pointer;
    flex-direction: column; gap: 4px;
}
#menu-toggle span { display: block; width: 20px; height: 2px; background: var(--text); }

/* ============================================================
   LAYOUT
   ============================================================ */
.iys-wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--pad-x); }
.iys-section { padding: var(--section-v) 0; }

/* ============================================================
   TYPOGRAFIE  (Mindestgrösse 0.9rem · alle Werte ×1.25)
   ============================================================ */
.iys-eyebrow {
    display: block; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.5rem;
}
.iys-rule { display: block; width: 42px; height: 2px; background: var(--accent); margin: 1rem 0 1.75rem; }
.iys-h2 {
    font-family: 'Lora', serif;
    font-size: clamp(2.4rem, 4vw, 3.45rem);
    font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.75rem;
}
.iys-h2 em { font-style: italic; color: var(--accent); }
.iys-lead { font-size: 1.3rem; line-height: 1.85; opacity: 0.80; margin-bottom: 1.5rem; max-width: 680px; color: var(--text); }
.iys-text { font-size: 1.15rem; line-height: 1.8; opacity: 0.72; margin-bottom: 1rem; color: var(--text); }

/* ============================================================
   BUTTONS
   ============================================================ */
.iys-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.25rem;
    font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border-radius: 50px;
    transition: all var(--dur) var(--ease); cursor: pointer;
    border: 2px solid var(--accent);
}
.iys-btn-fill { background: var(--accent); color: #fff; }
.iys-btn-fill:hover { background: transparent; color: var(--accent) !important; }
.iys-btn-outline { background: transparent; color: var(--muted); }
.iys-btn-outline:hover { background: var(--accent); color: #fff !important; }
.iys-btn-sm { padding: 0.7rem 1.5rem; font-size: 0.9rem; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.iys-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.iys-reveal.iys-visible { opacity: 1; transform: translateY(0); }
.iys-d1 { transition-delay: 0.10s; }
.iys-d2 { transition-delay: 0.20s; }
.iys-d3 { transition-delay: 0.30s; }

/* ============================================================
   HERO
   ============================================================ */
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); }
#iys-hero {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: stretch; /* ← Textblock und Foto gleich hoch */
    gap: 4rem;
    max-width: var(--content-max); margin: 0 auto;
    padding: 5rem var(--pad-x); position: relative; width: 100%;
}
.iys-hero-content {
    display: flex; flex-direction: column; justify-content: center;
}
.iys-hero-h1 {
    font-family: 'Lora', serif;
    font-size: clamp(3rem, 4.75vw, 5rem);
    font-weight: 400; color: var(--text); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 2rem;
}
.iys-hero-h1 em { font-style: italic; color: var(--accent); }
.iys-hero-sub { font-size: 1.25rem; line-height: 1.85; opacity: 0.68; max-width: 460px; margin-bottom: 2.75rem; color: var(--text); }
.iys-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero-Foto: füllt Spalte vollständig */
.iys-hero-img { display: flex; flex-direction: column; }
.iys-hero-img .iys-img-frame {
    flex: 1; border-radius: 4px;
    overflow: hidden; border: 1px solid rgba(184,92,56,0.32);
    background: rgba(0,0,0,0.25);
    min-height: 400px;
}
.iys-hero-img .iys-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.iys-img-frame { width: 100%; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; border: 1px solid rgba(184,92,56,0.32); background: rgba(0,0,0,0.25); }
.iys-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.iys-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.28; }
.iys-scroll-hint span { font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.iys-scroll-bar { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--muted), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.25} 50%{opacity:0.85} }

/* ============================================================
   MEIN WEG
   ============================================================ */
#mein-weg { background: rgba(255,255,255,0.03); }
.iys-about-grid {
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 5rem; align-items: center; /* ← vertikal zentriert */
}
.iys-about-grid .iys-img-frame { aspect-ratio: 3/4; }
.iys-facts {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 2.5rem;
}
.iys-fact { padding: 1.4rem; background: rgba(0,0,0,0.25); border: 1px solid rgba(184,92,56,0.20); border-radius: 4px; }
.iys-fact-n { font-family: 'Lora', serif; font-size: 2.75rem; color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.iys-fact-l { font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.62; color: var(--text); }

/* ============================================================
   EINSTEIN QUOTE – weinroter Hintergrund (wie in Grav)
   ============================================================ */
#iys-quote {
    padding: 7rem 0;
    text-align: center;
    background: rgba(114,47,55,0.72); /* Weinrot, semi-transparent */
}
.iys-qmark { font-family: 'Lora', serif; font-size: 8.75rem; color: var(--beige); opacity: 0.25; line-height: 0.5; display: block; margin-bottom: 1.5rem; }
.iys-qtext {
    font-family: 'Lora', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400; font-style: italic; color: var(--text);
    line-height: 1.6; margin-bottom: 1.75rem;
    max-width: 820px; margin-left: auto; margin-right: auto;
}
.iys-qcite { font-size: 0.9rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.50; font-style: normal; color: var(--text); }

/* ============================================================
   MEIN ANSATZ
   ============================================================ */
.iys-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.iys-pillar { padding: 2.25rem 2rem; background: rgba(0,0,0,0.22); border: 1px solid rgba(184,92,56,0.22); border-radius: 4px; transition: border-color var(--dur) var(--ease); text-align: center; }
.iys-pillar:hover { border-color: rgba(184,92,56,0.55); }

/* Icons: grösser und zentriert */
.iys-pillar-icon {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 1.5rem;
}
.iys-pillar-icon svg { width: 48px; height: 48px; }

.iys-pillar-title { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 1rem; }
.iys-pillar-txt { font-size: 1.1rem; line-height: 1.8; opacity: 0.68; color: var(--text); text-align: left; }

/* ============================================================
   FÜR WEN
   ============================================================ */
#fuer-wen { background: rgba(255,255,255,0.03); }
.iys-fw-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: stretch; /* ← gleich hoch */
}
.iys-fw-grid > div {
    display: flex; flex-direction: column; justify-content: center;
}
.iys-pull-quote { font-family: 'Lora', serif; font-style: italic; font-size: 1.45rem; line-height: 1.7; color: var(--beige); border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 1.75rem 0 2.25rem; opacity: 0.85; }
.iys-honesty { background: rgba(114,47,55,0.18); border: 1px solid rgba(114,47,55,0.35); border-radius: 4px; padding: 1.5rem; margin-top: 1.5rem; }
.iys-honesty-label { font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; font-weight: 700; }
.iys-honesty-text { font-size: 1.1rem; line-height: 1.8; opacity: 0.75; color: var(--text); }
.iys-resonance { display: flex; flex-direction: column; gap: 1.4rem; }
.iys-resonance li { font-size: 1.15rem; line-height: 1.75; opacity: 0.80; padding-left: 1.25rem; border-left: 2px solid rgba(184,92,56,0.35); color: var(--text); }
.iys-resonance li strong { color: var(--beige); font-weight: 700; }

/* ============================================================
   PRODUKTE / WOMIT ICH ARBEITE
   ============================================================ */
.iys-products-intro { font-size: 1.05rem; opacity: 0.55; margin-bottom: 3rem; font-style: italic; color: var(--text); }

/* Featured: Der Lebens-Tausch */
.iys-product-featured {
    margin-top: 3rem;
    padding: 2.75rem 2.5rem;
    background: linear-gradient(135deg, rgba(114,47,55,0.22) 0%, rgba(0,0,0,0.32) 100%);
    border: 1px solid rgba(184,92,56,0.45);
    border-radius: 4px;
    position: relative; overflow: hidden;
}
.iys-product-featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(to right, var(--accent), var(--wine), transparent);
}
.iys-product-featured-inner {
    display: grid; grid-template-columns: 1fr auto;
    gap: 3rem; align-items: center;
}
.iys-product-badge {
    display: inline-block;
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.35rem 1rem; border-radius: 50px;
    margin-bottom: 1.25rem;
}
.iys-badge-free { background: rgba(184,92,56,0.18); border: 1px solid rgba(184,92,56,0.50); color: var(--accent); }
.iys-badge-live { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: var(--beige); }
.iys-badge-session { background: rgba(184,92,56,0.10); border: 1px solid rgba(184,92,56,0.28); color: var(--beige); }
.iys-badge-premium { background: rgba(114,47,55,0.22); border: 1px solid rgba(114,47,55,0.45); color: var(--beige); }
.iys-badge-intensive { background: rgba(114,47,55,0.30); border: 1px solid rgba(114,47,55,0.55); color: var(--accent); }

.iys-product-name {
    font-family: 'Lora', serif; font-size: 2.1rem; font-weight: 400;
    color: var(--text); margin-bottom: 0.9rem; line-height: 1.2;
}
.iys-product-hook {
    font-family: 'Lora', serif; font-style: italic; font-size: 1.4rem;
    color: var(--beige); margin-bottom: 1.25rem; line-height: 1.5; opacity: 0.90;
}
.iys-product-desc {
    font-size: 1.1rem; line-height: 1.85;
    opacity: 0.72; color: var(--text); margin-bottom: 1.25rem;
}
.iys-product-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0; }
.iys-product-list li {
    font-size: 1.0rem; line-height: 1.6; opacity: 0.75;
    color: var(--text); padding-left: 1.4rem; position: relative;
}
.iys-product-list li::before {
    content: '✦'; position: absolute; left: 0;
    color: var(--accent); font-size: 0.75rem; top: 0.3rem;
}
.iys-product-cta { flex-shrink: 0; }

/* Grid: 4 Produkte 2+2 */
.iys-products-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 1.5rem;
}
.iys-product-card {
    padding: 2.25rem 2rem;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(184,92,56,0.20);
    border-radius: 4px;
    display: flex; flex-direction: column;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.iys-product-card:hover { border-color: rgba(184,92,56,0.48); transform: translateY(-3px); }
.iys-product-card .iys-product-name { font-size: 1.6rem; }
.iys-product-card .iys-product-hook { font-size: 1.1rem; }
.iys-product-card .iys-product-desc { font-size: 1.0rem; }
.iys-product-card .iys-product-list { flex: 1; margin-bottom: 1.75rem; }
.iys-product-card .iys-product-cta { margin-top: auto; }

/* ============================================================
   QUALIFIKATIONEN
   ============================================================ */
#iys-qual { background: rgba(255,255,255,0.03); }
.iys-qual-grid {
    display: grid; grid-template-columns: 3fr 2fr;
    gap: 5rem; align-items: stretch; /* ← gleich hoch */
}
.iys-qual-timeline { margin-top: 2rem; }
.iys-qual-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(184,92,56,0.15); }
.iys-qual-item:last-child { border-bottom: none; }
.iys-qual-year { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--accent); opacity: 0.70; font-weight: 400; padding-top: 0.1rem; }
.iys-qual-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; line-height: 1.5; }
.iys-qual-org { font-size: 1.0rem; opacity: 0.55; color: var(--text); line-height: 1.5; }
.iys-sidebar {
    padding: 2.25rem 2rem;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(184,92,56,0.22); border-radius: 4px;
    display: flex; flex-direction: column; /* ← füllt Spalte */
}
.iys-sidebar-q { font-family: 'Lora', serif; font-style: italic; font-size: 1.3rem; color: var(--beige); line-height: 1.65; margin-bottom: 1.4rem; opacity: 0.90; }
.iys-sidebar-txt { font-size: 1.05rem; line-height: 1.8; opacity: 0.65; color: var(--text); margin-bottom: 1.0rem; }
.iys-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 1.5rem; }
.iys-tag { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; padding: 0.4rem 0.9rem; background: rgba(184,92,56,0.14); border: 1px solid rgba(184,92,56,0.28); border-radius: 50px; color: var(--beige); }

/* ============================================================
   KONTAKT
   ============================================================ */
.iys-kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.iys-kontakt-lead { font-size: 1.2rem; line-height: 1.85; opacity: 0.72; color: var(--text); margin-bottom: 1.75rem; max-width: 480px; }
.iys-nopressure { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 1.4rem 1.6rem; margin-bottom: 2.25rem; }
.iys-nopressure-label { font-size: 0.9rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; font-weight: 700; }
.iys-nopressure-text { font-size: 1.05rem; line-height: 1.75; opacity: 0.65; color: var(--text); }
.iys-contact-info { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.25rem; }
.iys-contact-label { font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.45; margin-bottom: 0.4rem; color: var(--text); }
.iys-contact-val { font-size: 1.15rem; color: var(--text); }
.iys-contact-val a { color: var(--accent); }
.iys-social-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.iys-social-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.0rem; border: 1px solid rgba(184,92,56,0.30); border-radius: 50px; color: var(--muted) !important; text-decoration: none; transition: all var(--dur) var(--ease); }
.iys-social-btn:hover { border-color: var(--accent); color: var(--text) !important; background: rgba(184,92,56,0.14); }
.iys-cta-box { background: rgba(0,0,0,0.30); border: 1px solid rgba(184,92,56,0.28); border-radius: 4px; padding: 2.75rem; }
.iys-cta-title { font-family: 'Lora', serif; font-size: 2.1rem; font-weight: 400; color: var(--text); line-height: 1.25; margin-bottom: 1.1rem; }
.iys-cta-text { font-size: 1.1rem; line-height: 1.8; opacity: 0.65; color: var(--text); margin-bottom: 2rem; }
.iys-lm { margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.iys-lm-badge { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }
.iys-lm-title { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--beige); margin-bottom: 0.7rem; font-style: italic; }
.iys-lm-sub { font-size: 1.0rem; line-height: 1.75; opacity: 0.60; color: var(--text); margin-bottom: 1.4rem; }
.iys-signature { display: block; font-family: 'Alex Brush', cursive; font-size: 3.5rem; color: var(--beige); opacity: 0.65; margin-top: 1.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { position: relative; z-index: 1; border-top: 1px solid rgba(184,92,56,0.15); padding: 2.5rem var(--pad-x); }
.footer-inner { max-width: var(--content-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-copy { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; line-height: 1.6; opacity: 0.70; color: var(--text); }
.footer-made { opacity: 0.75; }
.footer-made a { color: var(--accent); opacity: 1; text-decoration: none; }
.footer-made a:hover { color: var(--beige); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.9rem; opacity: 0.70; color: var(--text) !important; text-decoration: none; transition: opacity var(--dur); }
.footer-links a:hover { opacity: 1; }

/* ============================================================
   BIO / LINKTREE
   ============================================================ */
.bio-page #site-shell { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; }
.bio-shell { width: 100%; max-width: 480px; margin: 4rem auto; padding: 2rem var(--pad-x); }
.bio-frame { position: relative; padding: 3rem 2.5rem; border: 1px solid rgba(184,92,56,0.15); border-radius: 2px; background: rgba(0,0,0,0.18); }
.bio-frame::before, .bio-frame::after { content: ''; position: absolute; width: 70px; height: 70px; pointer-events: none; z-index: 2; }
.bio-frame::before { top: -1px; left: -1px; background: linear-gradient(to right, var(--accent), transparent) top left / 100% 2px no-repeat, linear-gradient(to bottom, var(--accent), transparent) top left / 2px 100% no-repeat; }
.bio-frame::after { bottom: -1px; right: -1px; background: linear-gradient(to left, var(--accent), transparent) bottom right / 100% 2px no-repeat, linear-gradient(to top, var(--accent), transparent) bottom right / 2px 100% no-repeat; }
.bio-wordmark { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); opacity: 0.70; text-align: center; margin-bottom: 2rem; }
.bio-profile { text-align: center; margin-bottom: 2.5rem; }
.bio-avatar { width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 1.25rem; display: block; object-fit: cover; object-position: center top; border: 2px solid rgba(184,92,56,0.30); }
.bio-name { font-family: 'Lora', serif; font-size: 2.0rem; font-weight: 400; color: var(--text); margin-bottom: 0.4rem; line-height: 1.2; }
.bio-tagline { font-size: 1.0rem; line-height: 1.5; opacity: 0.55; color: var(--text); }
.bio-group { margin-bottom: 1.75rem; }
.bio-group-label { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); opacity: 0.65; margin-bottom: 0.65rem; }
.bio-links { display: flex; flex-direction: column; gap: 0.65rem; }
.bio-link-btn { display: flex; align-items: center; gap: 0.75rem; padding: 1.0rem 1.5rem; border: 1px solid rgba(184,92,56,0.28); border-radius: 6px; font-size: 1.0rem; font-weight: 400; color: var(--text) !important; text-decoration: none; background: rgba(255,255,255,0.03); transition: all var(--dur) var(--ease); }
.bio-link-btn:hover { background: rgba(184,92,56,0.15); border-color: var(--accent); transform: translateX(3px); }
.bio-link-btn.bio-link-main { background: var(--accent); border-color: var(--accent); color: #fff !important; font-weight: 700; }
.bio-link-btn.bio-link-main:hover { background: rgba(184,92,56,0.80); }
.bio-link-btn.bio-link-soon { opacity: 0.45; cursor: default; }
.bio-link-btn.bio-link-soon:hover { transform: none; background: rgba(255,255,255,0.03); border-color: rgba(184,92,56,0.28); }
.bio-link-icon { flex-shrink: 0; opacity: 0.75; }
.bio-footer { text-align: center; margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.bio-footer a { font-size: 0.9rem; opacity: 0.35; color: var(--text) !important; text-decoration: none; transition: opacity var(--dur); }
.bio-footer a:hover { opacity: 0.70; }

/* ============================================================
   TEXT-SEITEN
   ============================================================ */
.text-page #main-content { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 6rem; }
.text-page .page-wrap { max-width: 860px; margin: 0 auto; padding: 0 var(--pad-x); }
.text-page h1 { font-family: 'Lora', serif; font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 2.75rem; }
.text-page h2 { font-family: 'Lora', serif; font-size: 1.75rem; font-weight: 400; color: var(--text); margin: 2.75rem 0 1.1rem; }
.text-page h3 { font-size: 1.0rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent); margin: 2rem 0 0.7rem; }
.text-page p { font-size: 1.15rem; line-height: 1.85; opacity: 0.75; color: var(--text); margin-bottom: 1.1rem; }
.text-page strong { color: var(--beige); font-weight: 700; }
.text-page a { color: var(--accent); }
.text-page ul { margin: 0.85rem 0 1.1rem 1.5rem; list-style: disc; }
.text-page ul li { font-size: 1.15rem; line-height: 1.8; opacity: 0.72; color: var(--text); margin-bottom: 0.4rem; }
.text-page hr { border: none; border-top: 1px solid rgba(184,92,56,0.20); margin: 2.75rem 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    :root { --content-max: 100%; }
    .iys-qual-grid { grid-template-columns: 1fr; gap: 3rem; }
    .iys-qual-grid .iys-sidebar { margin-top: 0; }
}
@media (max-width: 750px) {
    #iys-hero {
        grid-template-columns: 1fr; align-items: start;
        gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 4rem;
    }
    .iys-hero-content { /* Reset flex for single column */ }
    .iys-hero-img .iys-img-frame { flex: none; aspect-ratio: 4/3; min-height: auto; }
    .iys-hero-h1 { font-size: clamp(2.5rem, 8.75vw, 3.5rem); }
    .iys-hero-sub { font-size: 1.1rem; }
}
@media (max-width: 900px) {
    :root { --pad-x: 1.5rem; --section-v: 4rem; }
    .iys-about-grid, .iys-fw-grid, .iys-kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .iys-fw-grid > div { justify-content: flex-start; }
    .iys-pillars { grid-template-columns: 1fr; }
    .iys-products-grid { grid-template-columns: 1fr; }
    .iys-product-featured-inner { grid-template-columns: 1fr; gap: 1.75rem; }
    .iys-facts { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .iys-about-grid .iys-img-frame { aspect-ratio: 4/3; max-width: 480px; }
    .iys-cta-box { padding: 2rem 1.5rem; }

    /* Mobile Nav */
    #menu-toggle { display: flex; }
    #main-nav {
        display: none; position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: rgba(42,46,50,0.97); backdrop-filter: blur(12px);
        flex-direction: column; padding: 1.5rem; gap: 0.25rem;
        border-radius: 0; border: none;
        border-bottom: 1px solid rgba(184,92,56,0.20);
        overflow-y: auto; max-height: calc(100vh - var(--header-h));
    }
    #main-nav.open { display: flex; }
    #main-nav > a, #main-nav .nav-dropdown-trigger {
        padding: 0.85rem 1.25rem;
        text-align: left; border-radius: 8px; width: 100%;
    }
    #main-nav a.nav-cta { text-align: center; }

    /* Dropdown in mobile: immer sichtbar, eingerückt */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-arrow { display: none; }
    .nav-dropdown-menu {
        position: static !important;
        display: flex !important;
        background: transparent;
        backdrop-filter: none;
        border: none; border-radius: 0;
        padding: 0; min-width: 0;
        box-shadow: none;
        flex-direction: column; gap: 0;
    }
    .nav-dropdown-menu a {
        font-size: 0.9rem !important;
        padding: 0.65rem 1.25rem 0.65rem 2.5rem !important; /* eingerückt */
        opacity: 0.70 !important;
        border-top: 1px solid rgba(184,92,56,0.10) !important;
        border-radius: 0 !important;
        text-transform: none !important;
        letter-spacing: 0.05em !important;
    }
    .nav-dropdown-menu a::before {
        content: '↳ ';
        opacity: 0.45;
        font-size: 0.85em;
    }

    .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
    .iys-hero-btns { flex-direction: column; }
    .iys-facts { grid-template-columns: 1fr; }
}