/* JUMA Leuchten — Architect/Designer Landing Page styles */

/* Page padding scale (overrides if needed) */
.la-section { padding: var(--pad-section, 112px) var(--pad-x, 56px); }
.la-section--tight { padding: 80px var(--pad-x, 56px); }

/* ── HERO ── */
.la-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
}
.la-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.la-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
  transform-origin: center;
  will-change: transform;
}
.la-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 60%, transparent 0%, rgba(13,11,8,0.6) 100%),
    linear-gradient(to bottom, rgba(13,11,8,0.55) 0%, rgba(13,11,8,0.1) 35%, rgba(13,11,8,0.85) 100%);
}
.la-hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  left: 50%; top: 35%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.la-hero__content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x, 56px) 60px;
}
.la-hero__eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.la-hero__eyebrow::before {
  content: ""; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);
}
.la-hero__title {
  font-family: 'Poiret One', sans-serif;
  font-weight: 300;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.la-hero__title .accent {
  font-style: italic; color: var(--gold);
}
.la-hero__title .line {
  display: block; overflow: hidden;
}
.la-hero__title .line > span {
  display: inline-block;
  animation: laHeroLine 1.2s cubic-bezier(.2,.6,.2,1) both;
}
.la-hero__title .line:nth-child(1) > span { animation-delay: 0.15s; }
.la-hero__title .line:nth-child(2) > span { animation-delay: 0.32s; }
.la-hero__title .line:nth-child(3) > span { animation-delay: 0.48s; }
@keyframes laHeroLine { from { transform: translateY(110%); } to { transform: translateY(0); } }

.la-hero__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 300;
  line-height: 1.7; color: var(--cream-2);
  max-width: 56ch;
  margin-bottom: 40px;
  animation: laFadeIn 1s ease 0.7s both;
}
@keyframes laFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.la-hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: laFadeIn 1s ease 0.85s both;
}

/* Hero footer trust strip */
.la-hero__footer {
  position: relative; z-index: 2;
  padding: 18px var(--pad-x, 56px);
  border-top: 1px solid rgba(200,169,110,0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: rgba(13,11,8,0.35);
  backdrop-filter: blur(8px);
}
.la-hero__stat {
  display: flex; flex-direction: column; gap: 4px;
}
.la-hero__stat-num {
  font-family: 'Antonio', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.la-hero__stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream-3);
}

@media (max-width: 900px) {
  .la-hero__footer { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .la-hero__title { font-size: clamp(48px, 12vw, 80px); }
}

/* ── PILLARS (3 quick-scan cards) ── */
.la-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
  background: var(--surface-1);
}
.la-pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--gold-subtle);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background 0.5s ease;
}
.la-pillar:last-child { border-right: none; }
.la-pillar:hover { background: var(--surface-2); }
.la-pillar__num {
  font-family: 'Antonio', sans-serif;
  font-weight: 200;
  font-size: 14px; letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 12px;
}
.la-pillar__title {
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px;
}
.la-pillar__copy {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  color: var(--cream-2);
}
@media (max-width: 900px) {
  .la-pillars { grid-template-columns: 1fr; }
  .la-pillar { border-right: none; border-bottom: 1px solid var(--gold-subtle); }
  .la-pillar:last-child { border-bottom: none; }
}

