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

body,
html {
  overflow-x: clip;
}

@font-face {
  font-family: 'Luminova';
  src: url('../fonts/luminova-font/Luminova.otf') format('opentype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aliance';
  src: url('../fonts/aliance/alliance.otf') format('opentype');
  font-style: normal;
  font-display: swap;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/hero-bg-scaled.png") center/cover no-repeat;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  z-index: 2;
}

.logo {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.logo-inner {
  will-change: transform, opacity;
}

.logo img {
  width: 90px;
  display: block;
}

.hero-content {
  position: absolute;
  left: 32px;
  bottom: 36px;
  z-index: 10;
}

#hubel-svg {
  display: block;
  width: 900px;
  max-width: 90vw;
}

@media(max-width:768px) {

  #hubel-svg {
    width: 320px;
  }

}

#title {
  color: #fff;
  font-size: 90px;
  text-transform: uppercase;
  letter-spacing: 10px;
  line-height: 1;
}

#title span {
  display: inline-block;
}

.about {
  height: 120vh;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about h2 {
  font-size: 60px;
}


/* =====================================================
   SECTION: Pinned Intro + Sticky Showcase
===================================================== */

@media (prefers-reduced-motion: reduce) {

  .pinned-intro__word,
  .showcase__sticky-media img,
  [data-reveal] {
    transition-duration: 0.01ms !important;
  }
}

/* ---------- decorative dot grid (reused for header + footer dots) ---------- */
.dot-grid {
  display: grid;
  grid-template-columns: repeat(5, 6px);
  grid-auto-rows: 6px;
  gap: 8px;
}

.dot-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b7c4b3;
}

.dot-grid .is-active {
  background: #2c4a3b;
}

/* ---------- PINNED INTRO ---------- */
.pinned-intro {
  position: relative;
  background: #ffffff;
  z-index: 4;
}

.dots_hero img {
  position: absolute;
  right: 43px;
  top: -20px;
}

.pinned-intro__space {
  position: relative;
  padding: 100px 0;
}

.pinned-intro__sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  max-width: 867px;
  margin: 0 auto;
}

.pinned-intro__icon img {
  width: 104px;
  height: 84px;
  margin-bottom: 28px;
  margin-left: -30px;
}

.pinned-intro__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pinned-intro__headline {
  max-width: 760px;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.32;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: "Luminova", sans-serif;
  margin: 0;
}

.pinned-intro__headline .word {
  display: inline-block;
  opacity: 0.16;
  color: #214939;
  will-change: opacity;
}

.pinned-intro__hint {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5b6459;
  opacity: 0;
  transition: opacity .6s ease;
}

.pinned-intro__hint.is-visible {
  opacity: 0.7;
}

.pinned-intro__bar {
  width: 26px;
  height: 1px;
  background: #5b6459;
  position: relative;
  overflow: hidden;
}

.pinned-intro__bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #2c4a3b;
  animation: pinnedHintSlide 1.6s ease-in-out infinite;
}

@keyframes pinnedHintSlide {
  0% {
    left: -100%;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

/* ---------- SHOWCASE (sticky image + scrolling content) ---------- */
.showcase {
  padding: 40px 0 340px;
  background: #ffffff;
}

.showcase__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.showcase__sticky-col {
  position: sticky;
  top: 48px;
}

.showcase__sticky-media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5.2;
  box-shadow: 0 30px 60px -25px rgba(31, 56, 44, 0.35);
}

.showcase__sticky-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.4s ease;
}

.showcase.is-awake .showcase__sticky-media img {
  transform: scale(1);
}

.showcase__scroll-col {
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding-top: 8px;
}

/* GSAP handles the reveal animation from these base states */
[data-reveal],
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
}

.showcase__media-block {
  position: relative;
}

