/* ===================================================================
   Atelier Körpergeist — Stylesheet
   Markenfarben v1.2 · Noto Serif Display + Inter
   =================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --anthrazit: #303432;
    --anthrazit-deep: #1e201f;
    --anthrazit-soft: #2a2c2b;
    --ivory: #F5F1E8;
    --beige: #D7C7AE;
    --terrakotta: #B05C3E;
    --terrakotta-soft: #c47a5e;
    --navy: #0B1F3A;
    --concrete: #B8B1A7;

    --maxw: 1240px;
    --gap: clamp(1.5rem, 4vw, 4rem);
    --section-y: clamp(4.5rem, 9vw, 9rem);

    --serif: 'Noto Serif Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--anthrazit);
    background: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terrakotta);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--anthrazit);
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
/* dezenter Verlauf oben, damit das Logo über den Fotos lesbar ist (vor dem Scrollen) */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,32,31,0.55) 0%, rgba(30,32,31,0) 100%);
    opacity: 1;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: -1;
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled {
    background: rgba(30, 32, 31, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(245, 241, 232, 0.08);
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: padding 0.4s var(--ease);
}
.site-header.scrolled .header-inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
/* Hauptlogo weiss (transparent, gestapelt) oben links — groß genug, dass der Kleintext lesbar ist */
.header-logo-img {
    height: 118px;
    width: auto;
    display: block;
    transition: height 0.4s var(--ease);
}
.site-header.scrolled .header-logo-img { height: 84px; }

/* Terrakotta-Linien im fixierten Kopfbereich (Außenschild-System, dick:dünn ~3:1) */
.header-lines {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}
.site-header.scrolled .header-lines { opacity: 1; }
.hl {
    position: absolute;
    top: 0; bottom: 0;
    background: var(--terrakotta);
}
.hl-thick { width: 3px; opacity: 0.5; }
.hl-thin  { width: 1px; opacity: 0.28; }
.hl-left-thick  { left: 2.6vw; }
.hl-left-thin   { left: calc(2.6vw + 9px); }
.hl-right-thick { right: 2.6vw; }
.hl-right-thin  { right: calc(2.6vw + 9px); }

.header-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    margin-left: auto;
    flex-wrap: nowrap;
}
.header-nav a { white-space: nowrap; }
.header-nav a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    opacity: 0.85;
    position: relative;
    padding: 0.3rem 0;
    transition: opacity 0.3s ease;
}
.header-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--terrakotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.header-nav a:hover { opacity: 1; }
.header-nav a:hover::after { transform: scaleX(1); }

.header-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(245, 241, 232, 0.3);
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.header-cta:hover {
    background: var(--terrakotta);
    border-color: var(--terrakotta);
    color: var(--ivory);
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.header-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ivory);
    transition: all 0.35s var(--ease);
}
.header-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-burger.open span:nth-child(2) { opacity: 0; }
.header-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--anthrazit-deep);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1000;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ivory);
    text-decoration: none;
    opacity: 0.9;
}
.mobile-cta {
    margin-top: 1rem;
    font-family: var(--sans) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--terrakotta);
    border-radius: 2px;
    text-align: center;
    color: var(--terrakotta-soft) !important;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-split { position: absolute; inset: 0; display: flex; }
.hero-half { position: relative; flex: 1; overflow: hidden; }
.hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 16s ease-out forwards;
}
.hero-yoga .hero-img { background-position: center 35%; }
@keyframes heroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1.0); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(30,32,31,0.55) 0%, rgba(30,32,31,0.25) 35%, rgba(30,32,31,0.45) 70%, rgba(30,32,31,0.75) 100%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(30,32,31,0.15) 0%, rgba(30,32,31,0.55) 100%);
    z-index: 2;
}
/* subtle divider between the two halves */
.hero-split::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px;
    background: rgba(245,241,232,0.15);
    transform: translateX(-50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo {
    width: min(440px, 78vw);
    height: auto;
    margin-bottom: 2rem;
    animation: heroFade 1.8s var(--ease) 0.3s both;
}
.hero-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.6vw, 1.7rem);
    color: var(--ivory);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: heroFade 1.8s var(--ease) 0.7s both;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 26px; height: 42px;
    border: 1px solid rgba(245,241,232,0.4);
    border-radius: 13px;
    animation: heroFade 1.8s var(--ease) 1.2s both;
}
.hero-scroll span {
    position: absolute;
    top: 8px; left: 50%;
    width: 3px; height: 7px;
    background: var(--ivory);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translateX(-50%) translateY(14px); }
    100% { opacity: 0; }
}

/* ===================================================================
   SECTIONS — base
   =================================================================== */
.section { padding: var(--section-y) 0; }

/* INTRO */
.section-intro {
    background: var(--ivory);
    text-align: center;
}
.section-intro .eyebrow { display: inline-block; }
.intro-text {
    max-width: 760px;
    margin: 2.5rem auto 0;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.85;
    color: #4a4d4b;
}
.intro-text p { margin-bottom: 1.4rem; }
.intro-text em { font-family: var(--serif); font-style: italic; color: var(--anthrazit); }
.intro-welcome {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--terrakotta);
    margin-top: 0.5rem;
}

