/* ================== BASIS ================== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  text-align: left;
}
a { color: gold; text-decoration: none; }
a:hover { opacity: .9; }

/* Seitencontainer (Unterseiten) */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 80px;
  line-height: 1.7;
  color: #e9e9e9;
}
.page h2 {
  color: #fff;
  font-size: clamp(20px, 2.8vw, 28px);
  margin: 26px 0 12px;
}

/* ================== NAVIGATION (Hamburger links von Kontakt, Roll-Down) ================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #000; border-bottom: 1px solid rgba(212,175,55,.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.nav-brand img { width: 32px; height: 32px; object-fit: contain; }
.nav-brand span { font-weight: 700; letter-spacing: .3px; }

/* Aktionen rechts: Hamburger + Kontakt */
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Kontakt-Button bleibt immer sichtbar */
.btn-nav {
  border: 1px solid gold; color: gold !important;
  padding: 8px 12px; border-radius: 6px;
}
.btn-nav:hover { background: gold; color: #000 !important; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 42px; height: 32px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Roll-Down Panel – animiert über echte Höhe (JS setzt max-height inline) */
.menu-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height .80s cubic-bezier(.22,.61,.36,1),
    opacity   .45s ease,
    border-color .80s ease;
  border-bottom: 1px solid transparent;
  background: rgba(10,10,10,.98);
  will-change: max-height, opacity;
}
.menu-panel.open {
  opacity: 1;
  border-bottom-color: rgba(212,175,55,.15);
}
.menu-list { list-style: none; margin: 0; padding: 10px 16px 16px; }
.menu-list li { border-top: 1px solid rgba(212,175,55,.10); }
.menu-list li:first-child { border-top: none; }
.menu-list a { display: block; padding: 12px 2px; color: #eee; font-size: 15px; }
.menu-list a:hover { color: gold; }

/* ================== HERO (langsamere Animation) ================== */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(212,175,55,.10), rgba(0,0,0,0)) , #000;
  padding: 96px 20px 120px;
  border-bottom: 1px solid rgba(212,175,55,.15);
  overflow: hidden; text-align: center;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -40px; height: 220px;
  background: radial-gradient(60% 40% at 50% 0%, rgba(212,175,55,.18), rgba(0,0,0,0));
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }

/* sanftere Sequenz */
.hero-logo {
  max-width: min(480px, 90vw);
  width: 100%;
  height: auto;
  margin: 8px auto 18px;
  filter: drop-shadow(0 4px 18px rgba(212,175,55,.18));
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.2s ease-out .20s forwards;
}
.hero-claim {
  font-size: clamp(28px, 5vw, 52px); line-height: 1.1;
  margin: 10px 0 12px; color: gold; letter-spacing: .2px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 1.2s ease-out .50s forwards;
}
.hero-subline {
  font-size: clamp(16px, 2.6vw, 20px); color: #e6e6e6; margin: 6px 0;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 1.2s ease-out .80s forwards;
}
.hero-subline-2 {
  color: #bfbfbf; opacity: 0; transform: translateY(8px);
  animation: fadeUp 1.2s ease-out 1.10s forwards;
}
.hero-ctas {
  margin-top: 26px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(6px);
  animation: fadeUp 1.2s ease-out 1.40s forwards;
}