.showcase__media-block img {
  width: 100%;
  display: block;
  border-radius: 2px;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.showcase__zigzag {
  position: absolute;
  right: 22px;
  bottom: -47px;
  width: 76px;
  height: 76px;
  background: url('https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/green-waves.svg');
}

.showcase__quote {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.showcase__quote p {
  font-family: "Luminova", sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: 900;
  line-height: 136%;
  margin-bottom: 6px;
}

.showcase__attribution {
  font-family: "Luminova", sans-serif;
  font-weight: 900;
  font-size: 10px;
  line-height: 117%;
  letter-spacing: 12%;
  margin-top: 30px;
  color: #000;
  text-transform: uppercase;
}

.showcase__generation h2 {
  font-family: "Luminova";
  font-weight: 900;
  font-size: 38px;
  color: #000;
  line-height: 148%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.showcase__generation p {
  font-family: 'Aliance';
  margin-top: 27px;
  font-weight: 400;
  font-size: 18px;
  line-height: 184%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #171616;
}

.showcase__footer-dots img {
  position: absolute;
  width: 93px;
  height: 43px;
  left: -21px;
  object-fit: contain;
  bottom: -26px;
}

.showcase_button a,
.quarter-section__cta a,
.specs-section__cta a,
.sp-cta a {
  background-color: #191919;
  padding: 19px 0px 19px 48px;
  font-size: 12px;
  font-family: 'Luminova';
  color: #fff;
  line-height: 117%;
  text-transform: uppercase;
  letter-spacing: 12%;
}

.eeg-inquiry-btn a {
  background-color: #191919;
  padding: 19px 0px 19px 48px;
  font-size: 12px;
  font-family: 'Luminova';
  color: #fff;
  line-height: 117%;
  text-transform: uppercase;
  letter-spacing: 12%;
}

span.arrow_showcase,
.quarter-section__cta .btn__arrow,
span.eeg-arrow,
span.sp-arrow {
  padding: 19px;
  margin-left: 37px;
  border-left: 1px solid #505050;
}

.showcase_button {
  margin-top: 50px;
  text-align: center;
}

/* mask-reveal setup, reused everywhere */
.line {
  display: block;
  overflow: hidden;
}

.line__inner {
  display: inline-block;
  will-change: transform;
}

/* generic image "plate" wrapper: this is what gets scroll-scrubbed */
.plate {
  position: relative;
  border-radius: 4px;
}

.rise-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

/* ============ SECTION A: intro — vase only, absolutely positioned ============ */
.intro {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  height: 160px;
  overflow: visible;
}

.intro__visual {
  position: absolute;
  left: 0px;
  top: -176%;
  z-index: 5;
}

.intro__circle {
  position: absolute;
  width: 31%;
  aspect-ratio: 1;
  right: 17%;
  top: 29%;
  background: #9fd4c0;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  z-index: 0;
}

.intro__visual .plate--vase {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.14/1;
  border-radius: 6px;
  background: transparent;
  overflow: visible;
}

.intro__visual .plate--vase img {
  width: 553px;
  height: 537px;
}

.arcs {
  position: absolute;
  left: -92%;
  transform: translateX(80%);
  top: -85px;
  width: 71%;
  height: auto;
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* ============ SECTION B: detail (gradient) ============ */
.detail {
  position: relative;
  background: linear-gradient(180deg, #214939 0%, #FFFFFF 57.33%);
  padding-top: 240px;
  padding-bottom: 10px;
}

.detail__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 60px);
  max-width: 1280px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  align-items: start;
}

.detail__title {
  font-family: 'Luminova';
  font-weight: 700;
  font-size: 68px;
  line-height: 117%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.detail__text {
  line-height: 1.8;
  color: #fff;
  font-family: 'Aliance';
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
  max-width: 440px;
  padding-top: 180px;
}

.color-change {
  color: #91D7C0;
}

.plate--hero {
  aspect-ratio: 16/9.2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 64px);
  border-radius: 4px;
}

.plate--hero img {
  border-radius: 4px;
}

.detail__pair {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 clamp(12px, 3vw, 32px);
  display: grid;
  grid-template-columns: 615px 557px;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.plate--tall {
  aspect-ratio: 615/551;
  margin-top: -70px;
}

.plate--short {
  aspect-ratio: 557/551;
  margin-top: 130px;
}

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

  .plate--tall,
  .plate--short {
    margin-top: 0;
    max-width: 615px;
  }
}

.detail__quarter {
  max-width: 1200px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  padding: 0 clamp(20px, 6vw, 64px) clamp(70px, 9vw, 110px);
}

.quarter__heading {
  position: relative;
  max-width: 520px;
  margin-bottom: 140px;
}

.quarter__title {
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.color-green {
  color: #214637;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #91D7C0;
  border-radius: 999px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  font-family: "Luminova";
  position: absolute;
  right: 0px;
}

.quarter__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 167px;
  align-items: center;
}

.quarter__text {
  color: #171616;
  margin: 0;
  font-family: 'Aliance';
  font-weight: 400;
  font-size: 18px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.quarter__cta h4 {
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 18px;
  border-left: 1px solid #3F5950;
  padding-left: 27px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;

}

.quarter_btn {
  margin-top: 70px;
}

.quarter_btn a {
  background-color: #191919;
  padding: 19px 0px 19px 48px;
  font-size: 12px;
  font-family: 'Luminova';
  color: #fff;
  line-height: 117%;
  text-transform: uppercase;
  letter-spacing: 12%;
}

/* ============ QUARTER MOSAIC ============ */
.quarter-mosaic-wrap {
  width: 100%;
  margin: 0 auto clamp(40px, 6vw, 70px);
}

.quarter-mosaic {
  position: relative;
  width: 1200px;
  height: 900px;
  margin: 0 auto;
}

.qm-item {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 4px;
  box-shadow: 0 30px 50px -25px rgba(28, 28, 26, 0.25);
  will-change: transform, opacity;
}

.qm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qm-item--portrait {
  left: 0px;
  top: 0px;
  z-index: 1;
}

.qm-item--house {
  left: -100px;
  top: 400px;
  z-index: 2;
}

.qm-item--swing {
  left: 560px;
  top: 60px;
  z-index: 3;
}

.qm-item--bedroom {
  left: 700px;
  top: 400px;
  z-index: 4;
}

@media (max-width: 1200px){
  .quarter-mosaic-wrap{ height: 630px; }
  .quarter-mosaic{ transform: scale(0.7); transform-origin: top center; }
}
@media (max-width: 860px){
  .quarter-mosaic-wrap{ height: 405px; }
  .quarter-mosaic{ transform: scale(0.45); transform-origin: top left; }
}
@media (max-width: 520px){
  .quarter-mosaic-wrap{ height: 315px; }
  .quarter-mosaic{ transform: scale(0.35); transform-origin: top left; }
}
/* ============ SECTION G: Vier Häuser, Ein Quartier ============ */
.quarter-section {
  position: relative;
  background: url('https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/lieght-bg.png');
  padding: clamp(60px, 9vw, 110px) clamp(20px, 6vw, 64px) clamp(80px, 10vw, 130px);
  margin-top: 150px;
}

.quarter-section__inner {
  max-width: 1260px;
  margin: 0 auto;
}

.quarter-section__deco img {
  position: absolute;
  top: -24%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 200px;
}

.quarter-section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: end;
  margin-bottom: 100px;
}

.quarter-section__title {
  font-family: "Luminova", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #1c1c1a;
  margin: 0;
}

.quarter-section__text {
  font-family: "Aliance", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 18px;
  line-height: 164%;
  letter-spacing: 0%;
  margin: 0;
}

.quarter-section__cta {
  text-align: center;
  margin-top: clamp(30px, 5vw, 50px);
}

.quarter-section__zigzag {
  position: absolute;
  left: 20px;
  bottom: -37px;
}

.quarter-section__plant {
  position: absolute;
  right: 0px;
  bottom: -110px;
}

.quarter-section__plant img {
  width: 300px;
  height: 300px;
  display: block;
}

@media (max-width: 720px) {
  .quarter-section__head {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
        margin-top: 50px;
  }

  .quarter-section__plant {
    display: none;
  }
}

/* ============ EEG SECTION ============ */
.eeg-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.eeg-map-wrap {
  position: relative;
  opacity: 0;
  transform: translateY(90px);
  transition: opacity 1.1s cubic-bezier(.16, .8, .28, 1),
    transform 1.1s cubic-bezier(.16, .8, .28, 1);
}

.eeg-section.eeg-in-view .eeg-map-wrap {
  opacity: 1;
  transform: translateY(0);
}

.eeg-map-wrap img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

.eeg-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
}

.eeg-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16, .8, .28, 1),
    transform .8s cubic-bezier(.16, .8, .28, 1);
}