/* ===================================================================
   FEATURE SECTIONS (Yoga / Reformer)
   =================================================================== */
.section-feature { padding: var(--section-y) 0; }
.feature-yoga { background: var(--ivory); }
.feature-reformer { background: #ece6da; }

.feature-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.feature-grid-reverse .feature-media { order: 2; }

.feature-media {
    position: relative;
    aspect-ratio: 4 / 5;
}
.feature-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    box-shadow: 0 20px 60px rgba(48,52,50,0.18);
}
.feature-img-accent {
    position: absolute;
    right: -8%;
    bottom: -8%;
    width: 48%;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    border-radius: 3px;
    border: 6px solid var(--ivory);
    box-shadow: 0 16px 40px rgba(48,52,50,0.22);
}
.feature-grid-reverse .feature-img-accent {
    right: auto;
    left: -8%;
}
/* Akzentbild explizit links (verdeckt den Fuß-Bereich statt der Arme) */
.feature-img-accent-left {
    right: auto;
    left: -8%;
    background-position: center 30%;
}
.feature-reformer .feature-img-accent { border-color: #ece6da; }

.feature-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    color: var(--anthrazit);
    margin-bottom: 1.8rem;
}
.feature-text {
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    line-height: 1.85;
    color: #4a4d4b;
}
.feature-text p { margin-bottom: 1.2rem; }
.feature-text p:last-child { margin-bottom: 0; }

/* ===================================================================
   QUOTE BRIDGE
   =================================================================== */
.section-quote {
    background: var(--anthrazit-deep);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}
.section-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(176,92,62,0.08) 0%, transparent 70%);
}
.quote-text {
    position: relative;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.8vw, 2.1rem);
    line-height: 1.5;
    text-align: center;
    color: var(--ivory);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ===================================================================
   SCHEDULE / EVERSPORTS
   =================================================================== */
.section-schedule {
    background: var(--ivory);
    text-align: center;
}
.section-schedule .eyebrow { display: inline-block; }
.schedule-intro {
    max-width: 600px;
    margin: 1.5rem auto 3rem;
    color: #5a5d5b;
    font-size: 1.02rem;
}
.schedule-widget {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 200px;
}
.eversports-mount:empty { display: none; }

.schedule-fallback {
    border: 1px solid rgba(48,52,50,0.12);
    border-radius: 4px;
    background: #fff;
    padding: clamp(2.5rem, 6vw, 4.5rem) 2rem;
}
.schedule-fallback-inner p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--anthrazit);
    margin-bottom: 1.8rem;
}

.btn {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--terrakotta);
    color: var(--ivory);
}
.btn-primary:hover {
    background: var(--anthrazit);
}

/* ===================================================================
   CONTACT
   =================================================================== */
.section-contact { background: var(--ivory); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}
.contact-block { margin-top: 2rem; }
.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terrakotta);
    margin-bottom: 0.5rem;
}
.contact-info p { font-size: 1.05rem; color: var(--anthrazit); line-height: 1.7; }
.contact-info a {
    color: var(--anthrazit);
    text-decoration: none;
    border-bottom: 1px solid var(--terrakotta);
    transition: color 0.3s ease;
}
.contact-info a:hover { color: var(--terrakotta); }

.contact-map {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(48,52,50,0.15);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}
.map-link {
    position: absolute;
    bottom: 0; right: 0;
    background: var(--anthrazit-deep);
    color: var(--ivory);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-top-left-radius: 4px;
}
.map-link:hover { background: var(--terrakotta); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: var(--anthrazit-deep);
    color: var(--concrete);
    padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245,241,232,0.07);
    align-items: start;
}
.footer-brand { display: flex; align-items: flex-start; }
/* Markengrafik im Footer: weiß, ohne Hintergrund (Band ist in Footer-Farbe und damit unsichtbar) */
.footer-mark {
    height: 150px;
    width: auto;
    display: block;
    margin-left: -0.5rem;
}

/* Footer-Spalten mit Überschrift, Links sitzen direkt darunter */
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terrakotta);
    margin-bottom: 1.1rem;
}
.footer-brand p {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ivory);
    line-height: 1.5;
}
.footer-brand span {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--concrete);
}
.footer-nav, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-nav a, .footer-legal a {
    font-size: 0.85rem;
    color: var(--concrete);
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--ivory); }
.footer-addr {
    font-size: 0.82rem;
    color: var(--concrete);
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 0.2rem;
}

