/* =============================================================
   Jürgens Hotelausstatter – main.css
   Design: Dark Luxury / Gold Accents
   ============================================================= */

/* ── Variablen ─────────────────────────────────────────────── */
:root {
  --gold:       #c9a86c;
  --gold-dark:  #a8884e;
  --dark:       #1a1818;
  --dark-2:     #252222;
  --dark-3:     #2e2b2b;
  --mid:        #3d3a3a;
  --text-light: #f0ece4;
  --text-muted: #9a9490;
  --white:      #ffffff;
  --nav-bg:     #1a1818;
  --section-bg: #f5f3ef;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', 'Open Sans', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: #333;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.jh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(201,168,108,.15);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  height: 72px;
  display: flex; align-items: center;
}
.jh-nav-inner {
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center;
}
/* Logo */
.jh-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.jh-logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
}
/* Echtes Logo-PNG */
.jh-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  /* Logo auf Gold umfärben: Schrift + Form bleiben erhalten */
  filter: brightness(0) saturate(100%) invert(76%) sepia(29%) saturate(640%) hue-rotate(5deg) brightness(1.05);
  transition: filter .3s;
}
.jh-logo-img:hover {
  filter: brightness(0) saturate(100%) invert(76%) sepia(29%) saturate(640%) hue-rotate(5deg) brightness(1.25);
}
/* Fallback-Varianten (per Klasse am <img> wechselbar):
   .jh-logo-img--white  → Logo komplett weiß
   .jh-logo-img--gold   → Logo gold (Standard, aktiv)
*/
.jh-logo-img--white {
  filter: brightness(0) invert(1);
}
.jh-logo-img--white:hover {
  filter: brightness(0) invert(1) brightness(0.85);
}
.jh-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.jh-logo-brand {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--dark); letter-spacing: .08em;
  text-transform: uppercase;
}
.jh-logo-sub {
  font-size: 9px; font-weight: 400;
  color: var(--gold); letter-spacing: .18em;
  text-transform: uppercase; margin-top: 3px;
}
/* Menu */
.jh-menu {
  display: flex; align-items: center;
  list-style: none; gap: 8px;
  margin-left: auto;
}
.jh-menu li a {
  font-size: 13px; font-weight: 700;
  color: rgba(240,236,228,.8); letter-spacing: .03em;
  padding: 8px 14px; border-radius: 3px;
  transition: color .2s;
}
.jh-menu li a:hover, .jh-menu li a.active { color: var(--gold); }
.jh-menu li.menu-cta a {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 20px; border-radius: 30px;
  font-weight: 700; letter-spacing: .06em;
  transition: background .2s, transform .2s;
  font-size: 12px; text-transform: uppercase;
}
.jh-menu li.menu-cta a:hover {
  background: var(--gold-dark); transform: translateY(-1px);
}
/* Mobile Hamburger */
.jh-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 8px;
  margin-left: auto; background: none; border: none;
}
.jh-burger span {
  display: block; width: 24px; height: 2px;
  background: rgba(240,236,228,.85); border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.jh-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.jh-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--dark);
}
.jh-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,8,8,.78) 0%,
    rgba(10,8,8,.55) 50%,
    rgba(10,8,8,.25) 100%
  );
}
.jh-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}
.jh-hero-eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--gold); letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.jh-hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.jh-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; max-width: 680px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.jh-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(240,236,228,.75);
  font-weight: 300; letter-spacing: .02em;
  max-width: 480px; line-height: 1.7;
  margin-bottom: 40px;
}
.jh-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.jh-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 14px 32px; border-radius: 40px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(201,168,108,.35);
}
.jh-btn-gold:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,108,.45);
}
.jh-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 32px; border-radius: 40px;
  border: 1px solid rgba(255,255,255,.4);
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.jh-btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.jh-sec-label {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: .3em; text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.jh-sec-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.jh-sec-h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700; color: var(--dark); line-height: 1.2;
  margin-bottom: 16px;
}
.jh-sec-h2.light { color: var(--white); }
.jh-sec-desc {
  font-size: 15px; color: #666; line-height: 1.8;
  max-width: 540px;
}
.jh-sec-desc.light { color: rgba(240,236,228,.65); }