/* ── CHALLENGE SECTION ── */
.la-challenge {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: stretch;
}
.la-challenge__copy {
  display: flex; flex-direction: column; justify-content: center;
}
.la-challenge__images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 12px;
}
.la-challenge__images img {
  width: 100%; height: 100%; object-fit: cover;
}
.la-challenge__images > div {
  position: relative; overflow: hidden;
}
.la-challenge__images > div img {
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.la-challenge__images > div:hover img {
  transform: scale(1.05);
}
.la-challenge__img--1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.la-challenge__img--2 { grid-column: 5 / 7; grid-row: 1 / 2; }
.la-challenge__img--3 { grid-column: 5 / 7; grid-row: 2 / 4; }
@media (max-width: 1100px) {
  .la-challenge { grid-template-columns: 1fr; gap: 48px; }
  .la-challenge__images { grid-template-rows: 160px 160px 160px; }
}

/* ── VISION (3 feature cards) ── */
.la-vision {
  background: var(--ink);
  position: relative;
}
.la-vision__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 80px;
  align-items: end;
}
.la-vision__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-subtle);
}
.la-vision__card {
  padding: 64px 40px 48px;
  border-right: 1px solid var(--gold-subtle);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background 0.5s ease;
}
.la-vision__card:last-child { border-right: none; }
.la-vision__card:hover { background: var(--surface-1); }
.la-vision__card-num {
  font-family: 'Antonio', sans-serif;
  font-size: 56px;
  font-weight: 200;
  color: var(--gold-dim);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 32px;
}
.la-vision__card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}
.la-vision__card-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 300;
  line-height: 1.75;
  color: var(--cream-2);
}
@media (max-width: 900px) {
  .la-vision__head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .la-vision__cards { grid-template-columns: 1fr; }
  .la-vision__card { border-right: none; border-bottom: 1px solid var(--gold-subtle); }
  .la-vision__card:last-child { border-bottom: none; }
}

/* ── SERVICES ── */
.la-services {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
}
.la-services__head {
  margin-bottom: 64px;
  max-width: 800px;
}
.la-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-subtle);
  border-left: 1px solid var(--gold-subtle);
}
.la-service {
  padding: 48px 32px;
  border-right: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  transition: background 0.4s ease;
}
.la-service:hover { background: var(--surface-2); }
.la-service__step {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 24px;
}
.la-service__title {
  font-family: 'Antonio', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
}
.la-service__copy {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.7;
  color: var(--cream-2);
}
@media (max-width: 1100px) {
  .la-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .la-services__grid { grid-template-columns: 1fr; }
}

/* ── PROJECTS MARQUEE ── */
.la-trust {
  padding: var(--pad-section, 112px) 0;
  background: var(--ink);
  overflow: hidden;
}
.la-trust__head {
  padding: 0 var(--pad-x, 56px);
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
}
.la-marquee {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: laMarquee 60s linear infinite;
}
.la-marquee:hover { animation-play-state: paused; }
@keyframes laMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}
.la-trust__card {
  flex: 0 0 auto;
  width: 380px;
  height: 480px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.la-trust__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(.2,.6,.2,1);
}
.la-trust__card:hover img { transform: scale(1.06); }
.la-trust__card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.85) 0%, rgba(13,11,8,0.1) 50%, transparent 100%);
}
.la-trust__card-meta {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.la-trust__card-name {
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.15;
}
.la-trust__card-loc {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) {
  .la-trust__head { grid-template-columns: 1fr; gap: 32px; }
  .la-trust__card { width: 280px; height: 380px; }
}

/* ── PROCESS (4-step horizontal) ── */
.la-process {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-subtle);
}
.la-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-subtle);
  margin-top: 64px;
}
.la-process__step {
  padding: 32px 24px 48px;
  border-right: 1px solid var(--gold-subtle);
  position: relative;
}
.la-process__step:last-child { border-right: none; }
.la-process__step-img {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--surface-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.la-process__step-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.la-process__step:hover .la-process__step-img img { transform: scale(1.05); }
.la-process__step-num {
  position: absolute; left: 16px; top: 16px;
  font-family: 'Antonio', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--cream);
  background: rgba(13,11,8,0.6);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}