.footer-bottom {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1.8rem clamp(1.25rem, 5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}
.footer-credit a {
    color: var(--beige);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-credit a:hover { opacity: 1; }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
/* Navigation: auf Burger umschalten, bevor die (jetzt breitere) Leiste zu eng wird */
@media (max-width: 1080px) {
    .header-nav { display: none; }
    .header-cta { display: none; }
    .header-burger { display: flex; }
}

@media (max-width: 920px) {
    .feature-grid,
    .feature-grid-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .feature-grid-reverse .feature-media { order: 0; }
    .feature-media { aspect-ratio: 3 / 2; max-width: 560px; margin: 0 auto; width: 100%; }
    .feature-img-accent { width: 40%; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { aspect-ratio: 16 / 10; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    html { scroll-padding-top: 84px; }
    .header-logo-img { height: 78px; }
    .site-header.scrolled .header-logo-img { height: 60px; }
    .header-lines .hl-left-thin, .header-lines .hl-right-thin { display: none; }
    .hero-split { flex-direction: column; }
    .hero-split::after {
        top: 50%; left: 0; right: 0;
        width: 100%; height: 1px;
        transform: translateY(-50%);
    }
    .hero-half { flex: 1; }
    .feature-img-accent { width: 45%; right: -5%; bottom: -6%; }
    .feature-grid-reverse .feature-img-accent { left: -5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-mark { height: 78px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-img { transform: scale(1); }
}

/* ===================================================================
   BRAND LINES — Terrakotta-Liniensystem (Außenschild v1.2)
   Verhältnis dick:dünn ~3:1 · durchgehend von oben nach unten
   =================================================================== */
.brand-lines {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}
.bl {
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--terrakotta);
    transform: scaleY(0);
    transform-origin: top;
}
.bl-thick { width: 3px; }
.bl-thin  { width: 1px; }

/* Four lines: a thick+thin pair on each side, like the Schild */
.bl-1 { left: 2.6vw; }
.bl-2 { left: calc(2.6vw + 9px); }
.bl-3 { right: 2.6vw; }
.bl-4 { right: calc(2.6vw + 9px); }

/* Hero: animated reveal, subtle */





/* Quote section: same system on dark, slightly stronger */
.brand-lines-quote .bl { transform: scaleY(1); }
.brand-lines-quote .bl-1 { opacity: 0.35; }
.brand-lines-quote .bl-2 { opacity: 0.18; top: 18%; bottom: 18%; }
.brand-lines-quote .bl-3 { opacity: 0.35; }
.brand-lines-quote .bl-4 { opacity: 0.18; top: 18%; bottom: 18%; }

@keyframes lineGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Brand divider — horizontal thick+thin terrakotta pair (section accent) */
.brand-divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 64px;
    margin: 2rem auto 0;
}
.section-intro .brand-divider { margin-left: auto; margin-right: auto; }
.bd-thick { height: 3px; width: 100%; background: var(--terrakotta); border-radius: 2px; }
.bd-thin  { height: 1px; width: 70%; background: var(--terrakotta); opacity: 0.6; border-radius: 2px; }

/* ===================================================================
   HERO LOGO — Markengrafik (transparent weiss) sizing
   =================================================================== */
/* Hero: only tagline over the photos — no logo (logo lives in the header) */

/* ===================================================================
   CONTACT TITLE — complete name, slightly smaller so it doesn't feel cut off
   =================================================================== */
.contact-title {
    font-size: clamp(1.5rem, 3vw, 2.3rem) !important;
    line-height: 1.3;
}

/* ===================================================================
   FOOTER BRAND — fixed text stack (no broken line)
   =================================================================== */
.footer-brand-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ivory);
    line-height: 1.3;
    margin: 0;
}
.footer-brand-slogan {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--concrete);
    margin-top: 0.35rem;
}

/* Responsive tweaks for brand lines on small screens */
@media (max-width: 600px) {
    .brand-lines-hero .bl-2,
    .brand-lines-hero .bl-4 { display: none; }
    .brand-lines-hero .bl-1,
    .brand-lines-hero .bl-3 { opacity: 0.3; }
    .brand-lines-quote .bl-2,
    .brand-lines-quote .bl-4 { display: none; }
}

/* ===================================================================
   REFORMER PILATES KURSARTEN
   =================================================================== */
.section-courses {
    background: var(--ivory);
    text-align: center;
}
.section-courses .eyebrow { display: inline-block; }
.section-courses .brand-divider { margin-bottom: 3.5rem; }

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.8rem, 3vw, 2.6rem) clamp(1.8rem, 3vw, 2.6rem);
    row-gap: clamp(2.4rem, 4vw, 3.4rem);
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}
.course-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(48,52,50,0.08);
    border-radius: 3px;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    overflow: hidden;
}
/* terrakotta accent bar on the left edge */
.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--terrakotta);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease);
}
.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(48,52,50,0.12);
    border-color: rgba(48,52,50,0.04);
}
.course-card:hover::before { transform: scaleY(1); }

.course-card h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--anthrazit);
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    position: relative;
}
/* kurze Terrakotta-Linie unter dem Kursnamen statt Nummer */
.course-card h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--terrakotta);
}
.course-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4a4d4b;
}

@media (max-width: 760px) {
    .course-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   GUTSCHEINE (Eversports Voucher Widget)
   =================================================================== */
.section-voucher {
    background: #ece6da;
    text-align: center;
}
.section-voucher .eyebrow { display: inline-block; }
.voucher-intro {
    max-width: 620px;
    margin: 1.5rem auto 3rem;
    color: #5a5d5b;
    font-size: 1.02rem;
    line-height: 1.7;
}
.voucher-widget {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 120px;
}
