/* =========================================================
   Joiner Theme — Schreinerei / Handwerk
   ========================================================= */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
}


/* ... weitere Gewichte analog hinzufügen ... */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Variables ---------- */
:root {
    --jn-gold: #b49a67;
    --jn-gold-2: #b79969;
    --jn-dark: #322923;
    --jn-text: #4b4038;
    --jn-light: #f7f5f0;
    --jn-white: #ffffff;
    --jn-border: #e8e1d6;
    --jn-header-height: 110px;
    --jn-sticky-height: 76px;
}

body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: var(--jn-dark);
    background: var(--jn-white);
    line-height: 1.55;
}

.jn-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.jn-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--jn-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.jn-slogan {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--jn-gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .01em;
}

.jn-title {
    margin: 0;
    font-size: clamp(46px, 6.1vw, 82px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 700;
}

.jn-section-title {
    margin: 0 0 18px;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.18;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.jn-text {
    margin: 0;
    color: var(--jn-text);
    font-size: 16px;
    font-weight: 400;
}

.jn-section { padding: 110px 0; }

.jn-skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--jn-dark); color: #fff; padding: 10px 16px; z-index: 10000;
}
.jn-skip-link:focus { left: 10px; top: 10px; }

/* ---------- Buttons ---------- */
.jn-btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.jn-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 42px; padding: 0 20px; border-radius: 999px;
    font-size: 14px; font-weight: 600; transition: all .25s ease;
    border: 1px solid transparent; white-space: nowrap;
}
.jn-btn-light { background: #fff; color: var(--jn-dark); border-color: var(--jn-border); }
.jn-btn-light:hover { border-color: var(--jn-gold); color: var(--jn-gold); transform: translateY(-1px); }
.jn-btn-gold { background: var(--jn-gold); color: #fff; }
.jn-btn-gold:hover { background: var(--jn-dark); transform: translateY(-1px); }

/* =========================================================
   Header / Navigation
   ========================================================= */
.jn-header {
    position: relative;
    background: var(--jn-white);
    border-bottom: 1px solid var(--jn-border);
}

.jn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--jn-header-height);
}

.jn-logo img { height: 68px; width: auto; }

.jn-nav-list { display: flex; align-items: center; gap: 6px; }

.jn-nav-item a {
    display: inline-block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--jn-dark);
    border-radius: 999px;
    transition: all .2s ease;
}
.jn-nav-item a:hover { background: var(--jn-light); color: var(--jn-gold); }
.jn-nav-item.is-current a { color: var(--jn-gold); font-weight: 600; }

.jn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
}
.jn-hamburger span {
    display: block; width: 100%; height: 2px; background: var(--jn-dark);
    transition: all .25s ease;
}
.jn-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jn-hamburger.is-open span:nth-child(2) { opacity: 0; }
.jn-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.jn-menu-open { overflow: hidden; }

.jn-mobile-menu {
    border-top: 1px solid var(--jn-border);
    background: var(--jn-white);
}
.jn-mobile-menu ul { padding: 8px 0; }
.jn-mobile-menu a {
    display: block; padding: 14px 20px; font-size: 16px; font-weight: 500;
    color: var(--jn-dark); border-bottom: 1px solid var(--jn-border);
}
.jn-mobile-menu li.is-current a { color: var(--jn-gold); font-weight: 600; }

/* ---------- Sticky bar ---------- */
.jn-sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--jn-border);
    box-shadow: 0 6px 24px rgba(50,41,35,.08);
    transform: translateY(-100%);
    transition: transform .3s ease;
}
.jn-sticky-bar.is-visible { transform: translateY(0); }
.jn-sticky-bar .jn-header-inner { min-height: var(--jn-sticky-height); }
.jn-sticky-bar .jn-logo img { height: 44px; }

/* =========================================================
   Photo placeholder system
   (use --photo when a real image is set on the page,
   otherwise a tasteful gradient + label is shown)
   ========================================================= */
.jn-photo {
    --photo: none;
    position: relative;
    background-image: var(--photo), linear-gradient(135deg, var(--jn-dark) 0%, var(--jn-gold) 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.jn-photo::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 28% 24%, rgba(255,255,255,.16), transparent 55%);
    pointer-events: none;
}
.jn-photo[data-label]::after {
    content: attr(data-label);
    position: absolute; left: 16px; bottom: 16px;
    font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background: rgba(28,22,18,.35);
    padding: 5px 11px;
    border-radius: 5px;
    pointer-events: none;
}
.jn-photo.has-image::before,
.jn-photo.has-image::after { display: none; }