/* Buttons – Primär/Sekundär */
.btn { 
  display: inline-block; padding: 10px 18px; border-radius: 6px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .06s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: gold; color: #000; border: none; }
.btn-primary:hover { background: #e6c200; }
.btn-secondary { background: transparent; color: #fff; border: 1px solid #666; }
.btn-secondary:hover { border-color: gold; color: gold; }

/* Einblend-Animation */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero { padding: 80px 16px 96px; }
  .hero-logo {
  max-width: min(480px, 90vw);
  width: 100%;
  height: auto;
  margin: 8px auto 18px;
  filter: drop-shadow(0 4px 18px rgba(212,175,55,.18));
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1.2s ease-out .20s forwards;
}
}

/* ================== PAGE HEADER ================== */
.page-header {
  background: linear-gradient(180deg, rgba(212,175,55,.10), rgba(0,0,0,0)) #000;
  border-bottom: 1px solid rgba(212,175,55,.15);
  padding: 64px 20px 56px; text-align: center;
}
.page-header h1 {
  margin: 0; font-size: clamp(26px, 4vw, 40px); color: gold; letter-spacing: .3px;
}

/* ================== FORMULAR-BASIS ================== */
input, select, textarea { font: inherit; }
.kontakt-formular { display: grid; gap: 10px; max-width: 680px; }
.kontakt-formular input, .kontakt-formular textarea {
  background: #0c0c0c; border: 1px solid #222; color: #f1f1f1;
  padding: 10px 12px; border-radius: 6px; outline: none;
}
.kontakt-formular input:focus, .kontakt-formular textarea:focus {
  border-color: gold; box-shadow: 0 0 0 2px rgba(212,175,55,.12);
}

/* ================== KALKULATOR (Layout/Optik) ================== */
.calc { max-width: 1100px; margin: 0 auto; padding: 10px 0 80px; }
.calc h2 { color: gold; margin: 0 0 8px; }
.calc-note { color: #bfbfbf; margin-bottom: 18px; }

.calc-form { background:#0a0a0a; border:1px solid rgba(212,175,55,.15); border-radius:10px; padding:16px; }
.calc-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; }
@media (max-width: 900px){ .calc-grid{ grid-template-columns:1fr; } }

.calc-form label { display:block; font-size:13px; color:#d8d8d8; margin:6px 0 6px; }
.calc-form input, .calc-form select {
  width:100%; background:#0c0c0c; color:#f1f1f1;
  border:1px solid #222; border-radius:8px; padding:10px 12px; outline:none;
}
.calc-form input:focus, .calc-form select:focus { border-color: gold; box-shadow:0 0 0 2px rgba(212,175,55,.12); }

.calc-actions { margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

.calc-result {
  margin-top:16px; background:#000; border:1px solid rgba(212,175,55,.2);
  border-radius:10px; padding:16px;
}
.calc-sum { font-size:22px; color: gold; margin: 0 0 10px; }
.calc-breakdown { font-size:14px; color:#d8d8d8; line-height:1.6; }
.calc-breakdown .row { display:flex; justify-content: space-between; gap:12px; padding:6px 0; border-bottom:1px dashed rgba(212,175,55,.15); }
.calc-breakdown .row:last-child { border-bottom:none; }

/* Checkbox-Labels exakt auf Textgrundlinie ausrichten */
.label-checkbox {
  display: inline-flex; align-items: center; gap: 8px; line-height: 1.4; cursor: pointer;
}
.label-checkbox input[type="checkbox"] { margin: 0; transform: translateY(1px); }

/* Disabled-Look (Sanierungsfelder, wenn aus) */
input:disabled, select:disabled, textarea:disabled {
  opacity: .6; cursor: not-allowed; background: #0a0a0a; border-color: #1a1a1a;
}

/* Numerische Optik für CapEx */
#capex { letter-spacing: .3px; }

/* ================== FOOTER ================== */
.site-footer { border-top: 1px solid rgba(212,175,55,.15); background: #000; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 22px 20px;
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  color: #bfbfbf; font-size: 14px;
}
.footer-nav a { color: #d8d8d8; margin-left: 16px; }
.footer-nav a:hover { color: gold; }

/* ================== ASSETKLASSEN-BILD ================== */
.asset-section {
  text-align: center;
  padding: 40px 20px;
  background: #000;
}

.asset-section .asset-image {
  max-width: 1200px;   /* Bildbreite begrenzen */
  width: 100%;         /* responsive */
  height: auto;
  border-radius: 10px; /* optional: leicht abgerundet */
  box-shadow: 0 8px 22px rgba(0,0,0,0.5);
}

/* KS: asset banner refined */
.ks-asset{position:relative;display:block}
.ks-asset-banner{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  background:none!important;color:#fff;
  font-size:3rem;font-weight:400;line-height:1.2;
  text-align:center;text-shadow:0 3px 8px rgba(0,0,0,.6);
  max-width:90%;width:90%;padding:0 2%;
}

/* KS: gentle fade-in */
.ks-fadein{opacity:0;transform:translateY(20px);animation:ksFadeIn .9s ease-out forwards}
@keyframes ksFadeIn{to{opacity:1;transform:none}}

/* === KS: hamburger panel aligned under the toggle === */
.nav { position: sticky; top: 0; z-index: 1000; }
.nav-inner { position: relative; }
.nav-actions { position: relative; }
.menu-panel {
  position: absolute;
  top: 100%;
  right: 16px;
  left: auto;
  margin-top: 8px;
  border: 1px solid rgba(212,175,55,.25);
  background: rgba(0,0,0,.98);
  backdrop-filter: blur(4px);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(0,0,0,.4);
}
.menu-panel .menu-list { list-style: none; margin: 0; padding: 0; }
.menu-panel .menu-list li a { display:block; padding:10px 16px; color:#fff; }
.menu-panel .menu-list li a:hover { background: rgba(212,175,55,.08); }

/* === KS: Portfolio Hingucker (dezente, edle Akzente) === */
.ks-portfolio-section{
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 24px 0;
  align-items: start;
  
  padding-left: 16px;
}
.ks-portfolio-section.alt{
  grid-template-columns: 1fr 72px;
  padding-left: 0;
  padding-right: 16px;
  
  
}
.ks-portfolio-section .ks-ps-icon{
  display:flex; align-items:flex-start; justify-content:center;
  opacity:.95;
}
.ks-portfolio-section.alt .ks-ps-icon{ order:2; }
.ks-portfolio-section .ks-ps-content{}
.ks-ps-kicker{
  margin: 0 0 6px 0;
  font-size:.95rem;
  letter-spacing:.2px;
  color: rgba(255,255,255,.8);
}
.ks-portfolio-section h2{
  margin: 6px 0 10px 0;
}
/* sanfter Accent-Glow (sehr subtil) */
/* removed horizontal glow line */
@media (max-width: 800px){
  .ks-portfolio-section, .ks-portfolio-section.alt{
    grid-template-columns: 56px 1fr;
    
    
    padding-left: 12px; padding-right: 0;
  }
  .ks-portfolio-section.alt .ks-ps-icon{ order:0; }
}

/* === KS: Portfolio Motion (sanft, respektiert prefers-reduced-motion) === */
.ks-portfolio-section,
.ks-portfolio-section .ks-ps-content,
.ks-portfolio-section .ks-ps-icon { will-change: transform, opacity; }

.ks-portfolio-section .ks-ps-content,
.ks-portfolio-section .ks-ps-icon {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease-out var(--ks-delay, 0ms), transform .7s ease-out var(--ks-delay, 0ms);
}
.ks-portfolio-section.alt .ks-ps-content { transform: translateY(14px); }

.ks-portfolio-section.inview .ks-ps-content,
.ks-portfolio-section.inview .ks-ps-icon {
  opacity: 1;
  transform: none;
}

/* feiner Linien‑Glow beim Eintritt */
/* removed horizontal glow line */
.ks-portfolio-section.inview::before{ opacity:.6; }

/* dezente Icon‑Lebendigkeit nach Eintritt */
.ks-portfolio-section.inview .ks-ps-icon svg {
  animation: ksIconLift 3.5s ease-in-out infinite;
  transform-origin: center top;
}
@keyframes ksIconLift {
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-3px); }
  100%{ transform: translateY(0px); }
}

/* Nutzerpräferenz: Bewegungen reduzieren */
@media (prefers-reduced-motion: reduce){
  .ks-portfolio-section .ks-ps-content,
  .ks-portfolio-section .ks-ps-icon { 
    transition: none; opacity: 1; transform: none; 
  }
  /* removed horizontal glow line */
  .ks-portfolio-section.inview .ks-ps-icon svg { animation: none; }
}

/* === KS: Portfolio Special Effects (subtil) === */
.ks-portfolio-section h2{
  position:relative;
  overflow:visible;
}

/* Sheen over the heading (very subtle) */
.ks-portfolio-section h2::after{
  content:""; position:absolute; top:-2px; bottom:-2px; left:0; width:18%;
  background: linear-gradient(120deg, rgba(255,255,255,.0) 0%, rgba(212,175,55,.25) 50%, rgba(255,255,255,.0) 100%);
  transform: skewX(-20deg) translateX(-120%);
  pointer-events:none;
  filter: blur(0.3px);
  opacity:.55;
  animation: ksSheen 6s ease-in-out infinite;
}
@keyframes ksSheen{
  0%{ transform: skewX(-20deg) translateX(-120%); opacity:.0; }
  15%{ opacity:.55; }
  50%{ transform: skewX(-20deg) translateX(480%); opacity:.0; }
  100%{ transform: skewX(-20deg) translateX(480%); opacity:.0; }
}

/* Kicker gradient text sweep (very low contrast) */
.ks-ps-kicker{
  background: linear-gradient(90deg, rgba(255,255,255,.75), rgba(212,175,55,.9), rgba(255,255,255,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: ksSweep 10s linear infinite;
  opacity:.85;
}
@keyframes ksSweep{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}

/* Prefer reduced motion: turn off sheen/sweep */
@media (prefers-reduced-motion: reduce){
  .ks-portfolio-section h2::after { animation: none; opacity:0; }
  .ks-ps-kicker{ animation: none; color: rgba(255,255,255,.85); background: none; }
}

/* === KS: Hero Banner Full Width === */
#ks-hero-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#ks-hero-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.35));
  z-index:1;
}
#ks-hero-banner * {
  position: relative;
  z-index: 2;
}
#ks-hero-banner p,
#ks-hero-banner h1,
#ks-hero-banner h2{
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px){
  #ks-hero-banner{
    height: 65vh;
    min-height: 320px;
    padding: 0 20px;
  }
}

/* === KS: Hero Banner overlays (Wohnen/Gewerbe + Claim) === */
#ks-hero-banner{ position:relative; }
#ks-hero-banner .ks-hero-label{
  position:absolute;
  top:12%;
  font-size: clamp(2.2rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 215, 0, .85);
  text-shadow: 0 8px 22px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}
#ks-hero-banner .ks-hero-left{ left:6%; }
#ks-hero-banner .ks-hero-right{ right:6%; }

#ks-hero-banner .ks-hero-claim{
  position:absolute;
  left:50%; transform: translateX(-50%);
  bottom:10%;
  text-align:center;
  opacity:0; transform-origin: bottom center;
  transition: opacity .9s ease-out, transform .9s ease-out;
}
#ks-hero-banner .ks-hero-claim .line1{
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  margin-bottom: 6px;
  color:#fff;
  text-shadow: 0 6px 16px rgba(0,0,0,.5);
}
#ks-hero-banner .ks-hero-claim .line2{
  font-size: clamp(.95rem, 2vw, 1.2rem);
  line-height: 1.3;
  color:#ddd;
  text-shadow: 0 6px 16px rgba(0,0,0,.5);
}