.eeg-section.eeg-in-view .eeg-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.eeg-section.eeg-in-view .eeg-delay-1 {
  transition-delay: .15s;
}

.eeg-section.eeg-in-view .eeg-delay-2 {
  transition-delay: .35s;
}

.eeg-section.eeg-in-view .eeg-delay-3 {
  transition-delay: .55s;
}

.eeg-section.eeg-in-view .eeg-delay-4 {
  transition-delay: .75s;
}

.eeg-headline {
  font-family: "Luminova";
  font-weight: 900;
  color: #000;
  font-size: 38px;
  line-height: 148%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.eeg-description {
  font-family: "Aliance";
  font-weight: 400;

  font-size: 18px;
  margin-top: 54px;
  line-height: 184%;
  color: #171616;
  letter-spacing: 0%;
  vertical-align: middle;

}

.eeg-stats {
  display: flex;
  gap: 90px;
  margin-bottom: 48px;
}

.eeg-stat-label {
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 12px;
  line-height: 135%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-top: 68px;

}

.eeg-stat-value {
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-top: 12px;
  vertical-align: middle;

}

.eeg-inquiry-btn {
  margin-top: 75px;
}

@media (max-width: 860px) {
  .eeg-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    text-align: left;
  }

  .eeg-map-wrap {
    order: 1;
  }

  .eeg-content {
    order: 2;
  }

  .eeg-headline {
    font-size: 28px;
    max-width: 100%;
  }

  .eeg-stats {
    gap: 36px;
  }
}


@media (max-width: 860px) {
  .intro{ height: 110px; }
  .intro__visual{ width: clamp(160px, 34vw, 220px); }
  .detail__intro{ grid-template-columns:1fr; }
  .detail__text{ max-width:100%; padding-top: 0px; }
  .detail__pair{ grid-template-columns:1fr;        padding: 0px;
        width: 100%;         margin-top: 0px; gap:0 }
  .plate--tall,.plate--short{ margin-top:0; max-width: 100%; }
  .quarter__row{ grid-template-columns:1fr;         gap: 40px; }
  .quarter__divider{ width:100%; height:1px; }
   .eeg-section {
    grid-template-columns: 1fr;
    padding: 60px 24px 100px;
    text-align: left;
    flex-direction: column;
  }
  .eeg-map-wrap { order: 1; }
  .eeg-content { order: 2; }
  .eeg-headline { font-size: 28px; max-width: 100%; }
  .eeg-stats { gap: 36px; }
}

/* ============ FOOTER STRIP ============ */
.strip {
  background: #e8f2ee;
  padding: 26px clamp(20px, 6vw, 64px);
}

.strip__deco {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.strip__square {
  width: 16px;
  height: 16px;
  background: #9fd4c0;
  border-radius: 3px;
}

.strip__dots {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
}

.strip__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(28, 28, 26, .35);
}

/* ============ SECTION C: Das Schöne liegt im Alltäglichen ============ */
.alltag__mint {
  position: relative;
  background: url('https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/lieght-bg.png');
  width: 100%;
  overflow: visible;
}

.alltag__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 128px clamp(20px, 6vw, 90px) 260px;
}

.alltag__deco {
  position: absolute;
  top: -74px;
  right: clamp(20px, 6vw, 90px);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.alltag__deco-square {
  width: 42px;
  height: 42px;
  background: #9fd4c0;
  border-radius: 2px;
}

.alltag__deco-dots {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 8px;
}

.alltag__deco-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1c1c1a;
}

.alltag__title {
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #28190B;
}

.alltag__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  column-gap: clamp(40px, 11vw, 170px);
}

.alltag__stats .stat:nth-child(1) {
  margin-top: 175px;
}

.alltag__stats .stat:nth-child(2) {
  margin-top: 100px;
}

.alltag__stats .stat:nth-child(3) {
  margin-top: 0;
}