/* =========================================================
   Hero
   ========================================================= */
.jn-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    color: #fff;
}
.jn-hero::before {
    background-image: radial-gradient(circle at 28% 24%, rgba(255,255,255,.10), transparent 55%);
}
.jn-hero:not(.has-image) {
    background-image: linear-gradient(90deg, rgba(24,18,15,.55) 0%, rgba(38,30,24,.30) 100%), linear-gradient(135deg, var(--jn-dark) 0%, var(--jn-gold) 100%);
}
.jn-hero.has-image {
    background-image: linear-gradient(90deg, rgba(24,18,15,.82) 0%, rgba(38,30,24,.62) 44%, rgba(38,30,24,.20) 100%), var(--photo);
}

.jn-hero-content {
    position: relative; z-index: 2;
    max-width: 760px;
    padding: 90px 0;
}
.jn-hero .jn-text { max-width: 630px; margin: 24px 0 0; color: rgba(255,255,255,.92); }

/* ---------- Quickbar ---------- */
.jn-quickbar { background: var(--jn-light); border-bottom: 1px solid var(--jn-border); }
.jn-quickbar-inner {
    min-height: 66px;
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
    font-size: 15px; font-weight: 600;
}
.jn-phone { display: inline-flex; align-items: center; gap: 10px; color: var(--jn-dark); }
.jn-phone::before { content: ""; width: 46px; height: 2px; background: var(--jn-gold); display: inline-block; }

/* ---------- About ---------- */
.jn-about-grid {
    display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: center;
}
/* Bild rechts, Text links – per reverse:true in der Page steuerbar */
.jn-about-grid.is-reverse { grid-template-columns: 1fr 420px; }
.jn-about-grid.is-reverse .jn-image-card { order: 2; }
.jn-image-card {
    min-height: 455px; border-radius: 10px; overflow: hidden;
    box-shadow: 0 22px 60px rgba(50,41,35,.13);
}
.jn-checklist {
    display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 24px;
    margin: 26px 0 0; list-style: none; padding: 0;
}
.jn-checklist--col1 { grid-template-columns: 1fr; }
.jn-checklist li {
    position: relative; padding-left: 30px; color: var(--jn-text); font-size: 15px; line-height: 1.45;
}
/* Gold-Kreis mit weißem Haken – exakt wie Live-Site */
.jn-checklist li::before {
    content: "";
    position: absolute; left: 0; top: 2px;
    width: 19px; height: 19px;
    border-radius: 50%;
    background-color: var(--jn-gold);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.jn-center { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.jn-center .jn-text { margin: 0 auto; }

/* ---------- Services ---------- */
.jn-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.jn-service-card {
    padding: 34px 32px; min-height: 250px; border: 1px solid var(--jn-border);
    border-radius: 10px; background: #fff; transition: all .25s ease;
}
.jn-service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(50,41,35,.08); border-color: rgba(180,154,103,.45); }
.jn-service-icon { width: 38px; height: 38px; margin-bottom: 28px; color: var(--jn-gold); }
.jn-service-card h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.25; letter-spacing: -0.015em; font-weight: 700; }
.jn-service-card p { margin: 0; color: var(--jn-text); font-size: 15px; }