/* Inview state */
#ks-hero-banner.inview .ks-hero-label{ opacity:1; transform:none; }
#ks-hero-banner.inview .ks-hero-right{ transition-delay: .12s; }
#ks-hero-banner.inview .ks-hero-claim{ opacity:1; transform: translate(-50%, 0); transition-delay: .18s; }

@media (max-width: 900px){
  #ks-hero-banner .ks-hero-label{ top:10%; font-size: clamp(1.8rem, 10vw, 4rem); }
  #ks-hero-banner .ks-hero-left{ left:50%; transform: translate(-50%, 0); }
  #ks-hero-banner .ks-hero-right{ right:auto; left:50%; transform: translate(-50%, 0); top:22%; }
  #ks-hero-banner .ks-hero-claim{ bottom: 12%; padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce){
  #ks-hero-banner .ks-hero-label, #ks-hero-banner .ks-hero-claim{ transition: none; opacity:1; transform:none; }
}

/* === KS: Portfolio Section Spacing Enhancement === */
.ks-portfolio-section{
  margin-top: 70px;
  margin-bottom: 70px;
}
.ks-portfolio-section h2{
  margin-top: 12px;
  margin-bottom: 18px;
}
.ks-portfolio-section .section-body,
.ks-portfolio-section .ks-ps-content{
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 768px){
  .ks-portfolio-section{
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

/* === KS: Hero Banner Refinements (spacing, centering, sizing) === */
#ks-hero-banner{ margin-top: 72px; }
@media (max-width: 900px){ #ks-hero-banner{ margin-top: 44px; } }

/* Center the labels on their halves and make them white and larger */
#ks-hero-banner .ks-hero-label{
  top: 18%;
  font-size: clamp(3rem, 8vw, 8rem);
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.6);
}
#ks-hero-banner .ks-hero-left{
  left: 25%;
  right: auto;
  transform: translate(-50%, 0);
}
#ks-hero-banner .ks-hero-right{
  left: 75%;
  right: auto;
  transform: translate(-50%, 0);
}