.stat__number {
  display: flex;
  align-items: baseline;
  font-family: "Luminova";
  font-weight: 900;
  font-size: 80px;
  line-height: 117%;
  letter-spacing: 0%;
  color: #214939;

}

.stat__suffix {
  color: #91D7C0;
  margin-left: 4px;
  font-family: "Luminova";
  font-weight: 900;
  font-size: 48px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: capitalize;

}

.stat--mint .stat__divider {
  color: #9fd4c0;
}

.stat__label {
  margin: 14px 0 0;
  color: #000;
  font-family: "Luminova";
  font-weight: 900;
  font-style: Umbra;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.alltag__arcs {
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 200px;
  height: auto;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.alltag__media {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 130px;
  position: absolute;
  right: 0px;
  left: 10%;
}

.alltag__waves {
  position: absolute;
  bottom: -7px;
  left: -80px;
  transform: rotatey(180deg);
}

.plate--cozy {
  aspect-ratio: 490 / 411;
}

.plate--house-night {
  aspect-ratio: 674 / 451;
  margin-bottom: 100px;
}

@media (max-width: 860px){
  .alltag__inner{ padding-bottom: 20px; }
  .alltag__stats{ grid-template-columns: 1fr; row-gap: 50px; }
  .alltag__stats .stat:nth-child(1),
  .alltag__stats .stat:nth-child(2),
  .alltag__stats .stat:nth-child(3){ margin-top: 0; }
  .alltag__media{         margin: 60px 0 0;
        grid-template-columns: 1fr;
        gap: 0px;
        position: static; }
  .plate--house-night{ margin-bottom: 0; }
  .quarter-section__cta{
        margin-top: 70px;
  }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 2px solid #33493d;
  outline-offset: 3px;
}

/* ---------- responsive: pinned-intro / showcase ---------- */
@media (max-width: 860px) {
  .pinned-intro__sticky {
    padding: 0 24px;
  }

  .pinned-intro__headline {
    font-size: clamp(22px, 6vw, 30px);
  }

  .showcase__wrap {
    padding: 0 24px;
  }

  .showcase__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }

  .showcase__scroll-col {
    gap: 70px;
  }
}

@media (max-width: 600px) {
  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .showcase__sticky-col {
    position: relative;
    top: 0;
  }
}


/* ============ SECTION D: Gallery ============ */
.gallery {
  background: #ffffff;
  padding-top: 450px;
}

.gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 90px);
  text-align: center;
}

.gallery__title {
  font-family: "Luminova";
  font-weight: 900;
  font-size: 68px;
  line-height: 117%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 726px;
  margin: auto;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 100px;
  position: relative;

}

.gallery__title svg {
  position: absolute;
  left: 32%;
  transform: translateX(-37%);
  bottom: -43px;
}