/* ---------- Banner ---------- */
.jn-banner-section { padding: 0; }
.jn-banner {
    --photo: none;
    position: relative; min-height: 360px; display: flex; align-items: center; color: #fff;
    background:
        linear-gradient(90deg, rgba(28,22,18,.76), rgba(28,22,18,.52)),
        linear-gradient(135deg, #231b17 0%, #7d6b58 48%, #d4c1a0 100%);
}
/* Optionales Foto-Hintergrundbild – via has-photo + CSS-Variable --photo */
.jn-banner.has-photo {
    background-image:
        linear-gradient(90deg, rgba(28,22,18,.86), rgba(28,22,18,.62)),
        var(--photo);
    background-size: cover;
    background-position: center;
}
.jn-banner .jn-container { position: relative; z-index: 2; }
.jn-banner h2 { max-width: 760px; margin: 0; font-size: clamp(30px,3.6vw,48px); line-height: 1.18; letter-spacing: -0.025em; font-weight: 700; }
.jn-banner p { max-width: 620px; margin: 18px 0 0; color: rgba(255,255,255,.86); font-size: 16px; }

/* ---------- Projects intro + Galerie ---------- */
.jn-project-intro { max-width: 700px; margin-bottom: 44px; }

/* 3×2 Foto-Galerie unter dem Intro-Text */
.jn-project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.jn-project-gallery-item {
    min-height: 246px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--jn-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .25s ease, box-shadow .25s ease;
}
.jn-project-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(50,41,35,.13);
}
/* Platzhalter-Gradient, solange kein echtes Foto eingespielt ist */
.jn-project-gallery-item.is-placeholder {
    background-image: linear-gradient(135deg, #e8e1d6 0%, #d4c9b8 100%);
}

/* ---------- Owner ---------- */
.jn-owner-section { background: var(--jn-light); }
.jn-owner-card { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; }
.jn-owner-image { min-height: 420px; border-radius: 14px; overflow: hidden; box-shadow: 0 22px 60px rgba(50,41,35,.12); }
.jn-owner-highlight {
    margin-top: 26px; padding: 22px 24px; border-left: 4px solid var(--jn-gold);
    background: #fff; color: var(--jn-text); font-size: 15px;
}

/* ---------- Split feature ---------- */
.jn-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.jn-feature-box { padding: 44px; border-radius: 12px; background: var(--jn-light); border: 1px solid var(--jn-border); }
.jn-feature-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px 26px; margin: 28px 0 0; }
.jn-feature-list li { position: relative; padding-left: 24px; font-size: 15px; color: var(--jn-text); }
.jn-feature-list li::before {
    content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px;
    border-radius: 50%; background: var(--jn-gold);
}

/* =========================================================
   Final-Sektion: 2×2 Foto-Grid links + Text rechts
   ========================================================= */
.jn-final-combined {
    padding: 100px 0;
    background: var(--jn-white);
}
.jn-final-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* 2×2 Foto-Grid */
.jn-final-photogrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.jn-final-tile {
    position: relative;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--jn-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Platzhalter-Gradient, wenn kein Bild */
.jn-final-tile:not(.has-image) {
    background-image: linear-gradient(135deg, var(--jn-dark) 0%, var(--jn-gold) 100%);
}
/* halbtransparenter Overlay für Lesbarkeit des Labels */
.jn-final-tile::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(20,14,10,.72) 0%, transparent 100%);
    pointer-events: none;
}
/* Label-Text (untere linke Ecke, wie im Screenshot) */
.jn-final-tile > span {
    position: absolute;
    bottom: 12px; left: 14px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .01em;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
    max-width: calc(100% - 28px);
}

/* Text-Seite */
.jn-final-text {}
.jn-final-h2 {
    margin: 10px 0 20px;
    font-size: clamp(32px, 3.4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--jn-dark);
}
.jn-final-text .jn-text {
    color: var(--jn-text);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 540px;
}

/* =========================================================
   Sub-page Final-CTA (Über uns etc.) – dunkle Foto-Karte
   ========================================================= */
.jn-final-cta { padding: 100px 0; }
.jn-final-card {
    --page-photo: none;
    position: relative; overflow: hidden; min-height: 440px; border-radius: 16px;
    display: flex; align-items: center; color: #fff;
    background-image:
        linear-gradient(90deg, rgba(28,20,14,.9) 0%, rgba(28,20,14,.72) 48%, rgba(28,20,14,.32) 100%),
        var(--page-photo),
        linear-gradient(135deg, var(--jn-dark) 0%, var(--jn-gold) 100%);
    background-size: cover;
    background-position: center;
}
.jn-final-card-content { position: relative; z-index: 2; max-width: 780px; padding: 60px; }
.jn-final-card h2 {
    margin: 10px 0 18px; font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.16; letter-spacing: -0.025em; font-weight: 800;
}
.jn-final-card p { margin: 0; max-width: 640px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.6; }

/* Region-Sektion: Titel für "Unser Standard – dein Vorteil" */
.jn-region-standard-title {
    margin: 28px 0 6px; font-size: 18px; font-weight: 700; color: var(--jn-dark); letter-spacing: -0.01em;
}


   ========================================================= */