/* Claim: bigger and higher from bottom */
#ks-hero-banner .ks-hero-claim{
  bottom: 16%;
}
#ks-hero-banner .ks-hero-claim .line1{
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
}
#ks-hero-banner .ks-hero-claim .line2{
  font-size: clamp(1.02rem, 2.2vw, 1.35rem);
  color: #eee;
}

/* Mobile adjustments */
@media (max-width: 900px){
  #ks-hero-banner .ks-hero-label{ top: 14%; font-size: clamp(2.2rem, 11vw, 5rem); }
  #ks-hero-banner .ks-hero-left{ left: 50%; transform: translate(-50%, 0); }
  #ks-hero-banner .ks-hero-right{ left: 50%; transform: translate(-50%, 0); top: 26%; }
  #ks-hero-banner .ks-hero-claim{ bottom: 14%; padding: 0 18px; }
}

/* === KS: Hero Banner Final Tweaks === */
#ks-hero-banner{ margin-top:72px; }
@media (max-width:900px){#ks-hero-banner{ margin-top:44px; }}
#ks-hero-banner .ks-hero-label{ top:18%; font-size:clamp(3rem,8vw,8rem); color:#fff; text-shadow:0 10px 26px rgba(0,0,0,.6); }
#ks-hero-banner .ks-hero-left{ left:25%; right:auto; transform:translate(-50%,0); }
#ks-hero-banner .ks-hero-right{ left:75%; right:auto; transform:translate(-50%,0); }
#ks-hero-banner .ks-hero-claim{ position:absolute; left:50%; transform:translateX(-50%); width:100%; bottom:22%; text-align:center; }
@media (max-width:900px){
  #ks-hero-banner .ks-hero-label{ top:14%; font-size:clamp(2.2rem,11vw,5rem); }
  #ks-hero-banner .ks-hero-right{ top:26%; }
  #ks-hero-banner .ks-hero-claim{ bottom:14%; padding:0 18px; }
}

/* === KS: Portfolio Readability Boost === */
#leistungen-anchor h2{ font-size: clamp(1.6rem, 3.2vw, 2.2rem); letter-spacing:.2px; }
#leistungen-anchor .section-body p, 
#leistungen-anchor .section-body li{ font-size: clamp(1.06rem, 1.7vw, 1.3rem); line-height:1.7; }

/* === KS: Hero Banner Grid Placement (labels centered between 1|2 and 3|4) === */
#ks-hero-banner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}
/* Override any previous absolute positioning for labels */
#ks-hero-banner .ks-hero-label{
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  margin-top: 18vh; /* upper third of ~90vh banner */
  font-size: clamp(3rem, 8vw, 8rem);
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.6);
  justify-self: center;
  z-index: 2;
}
#ks-hero-banner .ks-hero-left{
  grid-column: 1 / span 2;
}
#ks-hero-banner .ks-hero-right{
  grid-column: 3 / span 2;
}
/* Claim remains absolute & centered; keep earlier settings but ensure width for centering */
#ks-hero-banner .ks-hero-claim{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  bottom: 22%;
  text-align: center;
  z-index: 2;
}
@media (max-width: 900px){
  #ks-hero-banner .ks-hero-label{ margin-top: 12vh; font-size: clamp(2.2rem, 11vw, 5rem); }
  #ks-hero-banner{ grid-template-columns: repeat(2, 1fr); }
  /* On mobile, stack centerwise: still left and right halves */
  #ks-hero-banner .ks-hero-left{ grid-column: 1 / span 1; justify-self:center; }
  #ks-hero-banner .ks-hero-right{ grid-column: 2 / span 1; justify-self:center; }
  #ks-hero-banner .ks-hero-claim{ bottom: 16%; padding: 0 16px; }
}


@media (max-width: 600px) {
  #ks-hero-banner {
    height: 70vh;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
  }
  #ks-hero-banner .ks-hero-label {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  #ks-hero-banner p {
    font-size: 1rem;
    padding: 0 12px;
  }
}


@media (max-width: 600px) {
  #ks-hero-banner {
    height: 70vh;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    padding: 0 20px;
  }

  #ks-hero-banner .ks-hero-label {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  #ks-hero-banner p {
    font-size: 1rem;
    padding: 0 12px;
  }
}