.la-process__step-title {
  font-family: 'Antonio', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 10px;
}
.la-process__step-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 300;
  line-height: 1.7;
  color: var(--cream-2);
}
@media (max-width: 1100px) {
  .la-process__steps { grid-template-columns: repeat(2, 1fr); }
  .la-process__step:nth-child(2) { border-right: none; }
  .la-process__step:nth-child(1), .la-process__step:nth-child(2) { border-bottom: 1px solid var(--gold-subtle); }
}
@media (max-width: 600px) {
  .la-process__steps { grid-template-columns: 1fr; }
  .la-process__step { border-right: none; border-bottom: 1px solid var(--gold-subtle); }
  .la-process__step:last-child { border-bottom: none; }
}

/* ── HOLISTIC (Licht/Form/Material/Position) ── */
.la-holistic {
  background: var(--ink);
}
.la-holistic__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 80px;
}
.la-holistic__row {
  display: grid;
  grid-template-columns: 0.4fr 0.8fr 0.9fr 1.1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--gold-subtle);
  align-items: start;
}
.la-holistic__media {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-1);
}
.la-holistic__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.la-holistic__row:last-child { border-bottom: 1px solid var(--gold-subtle); }
.la-holistic__index {
  font-family: 'Antonio', sans-serif;
  font-size: 84px; font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--gold);
  line-height: 1;
}
.la-holistic__title {
  font-family: 'Poiret One', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.la-holistic__copy {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
  padding-top: 8px;
  max-width: 56ch;
}
@media (max-width: 900px) {
  .la-holistic__intro { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
  .la-holistic__row { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .la-holistic__index { font-size: 56px; }
  .la-holistic__media { aspect-ratio: 16/10; margin: 4px 0 8px; }
}

/* ── HERITAGE ── */
.la-heritage {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-subtle);
  border-bottom: 1px solid var(--gold-subtle);
}
.la-heritage__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.la-heritage__copy {
  display: flex; flex-direction: column;
}
.la-heritage__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.la-heritage__images > div {
  position: relative; overflow: hidden;
}
.la-heritage__images img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.la-heritage__images > div:hover img { transform: scale(1.06); }
.la-heritage__img--1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.la-heritage__img--2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.la-heritage__img--3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.la-heritage__img--4 { grid-column: 1 / 2; grid-row: 3 / 4; }
.la-heritage__img--5 { grid-column: 2 / 4; grid-row: 3 / 4; }
@media (max-width: 1100px) {
  .la-heritage__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FAQ ── */
.la-faq {
  background: var(--ink);
}
.la-faq__head {
  margin-bottom: 64px;
  max-width: 800px;
}
.la-faq__list {
  border-top: 1px solid var(--gold-subtle);
}
.la-faq__item {
  border-bottom: 1px solid var(--gold-subtle);
  transition: background 0.4s ease;
}
.la-faq__item[open] { background: var(--surface-1); }
.la-faq__summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.la-faq__summary::-webkit-details-marker { display: none; }
.la-faq__item[open] .la-faq__summary { color: var(--gold); }
.la-faq__summary:hover { color: var(--gold-bright); }
.la-faq__plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.6,.2,1);
}
.la-faq__item[open] .la-faq__plus { transform: rotate(45deg); }
.la-faq__plus::before, .la-faq__plus::after {
  content: ""; position: absolute;
  background: currentColor;
}
.la-faq__plus::before { left: 0; right: 0; top: 50%; height: 1px; }
.la-faq__plus::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.la-faq__answer {
  padding: 0 32px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 300;
  line-height: 1.85;
  color: var(--cream-2);
  max-width: 80ch;
}

/* ── CONTACT ── */
.la-contact {
  background: var(--surface-1);
  border-top: 1px solid var(--gold-subtle);
}
.la-contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}
.la-contact__why {
  display: flex; flex-direction: column; gap: 32px;
}
.la-contact__why-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--gold-subtle);
  margin-top: 24px;
}
.la-contact__why-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-subtle);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.la-contact__why-num {
  font-family: 'Antonio', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gold);
  padding-top: 4px;
}
.la-contact__why-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
}
.la-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--ink);
  padding: 48px;
  border: 1px solid var(--gold-subtle);
}
.la-form__field {
  display: flex; flex-direction: column; gap: 8px;
}
.la-form__field--full { grid-column: 1 / -1; }
.la-form__label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.la-form__input,
.la-form__textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 300;
  background: transparent;
  color: var(--cream);
  border: none;
  border-bottom: 1px solid var(--gold-subtle);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}