.jn-page-hero { padding: 70px 0 30px; }
.jn-page-title { margin: 0 0 6px; font-size: clamp(34px, 4vw, 54px); font-weight: 700; letter-spacing: -0.02em; }
.jn-page-intro { max-width: 700px; color: var(--jn-text); font-size: 17px; margin-top: 10px; }
.jn-page-content { padding-bottom: 60px; }
.jn-page-content h2 { font-size: 28px; margin: 36px 0 14px; font-weight: 700; }
.jn-page-content h3 { font-size: 21px; margin: 28px 0 12px; font-weight: 600; }
.jn-page-content p { color: var(--jn-text); margin: 0 0 16px; font-size: 16px; }
.jn-page-content ul { margin: 0 0 16px; padding-left: 22px; list-style: disc; color: var(--jn-text); }
.jn-page-content a { color: var(--jn-gold); text-decoration: underline; }

/* =========================================================
   Sub-page intro header (Projekte / Kontakt)
   ========================================================= */
.jn-intro-hero { padding: 84px 0 60px; background: var(--jn-light); border-bottom: 1px solid var(--jn-border); }
.jn-intro-hero .jn-container { max-width: 820px; }
.jn-intro-hero .jn-title { font-size: clamp(36px, 4.6vw, 58px); }
.jn-intro-hero .jn-text { margin-top: 20px; font-size: 17px; }

/* =========================================================
   Project category cards (Projekte page)
   ========================================================= */
.jn-projectcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 54px; }
.jn-projectcard {
    display: flex; flex-direction: column;
    border: 1px solid var(--jn-border); border-radius: 12px; overflow: hidden;
    background: #fff; transition: all .25s ease;
}
.jn-projectcard:hover { box-shadow: 0 20px 50px rgba(50,41,35,.10); transform: translateY(-3px); border-color: rgba(180,154,103,.35); }
.jn-projectcard .jn-photo { min-height: 230px; }
.jn-projectcard-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.jn-projectcard-body .jn-eyebrow { margin-bottom: 10px; }
.jn-projectcard-body h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; font-weight: 700; letter-spacing: -0.015em; }
.jn-projectcard-body p { margin: 0 0 16px; color: var(--jn-text); font-size: 15px; }
.jn-projectcard-list { margin: 0 0 22px; display: grid; gap: 10px; list-style: none; padding: 0; }
.jn-projectcard-list li {
    position: relative; padding-left: 28px; font-size: 14px; color: var(--jn-text); line-height: 1.45;
}
.jn-projectcard-list li::before {
    content: "";
    position: absolute; left: 0; top: 2px;
    width: 17px; height: 17px;
    border-radius: 50%;
    background-color: var(--jn-gold);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}
.jn-projectcard-link { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--jn-gold); display: inline-flex; align-items: center; gap: 6px; }
.jn-projectcard-link::after { content: "→"; transition: transform .2s ease; }
.jn-projectcard-link:hover::after { transform: translateX(3px); }

/* =========================================================
   Contact info cards (Kontakt page)
   ========================================================= */