.gallery__viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__main {
  flex: 1;
  aspect-ratio: 16/9.4;
  overflow: hidden;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__nav {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #1c1c1a;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.gallery__nav:hover {
  opacity: 0.6;
  transform: scale(1.05);
}

.gallery__nav:active {
  transform: scale(0.94);
}

.gallery__thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 1200px;
  margin: 30px auto 0;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery__thumb {
  flex: 0 0 auto;
  width: 88px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity .2s ease, border-color .2s ease;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__thumb:hover {
  opacity: 0.85;
}

.gallery__thumb.is-active {
  opacity: 1;
  border-color: #1c1c1a;
}

.galery__btn a {
  background-color: #191919;
  padding: 19px 0px 19px 48px;
  font-size: 12px;
  font-family: 'Luminova';
  color: #fff;
  line-height: 117%;
  text-transform: uppercase;
  letter-spacing: 12%;
}

span.arrow_showcase {
  padding: 19px;
  margin-left: 37px;
  border-left: 1px solid #505050;
}

.galery__btn {
  margin-top: 100px;
  text-align: center;
}

.pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  margin-top: 190px;
  background: #ffffff;
}

.eyebrow {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Luminova";
  font-weight: 900;
  font-size: 14px;
  line-height: 117%;
  letter-spacing: 12%;
  text-transform: uppercase;

}

.headline {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Luminova";
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

span.headline_first {
  margin-left: -137px;
}

span.line-next-tab {
  margin-left: 171px;
}

.headline .accent,
mark{
  color: #5f8272;
	background:none
}

.image-shell {
  position: absolute;
  overflow: hidden;
  background: #111;
  margin-top: 90px;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

.squiggle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  margin-top: 90px;
}


.green-spaces {
  position: relative;
  background: #ffffff;
  padding: 6rem 4vw;
  overflow: hidden;
  z-index: 5;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.scrollytelling {
  position: relative;
  height: 320vh;
}

@media (max-width: 768px) {
  .scrollytelling {
    height: 220vh;
  }
}

.gs-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading image-reading"
    "image-bedroom copy";
  column-gap: 4vw;
  row-gap: 5rem;
  align-items: center;
}

.gs-heading-block {
  grid-area: heading;
}

.gs-copy-block {
  grid-area: copy;
}

.gs-heading {
  font-family: "Luminova";
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  color: #28190B;
}

.gs-copy {
  font-family: "Luminova";
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #28190B;

}

.accent {
  color: #214939;
}

.gs-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #91D7C0;
  border-radius: 999px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  font-family: "Luminova";
  margin-top: 75px
}

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

.reveal-text.in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.gs-image {
  position: relative;
  grid-area: image-reading;
}

.gs-image--reading svg {
  position: absolute;
  top: -47px;
  left: -47px;
  z-index: 4;
}

.gs-image--bedroom svg {
  position: absolute;
  bottom: 10px;
  top: 87%;
  right: -7px;
  left: 91%;
  z-index: 2;

}

.gs-image--bedroom {
  grid-area: image-bedroom;
}

.gs-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.reveal-img {
  opacity: 0;
  transform: translateY(-70px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-img.in-view {
  opacity: 1;
  transform: translateY(0);
}

.gs-image--bedroom.reveal-img {
  transition-delay: 0.15s;
}

@media (max-width:820px) {
  .gs-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image-reading"
      "image-bedroom"
      "copy";
    row-gap: 3rem;
  }
}

@media (max-width: 640px) {
  .gallery__viewer {
    gap: 10px;
  }

  .gallery__nav {
    width: 28px;
    height: 28px;
  }

  .gallery__thumb {
    width: 60px;
    height: 42px;
  }
}

/* ============ SECTION I: Apartment listing table ============ */
.units-section {
  position: relative;
  background: url("https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/lieght-bg.png");
  padding: clamp(60px, 9vw, 100px) clamp(20px, 6vw, 64px) clamp(50px, 7vw, 80px);
}

.units-section__inner {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.units-section__eyebrow {
  display: block;
  font-family: "Luminova", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 22px;
  margin-bottom: 65px;
  border-bottom: 1px solid rgb(0 0 0);
}

.units-section__title {
  margin: auto;
  max-width: 732px;
  font-family: Luminova;
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.units-section__row {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  position: relative;
}

.plate--iso {
  aspect-ratio: 378/500;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.iso-diagram {
  width: 100%;
  height: 100%;
}

.iso-diagram svg {
  width: 100%;
  height: 100%;
  display: block;
}

.iso-diagram path {
  transition: opacity 0.45s ease;
}

.iso-diagram g {
  transition: transform 0.45s ease;
}

.units-table tbody tr {
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.units-table tbody tr:hover,
.units-table tbody tr.is-active-row {
  background-color: rgba(159, 212, 192, 0.18);
}

.units-section__graphic img {
  width: 100%;
  height: auto;
  display: block;
}

.units-table-wrap {
  overflow-x: auto;
}

.units-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Aliance", sans-serif;
  white-space: nowrap;
}

.units-table thead th {
  text-align: left;
  color: #000;
  padding: 0 16px 22px 15px;
  border-bottom: 1px solid #000;
  font-family: Luminova;
  font-weight: 900;
  font-size: 14px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

.units-table tbody td {
  padding: 31px 16px 31px 20px;
  color: #000;
  border-bottom: 1px solid rgba(28, 28, 26, .1);
  font-family: 'Aliance';
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
}

.units-table tbody tr:last-child td {
  border-bottom: none;
}

.units-table tbody td:first-child,
.units-table tbody td:nth-child(4),
.units-table tbody td:nth-child(6) {
  font-weight: 700;
}

.units-table__dl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Luminova", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1c1c1a;
  text-decoration: underline;
}

.units-section__deco {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: clamp(50px, 8vw, 80px);
}

.units-section__deco-square {
  width: 16px;
  height: 16px;
  background: #9fd4c0;
  border-radius: 3px;
}

.units-section__deco-dots {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
}

.units-section__deco-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(28, 28, 26, .35);
}

@media (max-width: 900px) {
  .units-section__row {
    grid-template-columns: 1fr;
  }

  .plate--iso {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ============ SECTION J: Vier Häuser, Ein Quar (media + specs) ============ */
.specs-section {
  background: #ffffff;
  padding: 0px clamp(20px, 6vw, 64px);
  position: relative;
  z-index: 3;
}

.specs-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.specs-section__content {
  margin-top: 100px;
}

.plate--specs {
  aspect-ratio: 656/602;
  position: relative;
}

.plate--specs__deco {
  position: absolute;
  right: -21%;
  top: -14%;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.plate--specs__deco img {
  width: 60px;
  height: auto;
  display: block;
}

.plate--specs__dots {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 5px;
  margin-bottom: 6px;
}

.plate--specs__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9fd4c0;
}

.specs-section__eyebrow {
  display: block;
  color: #000;
  font-family: Luminova;
  font-weight: 900;
  font-size: 14px;
  line-height: 117%;
  letter-spacing: 12%;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.specs-section__title {
  color: #000;
  font-family: Luminova;
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  margin-bottom: 74px;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.specs-section__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 16px;
}

.specs-item h4 {
  color: #000;
  margin: 0 0 4px;
  font-family: Luminova;
  font-weight: 900;
  font-size: 26px;
  line-height: 160%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}

.specs-item p {
  color: #000;
  margin: 0;
  font-family: Luminova;
  font-weight: 900;
  font-size: 10px;
  line-height: 135%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}

.specs-section__cta {
  text-align: end;
  margin-top: 60px;
}

@media (max-width: 820px) {
  .specs-section__inner {
    grid-template-columns: 1fr;
  }

  .specs-section {
    margin-top: 0;
  }
}

/* ============================================================
   FAMILY GALLERY SECTION
============================================================ */

.fg-section {
  background: #ffffff;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 6vw, 64px) clamp(90px, 12vw, 150px);
}

.fg-canvas {
  position: relative;
  width: 100%;
  max-width: 1130px;
  aspect-ratio: 1130 / 970;
  margin: 0 auto;
}

.fg-frame {
  position: absolute;
  will-change: transform, opacity;
}

.fg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fg-frame--one {
  left: 6%;
  top: 8.6%;
  width: 84%;
  height: 58%;
  z-index: 1;
}

.fg-frame--two {
  left: 0%;
  top: 56.9%;
  width: 40.9%;
  height: 38.4%;
  z-index: 2;
}

.fg-frame--three {
  left: 67.5%;
  top: 74.6%;
  width: 37.6%;
  height: 35.1%;
  z-index: 1;
}

.fg-deco {
  position: absolute;
  pointer-events: none;
}

.fg-deco--circle {
  width: 130px;
  aspect-ratio: 1;
  left: 83.2%;
  top: 58.3%;
  z-index: 0;
}

.fg-deco--arcs {
  width: 82%;
  height: auto;
  left: -30%;
  bottom: -10%;
  z-index: 0;

}

@media (max-width: 760px) {
  .fg-canvas {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .fg-frame {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 240px;
  }

  .fg-deco--circle {
    display: none;
  }

  .fg-deco--arcs {
    display: none;
  }
}


/* ============================================================
   ANGEBOT / SPREAD SECTION
============================================================ */

.sp-section {
  position: relative;
  background: linear-gradient(180deg,
      #ffffff 0%,
      #eef4f1 28%,
      #7c9184 62%,
      #214939 100%);
  padding: clamp(50px, 11vw, 150px) clamp(20px, 6vw, 64px) clamp(70px, 10vw, 120px);
  overflow: hidden;
}

.sp-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.sp-eyebrow {
  display: block;
  font-family: Luminova;
  font-weight: 900;
  font-size: 14px;
  line-height: 117%;
  letter-spacing: 12%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 31px;
}

.sp-heading {
  margin: 0 0 clamp(30px, 5vw, 48px);
}

.sp-line {
  display: block;
  overflow: hidden;
}

.sp-line-inner {
  display: inline-block;
  font-family: Luminova;
  font-weight: 900;
  font-size: 60px;
  line-height: 117%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 66px;
  text-transform: uppercase;

  will-change: transform;
}

.sp-heading em,
.sp-panel-heading em {
  font-style: normal;
  color: #4a7263;
}

.sp-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  border-radius: 4px;
  background: url("https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/angebot-bg-scaled.jpg");
  box-shadow: 0px 4px 36px 0px #00000040;
  text-align: left;
}

.sp-panel {
  padding: 36px 46px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sp-panel--left {
  background-color: #ebf8f3eb;

}

.sp-panel--right {
  background: #ebf8f3eb;
  justify-content: flex-end;
}

.sp-panel-label {
  color: #000;
  margin-bottom: auto;
  font-family: Luminova;
  font-weight: 900;
  font-size: 8.66px;
  line-height: 117%;
  letter-spacing: 12%;
  text-transform: uppercase;
}

.sp-panel-body {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-left: 40px;
  margin-bottom: 30px;
  padding-left: 40px;
  border-left: 1px solid #3F5950;
}

.sp-kicker {
  font-family: "Luminova", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1c1c1a;
  margin-bottom: 10px;
}

.sp-quote {
  color: #000;
  font-family: Luminova;
  font-weight: 900;
  font-size: 24.96px;
  line-height: 117%;
  letter-spacing: 0%;
}

.sp-quote em {
  font-style: normal;
  color: #4a7263;
}

.sp-thumb {
  width: 131px;
  aspect-ratio: 1;
  border-radius: 0px;
  overflow: hidden;
  margin-top: -20px;
}

.sp-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.sp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-small-text {
  color: #000;
  max-width: 248px;
  margin: 0 0 24px auto;
  font-family: 'Aliance';
  font-weight: 400;
  font-size: 8.66px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.sp-footer-text {
  color: #000;
  margin-top: 0px;
  text-align: right;
  font-family: Luminova;
  font-weight: 900;
  font-size: 8.66px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  ;
}

.sp-panel-photo img {
  height: 238px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.sp-panel-heading {
  position: relative;
  z-index: 1;
}

.sp-panel-heading .sp-line-inner {
  color: #000;
  font-family: Luminova;
  font-weight: 900;
  font-size: 14.59px;
  line-height: 117%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 0px;
}


.sp-panel-text {
  position: relative;
  z-index: 1;
  color: #000;
  max-width: 213px;
  margin: 0;
  margin-left: auto;
  font-family: 'Aliance';
  font-weight: 400;
  font-size: 7.66px;
  line-height: 184%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.sp_panel_right_text_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sp-caption {
  position: relative;
  z-index: 1;
  color: #000;
  margin-top: 20px;
  text-align: right;
  margin-bottom: 0px;
  font-family: Luminova;
  font-weight: 900;
  font-size: 4.99px;
  line-height: 117%;
  letter-spacing: 12%;
  text-align: right;
  text-transform: uppercase;
}

.sp-outro {
  color: #ffffff;
  max-width: 560px;
  margin: clamp(40px, 6vw, 60px) auto clamp(24px, 4vw, 36px);
  font-family: Luminova;
  font-weight: 900;
  font-style: Umbra;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 168%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.sp-leaf-deco {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: clamp(200px, 24vw, 320px);
  height: auto;
  z-index: 0;
  pointer-events: none;
}

.sp-cta {
  margin-top: 50px;
}

.sp-fade {
  opacity: 0;
  transform: translateY(26px);
}

.sp-line-inner {
  transform: translateY(120%);
  opacity: 0;
}

@media (max-width: 820px){
  .sp-spread{ grid-template-columns: 1fr;         display: flex;
        flex-direction: column; }
  .sp-panel--right{ aspect-ratio: 4/3.6; }
  .sp-panel-text{ text-align: left; margin-left: 0; }

}


/* ============================================================
   KONTAKT SECTION
============================================================ */

.kt-section {
  background: #ffffff;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 64px) clamp(70px, 9vw, 110px);
}

.kt-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.kt-media-row {
  display: grid;
  grid-template-columns: 0.62fr auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(60px, 9vw, 110px);
}

.kt-frame {
  position: relative;
  overflow: visible;
  will-change: transform, opacity;
}

.kt-frame--left {
  aspect-ratio: 326/427;
}

.kt-frame--right {
  aspect-ratio: 597 / 333;
  border-left: 1px solid #DCDCDC;
  padding-left: 61px;

}

.kt-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 35px 65px -30px rgba(20, 30, 25, 0.35);
  z-index: 3;
  position: relative;
}

.kt-divider {
}

.kt-deco {
  position: absolute;
  pointer-events: none;
}

.kt-deco--zigzag {
  top: -9%;
  left: -10%;
  width: 24%;

}

.kt-deco--zigzag img {
  width: 100%;
  height: auto;
  display: block;
}

.kt-deco--circle {
  top: -12%;
  right: -8%;
  width: 15%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #9fd4c0;
  z-index: -1;
}

.kt-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 9vw, 104px);
  align-items: start;
}

.kt-eyebrow {
  display: block;
  color: #000;
  margin-bottom: 31px;
  font-family: Luminova;
  font-weight: 900;
  font-size: 14px;
  line-height: 117%;
  letter-spacing: 12%;
  text-transform: uppercase;
}

.kt-heading {
  margin: 0 0 29px;
}

.kt-line {
  display: block;
  overflow: hidden;
}

.kt-line-inner {
  display: inline-block;
  font-family: Luminova;
  font-weight: 900;
  font-style: Umbra;
  font-size: 38px;
  leading-trim: CAP_HEIGHT;
  line-height: 148%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.kt-heading em {
  font-style: normal;
  color: #4a7263;
}

.kt-desc {
  font-family: 'Aliance';
  color: #000;
  max-width: 380px;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.kt-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kt-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kt-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kt-field label {
  font-family: 'Aliance';
  color: #000;
  font-weight: 400;
  font-size: 12px;
  line-height: 164%;
  letter-spacing: 0%;
}

.kt-field input,
.kt-field select,
.kt-field textarea {
  border: none;
  background: transparent;
  padding: 6px 2px 12px;
  font-family: "Aliance", sans-serif;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 16.89px;
  color: #A8A8A8;
  line-height: 164%;
  letter-spacing: 0%;
  border-radius: 0;
  border-bottom: 1px solid #B2B2B2;
  outline: none;
}

.kt-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231c1c1a' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}

.kt-field textarea {
  resize: vertical;
  min-height: 30px;
}

.kt-field input::placeholder,
.kt-field textarea::placeholder {
  color: #9a9a97;
}

.kt-field input:focus,
.kt-field select:focus,
.kt-field textarea:focus {
  border-bottom-color: #1c1c1a;
}

.kt-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.kt-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Aliance';
  color: #000;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 164%;
  letter-spacing: 0%;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.kt-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: #1c1c1a;
}

.kt-checkbox a {
  color: #1c1c1a;
  text-decoration: underline;
}

.kt-submit {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: #191919;
  color: #fff;
  border: none;
  padding: 15px 12px 15px 22px;
  font-family: "Luminova", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.kt-arrow {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.kt-fade {
  opacity: 0;
  transform: translateY(24px);
}

.kt-line-inner {
  transform: translateY(120%);
  opacity: 0;
}

@media (max-width: 900px) {
  .kt-media-row {
    grid-template-columns: 1fr;
  }

  .kt-divider {
    display: none;
  }

  .kt-content {
    grid-template-columns: 1fr;
  }

  .kt-field-row {
    grid-template-columns: 1fr;
  }

  .kt-deco--zigzag {
    width: 60px;
  }

  .kt-deco--circle {
    width: 60px;
  }
}

/* ---------- HERO OVERLAP ---------- */
.footer-hero-wrap {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 2;
}

.footer-hero {
  position: absolute;
  width: 80%;
  max-width: 1100px;
  height: 100%;
  border-radius: 0px;
  background: url('https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/footer-overlaop.png') center/cover no-repeat;

  transform: translateY(120px) scale(1.05);
  opacity: 0.5;

  transition: all 1.2s cubic-bezier(.22, .61, .36, 1);
}

.footer-hero-active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #eaf3ee;
  margin-top: -200px;
  padding: 260px 30px 0;
}

.footer-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 800px 1fr;
  gap: 50px;
  align-items: center;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px 40px;
}

.col-label {
  font-family: Luminova;
  font-weight: 900;
  font-style: Umbra;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 118%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.col .address {
  font-family: "Aliance";
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000;

}

.telephone p.sub-label {
  font-family: Luminova;
  font-weight: 900;
  font-size: 12.53px;
  line-height: 144%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration-style: solid;
  color: #214939;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
}

.telephone a {
  font-family: Luminova;
  font-weight: 900;
  font-style: Umbra;
  font-size: 12.53px;
  leading-trim: NONE;
  line-height: 144%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #214939;
}

.telephone {
  margin-top: 50px;
}

.sub-label {
  font-family: "Aliance";
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: CAP_HEIGHT;
  line-height: 164%;
  letter-spacing: 0%;
  text-transform: uppercase;

}

.col a {
  font-size: 14px;
  color: #1c2b22;
  text-decoration: underline;
}

.stay-in-touch {
  grid-column: 1 / -1;
  max-width: 80%;
}

.email-row {
  display: flex;

  border-bottom: 1px solid #B2B2B2;
  padding-bottom: 10px;
  margin-top: 22px;
}

.email-row input {
  width: 100%;
  border: none;
  background: none;
  font-family: 'Aliance';
  font-weight: 400;
  font-style: Regular;
  font-size: 16.89px;
  leading-trim: CAP_HEIGHT;
  line-height: 164%;
  letter-spacing: 0%;

}

.email-row button {
  border: none;
  background: none;
  cursor: pointer;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0px auto 20px;
  text-align: right;
  font-size: unset;
  color: #000;
  font-family: Montserrat;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 0%;
}

.wordmark-band {
  width: 100%;
  text-align: center;
  position: relative;
  min-height: 240px;
  margin: auto;
  justify-content: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.wordmark {
  font-size: 160px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  background-image: url("https://hubelmatte.shekharhans.com/wp-content/uploads/2026/07/aerial.png");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat';
  letter-spacing: 13%;
  color: transparent;
}

.logomark svg {
  position: relative;
  left: -10%;
}

/* ---------- ANIMATION ---------- */
.footer-anim {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(.22, .61, .36, 1);
}

.footer-anim-show {
  opacity: 1;
  transform: translateY(0);
}

.footer-delay-1 {
  transition-delay: .2s;
}

.footer-delay-2 {
  transition-delay: .4s;
}

.footer-delay-3 {
  transition-delay: .6s;
}

@media (max-width:768px) {

  .hero {
    height: 80vh;
  }

  .pinned-intro__space {
    padding: 70px 0;
  }

  .pinned-intro__icon img {
    margin-left: 0px;
  }

  .detail__title {
    font-size: 30px;
  }

  .arcs {
    left: -116%;
    transform: translateX(94%);
    top: 34px;
    width: 100%;
  }

  .intro__visual .plate--vase img {
    max-width: 400px;
    max-height: 400px;
  }

  .intro__circle {
    width: 44%;
    aspect-ratio: 1;
    right: -44%;
    top: 35%;
  }

  .detail {
    padding-top: 200px;
    padding-left: 20px;
    padding-bottom: 10px;
    padding-right: 20px;
  }

  .plate--hero {
    padding: 0px;
    aspect-ratio: 16 / 12.2;
    border-radius: 0px;
  }

  .showcase__generation h2 {
    font-size: 25px;

  }

  .quarter__title {
    font-size: 30px;
  }

  .detail__quarter {
    padding: 0px;
  }

  .quarter__heading {
    margin-bottom: 100px;
  }

  .quarter__text {
    font-size: 16px;
  }

  .quarter__cta h4 {
    font-size: 16px;
  }

  .quarter_btn {
    margin-bottom: 80px;
  }

  .alltag__title {
    font-size: 30px;
  }

  .stat__number {
    font-size: 60px;
  }

  .gallery {
    padding-top: 130px;
  }

  .gallery__title,
  .kt-line-inner {
    font-size: 30px;
  }

  .showcase__generation p,
  .detail__text {
    font-size: 16px;
  }

  .gallery__title svg {

    bottom: -80px;
  }

  .pin {
    margin-top: 100px;
  }

  .headline,
  .gs-heading,
  .gs-copy,
  .units-section__title,
  .specs-section__title,
  .sp-line-inner {
    font-size: 30px;
  }

  .sp-panel-body {
    margin-left: 0px;
  }

  .specs-section__title {
    margin-bottom: 30px;
  }

  .sp-quote {
    font-size: 19.96px;
  }

  .sp-thumb {
    margin-top: 0px;
    width: 100px;
  }

  .sp-panel {
    padding: 36px 27px;
  }

  .sp-panel-heading .sp-line-inner {
    font-size: 12.59px;
  }

  .specs-section__content {
    margin-top: 40px;
  }
  .sp-line-inner{
    margin-bottom: 20px;
  }
  .sp_panel_right_text_flex{
    flex-wrap: wrap;
    gap:10px
  }

  span.headline_first,
  span.line-next-tab {

    margin-left: 0px;
  }

  .specs-item h4 {
    font-size: 22px;
  }

  .scrollytelling {
    height: 100vh;
  }

  .green-spaces {
    padding: 6rem 20px;
  }

  .gs-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .gs-badge {
    margin-top: 30px;
  }

  .gs-copy-block {
    width: 100%;
  }

  .quarter-section {
    margin-top: 50px;
  }

  .quarter-section__deco img {
  top: -31%;
        width: 150px;
  }

  .eeg-description {
    margin-top: 20px;
  }

  .eeg-stats {
    margin-bottom: 20px;
  }

  .eeg-stat-label {
    margin-top: 40px;
  }

  .headline {
    text-align: center;
    width: 100%;
  }

  .intro__visual {
    top: -202%;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
  }

  .footer-anim-show {
    width: 100%;
  }

  .footer-hero-wrap {
    height: 300px;
  }

  .footer-hero {
    position: absolute;
    width: 90%;
  }

  .footer-bottom {
    margin: 20px auto 20px;
  }

  .stay-in-touch {
    max-width: 100%;
  }

  .wordmark {
    font-size: 46px;
  }

  .wordmark-band {
    min-height: 100px;
  }
}