.la-form__input:focus,
.la-form__textarea:focus { border-color: var(--gold); }
.la-form__textarea { resize: vertical; min-height: 96px; }
.la-form__submit {
  grid-column: 1 / -1;
  margin-top: 12px;
}
@media (max-width: 1100px) {
  .la-contact__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 700px) {
  .la-form { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ── SECTION HEADERS (shared) ── */
.la-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.la-eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.la-h-section {
  font-family: 'Poiret One', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.la-h-section .accent {
  font-style: italic;
  color: var(--gold);
}
.la-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 300;
  line-height: 1.8;
  color: var(--cream-2);
  max-width: 56ch;
}

/* Reveal animation */
.la-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
  will-change: transform, opacity;
}
.la-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────────────────────
   MOBILE REFINEMENTS — tablet (≤900px), phone (≤600px), small phone (≤480px)
   ────────────────────────────────────────────────────────── */

/* Long German uppercase headings (Antonio/Poiret) must be allowed to wrap or
   they punch through the viewport on mobile. Apply universally — there are no
   horizontal scrollers that depend on these never wrapping. */
.la-h-section,
.la-hero__title,
.la-holistic__title,
.la-pillar__title,
.la-vision__card-title,
.la-service__title,
.la-process__step-title,
.la-trust__card-name,
.la-faq__summary,
.h-section,
.h-display {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: 100%;
}

/* Body copy too — long words like "Sonderanfertigungen" still need wrapping */
.la-lead,
.la-pillar__copy,
.la-vision__card-copy,
.la-service__copy,
.la-process__step-copy,
.la-holistic__copy,
.la-faq__answer,
.la-contact__why-text,
.copy {
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: 100%;
}

/* Tablet: flatten complex image grids that previously stayed multi-column.
   Chandeliers are tall — use portrait (3/4) for stacked single tiles so the
   fixtures are fully visible without harsh cropping. */
@media (max-width: 900px) {
  /* Challenge: collapse 6-col grid to a simple 2-col layout */
  .la-challenge__images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .la-challenge__images > div {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 3/4;
  }
  .la-challenge__img--1 { grid-column: 1 / -1 !important; aspect-ratio: 4/5; }

  /* Heritage: collapse 3-col mosaic to clean 2-col grid (landscape tiles) */
  .la-heritage__images {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }
  .la-heritage__images > div {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
  .la-heritage__img--1 { grid-column: 1 / -1 !important; aspect-ratio: 16/10; }

  /* Holistic title scales with viewport on tablet */
  .la-holistic__title { font-size: clamp(32px, 6.5vw, 56px); }
}

/* Phone */
@media (max-width: 600px) {
  /* Big section headings must shrink hard on phone — long German words
     (PROJEKTMANAGEMENT, ANSPRUCHSVOLLE, BERATUNG & PLANUNG) overflow the
     viewport at 40px+. */
  .la-h-section,
  .h-section,
  .h-display { font-size: clamp(26px, 7.5vw, 38px) !important; line-height: 1.1; }

  /* Section padding lighter for cards */
  .la-pillar       { padding: 40px 24px; gap: 10px; }
  .la-pillar__title { font-size: 18px; letter-spacing: 0.03em; }
  .la-vision__card { padding: 48px 24px 36px; gap: 12px; }
  .la-vision__card-num { font-size: 44px; margin-bottom: 20px; }
  .la-vision__card-title { font-size: 12px; letter-spacing: 0.18em; }
  .la-service      { padding: 36px 22px; min-height: auto; gap: 12px; }
  .la-service__title { font-size: 18px; letter-spacing: 0.02em; }
  .la-process__step { padding: 24px 18px 36px; }
  .la-process__step-title { font-size: 20px; letter-spacing: 0.02em; }

  /* FAQ — keep ≥44px tap targets but trim padding/typography */
  .la-faq__summary { padding: 20px 18px; font-size: 14px; gap: 14px; letter-spacing: 0.02em; line-height: 1.35; }
  .la-faq__plus    { width: 16px; height: 16px; }
  .la-faq__answer  { padding: 0 18px 22px; font-size: 14px; line-height: 1.75; }

  /* Holistic */
  .la-holistic__intro { gap: 24px; margin-bottom: 36px; }
  .la-holistic__row   { padding: 32px 0; gap: 12px; }
  .la-holistic__index { font-size: 44px; }
  .la-holistic__title { font-size: clamp(28px, 8vw, 44px); }
  .la-holistic__copy  { font-size: 14px; line-height: 1.75; }

  /* Marquee cards smaller on phones */
  .la-trust         { padding: var(--pad-section, 64px) 0; }
  .la-marquee       { gap: 14px; }
  .la-trust__card   { width: 240px; height: 320px; }
  .la-trust__card-meta { left: 18px; right: 18px; bottom: 18px; }
  .la-trust__card-name { font-size: 18px; }

  /* Contact form tighter */
  .la-form { padding: 24px 18px; gap: 18px; }
  .la-form__input,
  .la-form__textarea { font-size: 16px; /* prevent iOS zoom on focus */ }

  /* Heritage stack fully — landscape tiles */
  .la-heritage__images { grid-template-columns: 1fr; }
  .la-heritage__images > div { aspect-ratio: 4/3; }
  .la-heritage__img--1 { aspect-ratio: 16/10; }
}

/* Phone — hero header clearance and compact content for short svh */
@media (max-width: 600px) {
  /* Pad hero content top so the fixed header doesn't sit on the eyebrow.
     Use 4-col compact footer on phones (instead of 2x2) to save vertical room
     so the stats are always visible inside the svh. */
  .la-hero__content { padding-top: 68px; padding-bottom: 28px; }
  .la-hero__eyebrow {
    margin-bottom: 14px; font-size: 9px;
    letter-spacing: 0.22em; line-height: 1.5;
    max-width: 28ch; /* keep it to ~2 lines instead of 3 */
  }
  .la-hero__eyebrow::before { width: 20px; }
  .la-hero__title   { font-size: clamp(34px, 9vw, 50px); line-height: 1.0; margin-bottom: 14px; max-width: 100%; }
  .la-hero__sub     { font-size: 13.5px; margin-bottom: 18px; line-height: 1.6; max-width: 38ch; }
  .la-hero__ctas    { gap: 10px; }

  .la-hero__footer {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 8px;
    padding: 10px var(--pad-x, 16px);
  }
  .la-hero__stat-num   { font-size: 17px; }
  .la-hero__stat-label { font-size: 7.5px; letter-spacing: 0.16em; }
}

/* Small phone */
@media (max-width: 480px) {
  /* Hero glow shrunk to avoid blowing past viewport center */
  .la-hero__glow { width: 340px; height: 340px; top: 40%; }

  /* Even tighter hero on tiny screens */
  .la-hero__content { padding-top: 64px; padding-bottom: 24px; }
  .la-hero__title   { font-size: clamp(30px, 9.5vw, 44px); margin-bottom: 12px; }
  .la-hero__sub     { font-size: 13px; margin-bottom: 16px; }
  .la-hero__footer  { padding: 8px var(--pad-x, 14px); }
  .la-hero__stat-num   { font-size: 15px; }
  .la-hero__stat-label { font-size: 7px; letter-spacing: 0.14em; }

  /* Challenge images: single column at tiny widths */
  .la-challenge__images { grid-template-columns: 1fr; }
  .la-challenge__images > div { aspect-ratio: 3/4; }
}