.jn-contactcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.jn-contactcard { padding: 30px 26px; border: 1px solid var(--jn-border); border-radius: 12px; background: #fff; }
.jn-contactcard-icon {
    width: 46px; height: 46px; border-radius: 50%; background: var(--jn-light);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    color: var(--jn-gold);
}
.jn-contactcard-icon svg { width: 22px; height: 22px; }
.jn-contactcard .jn-eyebrow { margin-bottom: 6px; font-size: 12px; }
.jn-contactcard h3 { margin: 0 0 10px; font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.jn-contactcard p { margin: 0; color: var(--jn-text); font-size: 14.5px; line-height: 1.5; }
.jn-contactcard a { color: var(--jn-dark); font-weight: 600; text-decoration: none; }
.jn-contactcard a:hover { color: var(--jn-gold); }

/* =========================================================
   Map (Kontakt page)
   ========================================================= */
.jn-map-wrap { margin-top: 54px; border-radius: 12px; overflow: hidden; border: 1px solid var(--jn-border); box-shadow: 0 14px 36px rgba(50,41,35,.08); }
.jn-map { width: 100%; height: 380px; background: var(--jn-light); }
.jn-map .leaflet-popup-content { font-family: "Poppins", sans-serif; font-size: 13px; line-height: 1.5; }
.jn-map .leaflet-popup-content strong { color: var(--jn-dark); }

/* =========================================================
   Contact form (Kontakt page)
   ========================================================= */
.jn-form-section { background: var(--jn-light); border-top: 1px solid var(--jn-border); border-bottom: 1px solid var(--jn-border); }
.jn-form-wrap { max-width: 680px; margin: 48px auto 0; background: #fff; border: 1px solid var(--jn-border); border-radius: 14px; padding: 40px; }

.jn-form-wrap form { display: grid; gap: 18px; }
.jn-form-wrap .form-group,
.jn-form-wrap .grid-3,
.jn-form-wrap .grid-6 { display: grid; gap: 18px; }
.jn-form-wrap label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 600; color: var(--jn-dark); }
.jn-form-wrap input[type="text"],
.jn-form-wrap input[type="email"],
.jn-form-wrap input[type="tel"],
.jn-form-wrap textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--jn-border); border-radius: 8px;
    font-family: inherit; font-size: 15px; color: var(--jn-dark); background: var(--jn-light);
    transition: border-color .2s ease, background .2s ease;
}
.jn-form-wrap input:focus,
.jn-form-wrap textarea:focus { outline: none; border-color: var(--jn-gold); background: #fff; }
.jn-form-wrap textarea { min-height: 130px; resize: vertical; }
.jn-form-wrap .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jn-form-wrap .form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--jn-text); font-weight: 400; }
.jn-form-wrap .form-checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--jn-gold); flex-shrink: 0; }
.jn-form-wrap input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--jn-gold); margin-right: 8px; vertical-align: middle; }
.jn-form-wrap button[type="submit"] {
    justify-self: start; margin-top: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 46px; padding: 0 28px; border-radius: 999px; border: 0;
    background: var(--jn-gold); color: #fff; font-size: 15px; font-weight: 600; cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}
.jn-form-wrap button[type="submit"]:hover { background: var(--jn-dark); transform: translateY(-1px); }
.jn-form-wrap button[type="reset"] { display: none; }
.jn-form-wrap .form-messages,
.jn-form-wrap .alert { padding: 14px 18px; border-radius: 8px; background: #eef7ee; color: #2a5c2a; font-size: 14px; margin-bottom: 4px; }
.jn-form-wrap .form-error,
.jn-form-wrap .alert.error,
.jn-form-wrap .alert-danger { background: #fbeaea; color: #8a2c2c; }
.jn-form-wrap .help-block,
.jn-form-wrap .validation-message { color: #b34141; font-size: 12.5px; margin-top: 5px; }

/* =========================================================
   FAQ accordion (Kontakt page)
   ========================================================= */
.jn-faq { margin-top: 48px; display: grid; gap: 12px; }
.jn-faq-item { border: 1px solid var(--jn-border); border-radius: 10px; background: #fff; overflow: hidden; }
.jn-faq-item summary {
    list-style: none; cursor: pointer; padding: 18px 24px;
    font-size: 16px; font-weight: 600; color: var(--jn-dark);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.jn-faq-item summary::-webkit-details-marker { display: none; }
.jn-faq-item summary::after {
    content: "+"; flex-shrink: 0; font-size: 20px; font-weight: 400; color: var(--jn-gold);
    transition: transform .2s ease;
}
.jn-faq-item[open] summary::after { transform: rotate(45deg); }
.jn-faq-item-body { padding: 0 24px 22px; color: var(--jn-text); font-size: 15px; }

@media (max-width: 980px) {
    .jn-projectcards { grid-template-columns: 1fr; }
    .jn-contactcards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .jn-contactcards { grid-template-columns: 1fr; }
    .jn-form-wrap { padding: 26px 22px; }
    .jn-form-wrap .form-row-2 { grid-template-columns: 1fr; }
    .jn-intro-hero { padding: 60px 0 44px; }
}

/* =========================================================
   Footer
   ========================================================= */
.jn-footer { background: #fff; color: var(--jn-dark); padding: 58px 0 28px; overflow: hidden; }
.jn-footer-grid {
    display: grid; grid-template-columns: 360px 160px 210px 250px;
    column-gap: 72px; align-items: flex-start;
}
.jn-footer-logo { width: 275px; max-width: 100%; height: auto; margin: 0 0 26px; }
.jn-footer-description { max-width: 300px; margin: 0 0 28px; color: #5f5650; font-size: 17px; line-height: 1.48; }
.jn-footer-social-title { max-width: 280px; margin: 0 0 16px; color: #111; font-size: 21px; line-height: 1.18; font-weight: 700; }
.jn-footer-socials { display: flex; align-items: center; gap: 24px; }
.jn-social-link { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--jn-gold); transition: all .25s ease; }
.jn-social-link:hover { color: var(--jn-dark); transform: translateY(-2px); }
.jn-social-link svg { width: 36px; height: 36px; }

.jn-footer-col { min-height: 304px; }
.jn-footer-col-separated { border-left: 2px solid var(--jn-gold); padding-left: 52px; }
.jn-footer-heading { margin: 0 0 30px; color: #111; font-size: 22px; line-height: 1.25; font-weight: 500; }
.jn-footer-list li { margin: 0 0 26px; }
.jn-footer-list a, .jn-footer-bottom-links a { color: #111; font-size: 17px; line-height: 1.5; transition: color .25s ease; }
.jn-footer-list a:hover, .jn-footer-bottom-links a:hover { color: var(--jn-gold); }

.jn-footer-opening { color: #111; font-size: 16px; line-height: 1.55; min-width: 230px; }
.jn-footer-opening strong { display: block; margin: 0 0 10px; font-size: 16px; font-weight: 700; color: #111; }
.jn-footer-opening p { margin: 0 0 26px; }

.jn-footer-bottom {
    margin-top: 66px; padding-top: 24px; border-top: 1px solid var(--jn-gold);
    display: flex; align-items: center; justify-content: space-between; gap: 30px;
    color: #6f655d; font-size: 15px;
}
.jn-footer-bottom-links { display: flex; align-items: center; gap: 20px; }
.jn-footer-bottom-links a { color: #6f655d; font-size: 15px; }
.jn-footer-separator { color: var(--jn-gold); margin: 0 4px; }

/* =========================================================
   Back to top
   ========================================================= */
.jn-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 9500;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--jn-dark); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(50,41,35,.25);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .25s ease;
}
.jn-to-top svg { width: 20px; height: 20px; }
.jn-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.jn-to-top:hover { background: var(--jn-gold); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
    .jn-footer-grid { grid-template-columns: 1fr 1fr; column-gap: 60px; row-gap: 48px; }
    .jn-footer-col { min-height: auto; }
    .jn-footer-col-separated { border-left: none; padding-left: 0; }
}

@media (max-width: 980px) {
    .jn-about-grid, .jn-split, .jn-owner-card { grid-template-columns: 1fr; gap: 42px; }
    .jn-about-grid.is-reverse { grid-template-columns: 1fr; }
    .jn-about-grid.is-reverse .jn-image-card { order: -1; }
    .jn-services-grid { grid-template-columns: repeat(2,1fr); }
    .jn-project-gallery { grid-template-columns: repeat(2,1fr); }
    .jn-image-card, .jn-owner-image { min-height: 360px; }
    .jn-final-layout { grid-template-columns: 1fr; gap: 40px; }
    .jn-final-tile { min-height: 190px; }
}

@media (max-width: 900px) {
    .jn-nav { display: none; }
    .jn-hamburger { display: flex; }
    .jn-sticky-bar .jn-nav { display: none; }
}

@media (min-width: 901px) {
    .jn-mobile-menu { display: none !important; }
}

@media (max-width: 700px) {
    .jn-footer { padding: 52px 0 26px; }
    .jn-footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .jn-footer-logo { width: 240px; }
    .jn-footer-description { max-width: 100%; font-size: 16px; }
    .jn-footer-social-title { font-size: 20px; }
    .jn-footer-heading { margin-bottom: 18px; }
    .jn-footer-list li { margin-bottom: 13px; }
    .jn-footer-bottom { margin-top: 50px; flex-direction: column; align-items: flex-start; gap: 14px; }
    .jn-footer-bottom-links { flex-wrap: wrap; }
}

@media (max-width: 680px) {
    .jn-container { width: min(calc(100% - 28px), 1120px); }
    .jn-hero { min-height: 620px; }
    .jn-section { padding: 76px 0; }
    .jn-final-cta { padding: 60px 0; }
    .jn-final-card-content { padding: 36px 28px; }
    .jn-final-combined { padding: 60px 0; }
    .jn-final-photogrid { grid-template-columns: 1fr 1fr; }
    .jn-final-tile { min-height: 160px; }
    .jn-quickbar-inner { grid-template-columns: 1fr; gap: 10px; padding: 18px 0; }
    .jn-phone::before { width: 28px; }
    .jn-services-grid, .jn-project-gallery, .jn-checklist, .jn-feature-list { grid-template-columns: 1fr; }
    .jn-project-gallery-item { min-height: 220px; }
    .jn-service-card { min-height: auto; }
    .jn-title { font-size: clamp(42px, 12vw, 60px); }
    .jn-hero-content { padding: 66px 0; }
    .jn-logo img { height: 50px; }
}