/* ── PRODUKT-KARTEN GRID ─────────────────────────────────────── */
.jh-products {
  padding: 80px 0 88px; background: var(--white);
}
.jh-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.jh-products-head { margin-bottom: 52px; }

.jh-product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.jh-product-card {
  position: relative; height: 460px; overflow: hidden;
  cursor: pointer; display: block;
}
.jh-product-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.jh-product-card:hover img { transform: scale(1.08); }
.jh-product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,8,.88) 0%,
    rgba(10,8,8,.45) 40%,
    rgba(10,8,8,.1) 100%
  );
  transition: background .4s;
}
.jh-product-card:hover .jh-product-overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,8,.92) 0%,
    rgba(10,8,8,.55) 50%,
    rgba(10,8,8,.2) 100%
  );
}
.jh-product-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(0); transition: transform .35s;
}
.jh-product-card:hover .jh-product-body { transform: translateY(-8px); }
.jh-product-cat {
  font-size: 10px; font-weight: 700; color: var(--gold);
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: 8px;
}
.jh-product-title {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700; color: var(--white);
  line-height: 1.3; margin-bottom: 8px;
}
.jh-product-desc {
  font-size: 13px; color: rgba(240,236,228,.7);
  line-height: 1.6; margin-bottom: 18px;
}
.jh-btn-card {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 10px 22px; border-radius: 30px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.jh-product-card:hover .jh-btn-card {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}

/* ── DIENSTLEISTUNGS-SECTION (Matratzenreinigung) ───────────── */
.jh-service {
  background: var(--dark);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.jh-service::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a86c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.jh-service-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.jh-service-content { padding-right: 20px; }
.jh-service-checks {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin: 28px 0 36px;
}
.jh-service-checks li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text-light);
  font-weight: 400; line-height: 1.5;
}
.jh-service-checks li::before {
  content: '✓';
  color: var(--gold); font-size: 14px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.jh-service-img {
  position: relative; border-radius: 4px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.jh-service-img img {
  width: 100%; height: 440px; object-fit: cover;
  display: block;
}
.jh-service-img::before {
  content: ''; position: absolute;
  inset: 0; z-index: 1;
  border: 1px solid rgba(201,168,108,.2);
  border-radius: 4px; pointer-events: none;
}

/* ── FEATURES / VORTEILE ─────────────────────────────────────── */
.jh-features {
  padding: 88px 0; background: var(--section-bg);
}
.jh-feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; margin-top: 52px;
}
.jh-feature-card {
  background: var(--white); padding: 36px 28px;
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.jh-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.jh-feature-icon {
  width: 52px; height: 52px; margin-bottom: 20px;
  background: rgba(201,168,108,.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.jh-feature-icon svg { color: var(--gold); }
.jh-feature-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-bottom: 10px;
}
.jh-feature-text {
  font-size: 14px; color: #777; line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.jh-cta-banner {
  background: var(--gold);
  padding: 60px 32px; text-align: center;
}
.jh-cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700; color: var(--dark);
  margin-bottom: 12px;
}
.jh-cta-banner p {
  font-size: 16px; color: rgba(26,24,24,.75);
  margin-bottom: 28px;
}
.jh-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 14px 36px; border-radius: 40px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.jh-btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.jh-testimonials {
  padding: 88px 0; background: var(--white);
}
.jh-testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; margin-top: 52px;
}
.jh-testimonial-card {
  padding: 32px; border: 1px solid #ebe7e0;
  border-radius: 4px; position: relative;
}
.jh-testimonial-card::before {
  content: '"';
  font-family: var(--font-head); font-size: 64px; color: var(--gold);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; opacity: .5;
}
.jh-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
.jh-testimonial-text {
  font-size: 14px; color: #555; line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.jh-testimonial-author strong {
  font-size: 14px; color: var(--dark); font-weight: 700;
}
.jh-testimonial-author span {
  font-size: 12px; color: #999; display: block;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.jh-footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.jh-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.jh-footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,108,.2);
}
.jh-footer-col p {
  font-size: 13px; color: rgba(240,236,228,.45);
  line-height: 1.75;
}
.jh-footer-col ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.jh-footer-col ul li a {
  font-size: 13px; color: rgba(240,236,228,.55);
  transition: color .2s;
}
.jh-footer-col ul li a:hover { color: var(--gold); }
.jh-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.jh-fc-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: rgba(240,236,228,.6);
}
.jh-fc-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(201,168,108,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jh-fc-icon svg { color: var(--gold); }
.jh-footer-bottom {
  padding: 20px 32px; text-align: center;
}
.jh-footer-bottom p {
  font-size: 12px; color: rgba(240,236,228,.2);
}

/* ══ INNER-PAGE HERO (für Unterseiten) ════════════════════════ */
.jh-page-hero {
  position: relative; min-height: 520px;
  display: flex; align-items: flex-end;
  padding-top: 68px; overflow: hidden;
}
.jh-page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: var(--dark);
}
.jh-page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,8,.85) 0%,
    rgba(10,8,8,.5) 50%,
    rgba(10,8,8,.2) 100%
  );
}
.jh-page-hero-body {
  position: relative; z-index: 2;
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 0 32px 60px;
}
.jh-page-hero .jh-sec-label { margin-bottom: 16px; }
.jh-page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; max-width: 660px;
  margin-bottom: 16px;
}
.jh-page-hero p {
  font-size: 16px; color: rgba(240,236,228,.7);
  max-width: 500px; line-height: 1.7;
}

/* ══ PRODUKT-DETAIL SECTION ════════════════════════════════════ */
.jh-detail {
  padding: 88px 0; background: var(--white);
}
.jh-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.jh-detail-grid.reverse { direction: rtl; }
.jh-detail-grid.reverse > * { direction: ltr; }
.jh-detail-img {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.jh-detail-img img { width: 100%; height: 400px; object-fit: cover; }
.jh-detail-content { padding-top: 8px; }
.jh-detail-content .jh-sec-h2 { font-size: clamp(22px,2.8vw,36px); }
.jh-detail-content p {
  font-size: 15px; color: #555; line-height: 1.8; margin: 16px 0;
}
.jh-detail-list {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0 32px;
}
.jh-detail-list li {
  font-size: 14px; color: #444;
  display: flex; align-items: flex-start; gap: 10px;
}
.jh-detail-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}

/* ══ PRODUKT-KARTEN (Übersicht) ════════════════════════════════ */
.jh-product-overview { padding: 0 0 88px; background: var(--white); }
.jh-overview-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.jh-overview-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.jh-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
}
.jh-overview-card-img { height: 240px; overflow: hidden; }
.jh-overview-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.jh-overview-card:hover .jh-overview-card-img img { transform: scale(1.06); }
.jh-overview-card-body { padding: 24px; }
.jh-overview-card-body h3 {
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.jh-overview-card-body p {
  font-size: 13px; color: #777; line-height: 1.65; margin-bottom: 18px;
}

/* ══ REINIGUNG STEPS ══════════════════════════════════════════ */
.jh-steps { padding: 88px 0; background: var(--section-bg); }
.jh-steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; margin-top: 52px;
  counter-reset: step;
}
.jh-step-card {
  background: var(--white); padding: 32px 24px;
  border-radius: 4px; text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  position: relative;
  counter-increment: step;
}
.jh-step-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-size: 42px;
  font-weight: 700; color: rgba(201,168,108,.15);
  display: block; line-height: 1;
  margin-bottom: 16px;
}
.jh-step-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.jh-step-text { font-size: 13px; color: #777; line-height: 1.65; }

/* ══ RESPONSIVE ════════════════════════════════════════════════ */
/* ══ RESPONSIVE ══════════════════════════════════════════════ */

/* Tablet Landscape (≤1024px) */
@media (max-width: 1024px) {
  .jh-product-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .jh-product-card:last-child { display: none; }
  .jh-service-grid { grid-template-columns: 1fr; gap: 48px; }
  .jh-service-content { padding-right: 0; }
  .jh-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .jh-detail-grid.reverse { direction: ltr; }
  .jh-feature-grid { grid-template-columns: 1fr 1fr; }
  .jh-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jh-steps-grid { grid-template-columns: 1fr 1fr; }
  .jh-overview-grid { grid-template-columns: 1fr 1fr; }
  .jh-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .jh-detail-img img { height: 320px; }
  .jh-service-img img { height: 360px; }
  .jh-page-hero { min-height: 420px; }
}

/* Tablet Portrait / Handy Landscape (≤768px) */
@media (max-width: 768px) {
  /* Nav → Hamburger */
  .jh-menu { display: none; }
  .jh-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: #1a1818;
    border-top: 1px solid rgba(201,168,108,.15); padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    z-index: 998; overflow-y: auto; gap: 4px;
  }
  .jh-menu.open li { width: 100%; }
  .jh-menu.open li a {
    display: block; padding: 13px 16px; font-size: 15px;
    border-bottom: 1px solid #f0ede7;
  }
  .jh-menu.open .menu-cta a {
    margin-top: 12px; text-align: center;
    border-radius: 8px; background: var(--gold); color: var(--dark);
    border-bottom: none;
  }
  .jh-burger { display: flex; }
  .jh-menu.open li a { color: rgba(240,236,228,.8) !important; border-bottom-color: rgba(255,255,255,.07) !important; }
  .jh-menu.open li a:hover { color: #c9a86c !important; }
  .jh-menu.open .menu-cta a { background: #c9a86c !important; color: #1a1818 !important; }

  /* Hero */
  .jh-hero { min-height: 100svh; }
  .jh-hero-content { padding: 100px 20px 60px; }
  .jh-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .jh-btn-gold, .jh-btn-outline { width: 100%; justify-content: center; }

  /* Grids → 1 Spalte */
  .jh-product-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 16px; }
  .jh-product-card { display: block !important; height: 320px; }
  .jh-feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .jh-testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .jh-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .jh-overview-grid { grid-template-columns: 1fr; }
  .jh-steps-grid { grid-template-columns: 1fr 1fr; }

  /* Sections */
  .jh-products { padding: 60px 0; }
  .jh-service { padding: 64px 0; }
  .jh-features { padding: 64px 0; }
  .jh-testimonials { padding: 64px 0; }
  .jh-detail { padding: 60px 0; }
  .jh-steps { padding: 60px 0; }
  .jh-product-overview { padding-bottom: 60px; }
  .jh-cta-banner { padding: 48px 20px; }

  /* Page Hero */
  .jh-page-hero { min-height: 360px; }
  .jh-page-hero-body { padding: 0 20px 40px; }
  .jh-page-hero h1 { font-size: clamp(26px,7vw,40px); }

  /* Detail Images */
  .jh-detail-img img { height: 260px; }
  .jh-service-img img { height: 280px; }

  /* Footer */
  .jh-footer { padding: 52px 0 0; }
  .jh-footer-bottom { padding: 16px 20px; }

  /* Wrap padding */
  .jh-wrap { padding: 0 20px; }
}

/* Handy Portrait (≤480px) */
@media (max-width: 480px) {
  .jh-wrap { padding: 0 16px; }
  .jh-hero-content { padding: 88px 16px 52px; }
  .jh-steps-grid { grid-template-columns: 1fr; }
  .jh-overview-card-img { height: 200px; }
  .jh-product-card { height: 280px; }
  .jh-product-title { font-size: 19px; }
  .jh-page-hero { min-height: 300px; }
  .jh-page-hero h1 { font-size: clamp(24px,8vw,36px); }
  .jh-cta-banner { padding: 40px 16px; }

  /* Service section auf Handy */
  .jh-service-grid { gap: 36px; }
  .jh-service-img img { height: 220px; }

  /* Footer */
  .jh-footer-grid { gap: 24px; }
  .jh-footer { padding: 44px 0 0; }
}

/* Sehr kleine Handys (≤375px – iPhone SE) */
@media (max-width: 375px) {
  .jh-wrap { padding: 0 14px; }
  .jh-hero-h1 { font-size: 32px; }
  .jh-hero-sub { font-size: 14px; }
  .jh-btn-gold, .jh-btn-outline { padding: 12px 24px; font-size: 12px; }
  .jh-logo-brand { font-size: 15px; }
}
